diff --git a/Mk/Uses/kde.mk b/Mk/Uses/kde.mk index ab7503c92c61..716e0abef6ba 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.27.2 +KDE_PLASMA_VERSION?= 5.27.3 KDE_PLASMA_BRANCH?= stable # Current KDE frameworks. KDE_FRAMEWORKS_VERSION?= 5.103.0 KDE_FRAMEWORKS_BRANCH?= stable # Current KDE applications. KDE_APPLICATIONS_VERSION?= 22.12.3 KDE_APPLICATIONS_SHLIB_VER?= 5.22.3 # G as in KDE Gear, and as in "don't make the variable name longer than required" KDE_APPLICATIONS_SHLIB_G_VER?= 22.12.3 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- WWW?= https://api.kde.org/frameworks/${PORTNAME}/html/index.html # This is a slight duplication of _USE_FRAMEWORKS_PORTING -- it maybe would be # better to rely on ${_USE_FRAMEWORKS_PORTING:S/^/k/g} _PORTINGAIDS= kjs kjsembed kdelibs4support kdesignerplugin kdewebkit khtml kmediaplayer kross kxmlrpcclient . if ${_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 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 xdg-desktop-portal-kde # List of components of the KDE PIM distribution (part of applications). _USE_KDEPIM5_ALL= akonadicontacts akonadiimportwizard akonadimime akonadinotes \ akonadicalendar akonadisearch \ calendarcore calendarsupport calendarutils \ contacts eventviews gapi grantleetheme \ gravatar identitymanagement imap \ incidenceeditor kdepim-addons \ kdepim-runtime5 kitinerary kontactinterface kpkpass \ ksmtp ldap libkdepim libkleo libksieve mailcommon \ mailimporter mailtransport mbox messagelib \ mime pimcommon pimtextedit tnef \ kalarm kontact kmail mbox-importer \ akonadiconsole akregator grantlee-editor kaddressbook \ kalarm kmail-account-wizard kmail knotes kontact \ korganizer pim-data-exporter _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/libQuickCharts.so kde-kross_PORT= lang/kf5-kross kde-kross_LIB= libKF5KrossCore.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_LIB= libplasmapotdprovidercore.so kde-kgamma5_PORT= x11/plasma5-kgamma5 kde-kgamma5_PATH= ${QT_PLUGINDIR}/plasma/kcms/systemsettings/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/kwindowsystem/KF5WindowSystemKWaylandPlugin.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}/plasma/kcms/systemsettings/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 kde-xdg-desktop-portal-kde_PATH= ${KDE_PREFIX}/lib/libexec/xdg-desktop-portal-kde kde-xdg-desktop-portal-kde_PORT= deskutils/plasma5-xdg-desktop-portal-kde # ====================== 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-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= ${QT_PLUGINDIR}/pim5/contacteditor/editorpageplugins/cryptopageplugin.so kde-kdepim-runtime5_PORT= deskutils/kdepim-runtime kde-kdepim-runtime5_PATH= ${KDE_PREFIX}/bin/gidmigrator kde-kitinerary_PORT= net/kitinerary kde-kitinerary_LIB= 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-kpipewire/distinfo b/audio/plasma5-kpipewire/distinfo index 8b7af95033f7..3c23b552bed4 100644 --- a/audio/plasma5-kpipewire/distinfo +++ b/audio/plasma5-kpipewire/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677653244 -SHA256 (KDE/plasma/5.27.2/kpipewire-5.27.2.tar.xz) = 0976f0fd8ee501f5632b60142f8b554034ebd55a9a41359c467b44aa12e125f0 -SIZE (KDE/plasma/5.27.2/kpipewire-5.27.2.tar.xz) = 58344 +TIMESTAMP = 1678807737 +SHA256 (KDE/plasma/5.27.3/kpipewire-5.27.3.tar.xz) = a6ac260158e2a9b7b92fa91f9cd4c2d3193b0db7e79a3e1a156ccfeba694252d +SIZE (KDE/plasma/5.27.3/kpipewire-5.27.3.tar.xz) = 58460 diff --git a/audio/plasma5-plasma-pa/distinfo b/audio/plasma5-plasma-pa/distinfo index 3884de902c1d..b66609de0adc 100644 --- a/audio/plasma5-plasma-pa/distinfo +++ b/audio/plasma5-plasma-pa/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677653246 -SHA256 (KDE/plasma/5.27.2/plasma-pa-5.27.2.tar.xz) = f3d8d37fac0f06fb979cd249db95a34c9bc207244f63e894676b76c3c1f6bc46 -SIZE (KDE/plasma/5.27.2/plasma-pa-5.27.2.tar.xz) = 161852 +TIMESTAMP = 1678807738 +SHA256 (KDE/plasma/5.27.3/plasma-pa-5.27.3.tar.xz) = 2179107ee434fc92f7f73f69b268b4927ab90c7c61456846062ef672b2e6f09c +SIZE (KDE/plasma/5.27.3/plasma-pa-5.27.3.tar.xz) = 162196 diff --git a/deskutils/plasma5-milou/distinfo b/deskutils/plasma5-milou/distinfo index bde32a241bbd..f7eac7dd3e3f 100644 --- a/deskutils/plasma5-milou/distinfo +++ b/deskutils/plasma5-milou/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677653249 -SHA256 (KDE/plasma/5.27.2/milou-5.27.2.tar.xz) = 53c3552772fe20f45bd3a2674930e66f507a02069f876edb95c30fde1bb6bae3 -SIZE (KDE/plasma/5.27.2/milou-5.27.2.tar.xz) = 56852 +TIMESTAMP = 1678807739 +SHA256 (KDE/plasma/5.27.3/milou-5.27.3.tar.xz) = eb6c2d92a63b8ab1209ae1360d6b51f21872dc91b8f0853212bc5a6962156e1f +SIZE (KDE/plasma/5.27.3/milou-5.27.3.tar.xz) = 56840 diff --git a/deskutils/plasma5-sddm-kcm/distinfo b/deskutils/plasma5-sddm-kcm/distinfo index 2ebe950c33fc..a0de51397364 100644 --- a/deskutils/plasma5-sddm-kcm/distinfo +++ b/deskutils/plasma5-sddm-kcm/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677653250 -SHA256 (KDE/plasma/5.27.2/sddm-kcm-5.27.2.tar.xz) = 7a0ffcc851a801443195cedab211dab6cfdb363b4286f22f55e74763ca8fccd2 -SIZE (KDE/plasma/5.27.2/sddm-kcm-5.27.2.tar.xz) = 91304 +TIMESTAMP = 1678807740 +SHA256 (KDE/plasma/5.27.3/sddm-kcm-5.27.3.tar.xz) = ba85b5553c279f134d7607bdf4cb833985f988493f33d3aa1a3954eff5bf2c42 +SIZE (KDE/plasma/5.27.3/sddm-kcm-5.27.3.tar.xz) = 91296 diff --git a/deskutils/plasma5-xdg-desktop-portal-kde/distinfo b/deskutils/plasma5-xdg-desktop-portal-kde/distinfo index ebe477ddb21e..4363316ecade 100644 --- a/deskutils/plasma5-xdg-desktop-portal-kde/distinfo +++ b/deskutils/plasma5-xdg-desktop-portal-kde/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677653251 -SHA256 (KDE/plasma/5.27.2/xdg-desktop-portal-kde-5.27.2.tar.xz) = 97d0dad0a616867308b625d43dec71a8e97f6aa0d6d44bb5ae75953320aa3217 -SIZE (KDE/plasma/5.27.2/xdg-desktop-portal-kde-5.27.2.tar.xz) = 137396 +TIMESTAMP = 1678807740 +SHA256 (KDE/plasma/5.27.3/xdg-desktop-portal-kde-5.27.3.tar.xz) = cdba28348d165195da7db7f6c5a8f4e17f67de0e41133c6ca5de2de2539f8734 +SIZE (KDE/plasma/5.27.3/xdg-desktop-portal-kde-5.27.3.tar.xz) = 138812 diff --git a/devel/plasma5-khotkeys/distinfo b/devel/plasma5-khotkeys/distinfo index 2161cbc83fe6..3b6d1324351c 100644 --- a/devel/plasma5-khotkeys/distinfo +++ b/devel/plasma5-khotkeys/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677653252 -SHA256 (KDE/plasma/5.27.2/khotkeys-5.27.2.tar.xz) = 17bb29a85444b812b3928699f821e66f9196a59fee6280709a9d3664fa31db09 -SIZE (KDE/plasma/5.27.2/khotkeys-5.27.2.tar.xz) = 1886308 +TIMESTAMP = 1678807742 +SHA256 (KDE/plasma/5.27.3/khotkeys-5.27.3.tar.xz) = e61bcbf598078980c4d5b37800e040d457f55f463ad141d6ea4dceb884b806eb +SIZE (KDE/plasma/5.27.3/khotkeys-5.27.3.tar.xz) = 1886412 diff --git a/devel/plasma5-kwrited/distinfo b/devel/plasma5-kwrited/distinfo index 12146fd08499..2538fccac784 100644 --- a/devel/plasma5-kwrited/distinfo +++ b/devel/plasma5-kwrited/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677653254 -SHA256 (KDE/plasma/5.27.2/kwrited-5.27.2.tar.xz) = 9cc6607bd65fbe7115c36c039351bc2aa5548c96676c7f70442814d9c8334b8b -SIZE (KDE/plasma/5.27.2/kwrited-5.27.2.tar.xz) = 23420 +TIMESTAMP = 1678807743 +SHA256 (KDE/plasma/5.27.3/kwrited-5.27.3.tar.xz) = c20851605e0e6e0951b1ef8f7b03394722e5ed02ca010f80c2cb0eac2d6658d4 +SIZE (KDE/plasma/5.27.3/kwrited-5.27.3.tar.xz) = 23428 diff --git a/devel/plasma5-plasma-sdk/distinfo b/devel/plasma5-plasma-sdk/distinfo index 0252116ce268..6dc5b0301b3d 100644 --- a/devel/plasma5-plasma-sdk/distinfo +++ b/devel/plasma5-plasma-sdk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677653255 -SHA256 (KDE/plasma/5.27.2/plasma-sdk-5.27.2.tar.xz) = ae1e2bb6fe1a14ef70adbb411635b78df7f2bad6990ab16aa95e12849483c8dc -SIZE (KDE/plasma/5.27.2/plasma-sdk-5.27.2.tar.xz) = 319936 +TIMESTAMP = 1678807744 +SHA256 (KDE/plasma/5.27.3/plasma-sdk-5.27.3.tar.xz) = 4460e17a5f5176db5ffd71bb315a81608914905461d40f4afa8de6d10d415f67 +SIZE (KDE/plasma/5.27.3/plasma-sdk-5.27.3.tar.xz) = 319608 diff --git a/multimedia/plasma5-plank-player/distinfo b/multimedia/plasma5-plank-player/distinfo index 31b142aa2f11..150c8fc5ca28 100644 --- a/multimedia/plasma5-plank-player/distinfo +++ b/multimedia/plasma5-plank-player/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677653256 -SHA256 (KDE/plasma/5.27.2/plank-player-5.27.2.tar.xz) = e791d9985913a4a2fa6318b35685639a8647bf705d297caa8493543d066a7afe -SIZE (KDE/plasma/5.27.2/plank-player-5.27.2.tar.xz) = 158056 +TIMESTAMP = 1678807745 +SHA256 (KDE/plasma/5.27.3/plank-player-5.27.3.tar.xz) = 3cd3bb6b2403195eb60cff49cb09666125ed485c4957d7934c8813cd62336247 +SIZE (KDE/plasma/5.27.3/plank-player-5.27.3.tar.xz) = 158064 diff --git a/security/plasma5-kscreenlocker/distinfo b/security/plasma5-kscreenlocker/distinfo index 0067e963815b..a457e6516a50 100644 --- a/security/plasma5-kscreenlocker/distinfo +++ b/security/plasma5-kscreenlocker/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677653258 -SHA256 (KDE/plasma/5.27.2/kscreenlocker-5.27.2.tar.xz) = 3a1056323a9451a02b46c0dd3db07b766d0dc5e2d74300a008ee9b274dce0319 -SIZE (KDE/plasma/5.27.2/kscreenlocker-5.27.2.tar.xz) = 159608 +TIMESTAMP = 1678807746 +SHA256 (KDE/plasma/5.27.3/kscreenlocker-5.27.3.tar.xz) = 1aa99a34be2688fe3f0464467dae5bd79385b92dc15b1842abfa9684b35c8854 +SIZE (KDE/plasma/5.27.3/kscreenlocker-5.27.3.tar.xz) = 159620 diff --git a/security/plasma5-ksshaskpass/distinfo b/security/plasma5-ksshaskpass/distinfo index 9f2b7fee1a37..e28c216d3635 100644 --- a/security/plasma5-ksshaskpass/distinfo +++ b/security/plasma5-ksshaskpass/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677653259 -SHA256 (KDE/plasma/5.27.2/ksshaskpass-5.27.2.tar.xz) = d9950967aba7442c982a0ab2e5d0369baf60bdcfcefd2c3252a9fa863f8156c5 -SIZE (KDE/plasma/5.27.2/ksshaskpass-5.27.2.tar.xz) = 27748 +TIMESTAMP = 1678807747 +SHA256 (KDE/plasma/5.27.3/ksshaskpass-5.27.3.tar.xz) = a541353eeaedde7c54d723b26e3940cde399325a9b2a81e73542093341eff62d +SIZE (KDE/plasma/5.27.3/ksshaskpass-5.27.3.tar.xz) = 27776 diff --git a/security/plasma5-kwallet-pam/distinfo b/security/plasma5-kwallet-pam/distinfo index c32704352679..3998343e945c 100644 --- a/security/plasma5-kwallet-pam/distinfo +++ b/security/plasma5-kwallet-pam/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677653260 -SHA256 (KDE/plasma/5.27.2/kwallet-pam-5.27.2.tar.xz) = 68e57e785eb356557e5ae312ea43743149c047b121bfd33da8a8de3537ab7912 -SIZE (KDE/plasma/5.27.2/kwallet-pam-5.27.2.tar.xz) = 22848 +TIMESTAMP = 1678807747 +SHA256 (KDE/plasma/5.27.3/kwallet-pam-5.27.3.tar.xz) = e218299df53fcf0369f6b65eb907a0fbac602a8a75a85c6fc7d8a7d92fea1fdb +SIZE (KDE/plasma/5.27.3/kwallet-pam-5.27.3.tar.xz) = 22844 diff --git a/sysutils/plasma5-discover/distinfo b/sysutils/plasma5-discover/distinfo index 42deb9197c1e..016d56eb8225 100644 --- a/sysutils/plasma5-discover/distinfo +++ b/sysutils/plasma5-discover/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677653261 -SHA256 (KDE/plasma/5.27.2/discover-5.27.2.tar.xz) = 2c1ba279ec15f88472e6d2e13ce10054ba9fad628428f41bdb10f2cd58a8962d -SIZE (KDE/plasma/5.27.2/discover-5.27.2.tar.xz) = 857488 +TIMESTAMP = 1678807749 +SHA256 (KDE/plasma/5.27.3/discover-5.27.3.tar.xz) = 88c4845068b3820dfac670ea63e9ffbae0d5fb733b68d965612009033fda0adb +SIZE (KDE/plasma/5.27.3/discover-5.27.3.tar.xz) = 864960 diff --git a/sysutils/plasma5-drkonqi/distinfo b/sysutils/plasma5-drkonqi/distinfo index 755be9826f56..67c4b666c06b 100644 --- a/sysutils/plasma5-drkonqi/distinfo +++ b/sysutils/plasma5-drkonqi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677653262 -SHA256 (KDE/plasma/5.27.2/drkonqi-5.27.2.tar.xz) = a674ed7a9c1e65ebda5abd8714a7435d9a7cf7094bf200738f0d50d5f1f9923b -SIZE (KDE/plasma/5.27.2/drkonqi-5.27.2.tar.xz) = 852992 +TIMESTAMP = 1678807750 +SHA256 (KDE/plasma/5.27.3/drkonqi-5.27.3.tar.xz) = c3cbd3ab917742b1b70a7857c0d30989139f65318993ad0131f22ebb30d835dc +SIZE (KDE/plasma/5.27.3/drkonqi-5.27.3.tar.xz) = 855560 diff --git a/sysutils/plasma5-kde-cli-tools/distinfo b/sysutils/plasma5-kde-cli-tools/distinfo index 5a77eacbab57..82cfad2b9059 100644 --- a/sysutils/plasma5-kde-cli-tools/distinfo +++ b/sysutils/plasma5-kde-cli-tools/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677653264 -SHA256 (KDE/plasma/5.27.2/kde-cli-tools-5.27.2.tar.xz) = d5b57baad1e2f12923b4cf25f8559b6592adf21b8f2b9ec536b2fb74a24836a1 -SIZE (KDE/plasma/5.27.2/kde-cli-tools-5.27.2.tar.xz) = 657280 +TIMESTAMP = 1678807751 +SHA256 (KDE/plasma/5.27.3/kde-cli-tools-5.27.3.tar.xz) = a1a20176752b0d3e9af7ae063d5077855c0438ec4dc280dc85f0bb34f6f93aa4 +SIZE (KDE/plasma/5.27.3/kde-cli-tools-5.27.3.tar.xz) = 657760 diff --git a/sysutils/plasma5-kinfocenter/distinfo b/sysutils/plasma5-kinfocenter/distinfo index 904b369dfe2d..53fce8c2926a 100644 --- a/sysutils/plasma5-kinfocenter/distinfo +++ b/sysutils/plasma5-kinfocenter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677653265 -SHA256 (KDE/plasma/5.27.2/kinfocenter-5.27.2.tar.xz) = bc563cc49acc12476834d8d1555b5e8265a9237060a3af95a426c8ccb0eb20ec -SIZE (KDE/plasma/5.27.2/kinfocenter-5.27.2.tar.xz) = 1015472 +TIMESTAMP = 1678807752 +SHA256 (KDE/plasma/5.27.3/kinfocenter-5.27.3.tar.xz) = 847f6bb3b7c3f37ea6554a3526d8b89b32df28afff4c806850416f089fcf988b +SIZE (KDE/plasma/5.27.3/kinfocenter-5.27.3.tar.xz) = 1015740 diff --git a/sysutils/plasma5-kinfocenter/pkg-plist b/sysutils/plasma5-kinfocenter/pkg-plist index f469557fee05..f975613324cd 100644 --- a/sysutils/plasma5-kinfocenter/pkg-plist +++ b/sysutils/plasma5-kinfocenter/pkg-plist @@ -1,910 +1,912 @@ bin/kinfocenter etc/xdg/kcm-about-distrorc etc/xdg/menus/kinfocenter.menu lib/libKInfoCenterInternal.so lib/libexec/kauth/kinfocenter-dmidecode-helper %%QT_PLUGINDIR%%/plasma/kcms/kcm_about-distro.so %%QT_PLUGINDIR%%/plasma/kcms/kinfocenter/kcm_cpu.so %%QT_PLUGINDIR%%/plasma/kcms/kinfocenter/kcm_devinfo.so %%QT_PLUGINDIR%%/plasma/kcms/kinfocenter/kcm_egl.so %%QT_PLUGINDIR%%/plasma/kcms/kinfocenter/kcm_firmware_security.so %%QT_PLUGINDIR%%/plasma/kcms/kinfocenter/kcm_glx.so %%QT_PLUGINDIR%%/plasma/kcms/kinfocenter/kcm_interrupts.so %%QT_PLUGINDIR%%/plasma/kcms/kinfocenter/kcm_kwinsupportinfo.so %%QT_PLUGINDIR%%/plasma/kcms/kinfocenter/kcm_nic.so %%QT_PLUGINDIR%%/plasma/kcms/kinfocenter/kcm_opencl.so %%QT_PLUGINDIR%%/plasma/kcms/kinfocenter/kcm_pci.so %%QT_PLUGINDIR%%/plasma/kcms/kinfocenter/kcm_samba.so %%QT_PLUGINDIR%%/plasma/kcms/kinfocenter/kcm_usb.so %%QT_PLUGINDIR%%/plasma/kcms/kinfocenter/kcm_vulkan.so %%QT_PLUGINDIR%%/plasma/kcms/kinfocenter/kcm_wayland.so %%QT_PLUGINDIR%%/plasma/kcms/kinfocenter/kcm_xserver.so %%QT_QMLDIR%%/org/kde/kinfocenter/private/CommandOutputKCM.qml %%QT_QMLDIR%%/org/kde/kinfocenter/private/qmldir share/applications/kcm_about-distro.desktop share/applications/org.kde.kinfocenter.desktop share/dbus-1/system-services/org.kde.kinfocenter.dmidecode.service share/dbus-1/system.d/org.kde.kinfocenter.dmidecode.conf share/desktop-directories/kinfocenter.directory share/doc/HTML/ca/kinfocenter/index.cache.bz2 share/doc/HTML/ca/kinfocenter/index.docbook share/doc/HTML/ca/kinfocenter/kinfocenter.png share/doc/HTML/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/es/kinfocenter/index.cache.bz2 share/doc/HTML/es/kinfocenter/index.docbook share/doc/HTML/fr/kinfocenter/index.cache.bz2 share/doc/HTML/fr/kinfocenter/index.docbook share/doc/HTML/id/kinfocenter/index.cache.bz2 share/doc/HTML/id/kinfocenter/index.docbook share/doc/HTML/it/kinfocenter/index.cache.bz2 share/doc/HTML/it/kinfocenter/index.docbook share/doc/HTML/it/kinfocenter/kinfocenter.png share/doc/HTML/nl/kinfocenter/index.cache.bz2 share/doc/HTML/nl/kinfocenter/index.docbook share/doc/HTML/pt/kinfocenter/index.cache.bz2 share/doc/HTML/pt/kinfocenter/index.docbook share/doc/HTML/pt_BR/kinfocenter/index.cache.bz2 share/doc/HTML/pt_BR/kinfocenter/index.docbook share/doc/HTML/pt_BR/kinfocenter/kinfocenter.png share/doc/HTML/ru/kinfocenter/index.cache.bz2 share/doc/HTML/ru/kinfocenter/index.docbook share/doc/HTML/sr/kinfocenter/index.cache.bz2 share/doc/HTML/sr/kinfocenter/index.docbook share/doc/HTML/sr@latin/kinfocenter/index.cache.bz2 share/doc/HTML/sr@latin/kinfocenter/index.docbook share/doc/HTML/sv/kinfocenter/index.cache.bz2 share/doc/HTML/sv/kinfocenter/index.docbook share/doc/HTML/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/ui/main.qml share/kpackage/kcms/kcm_cpu/contents/ui/main.qml share/kpackage/kcms/kcm_egl/contents/ui/main.qml share/kpackage/kcms/kcm_firmware_security/contents/code/fwupdmgr.sh share/kpackage/kcms/kcm_firmware_security/contents/ui/main.qml share/kpackage/kcms/kcm_glx/contents/ui/main.qml share/kpackage/kcms/kcm_interrupts/contents/ui/main.qml share/kpackage/kcms/kcm_kwinsupportinfo/contents/ui/main.qml share/kpackage/kcms/kcm_nic/contents/ui/main.qml share/kpackage/kcms/kcm_opencl/contents/ui/main.qml share/kpackage/kcms/kcm_pci/contents/ui/main.qml share/kpackage/kcms/kcm_vulkan/contents/ui/main.qml share/kpackage/kcms/kcm_wayland/contents/ui/main.qml share/kpackage/kcms/kcm_xserver/contents/ui/main.qml share/kpackage/kcms/kcmsamba/contents/ui/ShareListItem.qml share/kpackage/kcms/kcmsamba/contents/ui/main.qml share/locale/af/LC_MESSAGES/kcmsamba.mo share/locale/af/LC_MESSAGES/kcmusb.mo share/locale/ar/LC_MESSAGES/kcm_about-distro.mo share/locale/ar/LC_MESSAGES/kcm_cpu.mo share/locale/ar/LC_MESSAGES/kcm_egl.mo share/locale/ar/LC_MESSAGES/kcm_energyinfo.mo share/locale/ar/LC_MESSAGES/kcm_firmware_security.mo share/locale/ar/LC_MESSAGES/kcm_glx.mo share/locale/ar/LC_MESSAGES/kcm_interrupts.mo share/locale/ar/LC_MESSAGES/kcm_kwinsupportinfo.mo share/locale/ar/LC_MESSAGES/kcm_nic.mo share/locale/ar/LC_MESSAGES/kcm_opencl.mo share/locale/ar/LC_MESSAGES/kcm_pci.mo share/locale/ar/LC_MESSAGES/kcm_vulkan.mo share/locale/ar/LC_MESSAGES/kcm_wayland.mo share/locale/ar/LC_MESSAGES/kcm_xserver.mo share/locale/ar/LC_MESSAGES/kcmdevinfo.mo share/locale/ar/LC_MESSAGES/kcmsamba.mo share/locale/ar/LC_MESSAGES/kcmusb.mo share/locale/az/LC_MESSAGES/kcm_about-distro.mo share/locale/az/LC_MESSAGES/kcm_cpu.mo share/locale/az/LC_MESSAGES/kcm_egl.mo share/locale/az/LC_MESSAGES/kcm_energyinfo.mo share/locale/az/LC_MESSAGES/kcm_firmware_security.mo share/locale/az/LC_MESSAGES/kcm_glx.mo share/locale/az/LC_MESSAGES/kcm_interrupts.mo share/locale/az/LC_MESSAGES/kcm_kwinsupportinfo.mo share/locale/az/LC_MESSAGES/kcm_nic.mo share/locale/az/LC_MESSAGES/kcm_opencl.mo share/locale/az/LC_MESSAGES/kcm_pci.mo share/locale/az/LC_MESSAGES/kcm_vulkan.mo share/locale/az/LC_MESSAGES/kcm_wayland.mo share/locale/az/LC_MESSAGES/kcm_xserver.mo share/locale/az/LC_MESSAGES/kcmdevinfo.mo share/locale/az/LC_MESSAGES/kcmsamba.mo share/locale/az/LC_MESSAGES/kcmusb.mo share/locale/be/LC_MESSAGES/kcmsamba.mo share/locale/be/LC_MESSAGES/kcmusb.mo share/locale/bg/LC_MESSAGES/kcm_about-distro.mo share/locale/bg/LC_MESSAGES/kcm_cpu.mo share/locale/bg/LC_MESSAGES/kcm_egl.mo share/locale/bg/LC_MESSAGES/kcm_energyinfo.mo share/locale/bg/LC_MESSAGES/kcm_firmware_security.mo share/locale/bg/LC_MESSAGES/kcm_glx.mo share/locale/bg/LC_MESSAGES/kcm_interrupts.mo share/locale/bg/LC_MESSAGES/kcm_kwinsupportinfo.mo share/locale/bg/LC_MESSAGES/kcm_nic.mo share/locale/bg/LC_MESSAGES/kcm_pci.mo share/locale/bg/LC_MESSAGES/kcm_vulkan.mo share/locale/bg/LC_MESSAGES/kcm_wayland.mo share/locale/bg/LC_MESSAGES/kcm_xserver.mo share/locale/bg/LC_MESSAGES/kcmdevinfo.mo share/locale/bg/LC_MESSAGES/kcmsamba.mo share/locale/bg/LC_MESSAGES/kcmusb.mo share/locale/bn/LC_MESSAGES/kcmusb.mo share/locale/bn_IN/LC_MESSAGES/kcm_pci.mo share/locale/bn_IN/LC_MESSAGES/kcmsamba.mo share/locale/bn_IN/LC_MESSAGES/kcmusb.mo share/locale/br/LC_MESSAGES/kcmsamba.mo share/locale/br/LC_MESSAGES/kcmusb.mo share/locale/bs/LC_MESSAGES/kcm_about-distro.mo share/locale/bs/LC_MESSAGES/kcm_nic.mo share/locale/bs/LC_MESSAGES/kcm_pci.mo share/locale/bs/LC_MESSAGES/kcmdevinfo.mo share/locale/bs/LC_MESSAGES/kcmsamba.mo share/locale/bs/LC_MESSAGES/kcmusb.mo share/locale/ca/LC_MESSAGES/kcm_about-distro.mo share/locale/ca/LC_MESSAGES/kcm_cpu.mo share/locale/ca/LC_MESSAGES/kcm_egl.mo share/locale/ca/LC_MESSAGES/kcm_energyinfo.mo share/locale/ca/LC_MESSAGES/kcm_firmware_security.mo share/locale/ca/LC_MESSAGES/kcm_glx.mo share/locale/ca/LC_MESSAGES/kcm_interrupts.mo share/locale/ca/LC_MESSAGES/kcm_kwinsupportinfo.mo share/locale/ca/LC_MESSAGES/kcm_nic.mo share/locale/ca/LC_MESSAGES/kcm_opencl.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/kcm_xserver.mo share/locale/ca/LC_MESSAGES/kcmdevinfo.mo share/locale/ca/LC_MESSAGES/kcmsamba.mo share/locale/ca/LC_MESSAGES/kcmusb.mo share/locale/ca@valencia/LC_MESSAGES/kcm_about-distro.mo share/locale/ca@valencia/LC_MESSAGES/kcm_cpu.mo share/locale/ca@valencia/LC_MESSAGES/kcm_egl.mo share/locale/ca@valencia/LC_MESSAGES/kcm_energyinfo.mo share/locale/ca@valencia/LC_MESSAGES/kcm_firmware_security.mo share/locale/ca@valencia/LC_MESSAGES/kcm_glx.mo share/locale/ca@valencia/LC_MESSAGES/kcm_interrupts.mo share/locale/ca@valencia/LC_MESSAGES/kcm_kwinsupportinfo.mo share/locale/ca@valencia/LC_MESSAGES/kcm_nic.mo share/locale/ca@valencia/LC_MESSAGES/kcm_opencl.mo share/locale/ca@valencia/LC_MESSAGES/kcm_pci.mo share/locale/ca@valencia/LC_MESSAGES/kcm_vulkan.mo share/locale/ca@valencia/LC_MESSAGES/kcm_wayland.mo share/locale/ca@valencia/LC_MESSAGES/kcm_xserver.mo share/locale/ca@valencia/LC_MESSAGES/kcmdevinfo.mo share/locale/ca@valencia/LC_MESSAGES/kcmsamba.mo share/locale/ca@valencia/LC_MESSAGES/kcmusb.mo share/locale/cs/LC_MESSAGES/kcm_about-distro.mo share/locale/cs/LC_MESSAGES/kcm_cpu.mo share/locale/cs/LC_MESSAGES/kcm_egl.mo share/locale/cs/LC_MESSAGES/kcm_energyinfo.mo share/locale/cs/LC_MESSAGES/kcm_firmware_security.mo share/locale/cs/LC_MESSAGES/kcm_glx.mo share/locale/cs/LC_MESSAGES/kcm_interrupts.mo share/locale/cs/LC_MESSAGES/kcm_kwinsupportinfo.mo share/locale/cs/LC_MESSAGES/kcm_nic.mo share/locale/cs/LC_MESSAGES/kcm_opencl.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/kcm_xserver.mo share/locale/cs/LC_MESSAGES/kcmdevinfo.mo share/locale/cs/LC_MESSAGES/kcmsamba.mo share/locale/cs/LC_MESSAGES/kcmusb.mo share/locale/csb/LC_MESSAGES/kcmsamba.mo share/locale/csb/LC_MESSAGES/kcmusb.mo share/locale/cy/LC_MESSAGES/kcmsamba.mo share/locale/cy/LC_MESSAGES/kcmusb.mo share/locale/da/LC_MESSAGES/kcm_about-distro.mo share/locale/da/LC_MESSAGES/kcm_energyinfo.mo share/locale/da/LC_MESSAGES/kcm_nic.mo share/locale/da/LC_MESSAGES/kcm_pci.mo share/locale/da/LC_MESSAGES/kcmdevinfo.mo share/locale/da/LC_MESSAGES/kcmsamba.mo share/locale/da/LC_MESSAGES/kcmusb.mo share/locale/de/LC_MESSAGES/kcm_about-distro.mo share/locale/de/LC_MESSAGES/kcm_cpu.mo share/locale/de/LC_MESSAGES/kcm_egl.mo share/locale/de/LC_MESSAGES/kcm_energyinfo.mo share/locale/de/LC_MESSAGES/kcm_firmware_security.mo share/locale/de/LC_MESSAGES/kcm_glx.mo share/locale/de/LC_MESSAGES/kcm_interrupts.mo share/locale/de/LC_MESSAGES/kcm_kwinsupportinfo.mo share/locale/de/LC_MESSAGES/kcm_nic.mo share/locale/de/LC_MESSAGES/kcm_opencl.mo share/locale/de/LC_MESSAGES/kcm_pci.mo share/locale/de/LC_MESSAGES/kcm_vulkan.mo share/locale/de/LC_MESSAGES/kcm_wayland.mo share/locale/de/LC_MESSAGES/kcm_xserver.mo share/locale/de/LC_MESSAGES/kcmdevinfo.mo share/locale/de/LC_MESSAGES/kcmsamba.mo share/locale/de/LC_MESSAGES/kcmusb.mo share/locale/el/LC_MESSAGES/kcm_about-distro.mo share/locale/el/LC_MESSAGES/kcm_cpu.mo share/locale/el/LC_MESSAGES/kcm_egl.mo share/locale/el/LC_MESSAGES/kcm_energyinfo.mo share/locale/el/LC_MESSAGES/kcm_glx.mo share/locale/el/LC_MESSAGES/kcm_interrupts.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/kcm_xserver.mo share/locale/el/LC_MESSAGES/kcmdevinfo.mo share/locale/el/LC_MESSAGES/kcmsamba.mo share/locale/el/LC_MESSAGES/kcmusb.mo share/locale/en_GB/LC_MESSAGES/kcm_about-distro.mo share/locale/en_GB/LC_MESSAGES/kcm_cpu.mo share/locale/en_GB/LC_MESSAGES/kcm_egl.mo share/locale/en_GB/LC_MESSAGES/kcm_energyinfo.mo share/locale/en_GB/LC_MESSAGES/kcm_firmware_security.mo share/locale/en_GB/LC_MESSAGES/kcm_glx.mo share/locale/en_GB/LC_MESSAGES/kcm_interrupts.mo share/locale/en_GB/LC_MESSAGES/kcm_kwinsupportinfo.mo share/locale/en_GB/LC_MESSAGES/kcm_nic.mo share/locale/en_GB/LC_MESSAGES/kcm_opencl.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/kcm_xserver.mo share/locale/en_GB/LC_MESSAGES/kcmdevinfo.mo share/locale/en_GB/LC_MESSAGES/kcmsamba.mo share/locale/en_GB/LC_MESSAGES/kcmusb.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/kcmsamba.mo share/locale/eo/LC_MESSAGES/kcmusb.mo share/locale/es/LC_MESSAGES/kcm_about-distro.mo share/locale/es/LC_MESSAGES/kcm_cpu.mo share/locale/es/LC_MESSAGES/kcm_egl.mo share/locale/es/LC_MESSAGES/kcm_energyinfo.mo share/locale/es/LC_MESSAGES/kcm_firmware_security.mo share/locale/es/LC_MESSAGES/kcm_glx.mo share/locale/es/LC_MESSAGES/kcm_interrupts.mo share/locale/es/LC_MESSAGES/kcm_kwinsupportinfo.mo share/locale/es/LC_MESSAGES/kcm_nic.mo share/locale/es/LC_MESSAGES/kcm_opencl.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/kcm_xserver.mo share/locale/es/LC_MESSAGES/kcmdevinfo.mo share/locale/es/LC_MESSAGES/kcmsamba.mo share/locale/es/LC_MESSAGES/kcmusb.mo share/locale/et/LC_MESSAGES/kcm_about-distro.mo share/locale/et/LC_MESSAGES/kcm_cpu.mo share/locale/et/LC_MESSAGES/kcm_egl.mo share/locale/et/LC_MESSAGES/kcm_energyinfo.mo share/locale/et/LC_MESSAGES/kcm_firmware_security.mo share/locale/et/LC_MESSAGES/kcm_glx.mo share/locale/et/LC_MESSAGES/kcm_interrupts.mo share/locale/et/LC_MESSAGES/kcm_kwinsupportinfo.mo share/locale/et/LC_MESSAGES/kcm_nic.mo share/locale/et/LC_MESSAGES/kcm_pci.mo share/locale/et/LC_MESSAGES/kcm_vulkan.mo share/locale/et/LC_MESSAGES/kcm_wayland.mo share/locale/et/LC_MESSAGES/kcm_xserver.mo share/locale/et/LC_MESSAGES/kcmdevinfo.mo share/locale/et/LC_MESSAGES/kcmsamba.mo share/locale/et/LC_MESSAGES/kcmusb.mo share/locale/eu/LC_MESSAGES/kcm_about-distro.mo share/locale/eu/LC_MESSAGES/kcm_cpu.mo share/locale/eu/LC_MESSAGES/kcm_egl.mo share/locale/eu/LC_MESSAGES/kcm_energyinfo.mo share/locale/eu/LC_MESSAGES/kcm_firmware_security.mo share/locale/eu/LC_MESSAGES/kcm_glx.mo share/locale/eu/LC_MESSAGES/kcm_interrupts.mo share/locale/eu/LC_MESSAGES/kcm_kwinsupportinfo.mo share/locale/eu/LC_MESSAGES/kcm_nic.mo share/locale/eu/LC_MESSAGES/kcm_opencl.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/kcm_xserver.mo share/locale/eu/LC_MESSAGES/kcmdevinfo.mo share/locale/eu/LC_MESSAGES/kcmsamba.mo share/locale/eu/LC_MESSAGES/kcmusb.mo share/locale/fa/LC_MESSAGES/kcm_pci.mo share/locale/fa/LC_MESSAGES/kcmdevinfo.mo share/locale/fa/LC_MESSAGES/kcmsamba.mo share/locale/fa/LC_MESSAGES/kcmusb.mo share/locale/fi/LC_MESSAGES/kcm_about-distro.mo share/locale/fi/LC_MESSAGES/kcm_cpu.mo share/locale/fi/LC_MESSAGES/kcm_egl.mo share/locale/fi/LC_MESSAGES/kcm_energyinfo.mo share/locale/fi/LC_MESSAGES/kcm_firmware_security.mo share/locale/fi/LC_MESSAGES/kcm_glx.mo share/locale/fi/LC_MESSAGES/kcm_interrupts.mo share/locale/fi/LC_MESSAGES/kcm_kwinsupportinfo.mo share/locale/fi/LC_MESSAGES/kcm_nic.mo +share/locale/fi/LC_MESSAGES/kcm_opencl.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/kcm_xserver.mo share/locale/fi/LC_MESSAGES/kcmdevinfo.mo share/locale/fi/LC_MESSAGES/kcmsamba.mo share/locale/fi/LC_MESSAGES/kcmusb.mo share/locale/fr/LC_MESSAGES/kcm_about-distro.mo share/locale/fr/LC_MESSAGES/kcm_cpu.mo share/locale/fr/LC_MESSAGES/kcm_egl.mo share/locale/fr/LC_MESSAGES/kcm_energyinfo.mo share/locale/fr/LC_MESSAGES/kcm_firmware_security.mo share/locale/fr/LC_MESSAGES/kcm_glx.mo share/locale/fr/LC_MESSAGES/kcm_interrupts.mo share/locale/fr/LC_MESSAGES/kcm_kwinsupportinfo.mo share/locale/fr/LC_MESSAGES/kcm_nic.mo share/locale/fr/LC_MESSAGES/kcm_opencl.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/kcm_xserver.mo share/locale/fr/LC_MESSAGES/kcmdevinfo.mo share/locale/fr/LC_MESSAGES/kcmsamba.mo share/locale/fr/LC_MESSAGES/kcmusb.mo share/locale/fy/LC_MESSAGES/kcm_pci.mo share/locale/fy/LC_MESSAGES/kcmsamba.mo share/locale/fy/LC_MESSAGES/kcmusb.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/kcmsamba.mo share/locale/ga/LC_MESSAGES/kcmusb.mo share/locale/gl/LC_MESSAGES/kcm_about-distro.mo share/locale/gl/LC_MESSAGES/kcm_energyinfo.mo share/locale/gl/LC_MESSAGES/kcm_nic.mo share/locale/gl/LC_MESSAGES/kcm_pci.mo share/locale/gl/LC_MESSAGES/kcmdevinfo.mo share/locale/gl/LC_MESSAGES/kcmsamba.mo share/locale/gl/LC_MESSAGES/kcmusb.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/kcmsamba.mo share/locale/gu/LC_MESSAGES/kcmusb.mo share/locale/he/LC_MESSAGES/kcm_about-distro.mo share/locale/he/LC_MESSAGES/kcm_energyinfo.mo share/locale/he/LC_MESSAGES/kcm_nic.mo share/locale/he/LC_MESSAGES/kcm_pci.mo share/locale/he/LC_MESSAGES/kcmdevinfo.mo share/locale/he/LC_MESSAGES/kcmsamba.mo share/locale/he/LC_MESSAGES/kcmusb.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/kcmsamba.mo share/locale/hi/LC_MESSAGES/kcmusb.mo share/locale/hne/LC_MESSAGES/kcm_pci.mo share/locale/hne/LC_MESSAGES/kcmsamba.mo share/locale/hne/LC_MESSAGES/kcmusb.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/kcmsamba.mo share/locale/hr/LC_MESSAGES/kcmusb.mo share/locale/hsb/LC_MESSAGES/kcm_pci.mo share/locale/hsb/LC_MESSAGES/kcmsamba.mo share/locale/hsb/LC_MESSAGES/kcmusb.mo share/locale/hu/LC_MESSAGES/kcm_about-distro.mo share/locale/hu/LC_MESSAGES/kcm_energyinfo.mo share/locale/hu/LC_MESSAGES/kcm_interrupts.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/kcmsamba.mo share/locale/hu/LC_MESSAGES/kcmusb.mo share/locale/ia/LC_MESSAGES/kcm_about-distro.mo share/locale/ia/LC_MESSAGES/kcm_cpu.mo share/locale/ia/LC_MESSAGES/kcm_egl.mo share/locale/ia/LC_MESSAGES/kcm_energyinfo.mo share/locale/ia/LC_MESSAGES/kcm_firmware_security.mo share/locale/ia/LC_MESSAGES/kcm_glx.mo share/locale/ia/LC_MESSAGES/kcm_interrupts.mo share/locale/ia/LC_MESSAGES/kcm_kwinsupportinfo.mo share/locale/ia/LC_MESSAGES/kcm_nic.mo share/locale/ia/LC_MESSAGES/kcm_opencl.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/kcm_xserver.mo share/locale/ia/LC_MESSAGES/kcmdevinfo.mo share/locale/ia/LC_MESSAGES/kcmsamba.mo share/locale/ia/LC_MESSAGES/kcmusb.mo share/locale/id/LC_MESSAGES/kcm_about-distro.mo share/locale/id/LC_MESSAGES/kcm_energyinfo.mo share/locale/id/LC_MESSAGES/kcm_nic.mo share/locale/id/LC_MESSAGES/kcm_pci.mo share/locale/id/LC_MESSAGES/kcmdevinfo.mo share/locale/id/LC_MESSAGES/kcmsamba.mo share/locale/id/LC_MESSAGES/kcmusb.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/kcmsamba.mo share/locale/is/LC_MESSAGES/kcmusb.mo share/locale/it/LC_MESSAGES/kcm_about-distro.mo share/locale/it/LC_MESSAGES/kcm_cpu.mo share/locale/it/LC_MESSAGES/kcm_egl.mo share/locale/it/LC_MESSAGES/kcm_energyinfo.mo share/locale/it/LC_MESSAGES/kcm_firmware_security.mo share/locale/it/LC_MESSAGES/kcm_glx.mo share/locale/it/LC_MESSAGES/kcm_interrupts.mo share/locale/it/LC_MESSAGES/kcm_kwinsupportinfo.mo share/locale/it/LC_MESSAGES/kcm_nic.mo share/locale/it/LC_MESSAGES/kcm_opencl.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/kcm_xserver.mo share/locale/it/LC_MESSAGES/kcmdevinfo.mo share/locale/it/LC_MESSAGES/kcmsamba.mo share/locale/it/LC_MESSAGES/kcmusb.mo share/locale/ja/LC_MESSAGES/kcm_about-distro.mo share/locale/ja/LC_MESSAGES/kcm_cpu.mo share/locale/ja/LC_MESSAGES/kcm_egl.mo share/locale/ja/LC_MESSAGES/kcm_energyinfo.mo share/locale/ja/LC_MESSAGES/kcm_firmware_security.mo share/locale/ja/LC_MESSAGES/kcm_glx.mo share/locale/ja/LC_MESSAGES/kcm_interrupts.mo share/locale/ja/LC_MESSAGES/kcm_kwinsupportinfo.mo share/locale/ja/LC_MESSAGES/kcm_nic.mo share/locale/ja/LC_MESSAGES/kcm_pci.mo share/locale/ja/LC_MESSAGES/kcm_vulkan.mo share/locale/ja/LC_MESSAGES/kcm_wayland.mo share/locale/ja/LC_MESSAGES/kcm_xserver.mo share/locale/ja/LC_MESSAGES/kcmdevinfo.mo share/locale/ja/LC_MESSAGES/kcmsamba.mo share/locale/ja/LC_MESSAGES/kcmusb.mo share/locale/ka/LC_MESSAGES/kcm_about-distro.mo share/locale/ka/LC_MESSAGES/kcm_cpu.mo share/locale/ka/LC_MESSAGES/kcm_egl.mo share/locale/ka/LC_MESSAGES/kcm_energyinfo.mo share/locale/ka/LC_MESSAGES/kcm_firmware_security.mo share/locale/ka/LC_MESSAGES/kcm_glx.mo share/locale/ka/LC_MESSAGES/kcm_interrupts.mo share/locale/ka/LC_MESSAGES/kcm_kwinsupportinfo.mo share/locale/ka/LC_MESSAGES/kcm_nic.mo share/locale/ka/LC_MESSAGES/kcm_opencl.mo share/locale/ka/LC_MESSAGES/kcm_pci.mo share/locale/ka/LC_MESSAGES/kcm_vulkan.mo share/locale/ka/LC_MESSAGES/kcm_wayland.mo share/locale/ka/LC_MESSAGES/kcm_xserver.mo share/locale/ka/LC_MESSAGES/kcmdevinfo.mo share/locale/ka/LC_MESSAGES/kcmsamba.mo share/locale/ka/LC_MESSAGES/kcmusb.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/kcmsamba.mo share/locale/kk/LC_MESSAGES/kcmusb.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/kcmsamba.mo share/locale/km/LC_MESSAGES/kcmusb.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/kcmsamba.mo share/locale/kn/LC_MESSAGES/kcmusb.mo share/locale/ko/LC_MESSAGES/kcm_about-distro.mo share/locale/ko/LC_MESSAGES/kcm_cpu.mo share/locale/ko/LC_MESSAGES/kcm_egl.mo share/locale/ko/LC_MESSAGES/kcm_energyinfo.mo share/locale/ko/LC_MESSAGES/kcm_firmware_security.mo share/locale/ko/LC_MESSAGES/kcm_glx.mo share/locale/ko/LC_MESSAGES/kcm_interrupts.mo share/locale/ko/LC_MESSAGES/kcm_kwinsupportinfo.mo share/locale/ko/LC_MESSAGES/kcm_nic.mo +share/locale/ko/LC_MESSAGES/kcm_opencl.mo share/locale/ko/LC_MESSAGES/kcm_pci.mo share/locale/ko/LC_MESSAGES/kcm_vulkan.mo share/locale/ko/LC_MESSAGES/kcm_wayland.mo share/locale/ko/LC_MESSAGES/kcm_xserver.mo share/locale/ko/LC_MESSAGES/kcmdevinfo.mo share/locale/ko/LC_MESSAGES/kcmsamba.mo share/locale/ko/LC_MESSAGES/kcmusb.mo share/locale/ku/LC_MESSAGES/kcm_pci.mo share/locale/ku/LC_MESSAGES/kcmsamba.mo share/locale/ku/LC_MESSAGES/kcmusb.mo share/locale/lt/LC_MESSAGES/kcm_about-distro.mo share/locale/lt/LC_MESSAGES/kcm_energyinfo.mo share/locale/lt/LC_MESSAGES/kcm_nic.mo share/locale/lt/LC_MESSAGES/kcm_pci.mo share/locale/lt/LC_MESSAGES/kcmdevinfo.mo share/locale/lt/LC_MESSAGES/kcmsamba.mo share/locale/lt/LC_MESSAGES/kcmusb.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/kcmsamba.mo share/locale/lv/LC_MESSAGES/kcmusb.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/kcmsamba.mo share/locale/mai/LC_MESSAGES/kcmusb.mo share/locale/mk/LC_MESSAGES/kcm_pci.mo share/locale/mk/LC_MESSAGES/kcmsamba.mo share/locale/mk/LC_MESSAGES/kcmusb.mo share/locale/ml/LC_MESSAGES/kcm_about-distro.mo share/locale/ml/LC_MESSAGES/kcm_energyinfo.mo share/locale/ml/LC_MESSAGES/kcm_nic.mo share/locale/ml/LC_MESSAGES/kcm_pci.mo share/locale/ml/LC_MESSAGES/kcmdevinfo.mo share/locale/ml/LC_MESSAGES/kcmsamba.mo share/locale/ml/LC_MESSAGES/kcmusb.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/kcmsamba.mo share/locale/mr/LC_MESSAGES/kcmusb.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/kcmsamba.mo share/locale/ms/LC_MESSAGES/kcmusb.mo share/locale/nb/LC_MESSAGES/kcm_about-distro.mo share/locale/nb/LC_MESSAGES/kcm_energyinfo.mo share/locale/nb/LC_MESSAGES/kcm_nic.mo share/locale/nb/LC_MESSAGES/kcm_pci.mo share/locale/nb/LC_MESSAGES/kcmdevinfo.mo share/locale/nb/LC_MESSAGES/kcmsamba.mo share/locale/nb/LC_MESSAGES/kcmusb.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/kcmsamba.mo share/locale/nds/LC_MESSAGES/kcmusb.mo share/locale/ne/LC_MESSAGES/kcmsamba.mo share/locale/ne/LC_MESSAGES/kcmusb.mo share/locale/nl/LC_MESSAGES/kcm_about-distro.mo share/locale/nl/LC_MESSAGES/kcm_cpu.mo share/locale/nl/LC_MESSAGES/kcm_egl.mo share/locale/nl/LC_MESSAGES/kcm_energyinfo.mo share/locale/nl/LC_MESSAGES/kcm_firmware_security.mo share/locale/nl/LC_MESSAGES/kcm_glx.mo share/locale/nl/LC_MESSAGES/kcm_interrupts.mo share/locale/nl/LC_MESSAGES/kcm_kwinsupportinfo.mo share/locale/nl/LC_MESSAGES/kcm_nic.mo share/locale/nl/LC_MESSAGES/kcm_opencl.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/kcm_xserver.mo share/locale/nl/LC_MESSAGES/kcmdevinfo.mo share/locale/nl/LC_MESSAGES/kcmsamba.mo share/locale/nl/LC_MESSAGES/kcmusb.mo share/locale/nn/LC_MESSAGES/kcm_about-distro.mo share/locale/nn/LC_MESSAGES/kcm_cpu.mo share/locale/nn/LC_MESSAGES/kcm_egl.mo share/locale/nn/LC_MESSAGES/kcm_energyinfo.mo share/locale/nn/LC_MESSAGES/kcm_firmware_security.mo share/locale/nn/LC_MESSAGES/kcm_glx.mo share/locale/nn/LC_MESSAGES/kcm_interrupts.mo share/locale/nn/LC_MESSAGES/kcm_kwinsupportinfo.mo share/locale/nn/LC_MESSAGES/kcm_nic.mo share/locale/nn/LC_MESSAGES/kcm_opencl.mo share/locale/nn/LC_MESSAGES/kcm_pci.mo share/locale/nn/LC_MESSAGES/kcm_vulkan.mo share/locale/nn/LC_MESSAGES/kcm_wayland.mo share/locale/nn/LC_MESSAGES/kcm_xserver.mo share/locale/nn/LC_MESSAGES/kcmdevinfo.mo share/locale/nn/LC_MESSAGES/kcmsamba.mo share/locale/nn/LC_MESSAGES/kcmusb.mo share/locale/oc/LC_MESSAGES/kcmsamba.mo share/locale/oc/LC_MESSAGES/kcmusb.mo share/locale/pa/LC_MESSAGES/kcm_about-distro.mo share/locale/pa/LC_MESSAGES/kcm_energyinfo.mo share/locale/pa/LC_MESSAGES/kcm_nic.mo share/locale/pa/LC_MESSAGES/kcm_pci.mo share/locale/pa/LC_MESSAGES/kcmdevinfo.mo share/locale/pa/LC_MESSAGES/kcmsamba.mo share/locale/pa/LC_MESSAGES/kcmusb.mo share/locale/pl/LC_MESSAGES/kcm_about-distro.mo share/locale/pl/LC_MESSAGES/kcm_cpu.mo share/locale/pl/LC_MESSAGES/kcm_egl.mo share/locale/pl/LC_MESSAGES/kcm_energyinfo.mo share/locale/pl/LC_MESSAGES/kcm_firmware_security.mo share/locale/pl/LC_MESSAGES/kcm_glx.mo share/locale/pl/LC_MESSAGES/kcm_interrupts.mo share/locale/pl/LC_MESSAGES/kcm_kwinsupportinfo.mo share/locale/pl/LC_MESSAGES/kcm_nic.mo share/locale/pl/LC_MESSAGES/kcm_opencl.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/kcm_xserver.mo share/locale/pl/LC_MESSAGES/kcmdevinfo.mo share/locale/pl/LC_MESSAGES/kcmsamba.mo share/locale/pl/LC_MESSAGES/kcmusb.mo share/locale/pt/LC_MESSAGES/kcm_about-distro.mo share/locale/pt/LC_MESSAGES/kcm_cpu.mo share/locale/pt/LC_MESSAGES/kcm_egl.mo share/locale/pt/LC_MESSAGES/kcm_energyinfo.mo share/locale/pt/LC_MESSAGES/kcm_firmware_security.mo share/locale/pt/LC_MESSAGES/kcm_glx.mo share/locale/pt/LC_MESSAGES/kcm_interrupts.mo share/locale/pt/LC_MESSAGES/kcm_kwinsupportinfo.mo share/locale/pt/LC_MESSAGES/kcm_nic.mo share/locale/pt/LC_MESSAGES/kcm_opencl.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/kcm_xserver.mo share/locale/pt/LC_MESSAGES/kcmdevinfo.mo share/locale/pt/LC_MESSAGES/kcmsamba.mo share/locale/pt/LC_MESSAGES/kcmusb.mo share/locale/pt_BR/LC_MESSAGES/kcm_about-distro.mo share/locale/pt_BR/LC_MESSAGES/kcm_cpu.mo share/locale/pt_BR/LC_MESSAGES/kcm_egl.mo share/locale/pt_BR/LC_MESSAGES/kcm_energyinfo.mo share/locale/pt_BR/LC_MESSAGES/kcm_firmware_security.mo share/locale/pt_BR/LC_MESSAGES/kcm_glx.mo share/locale/pt_BR/LC_MESSAGES/kcm_interrupts.mo share/locale/pt_BR/LC_MESSAGES/kcm_kwinsupportinfo.mo share/locale/pt_BR/LC_MESSAGES/kcm_nic.mo share/locale/pt_BR/LC_MESSAGES/kcm_opencl.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/kcm_xserver.mo share/locale/pt_BR/LC_MESSAGES/kcmdevinfo.mo share/locale/pt_BR/LC_MESSAGES/kcmsamba.mo share/locale/pt_BR/LC_MESSAGES/kcmusb.mo share/locale/ro/LC_MESSAGES/kcm_about-distro.mo share/locale/ro/LC_MESSAGES/kcm_cpu.mo share/locale/ro/LC_MESSAGES/kcm_egl.mo share/locale/ro/LC_MESSAGES/kcm_energyinfo.mo share/locale/ro/LC_MESSAGES/kcm_firmware_security.mo share/locale/ro/LC_MESSAGES/kcm_glx.mo share/locale/ro/LC_MESSAGES/kcm_interrupts.mo share/locale/ro/LC_MESSAGES/kcm_kwinsupportinfo.mo share/locale/ro/LC_MESSAGES/kcm_nic.mo share/locale/ro/LC_MESSAGES/kcm_pci.mo share/locale/ro/LC_MESSAGES/kcm_vulkan.mo share/locale/ro/LC_MESSAGES/kcm_wayland.mo share/locale/ro/LC_MESSAGES/kcm_xserver.mo share/locale/ro/LC_MESSAGES/kcmdevinfo.mo share/locale/ro/LC_MESSAGES/kcmsamba.mo share/locale/ro/LC_MESSAGES/kcmusb.mo share/locale/ru/LC_MESSAGES/kcm_about-distro.mo share/locale/ru/LC_MESSAGES/kcm_cpu.mo share/locale/ru/LC_MESSAGES/kcm_egl.mo share/locale/ru/LC_MESSAGES/kcm_energyinfo.mo share/locale/ru/LC_MESSAGES/kcm_firmware_security.mo share/locale/ru/LC_MESSAGES/kcm_glx.mo share/locale/ru/LC_MESSAGES/kcm_interrupts.mo share/locale/ru/LC_MESSAGES/kcm_kwinsupportinfo.mo share/locale/ru/LC_MESSAGES/kcm_nic.mo share/locale/ru/LC_MESSAGES/kcm_opencl.mo share/locale/ru/LC_MESSAGES/kcm_pci.mo share/locale/ru/LC_MESSAGES/kcm_vulkan.mo share/locale/ru/LC_MESSAGES/kcm_wayland.mo share/locale/ru/LC_MESSAGES/kcm_xserver.mo share/locale/ru/LC_MESSAGES/kcmdevinfo.mo share/locale/ru/LC_MESSAGES/kcmsamba.mo share/locale/ru/LC_MESSAGES/kcmusb.mo share/locale/se/LC_MESSAGES/kcm_nic.mo share/locale/se/LC_MESSAGES/kcmsamba.mo share/locale/se/LC_MESSAGES/kcmusb.mo share/locale/si/LC_MESSAGES/kcm_pci.mo share/locale/si/LC_MESSAGES/kcmdevinfo.mo share/locale/si/LC_MESSAGES/kcmsamba.mo share/locale/si/LC_MESSAGES/kcmusb.mo share/locale/sk/LC_MESSAGES/kcm_about-distro.mo share/locale/sk/LC_MESSAGES/kcm_cpu.mo share/locale/sk/LC_MESSAGES/kcm_egl.mo share/locale/sk/LC_MESSAGES/kcm_energyinfo.mo share/locale/sk/LC_MESSAGES/kcm_firmware_security.mo share/locale/sk/LC_MESSAGES/kcm_glx.mo share/locale/sk/LC_MESSAGES/kcm_interrupts.mo share/locale/sk/LC_MESSAGES/kcm_kwinsupportinfo.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/kcm_xserver.mo share/locale/sk/LC_MESSAGES/kcmdevinfo.mo share/locale/sk/LC_MESSAGES/kcmsamba.mo share/locale/sk/LC_MESSAGES/kcmusb.mo share/locale/sl/LC_MESSAGES/kcm_about-distro.mo share/locale/sl/LC_MESSAGES/kcm_cpu.mo share/locale/sl/LC_MESSAGES/kcm_egl.mo share/locale/sl/LC_MESSAGES/kcm_energyinfo.mo share/locale/sl/LC_MESSAGES/kcm_firmware_security.mo share/locale/sl/LC_MESSAGES/kcm_glx.mo share/locale/sl/LC_MESSAGES/kcm_interrupts.mo share/locale/sl/LC_MESSAGES/kcm_kwinsupportinfo.mo share/locale/sl/LC_MESSAGES/kcm_nic.mo share/locale/sl/LC_MESSAGES/kcm_opencl.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/kcm_xserver.mo share/locale/sl/LC_MESSAGES/kcmdevinfo.mo share/locale/sl/LC_MESSAGES/kcmsamba.mo share/locale/sl/LC_MESSAGES/kcmusb.mo share/locale/sq/LC_MESSAGES/kcm_nic.mo share/locale/sq/LC_MESSAGES/kcm_pci.mo share/locale/sq/LC_MESSAGES/kcmsamba.mo share/locale/sq/LC_MESSAGES/kcmusb.mo share/locale/sr/LC_MESSAGES/kcm_about-distro.mo share/locale/sr/LC_MESSAGES/kcm_energyinfo.mo share/locale/sr/LC_MESSAGES/kcm_nic.mo share/locale/sr/LC_MESSAGES/kcm_pci.mo share/locale/sr/LC_MESSAGES/kcmdevinfo.mo share/locale/sr/LC_MESSAGES/kcmsamba.mo share/locale/sr/LC_MESSAGES/kcmusb.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_about-distro.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_energyinfo.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_nic.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_pci.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmdevinfo.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmsamba.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmusb.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_about-distro.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_energyinfo.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_nic.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_pci.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmdevinfo.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmsamba.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmusb.mo share/locale/sr@latin/LC_MESSAGES/kcm_about-distro.mo share/locale/sr@latin/LC_MESSAGES/kcm_energyinfo.mo share/locale/sr@latin/LC_MESSAGES/kcm_nic.mo share/locale/sr@latin/LC_MESSAGES/kcm_pci.mo share/locale/sr@latin/LC_MESSAGES/kcmdevinfo.mo share/locale/sr@latin/LC_MESSAGES/kcmsamba.mo share/locale/sr@latin/LC_MESSAGES/kcmusb.mo share/locale/sv/LC_MESSAGES/kcm_about-distro.mo share/locale/sv/LC_MESSAGES/kcm_cpu.mo share/locale/sv/LC_MESSAGES/kcm_egl.mo share/locale/sv/LC_MESSAGES/kcm_energyinfo.mo share/locale/sv/LC_MESSAGES/kcm_firmware_security.mo share/locale/sv/LC_MESSAGES/kcm_glx.mo share/locale/sv/LC_MESSAGES/kcm_interrupts.mo share/locale/sv/LC_MESSAGES/kcm_kwinsupportinfo.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/kcm_xserver.mo share/locale/sv/LC_MESSAGES/kcmdevinfo.mo share/locale/sv/LC_MESSAGES/kcmsamba.mo share/locale/sv/LC_MESSAGES/kcmusb.mo share/locale/ta/LC_MESSAGES/kcm_about-distro.mo share/locale/ta/LC_MESSAGES/kcm_firmware_security.mo share/locale/ta/LC_MESSAGES/kcm_interrupts.mo share/locale/ta/LC_MESSAGES/kcm_pci.mo share/locale/ta/LC_MESSAGES/kcmdevinfo.mo share/locale/ta/LC_MESSAGES/kcmsamba.mo share/locale/ta/LC_MESSAGES/kcmusb.mo share/locale/te/LC_MESSAGES/kcm_pci.mo share/locale/te/LC_MESSAGES/kcmsamba.mo share/locale/te/LC_MESSAGES/kcmusb.mo share/locale/tg/LC_MESSAGES/kcm_energyinfo.mo share/locale/tg/LC_MESSAGES/kcm_nic.mo share/locale/tg/LC_MESSAGES/kcm_pci.mo share/locale/tg/LC_MESSAGES/kcmdevinfo.mo share/locale/tg/LC_MESSAGES/kcmsamba.mo share/locale/tg/LC_MESSAGES/kcmusb.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/kcmsamba.mo share/locale/th/LC_MESSAGES/kcmusb.mo share/locale/tr/LC_MESSAGES/kcm_about-distro.mo share/locale/tr/LC_MESSAGES/kcm_cpu.mo share/locale/tr/LC_MESSAGES/kcm_egl.mo share/locale/tr/LC_MESSAGES/kcm_energyinfo.mo share/locale/tr/LC_MESSAGES/kcm_firmware_security.mo share/locale/tr/LC_MESSAGES/kcm_glx.mo share/locale/tr/LC_MESSAGES/kcm_interrupts.mo share/locale/tr/LC_MESSAGES/kcm_kwinsupportinfo.mo share/locale/tr/LC_MESSAGES/kcm_nic.mo share/locale/tr/LC_MESSAGES/kcm_opencl.mo share/locale/tr/LC_MESSAGES/kcm_pci.mo share/locale/tr/LC_MESSAGES/kcm_vulkan.mo share/locale/tr/LC_MESSAGES/kcm_wayland.mo share/locale/tr/LC_MESSAGES/kcm_xserver.mo share/locale/tr/LC_MESSAGES/kcmdevinfo.mo share/locale/tr/LC_MESSAGES/kcmsamba.mo share/locale/tr/LC_MESSAGES/kcmusb.mo share/locale/ug/LC_MESSAGES/kcm_about-distro.mo share/locale/ug/LC_MESSAGES/kcm_nic.mo share/locale/ug/LC_MESSAGES/kcm_pci.mo share/locale/ug/LC_MESSAGES/kcmdevinfo.mo share/locale/ug/LC_MESSAGES/kcmsamba.mo share/locale/ug/LC_MESSAGES/kcmusb.mo share/locale/uk/LC_MESSAGES/kcm_about-distro.mo share/locale/uk/LC_MESSAGES/kcm_cpu.mo share/locale/uk/LC_MESSAGES/kcm_egl.mo share/locale/uk/LC_MESSAGES/kcm_energyinfo.mo share/locale/uk/LC_MESSAGES/kcm_firmware_security.mo share/locale/uk/LC_MESSAGES/kcm_glx.mo share/locale/uk/LC_MESSAGES/kcm_interrupts.mo share/locale/uk/LC_MESSAGES/kcm_kwinsupportinfo.mo share/locale/uk/LC_MESSAGES/kcm_nic.mo share/locale/uk/LC_MESSAGES/kcm_opencl.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/kcm_xserver.mo share/locale/uk/LC_MESSAGES/kcmdevinfo.mo share/locale/uk/LC_MESSAGES/kcmsamba.mo share/locale/uk/LC_MESSAGES/kcmusb.mo share/locale/uz/LC_MESSAGES/kcmsamba.mo share/locale/uz/LC_MESSAGES/kcmusb.mo share/locale/uz@cyrillic/LC_MESSAGES/kcmsamba.mo share/locale/uz@cyrillic/LC_MESSAGES/kcmusb.mo share/locale/vi/LC_MESSAGES/kcm_about-distro.mo share/locale/vi/LC_MESSAGES/kcm_cpu.mo share/locale/vi/LC_MESSAGES/kcm_egl.mo share/locale/vi/LC_MESSAGES/kcm_energyinfo.mo share/locale/vi/LC_MESSAGES/kcm_firmware_security.mo share/locale/vi/LC_MESSAGES/kcm_glx.mo share/locale/vi/LC_MESSAGES/kcm_interrupts.mo share/locale/vi/LC_MESSAGES/kcm_kwinsupportinfo.mo share/locale/vi/LC_MESSAGES/kcm_nic.mo share/locale/vi/LC_MESSAGES/kcm_opencl.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/kcm_xserver.mo share/locale/vi/LC_MESSAGES/kcmdevinfo.mo share/locale/vi/LC_MESSAGES/kcmsamba.mo share/locale/vi/LC_MESSAGES/kcmusb.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/kcmsamba.mo share/locale/wa/LC_MESSAGES/kcmusb.mo share/locale/xh/LC_MESSAGES/kcmsamba.mo share/locale/xh/LC_MESSAGES/kcmusb.mo share/locale/zh_CN/LC_MESSAGES/kcm_about-distro.mo share/locale/zh_CN/LC_MESSAGES/kcm_cpu.mo share/locale/zh_CN/LC_MESSAGES/kcm_egl.mo share/locale/zh_CN/LC_MESSAGES/kcm_energyinfo.mo share/locale/zh_CN/LC_MESSAGES/kcm_firmware_security.mo share/locale/zh_CN/LC_MESSAGES/kcm_glx.mo share/locale/zh_CN/LC_MESSAGES/kcm_interrupts.mo share/locale/zh_CN/LC_MESSAGES/kcm_kwinsupportinfo.mo share/locale/zh_CN/LC_MESSAGES/kcm_nic.mo share/locale/zh_CN/LC_MESSAGES/kcm_opencl.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/kcm_xserver.mo share/locale/zh_CN/LC_MESSAGES/kcmdevinfo.mo share/locale/zh_CN/LC_MESSAGES/kcmsamba.mo share/locale/zh_CN/LC_MESSAGES/kcmusb.mo share/locale/zh_TW/LC_MESSAGES/kcm_about-distro.mo share/locale/zh_TW/LC_MESSAGES/kcm_cpu.mo share/locale/zh_TW/LC_MESSAGES/kcm_egl.mo share/locale/zh_TW/LC_MESSAGES/kcm_energyinfo.mo share/locale/zh_TW/LC_MESSAGES/kcm_firmware_security.mo share/locale/zh_TW/LC_MESSAGES/kcm_glx.mo share/locale/zh_TW/LC_MESSAGES/kcm_interrupts.mo share/locale/zh_TW/LC_MESSAGES/kcm_kwinsupportinfo.mo share/locale/zh_TW/LC_MESSAGES/kcm_nic.mo share/locale/zh_TW/LC_MESSAGES/kcm_opencl.mo share/locale/zh_TW/LC_MESSAGES/kcm_pci.mo share/locale/zh_TW/LC_MESSAGES/kcm_vulkan.mo share/locale/zh_TW/LC_MESSAGES/kcm_wayland.mo share/locale/zh_TW/LC_MESSAGES/kcm_xserver.mo share/locale/zh_TW/LC_MESSAGES/kcmdevinfo.mo share/locale/zh_TW/LC_MESSAGES/kcmsamba.mo share/locale/zh_TW/LC_MESSAGES/kcmusb.mo share/metainfo/org.kde.kinfocenter.appdata.xml share/polkit-1/actions/org.kde.kinfocenter.dmidecode.policy diff --git a/sysutils/plasma5-kmenuedit/distinfo b/sysutils/plasma5-kmenuedit/distinfo index 4403c6fa79cf..e87a99b6bca3 100644 --- a/sysutils/plasma5-kmenuedit/distinfo +++ b/sysutils/plasma5-kmenuedit/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677653267 -SHA256 (KDE/plasma/5.27.2/kmenuedit-5.27.2.tar.xz) = 2775f781aaedf087a4dc05a96ee047b4320f4a717cd95f9d4d77e521fa21c1ec -SIZE (KDE/plasma/5.27.2/kmenuedit-5.27.2.tar.xz) = 926376 +TIMESTAMP = 1678807753 +SHA256 (KDE/plasma/5.27.3/kmenuedit-5.27.3.tar.xz) = f71038297852b53e04fc5e6da8f1b9af54113b9a70cdab98bbdc2e850667dc88 +SIZE (KDE/plasma/5.27.3/kmenuedit-5.27.3.tar.xz) = 926332 diff --git a/sysutils/plasma5-ksystemstats/distinfo b/sysutils/plasma5-ksystemstats/distinfo index 2456016dd63e..5df0e94832ad 100644 --- a/sysutils/plasma5-ksystemstats/distinfo +++ b/sysutils/plasma5-ksystemstats/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677653269 -SHA256 (KDE/plasma/5.27.2/ksystemstats-5.27.2.tar.xz) = f92ec4a042d14cfd61828a1d07cf0ee3b74c4db5e3fb7a1ffaecf80189eba3f2 -SIZE (KDE/plasma/5.27.2/ksystemstats-5.27.2.tar.xz) = 114124 +TIMESTAMP = 1678807755 +SHA256 (KDE/plasma/5.27.3/ksystemstats-5.27.3.tar.xz) = 426848657dfaf5b0c5b88d8fab3ea49a0b0ce58927d55060007cfeb2d5256366 +SIZE (KDE/plasma/5.27.3/ksystemstats-5.27.3.tar.xz) = 114192 diff --git a/sysutils/plasma5-libksysguard/distinfo b/sysutils/plasma5-libksysguard/distinfo index ab052e721e6f..7ab79d788000 100644 --- a/sysutils/plasma5-libksysguard/distinfo +++ b/sysutils/plasma5-libksysguard/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677653271 -SHA256 (KDE/plasma/5.27.2/libksysguard-5.27.2.tar.xz) = d6ba78569cff361254625375c4aebe9bed4fe4982e3b1d6570060b75c0737a06 -SIZE (KDE/plasma/5.27.2/libksysguard-5.27.2.tar.xz) = 870344 +TIMESTAMP = 1678807756 +SHA256 (KDE/plasma/5.27.3/libksysguard-5.27.3.tar.xz) = 3ff2bb6f7cd614e081729dd4dd99ae627b3a4a2f0e6953654db70093afd1bb1f +SIZE (KDE/plasma/5.27.3/libksysguard-5.27.3.tar.xz) = 871824 diff --git a/sysutils/plasma5-libksysguard/pkg-plist b/sysutils/plasma5-libksysguard/pkg-plist index 97c7d8ae7c8d..5eaaf9e3fddc 100644 --- a/sysutils/plasma5-libksysguard/pkg-plist +++ b/sysutils/plasma5-libksysguard/pkg-plist @@ -1,718 +1,725 @@ 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/Choices.qml %%QT_QMLDIR%%/org/kde/ksysguard/faces/ExtendedLegend.qml %%QT_QMLDIR%%/org/kde/ksysguard/faces/SensorFace.qml %%QT_QMLDIR%%/org/kde/ksysguard/faces/SensorRangeSpinBox.qml %%QT_QMLDIR%%/org/kde/ksysguard/faces/libFacesPlugin.so %%QT_QMLDIR%%/org/kde/ksysguard/faces/qmldir %%QT_QMLDIR%%/org/kde/ksysguard/formatter/libFormatterPlugin.so %%QT_QMLDIR%%/org/kde/ksysguard/formatter/qmldir %%QT_QMLDIR%%/org/kde/ksysguard/process/libProcessPlugin.so %%QT_QMLDIR%%/org/kde/ksysguard/process/qmldir %%QT_QMLDIR%%/org/kde/ksysguard/sensors/libSensorsPlugin.so %%QT_QMLDIR%%/org/kde/ksysguard/sensors/qmldir share/dbus-1/interfaces/org.kde.ksystemstats.xml share/dbus-1/system-services/org.kde.ksysguard.processlisthelper.service share/dbus-1/system.d/org.kde.ksysguard.processlisthelper.conf share/knsrcfiles/systemmonitor-faces.knsrc share/knsrcfiles/systemmonitor-presets.knsrc share/ksysguard/scripts/README share/ksysguard/sensorfaces/org.kde.ksysguard.barchart/contents/config/main.xml share/ksysguard/sensorfaces/org.kde.ksysguard.barchart/contents/faceproperties share/ksysguard/sensorfaces/org.kde.ksysguard.barchart/contents/ui/BarChart.qml share/ksysguard/sensorfaces/org.kde.ksysguard.barchart/contents/ui/CompactRepresentation.qml share/ksysguard/sensorfaces/org.kde.ksysguard.barchart/contents/ui/Config.qml share/ksysguard/sensorfaces/org.kde.ksysguard.barchart/contents/ui/FullRepresentation.qml share/ksysguard/sensorfaces/org.kde.ksysguard.barchart/metadata.desktop share/ksysguard/sensorfaces/org.kde.ksysguard.barchart/metadata.json share/ksysguard/sensorfaces/org.kde.ksysguard.colorgrid/contents/config/main.xml share/ksysguard/sensorfaces/org.kde.ksysguard.colorgrid/contents/faceproperties share/ksysguard/sensorfaces/org.kde.ksysguard.colorgrid/contents/ui/CompactRepresentation.qml share/ksysguard/sensorfaces/org.kde.ksysguard.colorgrid/contents/ui/Config.qml share/ksysguard/sensorfaces/org.kde.ksysguard.colorgrid/contents/ui/FaceGrid.qml share/ksysguard/sensorfaces/org.kde.ksysguard.colorgrid/contents/ui/FullRepresentation.qml share/ksysguard/sensorfaces/org.kde.ksysguard.colorgrid/contents/ui/SensorRect.qml share/ksysguard/sensorfaces/org.kde.ksysguard.colorgrid/metadata.desktop share/ksysguard/sensorfaces/org.kde.ksysguard.colorgrid/metadata.json share/ksysguard/sensorfaces/org.kde.ksysguard.facegrid/contents/config/main.xml share/ksysguard/sensorfaces/org.kde.ksysguard.facegrid/contents/faceproperties share/ksysguard/sensorfaces/org.kde.ksysguard.facegrid/contents/ui/CompactRepresentation.qml share/ksysguard/sensorfaces/org.kde.ksysguard.facegrid/contents/ui/Config.qml share/ksysguard/sensorfaces/org.kde.ksysguard.facegrid/contents/ui/FaceControl.qml share/ksysguard/sensorfaces/org.kde.ksysguard.facegrid/contents/ui/FaceGrid.qml share/ksysguard/sensorfaces/org.kde.ksysguard.facegrid/contents/ui/FullRepresentation.qml share/ksysguard/sensorfaces/org.kde.ksysguard.facegrid/metadata.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/KSysGuardSensorFaces.mo share/locale/ar/LC_MESSAGES/ksgrd.mo share/locale/ar/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/ar/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/ar/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/ar/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/ar/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/ar/LC_MESSAGES/ksysguard_sensors.mo share/locale/ar/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/ar/LC_MESSAGES/processcore.mo share/locale/ar/LC_MESSAGES/processui.mo share/locale/as/LC_MESSAGES/processui.mo share/locale/az/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/az/LC_MESSAGES/ksgrd.mo share/locale/az/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/az/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/az/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/az/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/az/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/az/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/az/LC_MESSAGES/ksysguard_sensors.mo share/locale/az/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/az/LC_MESSAGES/processcore.mo share/locale/az/LC_MESSAGES/processui.mo share/locale/be/LC_MESSAGES/processcore.mo share/locale/be/LC_MESSAGES/processui.mo share/locale/be@latin/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/bg/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/bg/LC_MESSAGES/ksgrd.mo share/locale/bg/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/bg/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/bg/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/bg/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/bg/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/bg/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/bg/LC_MESSAGES/ksysguard_sensors.mo share/locale/bg/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/bg/LC_MESSAGES/processcore.mo share/locale/bg/LC_MESSAGES/processui.mo share/locale/bn_IN/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/bn_IN/LC_MESSAGES/processcore.mo share/locale/bn_IN/LC_MESSAGES/processui.mo share/locale/bs/LC_MESSAGES/ksgrd.mo share/locale/bs/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/bs/LC_MESSAGES/processcore.mo share/locale/bs/LC_MESSAGES/processui.mo share/locale/ca/LC_MESSAGES/KSysGuardFormatter.mo share/locale/ca/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/ca/LC_MESSAGES/ksgrd.mo share/locale/ca/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/ca/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/ca/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/ca/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/ca/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/ca/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/ca/LC_MESSAGES/ksysguard_sensors.mo share/locale/ca/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/ca/LC_MESSAGES/processcore.mo share/locale/ca/LC_MESSAGES/processui.mo share/locale/ca@valencia/LC_MESSAGES/KSysGuardFormatter.mo share/locale/ca@valencia/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/ca@valencia/LC_MESSAGES/ksgrd.mo share/locale/ca@valencia/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/ca@valencia/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/ca@valencia/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/ca@valencia/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/ca@valencia/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/ca@valencia/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/ca@valencia/LC_MESSAGES/ksysguard_sensors.mo share/locale/ca@valencia/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/ca@valencia/LC_MESSAGES/processcore.mo share/locale/ca@valencia/LC_MESSAGES/processui.mo share/locale/cs/LC_MESSAGES/KSysGuardFormatter.mo share/locale/cs/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/cs/LC_MESSAGES/ksgrd.mo share/locale/cs/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/cs/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/cs/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/cs/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/cs/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/cs/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/cs/LC_MESSAGES/ksysguard_sensors.mo share/locale/cs/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/cs/LC_MESSAGES/processcore.mo share/locale/cs/LC_MESSAGES/processui.mo share/locale/csb/LC_MESSAGES/processcore.mo share/locale/csb/LC_MESSAGES/processui.mo share/locale/da/LC_MESSAGES/ksgrd.mo share/locale/da/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/da/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/da/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/da/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/da/LC_MESSAGES/processcore.mo share/locale/da/LC_MESSAGES/processui.mo share/locale/de/LC_MESSAGES/KSysGuardFormatter.mo share/locale/de/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/de/LC_MESSAGES/ksgrd.mo share/locale/de/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/de/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/de/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/de/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/de/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/de/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/de/LC_MESSAGES/ksysguard_sensors.mo share/locale/de/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/de/LC_MESSAGES/processcore.mo share/locale/de/LC_MESSAGES/processui.mo share/locale/el/LC_MESSAGES/ksgrd.mo share/locale/el/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/el/LC_MESSAGES/processcore.mo share/locale/el/LC_MESSAGES/processui.mo +share/locale/en_GB/LC_MESSAGES/KSysGuardFormatter.mo share/locale/en_GB/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/en_GB/LC_MESSAGES/ksgrd.mo share/locale/en_GB/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/en_GB/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/en_GB/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/en_GB/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/en_GB/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/en_GB/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/en_GB/LC_MESSAGES/ksysguard_sensors.mo share/locale/en_GB/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/en_GB/LC_MESSAGES/processcore.mo share/locale/en_GB/LC_MESSAGES/processui.mo share/locale/eo/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/eo/LC_MESSAGES/processcore.mo share/locale/eo/LC_MESSAGES/processui.mo share/locale/es/LC_MESSAGES/KSysGuardFormatter.mo share/locale/es/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/es/LC_MESSAGES/ksgrd.mo share/locale/es/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/es/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/es/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/es/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/es/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/es/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/es/LC_MESSAGES/ksysguard_sensors.mo share/locale/es/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/es/LC_MESSAGES/processcore.mo share/locale/es/LC_MESSAGES/processui.mo share/locale/et/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/et/LC_MESSAGES/ksgrd.mo share/locale/et/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/et/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/et/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/et/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/et/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/et/LC_MESSAGES/processcore.mo share/locale/et/LC_MESSAGES/processui.mo share/locale/eu/LC_MESSAGES/KSysGuardFormatter.mo share/locale/eu/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/eu/LC_MESSAGES/ksgrd.mo share/locale/eu/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/eu/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/eu/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/eu/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/eu/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/eu/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/eu/LC_MESSAGES/ksysguard_sensors.mo share/locale/eu/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/eu/LC_MESSAGES/processcore.mo share/locale/eu/LC_MESSAGES/processui.mo share/locale/fa/LC_MESSAGES/processcore.mo share/locale/fa/LC_MESSAGES/processui.mo +share/locale/fi/LC_MESSAGES/KSysGuardFormatter.mo share/locale/fi/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/fi/LC_MESSAGES/ksgrd.mo share/locale/fi/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo +share/locale/fi/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/fi/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/fi/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/fi/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/fi/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/fi/LC_MESSAGES/ksysguard_sensors.mo share/locale/fi/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/fi/LC_MESSAGES/processcore.mo share/locale/fi/LC_MESSAGES/processui.mo share/locale/fr/LC_MESSAGES/KSysGuardFormatter.mo share/locale/fr/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/fr/LC_MESSAGES/ksgrd.mo share/locale/fr/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/fr/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/fr/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/fr/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/fr/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/fr/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/fr/LC_MESSAGES/ksysguard_sensors.mo share/locale/fr/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/fr/LC_MESSAGES/processcore.mo share/locale/fr/LC_MESSAGES/processui.mo share/locale/fy/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/fy/LC_MESSAGES/processcore.mo share/locale/fy/LC_MESSAGES/processui.mo share/locale/ga/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/ga/LC_MESSAGES/processcore.mo share/locale/ga/LC_MESSAGES/processui.mo share/locale/gl/LC_MESSAGES/ksgrd.mo share/locale/gl/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/gl/LC_MESSAGES/processcore.mo share/locale/gl/LC_MESSAGES/processui.mo share/locale/gu/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/gu/LC_MESSAGES/processcore.mo share/locale/gu/LC_MESSAGES/processui.mo share/locale/he/LC_MESSAGES/ksgrd.mo share/locale/he/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/he/LC_MESSAGES/processcore.mo share/locale/he/LC_MESSAGES/processui.mo share/locale/hi/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/hi/LC_MESSAGES/processcore.mo share/locale/hi/LC_MESSAGES/processui.mo share/locale/hne/LC_MESSAGES/processcore.mo share/locale/hr/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/hr/LC_MESSAGES/processcore.mo share/locale/hr/LC_MESSAGES/processui.mo share/locale/hsb/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/hsb/LC_MESSAGES/processcore.mo share/locale/hsb/LC_MESSAGES/processui.mo share/locale/hu/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/hu/LC_MESSAGES/ksgrd.mo share/locale/hu/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/hu/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/hu/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/hu/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/hu/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/hu/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/hu/LC_MESSAGES/processcore.mo share/locale/hu/LC_MESSAGES/processui.mo share/locale/ia/LC_MESSAGES/KSysGuardFormatter.mo share/locale/ia/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/ia/LC_MESSAGES/ksgrd.mo share/locale/ia/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/ia/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/ia/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/ia/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/ia/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/ia/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/ia/LC_MESSAGES/ksysguard_sensors.mo share/locale/ia/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/ia/LC_MESSAGES/processcore.mo share/locale/ia/LC_MESSAGES/processui.mo share/locale/id/LC_MESSAGES/ksgrd.mo share/locale/id/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/id/LC_MESSAGES/processcore.mo share/locale/id/LC_MESSAGES/processui.mo share/locale/is/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/is/LC_MESSAGES/processcore.mo share/locale/is/LC_MESSAGES/processui.mo share/locale/it/LC_MESSAGES/KSysGuardFormatter.mo share/locale/it/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/it/LC_MESSAGES/ksgrd.mo share/locale/it/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/it/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/it/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/it/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/it/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/it/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/it/LC_MESSAGES/ksysguard_sensors.mo share/locale/it/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/it/LC_MESSAGES/processcore.mo share/locale/it/LC_MESSAGES/processui.mo share/locale/ja/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/ja/LC_MESSAGES/ksgrd.mo share/locale/ja/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/ja/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/ja/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/ja/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/ja/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/ja/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/ja/LC_MESSAGES/ksysguard_sensors.mo share/locale/ja/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/ja/LC_MESSAGES/processcore.mo share/locale/ja/LC_MESSAGES/processui.mo share/locale/ka/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/ka/LC_MESSAGES/ksgrd.mo share/locale/ka/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/ka/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/ka/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/ka/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/ka/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/ka/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/ka/LC_MESSAGES/ksysguard_sensors.mo share/locale/ka/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/ka/LC_MESSAGES/processcore.mo share/locale/ka/LC_MESSAGES/processui.mo share/locale/kk/LC_MESSAGES/ksgrd.mo share/locale/kk/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/kk/LC_MESSAGES/processcore.mo share/locale/kk/LC_MESSAGES/processui.mo share/locale/km/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/km/LC_MESSAGES/processcore.mo share/locale/km/LC_MESSAGES/processui.mo share/locale/kn/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/ko/LC_MESSAGES/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.facegrid.mo share/locale/ko/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/ko/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/ko/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/ko/LC_MESSAGES/ksysguard_sensors.mo share/locale/ko/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/ko/LC_MESSAGES/processcore.mo share/locale/ko/LC_MESSAGES/processui.mo share/locale/ku/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/ku/LC_MESSAGES/processcore.mo share/locale/ku/LC_MESSAGES/processui.mo share/locale/lt/LC_MESSAGES/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/ksysguardlsofwidgets.mo share/locale/lt/LC_MESSAGES/processcore.mo share/locale/lt/LC_MESSAGES/processui.mo share/locale/lv/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/lv/LC_MESSAGES/processcore.mo share/locale/lv/LC_MESSAGES/processui.mo share/locale/mai/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/mai/LC_MESSAGES/processcore.mo share/locale/mai/LC_MESSAGES/processui.mo share/locale/mk/LC_MESSAGES/processcore.mo share/locale/mk/LC_MESSAGES/processui.mo share/locale/ml/LC_MESSAGES/ksgrd.mo share/locale/ml/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/ml/LC_MESSAGES/processcore.mo share/locale/ml/LC_MESSAGES/processui.mo share/locale/mr/LC_MESSAGES/ksgrd.mo share/locale/mr/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/mr/LC_MESSAGES/processcore.mo share/locale/mr/LC_MESSAGES/processui.mo share/locale/ms/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/ms/LC_MESSAGES/processcore.mo share/locale/ms/LC_MESSAGES/processui.mo share/locale/nb/LC_MESSAGES/ksgrd.mo share/locale/nb/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/nb/LC_MESSAGES/processcore.mo share/locale/nb/LC_MESSAGES/processui.mo share/locale/nds/LC_MESSAGES/ksgrd.mo share/locale/nds/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/nds/LC_MESSAGES/processcore.mo share/locale/nds/LC_MESSAGES/processui.mo share/locale/ne/LC_MESSAGES/processcore.mo share/locale/ne/LC_MESSAGES/processui.mo share/locale/nl/LC_MESSAGES/KSysGuardFormatter.mo share/locale/nl/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/nl/LC_MESSAGES/ksgrd.mo share/locale/nl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/nl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/nl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/nl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/nl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/nl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/nl/LC_MESSAGES/ksysguard_sensors.mo share/locale/nl/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/nl/LC_MESSAGES/processcore.mo share/locale/nl/LC_MESSAGES/processui.mo +share/locale/nn/LC_MESSAGES/KSysGuardFormatter.mo share/locale/nn/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/nn/LC_MESSAGES/ksgrd.mo share/locale/nn/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo +share/locale/nn/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo +share/locale/nn/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/nn/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/nn/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/nn/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo +share/locale/nn/LC_MESSAGES/ksysguard_sensors.mo share/locale/nn/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/nn/LC_MESSAGES/processcore.mo share/locale/nn/LC_MESSAGES/processui.mo share/locale/oc/LC_MESSAGES/processcore.mo share/locale/oc/LC_MESSAGES/processui.mo share/locale/pa/LC_MESSAGES/ksgrd.mo share/locale/pa/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/pa/LC_MESSAGES/processcore.mo share/locale/pa/LC_MESSAGES/processui.mo share/locale/pl/LC_MESSAGES/KSysGuardFormatter.mo share/locale/pl/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/pl/LC_MESSAGES/ksgrd.mo share/locale/pl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/pl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/pl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/pl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/pl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/pl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/pl/LC_MESSAGES/ksysguard_sensors.mo share/locale/pl/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/pl/LC_MESSAGES/processcore.mo share/locale/pl/LC_MESSAGES/processui.mo share/locale/pt/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/pt/LC_MESSAGES/ksgrd.mo share/locale/pt/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/pt/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/pt/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/pt/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/pt/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/pt/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/pt/LC_MESSAGES/ksysguard_sensors.mo share/locale/pt/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/pt/LC_MESSAGES/processcore.mo share/locale/pt/LC_MESSAGES/processui.mo share/locale/pt_BR/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/pt_BR/LC_MESSAGES/ksgrd.mo share/locale/pt_BR/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/pt_BR/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/pt_BR/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/pt_BR/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/pt_BR/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/pt_BR/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/pt_BR/LC_MESSAGES/processcore.mo share/locale/pt_BR/LC_MESSAGES/processui.mo share/locale/ro/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/ro/LC_MESSAGES/ksgrd.mo share/locale/ro/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/ro/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/ro/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/ro/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/ro/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/ro/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/ro/LC_MESSAGES/processcore.mo share/locale/ro/LC_MESSAGES/processui.mo share/locale/ru/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/ru/LC_MESSAGES/ksgrd.mo share/locale/ru/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/ru/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/ru/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/ru/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/ru/LC_MESSAGES/ksysguard_sensors.mo share/locale/ru/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/ru/LC_MESSAGES/processcore.mo share/locale/ru/LC_MESSAGES/processui.mo share/locale/se/LC_MESSAGES/processcore.mo share/locale/se/LC_MESSAGES/processui.mo share/locale/si/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/si/LC_MESSAGES/processcore.mo share/locale/si/LC_MESSAGES/processui.mo share/locale/sk/LC_MESSAGES/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_sensors.mo share/locale/sk/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/sk/LC_MESSAGES/processcore.mo share/locale/sk/LC_MESSAGES/processui.mo share/locale/sl/LC_MESSAGES/KSysGuardFormatter.mo share/locale/sl/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/sl/LC_MESSAGES/ksgrd.mo share/locale/sl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/sl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/sl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/sl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/sl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/sl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/sl/LC_MESSAGES/ksysguard_sensors.mo share/locale/sl/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/sl/LC_MESSAGES/processcore.mo share/locale/sl/LC_MESSAGES/processui.mo share/locale/sq/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/sq/LC_MESSAGES/processcore.mo share/locale/sq/LC_MESSAGES/processui.mo share/locale/sr/LC_MESSAGES/ksgrd.mo share/locale/sr/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/sr/LC_MESSAGES/processcore.mo share/locale/sr/LC_MESSAGES/processui.mo share/locale/sr@ijekavian/LC_MESSAGES/ksgrd.mo share/locale/sr@ijekavian/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/sr@ijekavian/LC_MESSAGES/processcore.mo share/locale/sr@ijekavian/LC_MESSAGES/processui.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/ksgrd.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/processcore.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/processui.mo share/locale/sr@latin/LC_MESSAGES/ksgrd.mo share/locale/sr@latin/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/sr@latin/LC_MESSAGES/processcore.mo share/locale/sr@latin/LC_MESSAGES/processui.mo share/locale/sv/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/sv/LC_MESSAGES/ksgrd.mo share/locale/sv/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/sv/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/sv/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/sv/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/sv/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/sv/LC_MESSAGES/ksysguard_sensors.mo share/locale/sv/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/sv/LC_MESSAGES/processcore.mo share/locale/sv/LC_MESSAGES/processui.mo share/locale/ta/LC_MESSAGES/processcore.mo share/locale/ta/LC_MESSAGES/processui.mo share/locale/te/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/te/LC_MESSAGES/processcore.mo share/locale/te/LC_MESSAGES/processui.mo share/locale/tg/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/tg/LC_MESSAGES/processcore.mo share/locale/tg/LC_MESSAGES/processui.mo share/locale/th/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/th/LC_MESSAGES/processcore.mo share/locale/th/LC_MESSAGES/processui.mo share/locale/tr/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/tr/LC_MESSAGES/ksgrd.mo share/locale/tr/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/tr/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/tr/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/tr/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/tr/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/tr/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/tr/LC_MESSAGES/ksysguard_sensors.mo share/locale/tr/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/tr/LC_MESSAGES/processcore.mo share/locale/tr/LC_MESSAGES/processui.mo share/locale/ug/LC_MESSAGES/ksgrd.mo share/locale/ug/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/ug/LC_MESSAGES/processcore.mo share/locale/ug/LC_MESSAGES/processui.mo share/locale/uk/LC_MESSAGES/KSysGuardFormatter.mo share/locale/uk/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/uk/LC_MESSAGES/ksgrd.mo share/locale/uk/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/uk/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/uk/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/uk/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/uk/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/uk/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/uk/LC_MESSAGES/ksysguard_sensors.mo share/locale/uk/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/uk/LC_MESSAGES/processcore.mo share/locale/uk/LC_MESSAGES/processui.mo share/locale/vi/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/vi/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/vi/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/vi/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/vi/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/vi/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/vi/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/wa/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/wa/LC_MESSAGES/processcore.mo share/locale/wa/LC_MESSAGES/processui.mo share/locale/zh_CN/LC_MESSAGES/KSysGuardFormatter.mo share/locale/zh_CN/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/zh_CN/LC_MESSAGES/ksgrd.mo share/locale/zh_CN/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/zh_CN/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/zh_CN/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/zh_CN/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/zh_CN/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/zh_CN/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/zh_CN/LC_MESSAGES/ksysguard_sensors.mo share/locale/zh_CN/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/zh_CN/LC_MESSAGES/processcore.mo share/locale/zh_CN/LC_MESSAGES/processui.mo share/locale/zh_TW/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/zh_TW/LC_MESSAGES/ksgrd.mo share/locale/zh_TW/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/zh_TW/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/zh_TW/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/zh_TW/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/zh_TW/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/zh_TW/LC_MESSAGES/ksysguard_sensors.mo share/locale/zh_TW/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/zh_TW/LC_MESSAGES/processcore.mo share/locale/zh_TW/LC_MESSAGES/processui.mo share/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 4f99b843372f..44b6387c4e4f 100644 --- a/sysutils/plasma5-plasma-disks/distinfo +++ b/sysutils/plasma5-plasma-disks/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677653272 -SHA256 (KDE/plasma/5.27.2/plasma-disks-5.27.2.tar.xz) = 23d66a0e33042accefdc7a1ac646bea33edfe541acd0377635d66aca568a5755 -SIZE (KDE/plasma/5.27.2/plasma-disks-5.27.2.tar.xz) = 92480 +TIMESTAMP = 1678807757 +SHA256 (KDE/plasma/5.27.3/plasma-disks-5.27.3.tar.xz) = 2ec52b16702a6469c01b27858952b93ee2d8c52f4d30c3ee9a868c191c6e3c55 +SIZE (KDE/plasma/5.27.3/plasma-disks-5.27.3.tar.xz) = 92508 diff --git a/sysutils/plasma5-plasma-systemmonitor/distinfo b/sysutils/plasma5-plasma-systemmonitor/distinfo index 9436a3490ad6..63528058af96 100644 --- a/sysutils/plasma5-plasma-systemmonitor/distinfo +++ b/sysutils/plasma5-plasma-systemmonitor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677653273 -SHA256 (KDE/plasma/5.27.2/plasma-systemmonitor-5.27.2.tar.xz) = 86e266ae5214e15123fcb3d3243839817eb6d42d78c2a0f6b766783e9dec89ce -SIZE (KDE/plasma/5.27.2/plasma-systemmonitor-5.27.2.tar.xz) = 171408 +TIMESTAMP = 1678807758 +SHA256 (KDE/plasma/5.27.3/plasma-systemmonitor-5.27.3.tar.xz) = c70c35ed996645f264520c8ee74c3085ac401a2565aed0104060c2ef2ce25988 +SIZE (KDE/plasma/5.27.3/plasma-systemmonitor-5.27.3.tar.xz) = 171388 diff --git a/sysutils/plasma5-polkit-kde-agent-1/distinfo b/sysutils/plasma5-polkit-kde-agent-1/distinfo index 4b511a374204..e78b20052be2 100644 --- a/sysutils/plasma5-polkit-kde-agent-1/distinfo +++ b/sysutils/plasma5-polkit-kde-agent-1/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677653274 -SHA256 (KDE/plasma/5.27.2/polkit-kde-agent-1-5.27.2.tar.xz) = 2456598e8ede9cd5cfe61cd8fd30c5637111c034e069673bed9f8200b36de75f -SIZE (KDE/plasma/5.27.2/polkit-kde-agent-1-5.27.2.tar.xz) = 52440 +TIMESTAMP = 1678807759 +SHA256 (KDE/plasma/5.27.3/polkit-kde-agent-1-5.27.3.tar.xz) = 9d4115fb4cff03257131586bd285bb27c2ed115c5b22ce73c622d47ec0c3afab +SIZE (KDE/plasma/5.27.3/polkit-kde-agent-1-5.27.3.tar.xz) = 52452 diff --git a/sysutils/plasma5-powerdevil/distinfo b/sysutils/plasma5-powerdevil/distinfo index c29dc5b00d9c..f74c12633743 100644 --- a/sysutils/plasma5-powerdevil/distinfo +++ b/sysutils/plasma5-powerdevil/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677653276 -SHA256 (KDE/plasma/5.27.2/powerdevil-5.27.2.tar.xz) = 3d74c855bc318b716e34efcaf851e194d15ad6dc44eb5615dfb5d110277799ab -SIZE (KDE/plasma/5.27.2/powerdevil-5.27.2.tar.xz) = 785352 +TIMESTAMP = 1678807760 +SHA256 (KDE/plasma/5.27.3/powerdevil-5.27.3.tar.xz) = c807d4ddfa173a7bf2b6d6476eec21d6359386d7e0b7f99fe75595674ab56c99 +SIZE (KDE/plasma/5.27.3/powerdevil-5.27.3.tar.xz) = 785556 diff --git a/sysutils/plasma5-systemsettings/distinfo b/sysutils/plasma5-systemsettings/distinfo index 181bc55ea269..212ae8d5e4ce 100644 --- a/sysutils/plasma5-systemsettings/distinfo +++ b/sysutils/plasma5-systemsettings/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677653277 -SHA256 (KDE/plasma/5.27.2/systemsettings-5.27.2.tar.xz) = cdeeae41db4aac380b5149431d674ebbf6f15f208c540ac91f94444d2f0ab2e1 -SIZE (KDE/plasma/5.27.2/systemsettings-5.27.2.tar.xz) = 223384 +TIMESTAMP = 1678807762 +SHA256 (KDE/plasma/5.27.3/systemsettings-5.27.3.tar.xz) = 04bca4105361416318c652d7fbf6a04ec2344365ba588d312b5d40e02d4c503e +SIZE (KDE/plasma/5.27.3/systemsettings-5.27.3.tar.xz) = 223648 diff --git a/www/plasma5-plasma-browser-integration/distinfo b/www/plasma5-plasma-browser-integration/distinfo index b0c2c14c92eb..73fe03717b42 100644 --- a/www/plasma5-plasma-browser-integration/distinfo +++ b/www/plasma5-plasma-browser-integration/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677653279 -SHA256 (KDE/plasma/5.27.2/plasma-browser-integration-5.27.2.tar.xz) = 7c394237eb7c69bba0f72fc68bc5c48936ee61bcb0aa86c7393e5ed4b4344432 -SIZE (KDE/plasma/5.27.2/plasma-browser-integration-5.27.2.tar.xz) = 211024 +TIMESTAMP = 1678807763 +SHA256 (KDE/plasma/5.27.3/plasma-browser-integration-5.27.3.tar.xz) = cde2c04b0ee5bde50cf19921192982ade30250bd57fec8440b5aac1e86a73b82 +SIZE (KDE/plasma/5.27.3/plasma-browser-integration-5.27.3.tar.xz) = 211216 diff --git a/x11-themes/plasma5-breeze-gtk/distinfo b/x11-themes/plasma5-breeze-gtk/distinfo index 3f444c81ecf2..edf9cbc17b31 100644 --- a/x11-themes/plasma5-breeze-gtk/distinfo +++ b/x11-themes/plasma5-breeze-gtk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677653285 -SHA256 (KDE/plasma/5.27.2/breeze-gtk-5.27.2.tar.xz) = c18dfa50359efc266ea9e30bf5141dc1f2c295bc87c8a52aa065a55f99586502 -SIZE (KDE/plasma/5.27.2/breeze-gtk-5.27.2.tar.xz) = 40340 +TIMESTAMP = 1678807769 +SHA256 (KDE/plasma/5.27.3/breeze-gtk-5.27.3.tar.xz) = 37b9b189c04ab21dc56c3e6b7447c454028beaf7f0abdcaa25983b59733fbf79 +SIZE (KDE/plasma/5.27.3/breeze-gtk-5.27.3.tar.xz) = 40392 diff --git a/x11-themes/plasma5-breeze/distinfo b/x11-themes/plasma5-breeze/distinfo index 0f7551e51e30..6d5ea40ddf01 100644 --- a/x11-themes/plasma5-breeze/distinfo +++ b/x11-themes/plasma5-breeze/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677653284 -SHA256 (KDE/plasma/5.27.2/breeze-5.27.2.tar.xz) = 145d0ac48a41d0589827b5ce5a3f4e653d1d39a67c645935d02ada62254559aa -SIZE (KDE/plasma/5.27.2/breeze-5.27.2.tar.xz) = 87590000 +TIMESTAMP = 1678807768 +SHA256 (KDE/plasma/5.27.3/breeze-5.27.3.tar.xz) = 7764f5bcce91e487c8756ab7c0d8a14d2bc36f97c8c33f82a70d81380e78798a +SIZE (KDE/plasma/5.27.3/breeze-5.27.3.tar.xz) = 87590152 diff --git a/x11-themes/plasma5-kde-gtk-config/distinfo b/x11-themes/plasma5-kde-gtk-config/distinfo index e2bdb38358eb..bc5d24eb5f89 100644 --- a/x11-themes/plasma5-kde-gtk-config/distinfo +++ b/x11-themes/plasma5-kde-gtk-config/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677653287 -SHA256 (KDE/plasma/5.27.2/kde-gtk-config-5.27.2.tar.xz) = ca2dfe01e4d9ef65dccb369a77bf7acaeb02bc8866a70a3ec23b2905cdfe98d4 -SIZE (KDE/plasma/5.27.2/kde-gtk-config-5.27.2.tar.xz) = 75320 +TIMESTAMP = 1678807770 +SHA256 (KDE/plasma/5.27.3/kde-gtk-config-5.27.3.tar.xz) = aaac548e0e3e17cd2751f7a6912e9b43e58bedd01a46381dc700116b5ae97111 +SIZE (KDE/plasma/5.27.3/kde-gtk-config-5.27.3.tar.xz) = 75316 diff --git a/x11-themes/plasma5-oxygen/distinfo b/x11-themes/plasma5-oxygen/distinfo index 53ac4de30498..e3d11395fc5e 100644 --- a/x11-themes/plasma5-oxygen/distinfo +++ b/x11-themes/plasma5-oxygen/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677653288 -SHA256 (KDE/plasma/5.27.2/oxygen-5.27.2.tar.xz) = 664422b147e9e0cdb768858f9bc5ec3bf98e3482effe5b89931a283bb51fe03f -SIZE (KDE/plasma/5.27.2/oxygen-5.27.2.tar.xz) = 2782828 +TIMESTAMP = 1678807771 +SHA256 (KDE/plasma/5.27.3/oxygen-5.27.3.tar.xz) = 9011f8edd2c63594f129e0744823dde1b44fa25ffc20e4ef7fa9feb7909335b7 +SIZE (KDE/plasma/5.27.3/oxygen-5.27.3.tar.xz) = 2787268 diff --git a/x11-themes/plasma5-plasma-workspace-wallpapers/distinfo b/x11-themes/plasma5-plasma-workspace-wallpapers/distinfo index 9fd3d4d967f9..ff6e5bc5296c 100644 --- a/x11-themes/plasma5-plasma-workspace-wallpapers/distinfo +++ b/x11-themes/plasma5-plasma-workspace-wallpapers/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677653311 -SHA256 (KDE/plasma/5.27.2/plasma-workspace-wallpapers-5.27.2.tar.xz) = c6ffc5eefe8d414a73f2226e33fec01246142310b93345c7cfe083b48cee95f4 -SIZE (KDE/plasma/5.27.2/plasma-workspace-wallpapers-5.27.2.tar.xz) = 94032072 +TIMESTAMP = 1678807776 +SHA256 (KDE/plasma/5.27.3/plasma-workspace-wallpapers-5.27.3.tar.xz) = 8c4c1066328f2aad3a503d2be95497850e2dab9667fccab1e5e97ac36289fade +SIZE (KDE/plasma/5.27.3/plasma-workspace-wallpapers-5.27.3.tar.xz) = 94032708 diff --git a/x11-toolkits/plasma5-kdeplasma-addons/distinfo b/x11-toolkits/plasma5-kdeplasma-addons/distinfo index 2f258b62b241..c7c4c9c807b0 100644 --- a/x11-toolkits/plasma5-kdeplasma-addons/distinfo +++ b/x11-toolkits/plasma5-kdeplasma-addons/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677653313 -SHA256 (KDE/plasma/5.27.2/kdeplasma-addons-5.27.2.tar.xz) = 29346e2d0d71248e58cdbe3e11ce995e2b42bbeb5c88095b2955a619b87520bb -SIZE (KDE/plasma/5.27.2/kdeplasma-addons-5.27.2.tar.xz) = 817132 +TIMESTAMP = 1678807777 +SHA256 (KDE/plasma/5.27.3/kdeplasma-addons-5.27.3.tar.xz) = 1ca9b8b27ade05b2092f36c584bc901c88d3012658939afd2e7569175ed73b9f +SIZE (KDE/plasma/5.27.3/kdeplasma-addons-5.27.3.tar.xz) = 817808 diff --git a/x11-toolkits/plasma5-kdeplasma-addons/pkg-plist b/x11-toolkits/plasma5-kdeplasma-addons/pkg-plist index 628a7e6fd5ea..d1071cd058f3 100644 --- a/x11-toolkits/plasma5-kdeplasma-addons/pkg-plist +++ b/x11-toolkits/plasma5-kdeplasma-addons/pkg-plist @@ -1,2050 +1,2051 @@ include/plasma/potdprovider/plasma_potd_export.h include/plasma/potdprovider/potdprovider.h lib/cmake/PlasmaPotdProvider/PlasmaPotdProviderConfig.cmake lib/cmake/PlasmaPotdProvider/PlasmaPotdProviderConfigVersion.cmake lib/cmake/PlasmaPotdProvider/PlasmaPotdProviderTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/PlasmaPotdProvider/PlasmaPotdProviderTargets.cmake lib/libplasmapotdprovidercore.so lib/libplasmapotdprovidercore.so.1 lib/libplasmapotdprovidercore.so.1.0.0 %%QT_PLUGINDIR%%/kf5/krunner/kcms/kcm_krunner_charrunner.so %%QT_PLUGINDIR%%/kf5/krunner/kcms/kcm_krunner_dictionary.so %%QT_PLUGINDIR%%/kf5/krunner/kcms/kcm_krunner_spellcheck.so %%QT_PLUGINDIR%%/kf5/krunner/krunner_charrunner.so %%QT_PLUGINDIR%%/kf5/krunner/krunner_dictionary.so %%QT_PLUGINDIR%%/kf5/krunner/krunner_katesessions.so %%QT_PLUGINDIR%%/kf5/krunner/krunner_konsoleprofiles.so %%QT_PLUGINDIR%%/kf5/krunner/krunner_spellcheck.so %%QT_PLUGINDIR%%/kf5/krunner/org.kde.datetime.so %%QT_PLUGINDIR%%/kf5/krunner/unitconverter.so %%QT_PLUGINDIR%%/kpackage/packagestructure/plasma_comic.so %%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.comic.so %%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.grouping.so %%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.private.grouping.so %%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.weather.so %%QT_PLUGINDIR%%/plasmacalendarplugins/alternatecalendar.so %%QT_PLUGINDIR%%/plasmacalendarplugins/alternatecalendar/AlternateCalendarConfig.qml %%QT_PLUGINDIR%%/plasmacalendarplugins/astronomicalevents.so %%QT_PLUGINDIR%%/plasmacalendarplugins/astronomicalevents/AstronomicalEventsConfig.qml %%QT_PLUGINDIR%%/potd/plasma_potd_apodprovider.so %%QT_PLUGINDIR%%/potd/plasma_potd_bingprovider.so %%QT_PLUGINDIR%%/potd/plasma_potd_epodprovider.so %%QT_PLUGINDIR%%/potd/plasma_potd_flickrprovider.so %%QT_PLUGINDIR%%/potd/plasma_potd_natgeoprovider.so %%QT_PLUGINDIR%%/potd/plasma_potd_noaaprovider.so %%QT_PLUGINDIR%%/potd/plasma_potd_simonstalenhagprovider.so %%QT_PLUGINDIR%%/potd/plasma_potd_unsplashprovider.so %%QT_PLUGINDIR%%/potd/plasma_potd_wcpotdprovider.so %%QT_QMLDIR%%/org/kde/plasma/private/colorpicker/libcolorpickerplugin.so %%QTWEBENGINE%%%%QT_QMLDIR%%/org/kde/plasma/private/colorpicker/qmldir %%QTWEBENGINE%%%%QT_QMLDIR%%/org/kde/plasma/private/dict/libdictplugin.so %%QTWEBENGINE%%%%QT_QMLDIR%%/org/kde/plasma/private/dict/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/diskquota/libdiskquotaplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/diskquota/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/fifteenpuzzle/libfifteenpuzzleplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/fifteenpuzzle/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/mediaframe/libmediaframeplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/mediaframe/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/nightcolorcontrol/libnightcolorcontrolplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/nightcolorcontrol/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/notes/libnotesplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/notes/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/profiles/libprofiles_qml_plugin.so %%QT_QMLDIR%%/org/kde/plasma/private/profiles/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/purpose/libpurposeplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/purpose/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/quicklaunch/libquicklaunchplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/quicklaunch/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/timer/libtimerplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/timer/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/weather/libweatherplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/weather/qmldir %%QT_QMLDIR%%/org/kde/plasma/wallpapers/potd/libplasma_wallpaper_potdplugin.so %%QT_QMLDIR%%/org/kde/plasma/wallpapers/potd/qmldir %%QT_QMLDIR%%/org/kde/plasmacalendar/alternatecalendarconfig/libplasmacalendaralternatecalendarconfig.so %%QT_QMLDIR%%/org/kde/plasmacalendar/alternatecalendarconfig/qmldir %%QT_QMLDIR%%/org/kde/plasmacalendar/astronomicaleventsconfig/libplasmacalendarastronomicaleventsconfig.so %%QT_QMLDIR%%/org/kde/plasmacalendar/astronomicaleventsconfig/qmldir %%QTWEBENGINE%%share/icons/hicolor/scalable/apps/accessories-dictionary.svgz share/icons/hicolor/scalable/apps/fifteenpuzzle.svgz share/kdevappwizard/templates/plasmapotdprovider.tar.bz2 share/knsrcfiles/comic.knsrc share/kservicetypes5/plasma-comic.desktop share/kwin/desktoptabbox/previews/contents/ui/main.qml share/kwin/desktoptabbox/previews/metadata.json share/kwin/tabbox/big_icons/contents/ui/IconTabBox.qml share/kwin/tabbox/big_icons/contents/ui/main.qml share/kwin/tabbox/big_icons/metadata.json share/kwin/tabbox/compact/contents/ui/main.qml share/kwin/tabbox/compact/metadata.json share/kwin/tabbox/coverswitch/contents/ui/main.qml share/kwin/tabbox/coverswitch/metadata.json share/kwin/tabbox/flipswitch/contents/ui/main.qml share/kwin/tabbox/flipswitch/metadata.json share/kwin/tabbox/informative/contents/ui/main.qml share/kwin/tabbox/informative/metadata.json share/kwin/tabbox/present_windows/contents/ui/main.qml share/kwin/tabbox/present_windows/metadata.json share/kwin/tabbox/small_icons/contents/ui/IconTabBox.qml share/kwin/tabbox/small_icons/contents/ui/main.qml share/kwin/tabbox/small_icons/metadata.json share/kwin/tabbox/text/contents/ui/main.qml share/kwin/tabbox/text/metadata.json share/kwin/tabbox/thumbnail_grid/contents/ui/main.qml share/kwin/tabbox/thumbnail_grid/metadata.json share/kwin/tabbox/thumbnails/contents/ui/main.qml share/kwin/tabbox/thumbnails/metadata.json share/locale/ar/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/ar/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.nightcolorcontrol.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/ar/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/ar/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/ar/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/ar/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/ar/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/ar/LC_MESSAGES/plasma_runner_datetime.mo share/locale/ar/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/ar/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/ar/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/ar/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/ar/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.nightcolorcontrol.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/az/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/az/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.nightcolorcontrol.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/az/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/az/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/az/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/az/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/az/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/az/LC_MESSAGES/plasma_runner_datetime.mo share/locale/az/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/az/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/az/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/az/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/az/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/be/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/be/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/bg/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/bg/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.nightcolorcontrol.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/bg/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/bg/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/bg/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/bg/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/bg/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/bg/LC_MESSAGES/plasma_runner_datetime.mo share/locale/bg/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/bg/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/bg/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/bg/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/bg/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/bs/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/bs/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/bs/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/bs/LC_MESSAGES/plasma_runner_datetime.mo share/locale/bs/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/bs/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/bs/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/ca/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/ca/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.nightcolorcontrol.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/ca/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/ca/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/ca/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/ca/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/ca/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/ca/LC_MESSAGES/plasma_runner_datetime.mo share/locale/ca/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/ca/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/ca/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/ca/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/ca/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/ca@valencia/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/ca@valencia/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.nightcolorcontrol.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/ca@valencia/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/ca@valencia/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/ca@valencia/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_datetime.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/ca@valencia/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/cs/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/cs/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.nightcolorcontrol.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/cs/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/cs/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/cs/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/cs/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/cs/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/cs/LC_MESSAGES/plasma_runner_datetime.mo share/locale/cs/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/cs/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/cs/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/cs/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/cs/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/csb/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/csb/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/csb/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/csb/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.nightcolorcontrol.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/da/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/da/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/da/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/da/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/da/LC_MESSAGES/plasma_runner_datetime.mo share/locale/da/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/da/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/da/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/da/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/da/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/de/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/de/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.nightcolorcontrol.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/de/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/de/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/de/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/de/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/de/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/de/LC_MESSAGES/plasma_runner_datetime.mo share/locale/de/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/de/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/de/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/de/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/de/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/el/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/el/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/el/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/el/LC_MESSAGES/plasma_runner_datetime.mo share/locale/el/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/el/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/el/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/en_GB/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/en_GB/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.nightcolorcontrol.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/en_GB/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/en_GB/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/en_GB/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_datetime.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/en_GB/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/eo/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/eo/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/eo/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/eo/LC_MESSAGES/plasma_runner_datetime.mo share/locale/eo/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/eo/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/es/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/es/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.nightcolorcontrol.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/es/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/es/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/es/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/es/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/es/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/es/LC_MESSAGES/plasma_runner_datetime.mo share/locale/es/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/es/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/es/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/es/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/es/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.nightcolorcontrol.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/et/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/et/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/et/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/et/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/et/LC_MESSAGES/plasma_runner_datetime.mo share/locale/et/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/et/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/et/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/et/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/et/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/eu/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/eu/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.nightcolorcontrol.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/eu/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/eu/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/eu/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/eu/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/eu/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/eu/LC_MESSAGES/plasma_runner_datetime.mo share/locale/eu/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/eu/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/eu/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/eu/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/eu/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/fi/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/fi/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.nightcolorcontrol.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/fi/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/fi/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/fi/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/fi/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/fi/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/fi/LC_MESSAGES/plasma_runner_datetime.mo share/locale/fi/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/fi/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/fi/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/fi/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/fi/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/fr/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/fr/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.nightcolorcontrol.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/fr/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/fr/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/fr/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/fr/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/fr/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/fr/LC_MESSAGES/plasma_runner_datetime.mo share/locale/fr/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/fr/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/fr/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/fr/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/fr/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/ga/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/ga/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/ga/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/ga/LC_MESSAGES/plasma_runner_datetime.mo share/locale/ga/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/ga/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/ga/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/gl/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/gl/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/gl/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/gl/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/gl/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/gl/LC_MESSAGES/plasma_runner_datetime.mo share/locale/gl/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/gl/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/gl/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/gl/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/gl/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/he/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/he/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/he/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/hi/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/hi/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/hr/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/hr/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/hr/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/hr/LC_MESSAGES/plasma_runner_datetime.mo share/locale/hr/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/hr/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.nightcolorcontrol.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/hu/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/hu/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/hu/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/hu/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/hu/LC_MESSAGES/plasma_runner_datetime.mo share/locale/hu/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/hu/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/hu/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/hu/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/hu/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/ia/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/ia/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.nightcolorcontrol.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/ia/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/ia/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/ia/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/ia/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/ia/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/ia/LC_MESSAGES/plasma_runner_datetime.mo share/locale/ia/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/ia/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/ia/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/ia/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/ia/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/id/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.nightcolorcontrol.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/id/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/id/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/id/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/id/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/id/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/id/LC_MESSAGES/plasma_runner_datetime.mo share/locale/id/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/id/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/id/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/id/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/id/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/is/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/is/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/is/LC_MESSAGES/plasma_runner_datetime.mo share/locale/is/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/is/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/it/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/it/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.nightcolorcontrol.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/it/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/it/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/it/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/it/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/it/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/it/LC_MESSAGES/plasma_runner_datetime.mo share/locale/it/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/it/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/it/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/it/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/it/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/ja/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/ja/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.nightcolorcontrol.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/ja/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/ja/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/ja/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/ja/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/ja/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/ja/LC_MESSAGES/plasma_runner_datetime.mo share/locale/ja/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/ja/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/ja/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/ja/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/ja/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/ka/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/ka/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.nightcolorcontrol.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/ka/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/ka/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/ka/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/ka/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/ka/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/ka/LC_MESSAGES/plasma_runner_datetime.mo share/locale/ka/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/ka/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/ka/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/ka/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/ka/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/kk/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/kk/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/kk/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/kk/LC_MESSAGES/plasma_runner_datetime.mo share/locale/kk/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/kk/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/kk/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/km/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/km/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/km/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/km/LC_MESSAGES/plasma_runner_datetime.mo share/locale/km/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/km/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/km/LC_MESSAGES/plasma_runner_spellcheckrunner.mo +share/locale/ko/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.nightcolorcontrol.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/ko/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/ko/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/ko/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/ko/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/ko/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/ko/LC_MESSAGES/plasma_runner_datetime.mo share/locale/ko/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/ko/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/ko/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/ko/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/ko/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/ku/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/ku/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/ku/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.nightcolorcontrol.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/lt/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/lt/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/lt/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/lt/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/lt/LC_MESSAGES/plasma_runner_datetime.mo share/locale/lt/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/lt/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/lt/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/lt/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/lt/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/lv/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/lv/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/lv/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/lv/LC_MESSAGES/plasma_runner_datetime.mo share/locale/lv/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/lv/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/ml/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/ml/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/ml/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/ml/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/ml/LC_MESSAGES/plasma_runner_datetime.mo share/locale/ml/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/ml/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/ml/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/ml/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/mr/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/mr/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/mr/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/mr/LC_MESSAGES/plasma_runner_datetime.mo share/locale/mr/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/mr/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/mr/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/my/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/nb/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/nb/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/nb/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/nb/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/nb/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/nb/LC_MESSAGES/plasma_runner_datetime.mo share/locale/nb/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/nb/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/nb/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/nb/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/nds/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/nds/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/nds/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/nds/LC_MESSAGES/plasma_runner_datetime.mo share/locale/nds/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/nds/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/nds/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/nl/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/nl/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.nightcolorcontrol.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/nl/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/nl/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/nl/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/nl/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/nl/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/nl/LC_MESSAGES/plasma_runner_datetime.mo share/locale/nl/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/nl/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/nl/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/nl/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/nl/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/nn/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/nn/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.nightcolorcontrol.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/nn/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/nn/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/nn/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/nn/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/nn/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/nn/LC_MESSAGES/plasma_runner_datetime.mo share/locale/nn/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/nn/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/nn/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/nn/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/nn/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/pa/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/pa/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/pa/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/pa/LC_MESSAGES/plasma_runner_datetime.mo share/locale/pa/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/pa/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/pa/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/pl/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/pl/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.nightcolorcontrol.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/pl/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/pl/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/pl/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/pl/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/pl/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/pl/LC_MESSAGES/plasma_runner_datetime.mo share/locale/pl/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/pl/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/pl/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/pl/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/pl/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/pt/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/pt/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.nightcolorcontrol.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/pt/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/pt/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/pt/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/pt/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/pt/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/pt/LC_MESSAGES/plasma_runner_datetime.mo share/locale/pt/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/pt/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/pt/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/pt/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/pt/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/pt_BR/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/pt_BR/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.nightcolorcontrol.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/pt_BR/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/pt_BR/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/pt_BR/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_datetime.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/pt_BR/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.nightcolorcontrol.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/ro/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/ro/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/ro/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/ro/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/ro/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/ro/LC_MESSAGES/plasma_runner_datetime.mo share/locale/ro/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/ro/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/ro/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/ro/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/ro/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/ru/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/ru/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.nightcolorcontrol.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/ru/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/ru/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/ru/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/ru/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/ru/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/ru/LC_MESSAGES/plasma_runner_datetime.mo share/locale/ru/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/ru/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/ru/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/ru/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/ru/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.nightcolorcontrol.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/sk/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/sk/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/sk/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/sk/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/sk/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/sk/LC_MESSAGES/plasma_runner_datetime.mo share/locale/sk/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/sk/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/sk/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/sk/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/sk/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/sl/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/sl/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.nightcolorcontrol.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/sl/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/sl/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/sl/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/sl/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/sl/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/sl/LC_MESSAGES/plasma_runner_datetime.mo share/locale/sl/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/sl/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/sl/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/sl/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/sl/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/sq/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/sq/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/sq/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/sq/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/sr/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/sr/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/sr/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/sr/LC_MESSAGES/plasma_runner_datetime.mo share/locale/sr/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/sr/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/sr/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_datetime.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_datetime.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/sr@latin/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_datetime.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.nightcolorcontrol.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/sv/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/sv/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/sv/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/sv/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/sv/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/sv/LC_MESSAGES/plasma_runner_datetime.mo share/locale/sv/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/sv/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/sv/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/sv/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/sv/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.nightcolorcontrol.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/ta/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/ta/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/ta/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/ta/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/ta/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/ta/LC_MESSAGES/plasma_runner_datetime.mo share/locale/ta/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/ta/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/tg/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/tg/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/tg/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/tg/LC_MESSAGES/plasma_runner_datetime.mo share/locale/tg/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/tg/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/tg/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/tg/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/th/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/th/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/th/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/tr/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/tr/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.nightcolorcontrol.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/tr/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/tr/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/tr/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/tr/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/tr/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/tr/LC_MESSAGES/plasma_runner_datetime.mo share/locale/tr/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/tr/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/tr/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/tr/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/tr/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/ug/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/ug/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/ug/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/ug/LC_MESSAGES/plasma_runner_datetime.mo share/locale/ug/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/ug/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/ug/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/uk/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/uk/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.nightcolorcontrol.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/uk/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/uk/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/uk/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/uk/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/uk/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/uk/LC_MESSAGES/plasma_runner_datetime.mo share/locale/uk/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/uk/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/uk/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/uk/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/uk/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/vi/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/vi/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.nightcolorcontrol.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/vi/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/vi/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/vi/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/vi/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/vi/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/vi/LC_MESSAGES/plasma_runner_datetime.mo share/locale/vi/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/vi/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/vi/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/vi/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/vi/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/wa/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/wa/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/wa/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/zh_CN/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/zh_CN/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.nightcolorcontrol.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/zh_CN/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/zh_CN/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/zh_CN/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_datetime.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/zh_CN/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/zh_TW/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/zh_TW/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.nightcolorcontrol.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/zh_TW/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/zh_TW/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/zh_TW/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_datetime.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/zh_TW/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/metainfo/org.kde.haenau.appdata.xml share/metainfo/org.kde.hunyango.appdata.xml share/metainfo/org.kde.plasma.addons.katesessions.appdata.xml share/metainfo/org.kde.plasma.binaryclock.appdata.xml share/metainfo/org.kde.plasma.calculator.appdata.xml share/metainfo/org.kde.plasma.colorpicker.appdata.xml share/metainfo/org.kde.plasma.comic.appdata.xml share/metainfo/org.kde.plasma.diskquota.appdata.xml share/metainfo/org.kde.plasma.fifteenpuzzle.appdata.xml share/metainfo/org.kde.plasma.fuzzyclock.appdata.xml share/metainfo/org.kde.plasma.grouping.appdata.xml share/metainfo/org.kde.plasma.keyboardindicator.appdata.xml share/metainfo/org.kde.plasma.kickerdash.appdata.xml share/metainfo/org.kde.plasma.konsoleprofiles.appdata.xml share/metainfo/org.kde.plasma.mediaframe.appdata.xml share/metainfo/org.kde.plasma.nightcolorcontrol.appdata.xml share/metainfo/org.kde.plasma.notes.appdata.xml share/metainfo/org.kde.plasma.quicklaunch.appdata.xml share/metainfo/org.kde.plasma.quickshare.appdata.xml share/metainfo/org.kde.plasma.timer.appdata.xml share/metainfo/org.kde.plasma.userswitcher.appdata.xml share/metainfo/org.kde.plasma.weather.appdata.xml %%QTWEBENGINE%%share/metainfo/org.kde.plasma.webbrowser.appdata.xml %%QTWEBENGINE%%share/metainfo/org.kde.plasma_applet_dict.appdata.xml share/metainfo/org.kde.potd.appdata.xml share/plasma/desktoptheme/default/weather/wind-arrows.svgz share/plasma/desktoptheme/default/widgets/timer.svgz share/plasma/plasmoids/org.kde.plasma.addons.katesessions/contents/ui/KateSessionsItemDelegate.qml share/plasma/plasmoids/org.kde.plasma.addons.katesessions/contents/ui/Menu.qml share/plasma/plasmoids/org.kde.plasma.addons.katesessions/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.addons.katesessions/metadata.json share/plasma/plasmoids/org.kde.plasma.binaryclock/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.binaryclock/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.binaryclock/contents/ui/BinaryClock.qml share/plasma/plasmoids/org.kde.plasma.binaryclock/contents/ui/Dot.qml share/plasma/plasmoids/org.kde.plasma.binaryclock/contents/ui/DotColumn.qml share/plasma/plasmoids/org.kde.plasma.binaryclock/contents/ui/configGeneral.qml share/plasma/plasmoids/org.kde.plasma.binaryclock/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.binaryclock/metadata.json share/plasma/plasmoids/org.kde.plasma.calculator/contents/ui/calculator.qml share/plasma/plasmoids/org.kde.plasma.calculator/metadata.json share/plasma/plasmoids/org.kde.plasma.colorpicker/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.colorpicker/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.colorpicker/contents/ui/ColorCircle.qml share/plasma/plasmoids/org.kde.plasma.colorpicker/contents/ui/ColorContextMenu.qml share/plasma/plasmoids/org.kde.plasma.colorpicker/contents/ui/CompactRepresentation.qml share/plasma/plasmoids/org.kde.plasma.colorpicker/contents/ui/ImageColors.qml share/plasma/plasmoids/org.kde.plasma.colorpicker/contents/ui/LoadingIndicator.qml share/plasma/plasmoids/org.kde.plasma.colorpicker/contents/ui/configGeneral.qml share/plasma/plasmoids/org.kde.plasma.colorpicker/contents/ui/logic.js share/plasma/plasmoids/org.kde.plasma.colorpicker/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.colorpicker/metadata.json share/plasma/plasmoids/org.kde.plasma.comic/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.comic/contents/ui/ButtonBar.qml share/plasma/plasmoids/org.kde.plasma.comic/contents/ui/ComicBottomInfo.qml share/plasma/plasmoids/org.kde.plasma.comic/contents/ui/ComicCentralView.qml share/plasma/plasmoids/org.kde.plasma.comic/contents/ui/FullViewWidget.qml share/plasma/plasmoids/org.kde.plasma.comic/contents/ui/ImageWidget.qml share/plasma/plasmoids/org.kde.plasma.comic/contents/ui/configAdvanced.qml share/plasma/plasmoids/org.kde.plasma.comic/contents/ui/configAppearance.qml share/plasma/plasmoids/org.kde.plasma.comic/contents/ui/configGeneral.qml share/plasma/plasmoids/org.kde.plasma.comic/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.comic/metadata.json share/plasma/plasmoids/org.kde.plasma.diskquota/contents/ui/ListDelegateItem.qml share/plasma/plasmoids/org.kde.plasma.diskquota/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.diskquota/metadata.json share/plasma/plasmoids/org.kde.plasma.fifteenpuzzle/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.fifteenpuzzle/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.fifteenpuzzle/contents/ui/FifteenPuzzle.qml share/plasma/plasmoids/org.kde.plasma.fifteenpuzzle/contents/ui/Piece.qml share/plasma/plasmoids/org.kde.plasma.fifteenpuzzle/contents/ui/blanksquare.svg share/plasma/plasmoids/org.kde.plasma.fifteenpuzzle/contents/ui/configAppearance.qml share/plasma/plasmoids/org.kde.plasma.fifteenpuzzle/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.fifteenpuzzle/metadata.json share/plasma/plasmoids/org.kde.plasma.fuzzyclock/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.fuzzyclock/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.fuzzyclock/contents/ui/FuzzyClock.qml share/plasma/plasmoids/org.kde.plasma.fuzzyclock/contents/ui/configAppearance.qml share/plasma/plasmoids/org.kde.plasma.fuzzyclock/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.fuzzyclock/metadata.json share/plasma/plasmoids/org.kde.plasma.grouping/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.grouping/metadata.json share/plasma/plasmoids/org.kde.plasma.keyboardindicator/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.keyboardindicator/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.keyboardindicator/contents/ui/configAppearance.qml share/plasma/plasmoids/org.kde.plasma.keyboardindicator/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.keyboardindicator/metadata.json share/plasma/plasmoids/org.kde.plasma.kickerdash/metadata.json share/plasma/plasmoids/org.kde.plasma.konsoleprofiles/contents/ui/konsoleprofiles.qml share/plasma/plasmoids/org.kde.plasma.konsoleprofiles/metadata.json share/plasma/plasmoids/org.kde.plasma.mediaframe/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.mediaframe/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.mediaframe/contents/ui/ConfigGeneral.qml share/plasma/plasmoids/org.kde.plasma.mediaframe/contents/ui/ConfigPaths.qml share/plasma/plasmoids/org.kde.plasma.mediaframe/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.mediaframe/metadata.json share/plasma/plasmoids/org.kde.plasma.nightcolorcontrol/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.nightcolorcontrol/metadata.json share/plasma/plasmoids/org.kde.plasma.notes/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.notes/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.notes/contents/ui/ShortcutMenuItem.qml share/plasma/plasmoids/org.kde.plasma.notes/contents/ui/configAppearance.qml share/plasma/plasmoids/org.kde.plasma.notes/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.notes/metadata.json share/plasma/plasmoids/org.kde.plasma.private.grouping/contents/applet/CompactApplet.qml share/plasma/plasmoids/org.kde.plasma.private.grouping/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.private.grouping/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.private.grouping/contents/ui/items/AbstractItem.qml share/plasma/plasmoids/org.kde.plasma.private.grouping/contents/ui/items/PlasmoidItem.qml share/plasma/plasmoids/org.kde.plasma.private.grouping/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.private.grouping/metadata.json share/plasma/plasmoids/org.kde.plasma.quicklaunch/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.quicklaunch/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.quicklaunch/contents/ui/ConfigGeneral.qml share/plasma/plasmoids/org.kde.plasma.quicklaunch/contents/ui/IconItem.qml share/plasma/plasmoids/org.kde.plasma.quicklaunch/contents/ui/Popup.qml share/plasma/plasmoids/org.kde.plasma.quicklaunch/contents/ui/UrlModel.qml share/plasma/plasmoids/org.kde.plasma.quicklaunch/contents/ui/layout.js share/plasma/plasmoids/org.kde.plasma.quicklaunch/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.quicklaunch/metadata.json share/plasma/plasmoids/org.kde.plasma.quickshare/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.quickshare/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.quickshare/contents/ui/PasteMenuItem.qml share/plasma/plasmoids/org.kde.plasma.quickshare/contents/ui/ShareDialog.qml share/plasma/plasmoids/org.kde.plasma.quickshare/contents/ui/ShowUrlDialog.qml share/plasma/plasmoids/org.kde.plasma.quickshare/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.quickshare/contents/ui/settingsGeneral.qml share/plasma/plasmoids/org.kde.plasma.quickshare/metadata.json share/plasma/plasmoids/org.kde.plasma.timer/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.timer/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.timer/contents/ui/CompactRepresentation.qml share/plasma/plasmoids/org.kde.plasma.timer/contents/ui/TimerEdit.qml share/plasma/plasmoids/org.kde.plasma.timer/contents/ui/TimerView.qml share/plasma/plasmoids/org.kde.plasma.timer/contents/ui/configAdvanced.qml share/plasma/plasmoids/org.kde.plasma.timer/contents/ui/configAppearance.qml share/plasma/plasmoids/org.kde.plasma.timer/contents/ui/configTimes.qml share/plasma/plasmoids/org.kde.plasma.timer/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.timer/metadata.json share/plasma/plasmoids/org.kde.plasma.userswitcher/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.userswitcher/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.userswitcher/contents/ui/ActionListDelegate.qml share/plasma/plasmoids/org.kde.plasma.userswitcher/contents/ui/ListDelegate.qml share/plasma/plasmoids/org.kde.plasma.userswitcher/contents/ui/UserListDelegate.qml share/plasma/plasmoids/org.kde.plasma.userswitcher/contents/ui/configGeneral.qml share/plasma/plasmoids/org.kde.plasma.userswitcher/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.userswitcher/metadata.json share/plasma/plasmoids/org.kde.plasma.weather/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.weather/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.weather/contents/ui/CompactRepresentation.qml share/plasma/plasmoids/org.kde.plasma.weather/contents/ui/DetailsView.qml share/plasma/plasmoids/org.kde.plasma.weather/contents/ui/ForecastView.qml share/plasma/plasmoids/org.kde.plasma.weather/contents/ui/FullRepresentation.qml share/plasma/plasmoids/org.kde.plasma.weather/contents/ui/IconAndTextItem.qml share/plasma/plasmoids/org.kde.plasma.weather/contents/ui/NoticesView.qml share/plasma/plasmoids/org.kde.plasma.weather/contents/ui/SwitchPanel.qml share/plasma/plasmoids/org.kde.plasma.weather/contents/ui/TopPanel.qml share/plasma/plasmoids/org.kde.plasma.weather/contents/ui/config/ConfigAppearance.qml share/plasma/plasmoids/org.kde.plasma.weather/contents/ui/config/ConfigUnits.qml share/plasma/plasmoids/org.kde.plasma.weather/contents/ui/config/ConfigWeatherStation.qml share/plasma/plasmoids/org.kde.plasma.weather/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.weather/metadata.json %%QTWEBENGINE%%share/plasma/plasmoids/org.kde.plasma.webbrowser/contents/config/config.qml %%QTWEBENGINE%%share/plasma/plasmoids/org.kde.plasma.webbrowser/contents/config/main.xml %%QTWEBENGINE%%share/plasma/plasmoids/org.kde.plasma.webbrowser/contents/ui/ConfigGeneral.qml %%QTWEBENGINE%%share/plasma/plasmoids/org.kde.plasma.webbrowser/contents/ui/main.qml %%QTWEBENGINE%%share/plasma/plasmoids/org.kde.plasma.webbrowser/metadata.json %%QTWEBENGINE%%share/plasma/plasmoids/org.kde.plasma_applet_dict/contents/config/config.qml %%QTWEBENGINE%%share/plasma/plasmoids/org.kde.plasma_applet_dict/contents/config/main.xml %%QTWEBENGINE%%share/plasma/plasmoids/org.kde.plasma_applet_dict/contents/ui/AvailableDictSheet.qml %%QTWEBENGINE%%share/plasma/plasmoids/org.kde.plasma_applet_dict/contents/ui/ConfigDictionaries.qml %%QTWEBENGINE%%share/plasma/plasmoids/org.kde.plasma_applet_dict/contents/ui/DictItemDelegate.qml %%QTWEBENGINE%%share/plasma/plasmoids/org.kde.plasma_applet_dict/contents/ui/main.qml %%QTWEBENGINE%%share/plasma/plasmoids/org.kde.plasma_applet_dict/metadata.json share/plasma/wallpapers/org.kde.haenau/contents/ui/BackgroundElement.qml share/plasma/wallpapers/org.kde.haenau/contents/ui/BottomBackgroundElement.qml share/plasma/wallpapers/org.kde.haenau/contents/ui/RightBackgroundElement.qml share/plasma/wallpapers/org.kde.haenau/contents/ui/main.qml share/plasma/wallpapers/org.kde.haenau/contents/ui/wallpaper.svgz share/plasma/wallpapers/org.kde.haenau/metadata.json share/plasma/wallpapers/org.kde.hunyango/contents/ui/main.qml share/plasma/wallpapers/org.kde.hunyango/contents/ui/wallpaper.svgz share/plasma/wallpapers/org.kde.hunyango/metadata.json share/plasma/wallpapers/org.kde.potd/contents/config/main.xml share/plasma/wallpapers/org.kde.potd/contents/ui/ActionContextMenu.qml share/plasma/wallpapers/org.kde.potd/contents/ui/WallpaperDelegate.qml share/plasma/wallpapers/org.kde.potd/contents/ui/WallpaperPreview.qml share/plasma/wallpapers/org.kde.potd/contents/ui/config.qml share/plasma/wallpapers/org.kde.potd/contents/ui/main.qml share/plasma/wallpapers/org.kde.potd/metadata.json share/qlogging-categories5/plasma_comic.categories diff --git a/x11-wm/plasma5-kdecoration/distinfo b/x11-wm/plasma5-kdecoration/distinfo index c2dab28a0ba7..f186660fced0 100644 --- a/x11-wm/plasma5-kdecoration/distinfo +++ b/x11-wm/plasma5-kdecoration/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677653314 -SHA256 (KDE/plasma/5.27.2/kdecoration-5.27.2.tar.xz) = b5ed3f4a3dbfbef0d20a82ae50236998f050d9b59a279ae5f1d848697a0fba75 -SIZE (KDE/plasma/5.27.2/kdecoration-5.27.2.tar.xz) = 52496 +TIMESTAMP = 1678807778 +SHA256 (KDE/plasma/5.27.3/kdecoration-5.27.3.tar.xz) = 070e184f79768198af6490f33a82677f27a7231da80c8d07981adfe3b0a9fedb +SIZE (KDE/plasma/5.27.3/kdecoration-5.27.3.tar.xz) = 52496 diff --git a/x11-wm/plasma5-kwin/distinfo b/x11-wm/plasma5-kwin/distinfo index fdbe25e7905d..9404f1c93281 100644 --- a/x11-wm/plasma5-kwin/distinfo +++ b/x11-wm/plasma5-kwin/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677653316 -SHA256 (KDE/plasma/5.27.2/kwin-5.27.2.tar.xz) = d0b2ec260cdc2299015357755a5096715358ccbdad683b6b39f63fd07dea56f5 -SIZE (KDE/plasma/5.27.2/kwin-5.27.2.tar.xz) = 7606528 +TIMESTAMP = 1678807779 +SHA256 (KDE/plasma/5.27.3/kwin-5.27.3.tar.xz) = e82c12813813e09352083362aea4052b6355b0cc3742eec90a9e9e0315afc0e7 +SIZE (KDE/plasma/5.27.3/kwin-5.27.3.tar.xz) = 7609424 diff --git a/x11-wm/plasma5-kwin/pkg-plist b/x11-wm/plasma5-kwin/pkg-plist index 4630215b9a36..a90b7341bbc0 100644 --- a/x11-wm/plasma5-kwin/pkg-plist +++ b/x11-wm/plasma5-kwin/pkg-plist @@ -1,1719 +1,1720 @@ bin/kwin_wayland bin/kwin_wayland_wrapper bin/kwin_x11 include/kwin_export.h include/kwinanimationeffect.h include/kwinconfig.h include/kwineffects.h include/kwineffects_export.h include/kwinglobals.h include/kwinglplatform.h include/kwingltexture.h include/kwinglutils.h include/kwinglutils_export.h include/kwinglutils_funcs.h include/kwinoffscreeneffect.h include/kwinoffscreenquickview.h include/kwinquickeffect.h lib/cmake/KWinDBusInterface/KWinDBusInterfaceConfig.cmake lib/cmake/KWinEffects/KWinEffectsConfig.cmake lib/cmake/KWinEffects/KWinEffectsConfigVersion.cmake lib/cmake/KWinEffects/KWinEffectsTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KWinEffects/KWinEffectsTargets.cmake lib/kconf_update_bin/kwin5_update_default_rules lib/libexec/kwin-applywindowdecoration lib/libexec/kwin_killer_helper lib/libexec/kwin_rules_dialog lib/libkcmkwincommon.so.5 lib/libkcmkwincommon.so.%%KDE_PLASMA_VERSION%% lib/libkwin.so.5 lib/libkwin.so.%%KDE_PLASMA_VERSION%% lib/libkwineffects.so lib/libkwineffects.so.14 lib/libkwineffects.so.%%KDE_PLASMA_VERSION%% lib/libkwinglutils.so lib/libkwinglutils.so.14 lib/libkwinglutils.so.%%KDE_PLASMA_VERSION%% %%QT_PLUGINDIR%%/kpackage/packagestructure/kwin_aurorae.so %%QT_PLUGINDIR%%/kpackage/packagestructure/kwin_decoration.so %%QT_PLUGINDIR%%/kpackage/packagestructure/kwin_effect.so %%QT_PLUGINDIR%%/kpackage/packagestructure/kwin_script.so %%QT_PLUGINDIR%%/kpackage/packagestructure/kwin_windowswitcher.so %%QT_PLUGINDIR%%/kwin/effects/configs/kcm_kwin4_genericscripted.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_blur_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_desktopgrid_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_diminactive_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_glide_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_invert_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_magiclamp_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_magnifier_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_mouseclick_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_mousemark_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_overview_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_showpaint_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_slide_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_thumbnailaside_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_tileseditor_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_trackmouse_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_windowview_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_wobblywindows_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_zoom_config.so %%QT_PLUGINDIR%%/kwin/plugins/MouseButtonToKeyPlugin.so %%QT_PLUGINDIR%%/kwin/plugins/colordintegration.so %%QT_PLUGINDIR%%/kwin/plugins/krunnerintegration.so %%QT_PLUGINDIR%%/kwin/plugins/libKWinNightColorPlugin.so %%QT_PLUGINDIR%%/org.kde.kdecoration2/kwin5_aurorae.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_kwin_effects.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_kwin_scripts.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_kwin_virtualdesktops.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_kwindecoration.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_kwinrules.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_kwinxwayland.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_virtualkeyboard.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_kwinoptions.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_kwinscreenedges.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_kwintabbox.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_kwintouchscreen.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kwincompositing.so %%QT_QMLDIR%%/org/kde/kwin.2/DesktopThumbnailItem.qml %%QT_QMLDIR%%/org/kde/kwin.2/qmldir %%QT_QMLDIR%%/org/kde/kwin/decoration/AppMenuButton.qml %%QT_QMLDIR%%/org/kde/kwin/decoration/ButtonGroup.qml %%QT_QMLDIR%%/org/kde/kwin/decoration/Decoration.qml %%QT_QMLDIR%%/org/kde/kwin/decoration/DecorationButton.qml %%QT_QMLDIR%%/org/kde/kwin/decoration/MenuButton.qml %%QT_QMLDIR%%/org/kde/kwin/decoration/libdecorationplugin.so %%QT_QMLDIR%%/org/kde/kwin/decoration/qmldir %%QT_QMLDIR%%/org/kde/kwin/decorations/plastik/libplastikplugin.so %%QT_QMLDIR%%/org/kde/kwin/decorations/plastik/qmldir %%QT_QMLDIR%%/org/kde/kwin/private/effects/WindowHeap.qml %%QT_QMLDIR%%/org/kde/kwin/private/effects/WindowHeapDelegate.qml %%QT_QMLDIR%%/org/kde/kwin/private/effects/libeffectsplugin.so %%QT_QMLDIR%%/org/kde/kwin/private/effects/qmldir %%QT_QMLDIR%%/org/kde/kwin/private/kdecoration/libkdecorationprivatedeclarative.so %%QT_QMLDIR%%/org/kde/kwin/private/kdecoration/qmldir lib/systemd/user/plasma-kwin_wayland.service lib/systemd/user/plasma-kwin_x11.service share/applications/kcm_kwin_effects.desktop share/applications/kcm_kwin_scripts.desktop share/applications/kcm_kwin_virtualdesktops.desktop share/applications/kcm_kwindecoration.desktop share/applications/kcm_kwinoptions.desktop share/applications/kcm_kwinrules.desktop share/applications/kcm_kwintabbox.desktop share/applications/kcm_kwinxwayland.desktop share/applications/kcm_virtualkeyboard.desktop share/applications/kwincompositing.desktop share/applications/org.kde.kwin_rules_dialog.desktop share/config.kcfg/kwin.kcfg share/config.kcfg/kwindecorationsettings.kcfg share/config.kcfg/nightcolorsettings.kcfg share/config.kcfg/virtualdesktopssettings.kcfg share/dbus-1/interfaces/org.kde.KWin.Plugins.xml share/dbus-1/interfaces/org.kde.KWin.TabletModeManager.xml share/dbus-1/interfaces/org.kde.KWin.VirtualDesktopManager.xml share/dbus-1/interfaces/org.kde.KWin.xml share/dbus-1/interfaces/org.kde.kwin.ColorCorrect.xml share/dbus-1/interfaces/org.kde.kwin.Compositing.xml share/dbus-1/interfaces/org.kde.kwin.Effects.xml share/dbus-1/interfaces/org.kde.kwin.InputDevice.xml share/dbus-1/interfaces/org.kde.kwin.VirtualKeyboard.xml share/doc/HTML/ca/kcontrol/desktop/index.cache.bz2 share/doc/HTML/ca/kcontrol/desktop/index.docbook share/doc/HTML/ca/kcontrol/kwindecoration/button.png share/doc/HTML/ca/kcontrol/kwindecoration/decoration.png share/doc/HTML/ca/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/ca/kcontrol/kwindecoration/index.docbook share/doc/HTML/ca/kcontrol/kwindecoration/main.png share/doc/HTML/ca/kcontrol/kwineffects/index.cache.bz2 share/doc/HTML/ca/kcontrol/kwineffects/index.docbook share/doc/HTML/ca/kcontrol/kwinscreenedges/index.cache.bz2 share/doc/HTML/ca/kcontrol/kwinscreenedges/index.docbook share/doc/HTML/ca/kcontrol/kwintabbox/index.cache.bz2 share/doc/HTML/ca/kcontrol/kwintabbox/index.docbook share/doc/HTML/ca/kcontrol/kwintouchscreen/index.cache.bz2 share/doc/HTML/ca/kcontrol/kwintouchscreen/index.docbook share/doc/HTML/ca/kcontrol/kwinvirtualkeyboard/index.cache.bz2 share/doc/HTML/ca/kcontrol/kwinvirtualkeyboard/index.docbook share/doc/HTML/ca/kcontrol/windowbehaviour/index.cache.bz2 share/doc/HTML/ca/kcontrol/windowbehaviour/index.docbook share/doc/HTML/ca/kcontrol/windowspecific/index.cache.bz2 share/doc/HTML/ca/kcontrol/windowspecific/index.docbook share/doc/HTML/de/kcontrol/desktop/index.cache.bz2 share/doc/HTML/de/kcontrol/desktop/index.docbook share/doc/HTML/de/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/de/kcontrol/kwindecoration/index.docbook share/doc/HTML/de/kcontrol/kwineffects/index.cache.bz2 share/doc/HTML/de/kcontrol/kwineffects/index.docbook share/doc/HTML/de/kcontrol/kwinscreenedges/index.cache.bz2 share/doc/HTML/de/kcontrol/kwinscreenedges/index.docbook share/doc/HTML/de/kcontrol/kwintabbox/index.cache.bz2 share/doc/HTML/de/kcontrol/kwintabbox/index.docbook share/doc/HTML/de/kcontrol/kwintouchscreen/index.cache.bz2 share/doc/HTML/de/kcontrol/kwintouchscreen/index.docbook share/doc/HTML/de/kcontrol/kwinvirtualkeyboard/index.cache.bz2 share/doc/HTML/de/kcontrol/kwinvirtualkeyboard/index.docbook share/doc/HTML/de/kcontrol/windowbehaviour/index.cache.bz2 share/doc/HTML/de/kcontrol/windowbehaviour/index.docbook share/doc/HTML/de/kcontrol/windowspecific/index.cache.bz2 share/doc/HTML/de/kcontrol/windowspecific/index.docbook share/doc/HTML/en/kcontrol/desktop/index.cache.bz2 share/doc/HTML/en/kcontrol/desktop/index.docbook share/doc/HTML/en/kcontrol/kwindecoration/button.png share/doc/HTML/en/kcontrol/kwindecoration/configure.png share/doc/HTML/en/kcontrol/kwindecoration/decoration.png share/doc/HTML/en/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/en/kcontrol/kwindecoration/index.docbook share/doc/HTML/en/kcontrol/kwindecoration/main.png share/doc/HTML/en/kcontrol/kwineffects/configure-effects.png share/doc/HTML/en/kcontrol/kwineffects/dialog-information.png share/doc/HTML/en/kcontrol/kwineffects/index.cache.bz2 share/doc/HTML/en/kcontrol/kwineffects/index.docbook share/doc/HTML/en/kcontrol/kwineffects/video.png share/doc/HTML/en/kcontrol/kwinscreenedges/index.cache.bz2 share/doc/HTML/en/kcontrol/kwinscreenedges/index.docbook share/doc/HTML/en/kcontrol/kwintabbox/index.cache.bz2 share/doc/HTML/en/kcontrol/kwintabbox/index.docbook share/doc/HTML/en/kcontrol/kwintabbox/taskswitcher.png share/doc/HTML/en/kcontrol/kwintouchscreen/index.cache.bz2 share/doc/HTML/en/kcontrol/kwintouchscreen/index.docbook share/doc/HTML/en/kcontrol/kwinvirtualkeyboard/index.cache.bz2 share/doc/HTML/en/kcontrol/kwinvirtualkeyboard/index.docbook share/doc/HTML/en/kcontrol/windowbehaviour/index.cache.bz2 share/doc/HTML/en/kcontrol/windowbehaviour/index.docbook share/doc/HTML/en/kcontrol/windowspecific/Face-smile.png share/doc/HTML/en/kcontrol/windowspecific/akgregator-info.png share/doc/HTML/en/kcontrol/windowspecific/akregator-attributes.png share/doc/HTML/en/kcontrol/windowspecific/akregator-fav.png share/doc/HTML/en/kcontrol/windowspecific/config-win-behavior.png share/doc/HTML/en/kcontrol/windowspecific/emacs-attribute.png share/doc/HTML/en/kcontrol/windowspecific/emacs-info.png share/doc/HTML/en/kcontrol/windowspecific/focus-stealing-pop2top-attribute.png share/doc/HTML/en/kcontrol/windowspecific/index.cache.bz2 share/doc/HTML/en/kcontrol/windowspecific/index.docbook share/doc/HTML/en/kcontrol/windowspecific/knotes-attribute.png share/doc/HTML/en/kcontrol/windowspecific/knotes-info.png share/doc/HTML/en/kcontrol/windowspecific/kopete-attribute-2.png share/doc/HTML/en/kcontrol/windowspecific/kopete-chat-attribute.png share/doc/HTML/en/kcontrol/windowspecific/kopete-chat-info.png share/doc/HTML/en/kcontrol/windowspecific/kopete-info.png share/doc/HTML/en/kcontrol/windowspecific/kwin-detect-window.png share/doc/HTML/en/kcontrol/windowspecific/kwin-kopete-rules.png share/doc/HTML/en/kcontrol/windowspecific/kwin-rule-editor.png share/doc/HTML/en/kcontrol/windowspecific/kwin-rules-main-n-akregator.png share/doc/HTML/en/kcontrol/windowspecific/kwin-rules-main.png share/doc/HTML/en/kcontrol/windowspecific/kwin-rules-ordering.png share/doc/HTML/en/kcontrol/windowspecific/kwin-window-attributes.png share/doc/HTML/en/kcontrol/windowspecific/kwin-window-matching.png share/doc/HTML/en/kcontrol/windowspecific/pager-4-desktops.png share/doc/HTML/en/kcontrol/windowspecific/tbird-compose-attribute.png share/doc/HTML/en/kcontrol/windowspecific/tbird-compose-info.png share/doc/HTML/en/kcontrol/windowspecific/tbird-main-attribute.png share/doc/HTML/en/kcontrol/windowspecific/tbird-main-info.png share/doc/HTML/en/kcontrol/windowspecific/tbird-reminder-attribute-2.png share/doc/HTML/en/kcontrol/windowspecific/tbird-reminder-info.png share/doc/HTML/en/kcontrol/windowspecific/window-matching-emacs.png share/doc/HTML/en/kcontrol/windowspecific/window-matching-init.png share/doc/HTML/en/kcontrol/windowspecific/window-matching-knotes.png share/doc/HTML/en/kcontrol/windowspecific/window-matching-kopete-chat.png share/doc/HTML/en/kcontrol/windowspecific/window-matching-kopete.png share/doc/HTML/en/kcontrol/windowspecific/window-matching-ready-akregator.png share/doc/HTML/en/kcontrol/windowspecific/window-matching-tbird-compose.png share/doc/HTML/en/kcontrol/windowspecific/window-matching-tbird-main.png share/doc/HTML/en/kcontrol/windowspecific/window-matching-tbird-reminder.png share/doc/HTML/es/kcontrol/desktop/index.cache.bz2 share/doc/HTML/es/kcontrol/desktop/index.docbook share/doc/HTML/fr/kcontrol/desktop/index.cache.bz2 share/doc/HTML/fr/kcontrol/desktop/index.docbook share/doc/HTML/fr/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/fr/kcontrol/kwindecoration/index.docbook share/doc/HTML/fr/kcontrol/kwinscreenedges/index.cache.bz2 share/doc/HTML/fr/kcontrol/kwinscreenedges/index.docbook share/doc/HTML/fr/kcontrol/kwintabbox/index.cache.bz2 share/doc/HTML/fr/kcontrol/kwintabbox/index.docbook share/doc/HTML/fr/kcontrol/windowspecific/index.cache.bz2 share/doc/HTML/fr/kcontrol/windowspecific/index.docbook share/doc/HTML/id/kcontrol/desktop/index.cache.bz2 share/doc/HTML/id/kcontrol/desktop/index.docbook share/doc/HTML/id/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/id/kcontrol/kwindecoration/index.docbook share/doc/HTML/id/kcontrol/kwineffects/index.cache.bz2 share/doc/HTML/id/kcontrol/kwineffects/index.docbook share/doc/HTML/id/kcontrol/kwinscreenedges/index.cache.bz2 share/doc/HTML/id/kcontrol/kwinscreenedges/index.docbook share/doc/HTML/id/kcontrol/kwintabbox/index.cache.bz2 share/doc/HTML/id/kcontrol/kwintabbox/index.docbook share/doc/HTML/id/kcontrol/windowbehaviour/index.cache.bz2 share/doc/HTML/id/kcontrol/windowbehaviour/index.docbook share/doc/HTML/id/kcontrol/windowspecific/index.cache.bz2 share/doc/HTML/id/kcontrol/windowspecific/index.docbook share/doc/HTML/it/kcontrol/desktop/index.cache.bz2 share/doc/HTML/it/kcontrol/desktop/index.docbook share/doc/HTML/it/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/it/kcontrol/kwindecoration/index.docbook share/doc/HTML/it/kcontrol/kwineffects/index.cache.bz2 share/doc/HTML/it/kcontrol/kwineffects/index.docbook share/doc/HTML/it/kcontrol/kwinscreenedges/index.cache.bz2 share/doc/HTML/it/kcontrol/kwinscreenedges/index.docbook share/doc/HTML/it/kcontrol/kwintabbox/index.cache.bz2 share/doc/HTML/it/kcontrol/kwintabbox/index.docbook share/doc/HTML/it/kcontrol/kwintouchscreen/index.cache.bz2 share/doc/HTML/it/kcontrol/kwintouchscreen/index.docbook share/doc/HTML/it/kcontrol/kwinvirtualkeyboard/index.cache.bz2 share/doc/HTML/it/kcontrol/kwinvirtualkeyboard/index.docbook share/doc/HTML/it/kcontrol/windowbehaviour/index.cache.bz2 share/doc/HTML/it/kcontrol/windowbehaviour/index.docbook share/doc/HTML/it/kcontrol/windowspecific/index.cache.bz2 share/doc/HTML/it/kcontrol/windowspecific/index.docbook share/doc/HTML/nl/kcontrol/desktop/index.cache.bz2 share/doc/HTML/nl/kcontrol/desktop/index.docbook share/doc/HTML/nl/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/nl/kcontrol/kwindecoration/index.docbook share/doc/HTML/nl/kcontrol/kwineffects/index.cache.bz2 share/doc/HTML/nl/kcontrol/kwineffects/index.docbook share/doc/HTML/nl/kcontrol/kwinscreenedges/index.cache.bz2 share/doc/HTML/nl/kcontrol/kwinscreenedges/index.docbook share/doc/HTML/nl/kcontrol/kwintabbox/index.cache.bz2 share/doc/HTML/nl/kcontrol/kwintabbox/index.docbook share/doc/HTML/nl/kcontrol/kwintouchscreen/index.cache.bz2 share/doc/HTML/nl/kcontrol/kwintouchscreen/index.docbook share/doc/HTML/nl/kcontrol/kwinvirtualkeyboard/index.cache.bz2 share/doc/HTML/nl/kcontrol/kwinvirtualkeyboard/index.docbook share/doc/HTML/nl/kcontrol/windowbehaviour/index.cache.bz2 share/doc/HTML/nl/kcontrol/windowbehaviour/index.docbook share/doc/HTML/nl/kcontrol/windowspecific/index.cache.bz2 share/doc/HTML/nl/kcontrol/windowspecific/index.docbook share/doc/HTML/pt/kcontrol/desktop/index.cache.bz2 share/doc/HTML/pt/kcontrol/desktop/index.docbook share/doc/HTML/pt/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/pt/kcontrol/kwindecoration/index.docbook share/doc/HTML/pt/kcontrol/kwineffects/index.cache.bz2 share/doc/HTML/pt/kcontrol/kwineffects/index.docbook share/doc/HTML/pt/kcontrol/kwinscreenedges/index.cache.bz2 share/doc/HTML/pt/kcontrol/kwinscreenedges/index.docbook share/doc/HTML/pt/kcontrol/kwintabbox/index.cache.bz2 share/doc/HTML/pt/kcontrol/kwintabbox/index.docbook share/doc/HTML/pt/kcontrol/windowbehaviour/index.cache.bz2 share/doc/HTML/pt/kcontrol/windowbehaviour/index.docbook share/doc/HTML/pt/kcontrol/windowspecific/index.cache.bz2 share/doc/HTML/pt/kcontrol/windowspecific/index.docbook share/doc/HTML/pt_BR/kcontrol/desktop/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/desktop/index.docbook share/doc/HTML/pt_BR/kcontrol/kwindecoration/configure.png share/doc/HTML/pt_BR/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/kwindecoration/index.docbook share/doc/HTML/pt_BR/kcontrol/kwinscreenedges/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/kwinscreenedges/index.docbook share/doc/HTML/pt_BR/kcontrol/kwintabbox/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/kwintabbox/index.docbook share/doc/HTML/pt_BR/kcontrol/windowbehaviour/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/windowbehaviour/index.docbook share/doc/HTML/pt_BR/kcontrol/windowspecific/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/windowspecific/index.docbook share/doc/HTML/ru/kcontrol/desktop/index.cache.bz2 share/doc/HTML/ru/kcontrol/desktop/index.docbook share/doc/HTML/ru/kcontrol/kwindecoration/button.png share/doc/HTML/ru/kcontrol/kwindecoration/configure.png share/doc/HTML/ru/kcontrol/kwindecoration/decoration.png share/doc/HTML/ru/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/ru/kcontrol/kwindecoration/index.docbook share/doc/HTML/ru/kcontrol/kwindecoration/main.png share/doc/HTML/ru/kcontrol/kwineffects/index.cache.bz2 share/doc/HTML/ru/kcontrol/kwineffects/index.docbook share/doc/HTML/ru/kcontrol/kwinscreenedges/index.cache.bz2 share/doc/HTML/ru/kcontrol/kwinscreenedges/index.docbook share/doc/HTML/ru/kcontrol/kwintabbox/index.cache.bz2 share/doc/HTML/ru/kcontrol/kwintabbox/index.docbook share/doc/HTML/ru/kcontrol/kwintouchscreen/index.cache.bz2 share/doc/HTML/ru/kcontrol/kwintouchscreen/index.docbook share/doc/HTML/ru/kcontrol/kwinvirtualkeyboard/index.cache.bz2 share/doc/HTML/ru/kcontrol/kwinvirtualkeyboard/index.docbook share/doc/HTML/ru/kcontrol/windowbehaviour/index.cache.bz2 share/doc/HTML/ru/kcontrol/windowbehaviour/index.docbook share/doc/HTML/ru/kcontrol/windowspecific/akgregator-info.png share/doc/HTML/ru/kcontrol/windowspecific/akregator-attributes.png share/doc/HTML/ru/kcontrol/windowspecific/akregator-fav.png share/doc/HTML/ru/kcontrol/windowspecific/config-win-behavior.png share/doc/HTML/ru/kcontrol/windowspecific/emacs-attribute.png share/doc/HTML/ru/kcontrol/windowspecific/emacs-info.png share/doc/HTML/ru/kcontrol/windowspecific/focus-stealing-pop2top-attribute.png share/doc/HTML/ru/kcontrol/windowspecific/index.cache.bz2 share/doc/HTML/ru/kcontrol/windowspecific/index.docbook share/doc/HTML/ru/kcontrol/windowspecific/knotes-attribute.png share/doc/HTML/ru/kcontrol/windowspecific/knotes-info.png share/doc/HTML/ru/kcontrol/windowspecific/kopete-attribute-2.png share/doc/HTML/ru/kcontrol/windowspecific/kopete-chat-attribute.png share/doc/HTML/ru/kcontrol/windowspecific/kopete-chat-info.png share/doc/HTML/ru/kcontrol/windowspecific/kopete-info.png share/doc/HTML/ru/kcontrol/windowspecific/kwin-detect-window.png share/doc/HTML/ru/kcontrol/windowspecific/kwin-kopete-rules.png share/doc/HTML/ru/kcontrol/windowspecific/kwin-rule-editor.png share/doc/HTML/ru/kcontrol/windowspecific/kwin-rules-main-n-akregator.png share/doc/HTML/ru/kcontrol/windowspecific/kwin-rules-main.png share/doc/HTML/ru/kcontrol/windowspecific/kwin-rules-ordering.png share/doc/HTML/ru/kcontrol/windowspecific/kwin-window-attributes.png share/doc/HTML/ru/kcontrol/windowspecific/kwin-window-matching.png share/doc/HTML/ru/kcontrol/windowspecific/tbird-compose-attribute.png share/doc/HTML/ru/kcontrol/windowspecific/tbird-compose-info.png share/doc/HTML/ru/kcontrol/windowspecific/tbird-main-attribute.png share/doc/HTML/ru/kcontrol/windowspecific/tbird-main-info.png share/doc/HTML/ru/kcontrol/windowspecific/tbird-reminder-attribute-2.png share/doc/HTML/ru/kcontrol/windowspecific/tbird-reminder-info.png share/doc/HTML/ru/kcontrol/windowspecific/window-matching-emacs.png share/doc/HTML/ru/kcontrol/windowspecific/window-matching-init.png share/doc/HTML/ru/kcontrol/windowspecific/window-matching-knotes.png share/doc/HTML/ru/kcontrol/windowspecific/window-matching-kopete-chat.png share/doc/HTML/ru/kcontrol/windowspecific/window-matching-kopete.png share/doc/HTML/ru/kcontrol/windowspecific/window-matching-ready-akregator.png share/doc/HTML/ru/kcontrol/windowspecific/window-matching-tbird-compose.png share/doc/HTML/ru/kcontrol/windowspecific/window-matching-tbird-main.png share/doc/HTML/ru/kcontrol/windowspecific/window-matching-tbird-reminder.png share/doc/HTML/sr/kcontrol/desktop/index.cache.bz2 share/doc/HTML/sr/kcontrol/desktop/index.docbook share/doc/HTML/sr@latin/kcontrol/desktop/index.cache.bz2 share/doc/HTML/sr@latin/kcontrol/desktop/index.docbook share/doc/HTML/sv/kcontrol/desktop/index.cache.bz2 share/doc/HTML/sv/kcontrol/desktop/index.docbook share/doc/HTML/sv/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/sv/kcontrol/kwindecoration/index.docbook share/doc/HTML/sv/kcontrol/kwineffects/index.cache.bz2 share/doc/HTML/sv/kcontrol/kwineffects/index.docbook share/doc/HTML/sv/kcontrol/kwinscreenedges/index.cache.bz2 share/doc/HTML/sv/kcontrol/kwinscreenedges/index.docbook share/doc/HTML/sv/kcontrol/kwintabbox/index.cache.bz2 share/doc/HTML/sv/kcontrol/kwintabbox/index.docbook share/doc/HTML/sv/kcontrol/kwintouchscreen/index.cache.bz2 share/doc/HTML/sv/kcontrol/kwintouchscreen/index.docbook share/doc/HTML/sv/kcontrol/kwinvirtualkeyboard/index.cache.bz2 share/doc/HTML/sv/kcontrol/kwinvirtualkeyboard/index.docbook share/doc/HTML/sv/kcontrol/windowbehaviour/index.cache.bz2 share/doc/HTML/sv/kcontrol/windowbehaviour/index.docbook share/doc/HTML/sv/kcontrol/windowspecific/index.cache.bz2 share/doc/HTML/sv/kcontrol/windowspecific/index.docbook share/doc/HTML/uk/kcontrol/desktop/index.cache.bz2 share/doc/HTML/uk/kcontrol/desktop/index.docbook share/doc/HTML/uk/kcontrol/kwindecoration/button.png share/doc/HTML/uk/kcontrol/kwindecoration/decoration.png share/doc/HTML/uk/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/uk/kcontrol/kwindecoration/index.docbook share/doc/HTML/uk/kcontrol/kwindecoration/main.png share/doc/HTML/uk/kcontrol/kwineffects/index.cache.bz2 share/doc/HTML/uk/kcontrol/kwineffects/index.docbook share/doc/HTML/uk/kcontrol/kwinscreenedges/index.cache.bz2 share/doc/HTML/uk/kcontrol/kwinscreenedges/index.docbook share/doc/HTML/uk/kcontrol/kwintabbox/index.cache.bz2 share/doc/HTML/uk/kcontrol/kwintabbox/index.docbook share/doc/HTML/uk/kcontrol/kwintouchscreen/index.cache.bz2 share/doc/HTML/uk/kcontrol/kwintouchscreen/index.docbook share/doc/HTML/uk/kcontrol/kwinvirtualkeyboard/index.cache.bz2 share/doc/HTML/uk/kcontrol/kwinvirtualkeyboard/index.docbook share/doc/HTML/uk/kcontrol/windowbehaviour/index.cache.bz2 share/doc/HTML/uk/kcontrol/windowbehaviour/index.docbook share/doc/HTML/uk/kcontrol/windowspecific/index.cache.bz2 share/doc/HTML/uk/kcontrol/windowspecific/index.docbook share/icons/hicolor/16x16/apps/kwin.png share/icons/hicolor/32x32/apps/kwin.png share/icons/hicolor/48x48/apps/kwin.png share/icons/hicolor/scalable/apps/kwin.svgz share/kconf_update/kwin-5.16-auto-bordersize.sh share/kconf_update/kwin-5.18-move-animspeed.py share/kconf_update/kwin-5.21-desktop-grid-click-behavior.py share/kconf_update/kwin-5.21-no-swap-encourage.py share/kconf_update/kwin-5.23-disable-translucency-effect.sh share/kconf_update/kwin-5.23-remove-cover-switch.py share/kconf_update/kwin-5.23-remove-cubeslide.py share/kconf_update/kwin-5.23-remove-flip-switch.py share/kconf_update/kwin-5.23-remove-xrender-backend.py share/kconf_update/kwin-5.25-effect-pluginid-config-group.py share/kconf_update/kwin-5.27-replace-cascaded-zerocornered.sh share/kconf_update/kwin.upd share/kconf_update/kwinrules-5.19-placement.pl share/kconf_update/kwinrules-5.23-virtual-desktop-ids.py share/kconf_update/kwinrules.upd share/knotifications5/kwin.notifyrc share/knsrcfiles/aurorae.knsrc share/knsrcfiles/kwineffect.knsrc share/knsrcfiles/kwinscripts.knsrc share/knsrcfiles/kwinswitcher.knsrc share/knsrcfiles/window-decorations.knsrc share/kpackage/kcms/kcm_kwin_effects/contents/ui/Effect.qml share/kpackage/kcms/kcm_kwin_effects/contents/ui/Video.qml share/kpackage/kcms/kcm_kwin_effects/contents/ui/main.qml share/kpackage/kcms/kcm_kwin_scripts/contents/ui/main.qml share/kpackage/kcms/kcm_kwin_virtualdesktops/contents/ui/main.qml share/kpackage/kcms/kcm_kwindecoration/contents/ui/ButtonGroup.qml share/kpackage/kcms/kcm_kwindecoration/contents/ui/Buttons.qml share/kpackage/kcms/kcm_kwindecoration/contents/ui/Themes.qml share/kpackage/kcms/kcm_kwindecoration/contents/ui/main.qml share/kpackage/kcms/kcm_kwinrules/contents/ui/FileDialogLoader.qml share/kpackage/kcms/kcm_kwinrules/contents/ui/OptionsComboBox.qml share/kpackage/kcms/kcm_kwinrules/contents/ui/RuleItemDelegate.qml share/kpackage/kcms/kcm_kwinrules/contents/ui/RulesEditor.qml share/kpackage/kcms/kcm_kwinrules/contents/ui/ValueEditor.qml share/kpackage/kcms/kcm_kwinrules/contents/ui/main.qml share/kpackage/kcms/kcm_kwinxwayland/contents/ui/main.qml share/kpackage/kcms/kcm_virtualkeyboard/contents/ui/main.qml share/krunner/dbusplugins/kwin-runner-windows.desktop share/kservicetypes5/kwindecoration.desktop share/kservicetypes5/kwindesktopswitcher.desktop share/kservicetypes5/kwineffect.desktop share/kservicetypes5/kwinscript.desktop share/kservicetypes5/kwinwindowswitcher.desktop %%DATADIR%%/aurorae/AppMenuButton.qml %%DATADIR%%/aurorae/AuroraeButton.qml %%DATADIR%%/aurorae/AuroraeButtonGroup.qml %%DATADIR%%/aurorae/AuroraeMaximizeButton.qml %%DATADIR%%/aurorae/Decoration.qml %%DATADIR%%/aurorae/DecorationButton.qml %%DATADIR%%/aurorae/MenuButton.qml %%DATADIR%%/aurorae/aurorae.qml %%DATADIR%%/builtin-effects/kwin4_effect_blend/metadata.json %%DATADIR%%/builtin-effects/kwin4_effect_blur/metadata.json %%DATADIR%%/builtin-effects/kwin4_effect_colorpicker/metadata.json %%DATADIR%%/builtin-effects/kwin4_effect_contrast/metadata.json %%DATADIR%%/builtin-effects/kwin4_effect_desktopgrid/metadata.json %%DATADIR%%/builtin-effects/kwin4_effect_diminactive/metadata.json %%DATADIR%%/builtin-effects/kwin4_effect_fallapart/metadata.json %%DATADIR%%/builtin-effects/kwin4_effect_glide/metadata.json %%DATADIR%%/builtin-effects/kwin4_effect_highlightwindow/metadata.json %%DATADIR%%/builtin-effects/kwin4_effect_invert/metadata.json %%DATADIR%%/builtin-effects/kwin4_effect_kscreen/metadata.json %%DATADIR%%/builtin-effects/kwin4_effect_magiclamp/metadata.json %%DATADIR%%/builtin-effects/kwin4_effect_magnifier/metadata.json %%DATADIR%%/builtin-effects/kwin4_effect_mouseclick/metadata.json %%DATADIR%%/builtin-effects/kwin4_effect_mousemark/metadata.json %%DATADIR%%/builtin-effects/kwin4_effect_outputlocator/metadata.json %%DATADIR%%/builtin-effects/kwin4_effect_overview/metadata.json %%DATADIR%%/builtin-effects/kwin4_effect_screenedge/metadata.json %%DATADIR%%/builtin-effects/kwin4_effect_screenshot/metadata.json %%DATADIR%%/builtin-effects/kwin4_effect_screentransform/metadata.json %%DATADIR%%/builtin-effects/kwin4_effect_sheet/metadata.json %%DATADIR%%/builtin-effects/kwin4_effect_showfps/metadata.json %%DATADIR%%/builtin-effects/kwin4_effect_showpaint/metadata.json %%DATADIR%%/builtin-effects/kwin4_effect_slide/metadata.json %%DATADIR%%/builtin-effects/kwin4_effect_slideback/metadata.json %%DATADIR%%/builtin-effects/kwin4_effect_slidingpopups/metadata.json %%DATADIR%%/builtin-effects/kwin4_effect_snaphelper/metadata.json %%DATADIR%%/builtin-effects/kwin4_effect_startupfeedback/metadata.json %%DATADIR%%/builtin-effects/kwin4_effect_thumbnailaside/metadata.json %%DATADIR%%/builtin-effects/kwin4_effect_tileseditor/metadata.json %%DATADIR%%/builtin-effects/kwin4_effect_touchpoints/metadata.json %%DATADIR%%/builtin-effects/kwin4_effect_trackmouse/metadata.json %%DATADIR%%/builtin-effects/kwin4_effect_windowview/metadata.json %%DATADIR%%/builtin-effects/kwin4_effect_wobblywindows/metadata.json %%DATADIR%%/builtin-effects/kwin4_effect_zoom/metadata.json %%DATADIR%%/decorations/kwin4_decoration_qml_plastik/contents/config/main.xml %%DATADIR%%/decorations/kwin4_decoration_qml_plastik/contents/ui/PlastikButton.qml %%DATADIR%%/decorations/kwin4_decoration_qml_plastik/contents/ui/config.ui %%DATADIR%%/decorations/kwin4_decoration_qml_plastik/contents/ui/main.qml %%DATADIR%%/decorations/kwin4_decoration_qml_plastik/metadata.json %%DATADIR%%/effects/desktopgrid/qml/DesktopView.qml %%DATADIR%%/effects/desktopgrid/qml/main.qml %%DATADIR%%/effects/kwin4_effect_dialogparent/contents/code/main.js %%DATADIR%%/effects/kwin4_effect_dialogparent/metadata.json %%DATADIR%%/effects/kwin4_effect_dimscreen/contents/code/main.js %%DATADIR%%/effects/kwin4_effect_dimscreen/metadata.json %%DATADIR%%/effects/kwin4_effect_eyeonscreen/contents/code/main.js %%DATADIR%%/effects/kwin4_effect_eyeonscreen/metadata.json %%DATADIR%%/effects/kwin4_effect_fade/contents/code/main.js %%DATADIR%%/effects/kwin4_effect_fade/contents/config/main.xml %%DATADIR%%/effects/kwin4_effect_fade/metadata.json %%DATADIR%%/effects/kwin4_effect_fadedesktop/contents/code/main.js %%DATADIR%%/effects/kwin4_effect_fadedesktop/metadata.json %%DATADIR%%/effects/kwin4_effect_fadingpopups/contents/code/main.js %%DATADIR%%/effects/kwin4_effect_fadingpopups/metadata.json %%DATADIR%%/effects/kwin4_effect_frozenapp/contents/code/main.js %%DATADIR%%/effects/kwin4_effect_frozenapp/metadata.json %%DATADIR%%/effects/kwin4_effect_fullscreen/contents/code/fullscreen.js %%DATADIR%%/effects/kwin4_effect_fullscreen/metadata.json %%DATADIR%%/effects/kwin4_effect_login/contents/code/main.js %%DATADIR%%/effects/kwin4_effect_login/contents/config/main.xml %%DATADIR%%/effects/kwin4_effect_login/contents/ui/config.ui %%DATADIR%%/effects/kwin4_effect_login/metadata.json %%DATADIR%%/effects/kwin4_effect_logout/contents/code/main.js %%DATADIR%%/effects/kwin4_effect_logout/metadata.json %%DATADIR%%/effects/kwin4_effect_maximize/contents/code/maximize.js %%DATADIR%%/effects/kwin4_effect_maximize/metadata.json %%DATADIR%%/effects/kwin4_effect_morphingpopups/contents/code/morphingpopups.js %%DATADIR%%/effects/kwin4_effect_morphingpopups/metadata.json %%DATADIR%%/effects/kwin4_effect_scale/contents/code/main.js %%DATADIR%%/effects/kwin4_effect_scale/contents/config/main.xml %%DATADIR%%/effects/kwin4_effect_scale/contents/ui/config.ui %%DATADIR%%/effects/kwin4_effect_scale/metadata.json %%DATADIR%%/effects/kwin4_effect_sessionquit/contents/code/main.js %%DATADIR%%/effects/kwin4_effect_sessionquit/metadata.json %%DATADIR%%/effects/kwin4_effect_squash/contents/code/main.js %%DATADIR%%/effects/kwin4_effect_squash/metadata.json %%DATADIR%%/effects/kwin4_effect_translucency/contents/code/main.js %%DATADIR%%/effects/kwin4_effect_translucency/contents/config/main.xml %%DATADIR%%/effects/kwin4_effect_translucency/contents/ui/config.ui %%DATADIR%%/effects/kwin4_effect_translucency/metadata.json %%DATADIR%%/effects/kwin4_effect_windowaperture/contents/code/main.js %%DATADIR%%/effects/kwin4_effect_windowaperture/metadata.json %%DATADIR%%/effects/outputlocator/qml/OutputLabel.qml %%DATADIR%%/effects/overview/qml/DesktopBar.qml %%DATADIR%%/effects/overview/qml/DesktopView.qml %%DATADIR%%/effects/overview/qml/ScreenView.qml %%DATADIR%%/effects/showfps/qml/main.qml %%DATADIR%%/effects/tileseditor/qml/ResizeCorner.qml %%DATADIR%%/effects/tileseditor/qml/ResizeHandle.qml %%DATADIR%%/effects/tileseditor/qml/TileDelegate.qml %%DATADIR%%/effects/tileseditor/qml/layouts.svg %%DATADIR%%/effects/tileseditor/qml/main.qml %%DATADIR%%/effects/windowview/qml/main.qml %%DATADIR%%/frames/plasma/frame_none.qml %%DATADIR%%/frames/plasma/frame_styled.qml %%DATADIR%%/frames/plasma/frame_unstyled.qml %%DATADIR%%/kcm_kwintabbox/desktop.png %%DATADIR%%/kcm_kwintabbox/dolphin.png %%DATADIR%%/kcm_kwintabbox/kmail.png %%DATADIR%%/kcm_kwintabbox/konqueror.png %%DATADIR%%/kcm_kwintabbox/systemsettings.png %%DATADIR%%/onscreennotification/plasma/dummydata/osd.qml %%DATADIR%%/onscreennotification/plasma/main.qml %%DATADIR%%/outline/plasma/outline.qml %%DATADIR%%/scripts/desktopchangeosd/contents/ui/main.qml %%DATADIR%%/scripts/desktopchangeosd/contents/ui/osd.qml %%DATADIR%%/scripts/desktopchangeosd/metadata.json %%DATADIR%%/scripts/minimizeall/contents/code/main.js %%DATADIR%%/scripts/minimizeall/metadata.json %%DATADIR%%/scripts/synchronizeskipswitcher/contents/code/main.js %%DATADIR%%/scripts/synchronizeskipswitcher/metadata.json %%DATADIR%%/scripts/videowall/contents/code/main.js %%DATADIR%%/scripts/videowall/contents/config/main.xml %%DATADIR%%/scripts/videowall/contents/ui/config.ui %%DATADIR%%/scripts/videowall/metadata.json %%DATADIR%%/tm_inner.png %%DATADIR%%/tm_outer.png share/locale/af/LC_MESSAGES/kcm_kwindecoration.mo share/locale/af/LC_MESSAGES/kcm_kwinrules.mo share/locale/af/LC_MESSAGES/kcmkwm.mo share/locale/af/LC_MESSAGES/kwin.mo share/locale/af/LC_MESSAGES/kwin_clients.mo share/locale/ar/LC_MESSAGES/kcm_kwin_effects.mo share/locale/ar/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/ar/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ar/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ar/LC_MESSAGES/kcm_kwinrules.mo share/locale/ar/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ar/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/ar/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/ar/LC_MESSAGES/kcmkwincommon.mo share/locale/ar/LC_MESSAGES/kcmkwincompositing.mo share/locale/ar/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ar/LC_MESSAGES/kcmkwm.mo share/locale/ar/LC_MESSAGES/kwin.mo share/locale/ar/LC_MESSAGES/kwin_clients.mo share/locale/ar/LC_MESSAGES/kwin_effects.mo share/locale/ar/LC_MESSAGES/kwin_scripting.mo share/locale/ar/LC_MESSAGES/kwin_scripts.mo share/locale/as/LC_MESSAGES/kwin.mo share/locale/ast/LC_MESSAGES/kwin.mo share/locale/az/LC_MESSAGES/kcm_kwin_effects.mo share/locale/az/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/az/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/az/LC_MESSAGES/kcm_kwindecoration.mo share/locale/az/LC_MESSAGES/kcm_kwinrules.mo share/locale/az/LC_MESSAGES/kcm_kwintabbox.mo share/locale/az/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/az/LC_MESSAGES/kcmkwincommon.mo share/locale/az/LC_MESSAGES/kcmkwincompositing.mo share/locale/az/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/az/LC_MESSAGES/kcmkwm.mo share/locale/az/LC_MESSAGES/kwin.mo share/locale/az/LC_MESSAGES/kwin_clients.mo share/locale/az/LC_MESSAGES/kwin_effects.mo share/locale/az/LC_MESSAGES/kwin_scripting.mo share/locale/az/LC_MESSAGES/kwin_scripts.mo share/locale/be/LC_MESSAGES/kcm_kwin_effects.mo share/locale/be/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/be/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/be/LC_MESSAGES/kcm_kwindecoration.mo share/locale/be/LC_MESSAGES/kcm_kwinrules.mo share/locale/be/LC_MESSAGES/kcm_kwintabbox.mo share/locale/be/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/be/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/be/LC_MESSAGES/kcmkwincommon.mo share/locale/be/LC_MESSAGES/kcmkwincompositing.mo share/locale/be/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/be/LC_MESSAGES/kcmkwm.mo share/locale/be/LC_MESSAGES/kwin.mo share/locale/be/LC_MESSAGES/kwin_clients.mo share/locale/be/LC_MESSAGES/kwin_effects.mo share/locale/be/LC_MESSAGES/kwin_scripting.mo share/locale/be/LC_MESSAGES/kwin_scripts.mo share/locale/be@latin/LC_MESSAGES/kwin.mo share/locale/bg/LC_MESSAGES/kcm_kwin_effects.mo share/locale/bg/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/bg/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/bg/LC_MESSAGES/kcm_kwindecoration.mo share/locale/bg/LC_MESSAGES/kcm_kwinrules.mo share/locale/bg/LC_MESSAGES/kcm_kwintabbox.mo share/locale/bg/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/bg/LC_MESSAGES/kcmkwincommon.mo share/locale/bg/LC_MESSAGES/kcmkwincompositing.mo share/locale/bg/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/bg/LC_MESSAGES/kcmkwm.mo share/locale/bg/LC_MESSAGES/kwin.mo share/locale/bg/LC_MESSAGES/kwin_clients.mo share/locale/bg/LC_MESSAGES/kwin_effects.mo share/locale/bg/LC_MESSAGES/kwin_scripting.mo share/locale/bg/LC_MESSAGES/kwin_scripts.mo share/locale/bn/LC_MESSAGES/kcmkwm.mo share/locale/bn/LC_MESSAGES/kwin.mo share/locale/bn/LC_MESSAGES/kwin_effects.mo share/locale/bn_IN/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/bn_IN/LC_MESSAGES/kcm_kwindecoration.mo share/locale/bn_IN/LC_MESSAGES/kcm_kwinrules.mo share/locale/bn_IN/LC_MESSAGES/kcmkwm.mo share/locale/bn_IN/LC_MESSAGES/kwin.mo share/locale/bn_IN/LC_MESSAGES/kwin_clients.mo share/locale/bn_IN/LC_MESSAGES/kwin_effects.mo share/locale/br/LC_MESSAGES/kcm_kwindecoration.mo share/locale/br/LC_MESSAGES/kcm_kwinrules.mo share/locale/br/LC_MESSAGES/kcmkwm.mo share/locale/br/LC_MESSAGES/kwin.mo share/locale/br/LC_MESSAGES/kwin_clients.mo share/locale/bs/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/bs/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/bs/LC_MESSAGES/kcm_kwindecoration.mo share/locale/bs/LC_MESSAGES/kcm_kwinrules.mo share/locale/bs/LC_MESSAGES/kcm_kwintabbox.mo share/locale/bs/LC_MESSAGES/kcmkwincompositing.mo share/locale/bs/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/bs/LC_MESSAGES/kcmkwm.mo share/locale/bs/LC_MESSAGES/kwin.mo share/locale/bs/LC_MESSAGES/kwin_clients.mo share/locale/bs/LC_MESSAGES/kwin_effects.mo share/locale/bs/LC_MESSAGES/kwin_scripting.mo share/locale/ca/LC_MESSAGES/kcm_kwin_effects.mo share/locale/ca/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/ca/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ca/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ca/LC_MESSAGES/kcm_kwinrules.mo share/locale/ca/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ca/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/ca/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/ca/LC_MESSAGES/kcmkwincommon.mo share/locale/ca/LC_MESSAGES/kcmkwincompositing.mo share/locale/ca/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ca/LC_MESSAGES/kcmkwm.mo share/locale/ca/LC_MESSAGES/kwin.mo share/locale/ca/LC_MESSAGES/kwin_clients.mo share/locale/ca/LC_MESSAGES/kwin_effects.mo share/locale/ca/LC_MESSAGES/kwin_scripting.mo share/locale/ca/LC_MESSAGES/kwin_scripts.mo share/locale/ca@valencia/LC_MESSAGES/kcm_kwin_effects.mo share/locale/ca@valencia/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/ca@valencia/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ca@valencia/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ca@valencia/LC_MESSAGES/kcm_kwinrules.mo share/locale/ca@valencia/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ca@valencia/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/ca@valencia/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/ca@valencia/LC_MESSAGES/kcmkwincommon.mo share/locale/ca@valencia/LC_MESSAGES/kcmkwincompositing.mo share/locale/ca@valencia/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ca@valencia/LC_MESSAGES/kcmkwm.mo share/locale/ca@valencia/LC_MESSAGES/kwin.mo share/locale/ca@valencia/LC_MESSAGES/kwin_clients.mo share/locale/ca@valencia/LC_MESSAGES/kwin_effects.mo share/locale/ca@valencia/LC_MESSAGES/kwin_scripting.mo share/locale/ca@valencia/LC_MESSAGES/kwin_scripts.mo share/locale/cs/LC_MESSAGES/kcm_kwin_effects.mo share/locale/cs/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/cs/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/cs/LC_MESSAGES/kcm_kwindecoration.mo share/locale/cs/LC_MESSAGES/kcm_kwinrules.mo share/locale/cs/LC_MESSAGES/kcm_kwintabbox.mo share/locale/cs/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/cs/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/cs/LC_MESSAGES/kcmkwincommon.mo share/locale/cs/LC_MESSAGES/kcmkwincompositing.mo share/locale/cs/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/cs/LC_MESSAGES/kcmkwm.mo share/locale/cs/LC_MESSAGES/kwin.mo share/locale/cs/LC_MESSAGES/kwin_clients.mo share/locale/cs/LC_MESSAGES/kwin_effects.mo share/locale/cs/LC_MESSAGES/kwin_scripting.mo share/locale/cs/LC_MESSAGES/kwin_scripts.mo share/locale/csb/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/csb/LC_MESSAGES/kwin.mo share/locale/csb/LC_MESSAGES/kwin_clients.mo share/locale/csb/LC_MESSAGES/kwin_effects.mo share/locale/cy/LC_MESSAGES/kcm_kwindecoration.mo share/locale/cy/LC_MESSAGES/kcm_kwinrules.mo share/locale/cy/LC_MESSAGES/kcmkwm.mo share/locale/cy/LC_MESSAGES/kwin.mo share/locale/cy/LC_MESSAGES/kwin_clients.mo share/locale/da/LC_MESSAGES/kcm_kwin_effects.mo share/locale/da/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/da/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/da/LC_MESSAGES/kcm_kwindecoration.mo share/locale/da/LC_MESSAGES/kcm_kwinrules.mo share/locale/da/LC_MESSAGES/kcm_kwintabbox.mo share/locale/da/LC_MESSAGES/kcmkwincommon.mo share/locale/da/LC_MESSAGES/kcmkwincompositing.mo share/locale/da/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/da/LC_MESSAGES/kcmkwm.mo share/locale/da/LC_MESSAGES/kwin.mo share/locale/da/LC_MESSAGES/kwin_clients.mo share/locale/da/LC_MESSAGES/kwin_effects.mo share/locale/da/LC_MESSAGES/kwin_scripting.mo share/locale/da/LC_MESSAGES/kwin_scripts.mo share/locale/de/LC_MESSAGES/kcm_kwin_effects.mo share/locale/de/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/de/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/de/LC_MESSAGES/kcm_kwindecoration.mo share/locale/de/LC_MESSAGES/kcm_kwinrules.mo share/locale/de/LC_MESSAGES/kcm_kwintabbox.mo share/locale/de/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/de/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/de/LC_MESSAGES/kcmkwincommon.mo share/locale/de/LC_MESSAGES/kcmkwincompositing.mo share/locale/de/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/de/LC_MESSAGES/kcmkwm.mo share/locale/de/LC_MESSAGES/kwin.mo share/locale/de/LC_MESSAGES/kwin_clients.mo share/locale/de/LC_MESSAGES/kwin_effects.mo share/locale/de/LC_MESSAGES/kwin_scripting.mo share/locale/de/LC_MESSAGES/kwin_scripts.mo share/locale/el/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/el/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/el/LC_MESSAGES/kcm_kwindecoration.mo share/locale/el/LC_MESSAGES/kcm_kwinrules.mo share/locale/el/LC_MESSAGES/kcm_kwintabbox.mo share/locale/el/LC_MESSAGES/kcmkwincompositing.mo share/locale/el/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/el/LC_MESSAGES/kcmkwm.mo share/locale/el/LC_MESSAGES/kwin.mo share/locale/el/LC_MESSAGES/kwin_clients.mo share/locale/el/LC_MESSAGES/kwin_effects.mo share/locale/el/LC_MESSAGES/kwin_scripting.mo share/locale/el/LC_MESSAGES/kwin_scripts.mo share/locale/en_GB/LC_MESSAGES/kcm_kwin_effects.mo share/locale/en_GB/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/en_GB/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/en_GB/LC_MESSAGES/kcm_kwindecoration.mo share/locale/en_GB/LC_MESSAGES/kcm_kwinrules.mo share/locale/en_GB/LC_MESSAGES/kcm_kwintabbox.mo share/locale/en_GB/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/en_GB/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/en_GB/LC_MESSAGES/kcmkwincommon.mo share/locale/en_GB/LC_MESSAGES/kcmkwincompositing.mo share/locale/en_GB/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/en_GB/LC_MESSAGES/kcmkwm.mo share/locale/en_GB/LC_MESSAGES/kwin.mo share/locale/en_GB/LC_MESSAGES/kwin_clients.mo share/locale/en_GB/LC_MESSAGES/kwin_effects.mo share/locale/en_GB/LC_MESSAGES/kwin_scripting.mo share/locale/en_GB/LC_MESSAGES/kwin_scripts.mo share/locale/eo/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/eo/LC_MESSAGES/kcm_kwindecoration.mo share/locale/eo/LC_MESSAGES/kcm_kwinrules.mo share/locale/eo/LC_MESSAGES/kcm_kwintabbox.mo share/locale/eo/LC_MESSAGES/kcmkwincompositing.mo share/locale/eo/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/eo/LC_MESSAGES/kcmkwm.mo share/locale/eo/LC_MESSAGES/kwin.mo share/locale/eo/LC_MESSAGES/kwin_clients.mo share/locale/eo/LC_MESSAGES/kwin_effects.mo share/locale/es/LC_MESSAGES/kcm_kwin_effects.mo share/locale/es/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/es/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/es/LC_MESSAGES/kcm_kwindecoration.mo share/locale/es/LC_MESSAGES/kcm_kwinrules.mo share/locale/es/LC_MESSAGES/kcm_kwintabbox.mo share/locale/es/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/es/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/es/LC_MESSAGES/kcmkwincommon.mo share/locale/es/LC_MESSAGES/kcmkwincompositing.mo share/locale/es/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/es/LC_MESSAGES/kcmkwm.mo share/locale/es/LC_MESSAGES/kwin.mo share/locale/es/LC_MESSAGES/kwin_clients.mo share/locale/es/LC_MESSAGES/kwin_effects.mo share/locale/es/LC_MESSAGES/kwin_scripting.mo share/locale/es/LC_MESSAGES/kwin_scripts.mo share/locale/et/LC_MESSAGES/kcm_kwin_effects.mo share/locale/et/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/et/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/et/LC_MESSAGES/kcm_kwindecoration.mo share/locale/et/LC_MESSAGES/kcm_kwinrules.mo share/locale/et/LC_MESSAGES/kcm_kwintabbox.mo share/locale/et/LC_MESSAGES/kcmkwincommon.mo share/locale/et/LC_MESSAGES/kcmkwincompositing.mo share/locale/et/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/et/LC_MESSAGES/kcmkwm.mo share/locale/et/LC_MESSAGES/kwin.mo share/locale/et/LC_MESSAGES/kwin_clients.mo share/locale/et/LC_MESSAGES/kwin_effects.mo share/locale/et/LC_MESSAGES/kwin_scripting.mo share/locale/et/LC_MESSAGES/kwin_scripts.mo share/locale/eu/LC_MESSAGES/kcm_kwin_effects.mo share/locale/eu/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/eu/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/eu/LC_MESSAGES/kcm_kwindecoration.mo share/locale/eu/LC_MESSAGES/kcm_kwinrules.mo share/locale/eu/LC_MESSAGES/kcm_kwintabbox.mo share/locale/eu/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/eu/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/eu/LC_MESSAGES/kcmkwincommon.mo share/locale/eu/LC_MESSAGES/kcmkwincompositing.mo share/locale/eu/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/eu/LC_MESSAGES/kcmkwm.mo share/locale/eu/LC_MESSAGES/kwin.mo share/locale/eu/LC_MESSAGES/kwin_clients.mo share/locale/eu/LC_MESSAGES/kwin_effects.mo share/locale/eu/LC_MESSAGES/kwin_scripting.mo share/locale/eu/LC_MESSAGES/kwin_scripts.mo share/locale/fa/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/fa/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/fa/LC_MESSAGES/kcm_kwindecoration.mo share/locale/fa/LC_MESSAGES/kcm_kwinrules.mo share/locale/fa/LC_MESSAGES/kcm_kwintabbox.mo share/locale/fa/LC_MESSAGES/kcmkwincompositing.mo share/locale/fa/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/fa/LC_MESSAGES/kcmkwm.mo share/locale/fa/LC_MESSAGES/kwin.mo share/locale/fa/LC_MESSAGES/kwin_clients.mo share/locale/fa/LC_MESSAGES/kwin_effects.mo share/locale/fi/LC_MESSAGES/kcm_kwin_effects.mo share/locale/fi/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/fi/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/fi/LC_MESSAGES/kcm_kwindecoration.mo share/locale/fi/LC_MESSAGES/kcm_kwinrules.mo share/locale/fi/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/fi/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/fi/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/fi/LC_MESSAGES/kcmkwincommon.mo share/locale/fi/LC_MESSAGES/kcmkwincompositing.mo share/locale/fi/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/fi/LC_MESSAGES/kcmkwm.mo share/locale/fi/LC_MESSAGES/kwin.mo share/locale/fi/LC_MESSAGES/kwin_clients.mo share/locale/fi/LC_MESSAGES/kwin_effects.mo share/locale/fi/LC_MESSAGES/kwin_scripting.mo share/locale/fi/LC_MESSAGES/kwin_scripts.mo share/locale/fr/LC_MESSAGES/kcm_kwin_effects.mo share/locale/fr/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/fr/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/fr/LC_MESSAGES/kcm_kwindecoration.mo share/locale/fr/LC_MESSAGES/kcm_kwinrules.mo share/locale/fr/LC_MESSAGES/kcm_kwintabbox.mo share/locale/fr/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/fr/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/fr/LC_MESSAGES/kcmkwincommon.mo share/locale/fr/LC_MESSAGES/kcmkwincompositing.mo share/locale/fr/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/fr/LC_MESSAGES/kcmkwm.mo share/locale/fr/LC_MESSAGES/kwin.mo share/locale/fr/LC_MESSAGES/kwin_clients.mo share/locale/fr/LC_MESSAGES/kwin_effects.mo share/locale/fr/LC_MESSAGES/kwin_scripting.mo share/locale/fr/LC_MESSAGES/kwin_scripts.mo share/locale/fy/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/fy/LC_MESSAGES/kcm_kwindecoration.mo share/locale/fy/LC_MESSAGES/kcm_kwinrules.mo share/locale/fy/LC_MESSAGES/kcmkwincompositing.mo share/locale/fy/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/fy/LC_MESSAGES/kcmkwm.mo share/locale/fy/LC_MESSAGES/kwin.mo share/locale/fy/LC_MESSAGES/kwin_clients.mo share/locale/fy/LC_MESSAGES/kwin_effects.mo share/locale/ga/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/ga/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ga/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ga/LC_MESSAGES/kcm_kwinrules.mo share/locale/ga/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ga/LC_MESSAGES/kcmkwincompositing.mo share/locale/ga/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ga/LC_MESSAGES/kcmkwm.mo share/locale/ga/LC_MESSAGES/kwin.mo share/locale/ga/LC_MESSAGES/kwin_clients.mo share/locale/ga/LC_MESSAGES/kwin_effects.mo share/locale/gl/LC_MESSAGES/kcm_kwin_effects.mo share/locale/gl/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/gl/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/gl/LC_MESSAGES/kcm_kwindecoration.mo share/locale/gl/LC_MESSAGES/kcm_kwinrules.mo share/locale/gl/LC_MESSAGES/kcm_kwintabbox.mo share/locale/gl/LC_MESSAGES/kcmkwincommon.mo share/locale/gl/LC_MESSAGES/kcmkwincompositing.mo share/locale/gl/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/gl/LC_MESSAGES/kcmkwm.mo share/locale/gl/LC_MESSAGES/kwin.mo share/locale/gl/LC_MESSAGES/kwin_clients.mo share/locale/gl/LC_MESSAGES/kwin_effects.mo share/locale/gl/LC_MESSAGES/kwin_scripting.mo share/locale/gl/LC_MESSAGES/kwin_scripts.mo share/locale/gu/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/gu/LC_MESSAGES/kcm_kwindecoration.mo share/locale/gu/LC_MESSAGES/kcm_kwinrules.mo share/locale/gu/LC_MESSAGES/kcm_kwintabbox.mo share/locale/gu/LC_MESSAGES/kcmkwincompositing.mo share/locale/gu/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/gu/LC_MESSAGES/kcmkwm.mo share/locale/gu/LC_MESSAGES/kwin.mo share/locale/gu/LC_MESSAGES/kwin_clients.mo share/locale/gu/LC_MESSAGES/kwin_effects.mo share/locale/he/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/he/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/he/LC_MESSAGES/kcm_kwindecoration.mo share/locale/he/LC_MESSAGES/kcm_kwinrules.mo share/locale/he/LC_MESSAGES/kcm_kwintabbox.mo share/locale/he/LC_MESSAGES/kcmkwincompositing.mo share/locale/he/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/he/LC_MESSAGES/kcmkwm.mo share/locale/he/LC_MESSAGES/kwin.mo share/locale/he/LC_MESSAGES/kwin_clients.mo share/locale/he/LC_MESSAGES/kwin_effects.mo share/locale/he/LC_MESSAGES/kwin_scripting.mo share/locale/he/LC_MESSAGES/kwin_scripts.mo share/locale/hi/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/hi/LC_MESSAGES/kcm_kwindecoration.mo share/locale/hi/LC_MESSAGES/kcm_kwinrules.mo share/locale/hi/LC_MESSAGES/kcm_kwintabbox.mo share/locale/hi/LC_MESSAGES/kcmkwincompositing.mo share/locale/hi/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/hi/LC_MESSAGES/kcmkwm.mo share/locale/hi/LC_MESSAGES/kwin.mo share/locale/hi/LC_MESSAGES/kwin_clients.mo share/locale/hi/LC_MESSAGES/kwin_effects.mo share/locale/hne/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/hne/LC_MESSAGES/kcm_kwindecoration.mo share/locale/hne/LC_MESSAGES/kcm_kwinrules.mo share/locale/hne/LC_MESSAGES/kcmkwincompositing.mo share/locale/hne/LC_MESSAGES/kcmkwm.mo share/locale/hne/LC_MESSAGES/kwin.mo share/locale/hne/LC_MESSAGES/kwin_clients.mo share/locale/hne/LC_MESSAGES/kwin_effects.mo share/locale/hr/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/hr/LC_MESSAGES/kcm_kwindecoration.mo share/locale/hr/LC_MESSAGES/kcm_kwinrules.mo share/locale/hr/LC_MESSAGES/kcm_kwintabbox.mo share/locale/hr/LC_MESSAGES/kcmkwincompositing.mo share/locale/hr/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/hr/LC_MESSAGES/kcmkwm.mo share/locale/hr/LC_MESSAGES/kwin.mo share/locale/hr/LC_MESSAGES/kwin_clients.mo share/locale/hr/LC_MESSAGES/kwin_effects.mo share/locale/hsb/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/hsb/LC_MESSAGES/kcm_kwindecoration.mo share/locale/hsb/LC_MESSAGES/kcm_kwinrules.mo share/locale/hsb/LC_MESSAGES/kcmkwincompositing.mo share/locale/hsb/LC_MESSAGES/kcmkwm.mo share/locale/hsb/LC_MESSAGES/kwin.mo share/locale/hsb/LC_MESSAGES/kwin_clients.mo share/locale/hsb/LC_MESSAGES/kwin_effects.mo share/locale/hu/LC_MESSAGES/kcm_kwin_effects.mo share/locale/hu/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/hu/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/hu/LC_MESSAGES/kcm_kwindecoration.mo share/locale/hu/LC_MESSAGES/kcm_kwinrules.mo share/locale/hu/LC_MESSAGES/kcm_kwintabbox.mo share/locale/hu/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/hu/LC_MESSAGES/kcmkwincommon.mo share/locale/hu/LC_MESSAGES/kcmkwincompositing.mo share/locale/hu/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/hu/LC_MESSAGES/kcmkwm.mo share/locale/hu/LC_MESSAGES/kwin.mo share/locale/hu/LC_MESSAGES/kwin_clients.mo share/locale/hu/LC_MESSAGES/kwin_effects.mo share/locale/hu/LC_MESSAGES/kwin_scripting.mo share/locale/hu/LC_MESSAGES/kwin_scripts.mo share/locale/ia/LC_MESSAGES/kcm_kwin_effects.mo share/locale/ia/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/ia/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ia/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ia/LC_MESSAGES/kcm_kwinrules.mo share/locale/ia/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ia/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/ia/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/ia/LC_MESSAGES/kcmkwincommon.mo share/locale/ia/LC_MESSAGES/kcmkwincompositing.mo share/locale/ia/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ia/LC_MESSAGES/kcmkwm.mo share/locale/ia/LC_MESSAGES/kwin.mo share/locale/ia/LC_MESSAGES/kwin_clients.mo share/locale/ia/LC_MESSAGES/kwin_effects.mo share/locale/ia/LC_MESSAGES/kwin_scripting.mo share/locale/ia/LC_MESSAGES/kwin_scripts.mo share/locale/id/LC_MESSAGES/kcm_kwin_effects.mo share/locale/id/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/id/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/id/LC_MESSAGES/kcm_kwindecoration.mo share/locale/id/LC_MESSAGES/kcm_kwinrules.mo share/locale/id/LC_MESSAGES/kcm_kwintabbox.mo share/locale/id/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/id/LC_MESSAGES/kcmkwincommon.mo share/locale/id/LC_MESSAGES/kcmkwincompositing.mo share/locale/id/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/id/LC_MESSAGES/kcmkwm.mo share/locale/id/LC_MESSAGES/kwin.mo share/locale/id/LC_MESSAGES/kwin_clients.mo share/locale/id/LC_MESSAGES/kwin_effects.mo share/locale/id/LC_MESSAGES/kwin_scripting.mo share/locale/id/LC_MESSAGES/kwin_scripts.mo share/locale/is/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/is/LC_MESSAGES/kcm_kwindecoration.mo share/locale/is/LC_MESSAGES/kcm_kwinrules.mo share/locale/is/LC_MESSAGES/kcm_kwintabbox.mo share/locale/is/LC_MESSAGES/kcmkwincompositing.mo share/locale/is/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/is/LC_MESSAGES/kcmkwm.mo share/locale/is/LC_MESSAGES/kwin.mo share/locale/is/LC_MESSAGES/kwin_clients.mo share/locale/is/LC_MESSAGES/kwin_effects.mo share/locale/it/LC_MESSAGES/kcm_kwin_effects.mo share/locale/it/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/it/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/it/LC_MESSAGES/kcm_kwindecoration.mo share/locale/it/LC_MESSAGES/kcm_kwinrules.mo share/locale/it/LC_MESSAGES/kcm_kwintabbox.mo share/locale/it/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/it/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/it/LC_MESSAGES/kcmkwincommon.mo share/locale/it/LC_MESSAGES/kcmkwincompositing.mo share/locale/it/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/it/LC_MESSAGES/kcmkwm.mo share/locale/it/LC_MESSAGES/kwin.mo share/locale/it/LC_MESSAGES/kwin_clients.mo share/locale/it/LC_MESSAGES/kwin_effects.mo share/locale/it/LC_MESSAGES/kwin_scripting.mo share/locale/it/LC_MESSAGES/kwin_scripts.mo share/locale/ja/LC_MESSAGES/kcm_kwin_effects.mo share/locale/ja/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/ja/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ja/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ja/LC_MESSAGES/kcm_kwinrules.mo share/locale/ja/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ja/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/ja/LC_MESSAGES/kcmkwincommon.mo share/locale/ja/LC_MESSAGES/kcmkwincompositing.mo share/locale/ja/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ja/LC_MESSAGES/kcmkwm.mo share/locale/ja/LC_MESSAGES/kwin.mo share/locale/ja/LC_MESSAGES/kwin_clients.mo share/locale/ja/LC_MESSAGES/kwin_effects.mo share/locale/ja/LC_MESSAGES/kwin_scripting.mo share/locale/ja/LC_MESSAGES/kwin_scripts.mo share/locale/ka/LC_MESSAGES/kcm_kwin_effects.mo share/locale/ka/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/ka/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ka/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ka/LC_MESSAGES/kcm_kwinrules.mo share/locale/ka/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ka/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/ka/LC_MESSAGES/kcmkwincommon.mo share/locale/ka/LC_MESSAGES/kcmkwincompositing.mo share/locale/ka/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ka/LC_MESSAGES/kcmkwm.mo share/locale/ka/LC_MESSAGES/kwin.mo share/locale/ka/LC_MESSAGES/kwin_clients.mo share/locale/ka/LC_MESSAGES/kwin_effects.mo share/locale/ka/LC_MESSAGES/kwin_scripting.mo share/locale/ka/LC_MESSAGES/kwin_scripts.mo share/locale/kk/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/kk/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/kk/LC_MESSAGES/kcm_kwindecoration.mo share/locale/kk/LC_MESSAGES/kcm_kwinrules.mo share/locale/kk/LC_MESSAGES/kcm_kwintabbox.mo share/locale/kk/LC_MESSAGES/kcmkwincompositing.mo share/locale/kk/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/kk/LC_MESSAGES/kcmkwm.mo share/locale/kk/LC_MESSAGES/kwin.mo share/locale/kk/LC_MESSAGES/kwin_clients.mo share/locale/kk/LC_MESSAGES/kwin_effects.mo share/locale/kk/LC_MESSAGES/kwin_scripting.mo share/locale/km/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/km/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/km/LC_MESSAGES/kcm_kwindecoration.mo share/locale/km/LC_MESSAGES/kcm_kwinrules.mo share/locale/km/LC_MESSAGES/kcm_kwintabbox.mo share/locale/km/LC_MESSAGES/kcmkwincompositing.mo share/locale/km/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/km/LC_MESSAGES/kcmkwm.mo share/locale/km/LC_MESSAGES/kwin.mo share/locale/km/LC_MESSAGES/kwin_clients.mo share/locale/km/LC_MESSAGES/kwin_effects.mo share/locale/kn/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/kn/LC_MESSAGES/kcm_kwindecoration.mo share/locale/kn/LC_MESSAGES/kcm_kwinrules.mo share/locale/kn/LC_MESSAGES/kcm_kwintabbox.mo share/locale/kn/LC_MESSAGES/kcmkwincompositing.mo share/locale/kn/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/kn/LC_MESSAGES/kcmkwm.mo share/locale/kn/LC_MESSAGES/kwin.mo share/locale/kn/LC_MESSAGES/kwin_clients.mo share/locale/kn/LC_MESSAGES/kwin_effects.mo share/locale/ko/LC_MESSAGES/kcm_kwin_effects.mo share/locale/ko/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/ko/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ko/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ko/LC_MESSAGES/kcm_kwinrules.mo share/locale/ko/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ko/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/ko/LC_MESSAGES/kcmkwincommon.mo share/locale/ko/LC_MESSAGES/kcmkwincompositing.mo share/locale/ko/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ko/LC_MESSAGES/kcmkwm.mo share/locale/ko/LC_MESSAGES/kwin.mo share/locale/ko/LC_MESSAGES/kwin_clients.mo share/locale/ko/LC_MESSAGES/kwin_effects.mo share/locale/ko/LC_MESSAGES/kwin_scripting.mo share/locale/ko/LC_MESSAGES/kwin_scripts.mo share/locale/ku/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ku/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ku/LC_MESSAGES/kcm_kwinrules.mo share/locale/ku/LC_MESSAGES/kcmkwincompositing.mo share/locale/ku/LC_MESSAGES/kcmkwm.mo share/locale/ku/LC_MESSAGES/kwin.mo share/locale/ku/LC_MESSAGES/kwin_clients.mo share/locale/ku/LC_MESSAGES/kwin_effects.mo share/locale/lt/LC_MESSAGES/kcm_kwin_effects.mo share/locale/lt/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/lt/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/lt/LC_MESSAGES/kcm_kwindecoration.mo share/locale/lt/LC_MESSAGES/kcm_kwinrules.mo share/locale/lt/LC_MESSAGES/kcm_kwintabbox.mo share/locale/lt/LC_MESSAGES/kcmkwincommon.mo share/locale/lt/LC_MESSAGES/kcmkwincompositing.mo share/locale/lt/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/lt/LC_MESSAGES/kcmkwm.mo share/locale/lt/LC_MESSAGES/kwin.mo share/locale/lt/LC_MESSAGES/kwin_clients.mo share/locale/lt/LC_MESSAGES/kwin_effects.mo share/locale/lt/LC_MESSAGES/kwin_scripting.mo share/locale/lt/LC_MESSAGES/kwin_scripts.mo share/locale/lv/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/lv/LC_MESSAGES/kcm_kwindecoration.mo share/locale/lv/LC_MESSAGES/kcm_kwinrules.mo share/locale/lv/LC_MESSAGES/kcm_kwintabbox.mo share/locale/lv/LC_MESSAGES/kcmkwincompositing.mo share/locale/lv/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/lv/LC_MESSAGES/kcmkwm.mo share/locale/lv/LC_MESSAGES/kwin.mo share/locale/lv/LC_MESSAGES/kwin_clients.mo share/locale/lv/LC_MESSAGES/kwin_effects.mo share/locale/mai/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/mai/LC_MESSAGES/kcm_kwindecoration.mo share/locale/mai/LC_MESSAGES/kcm_kwinrules.mo share/locale/mai/LC_MESSAGES/kcm_kwintabbox.mo share/locale/mai/LC_MESSAGES/kcmkwincompositing.mo share/locale/mai/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/mai/LC_MESSAGES/kcmkwm.mo share/locale/mai/LC_MESSAGES/kwin.mo share/locale/mai/LC_MESSAGES/kwin_clients.mo share/locale/mai/LC_MESSAGES/kwin_effects.mo share/locale/mk/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/mk/LC_MESSAGES/kcm_kwindecoration.mo share/locale/mk/LC_MESSAGES/kcm_kwinrules.mo share/locale/mk/LC_MESSAGES/kcmkwincompositing.mo share/locale/mk/LC_MESSAGES/kcmkwm.mo share/locale/mk/LC_MESSAGES/kwin.mo share/locale/mk/LC_MESSAGES/kwin_clients.mo share/locale/mk/LC_MESSAGES/kwin_effects.mo share/locale/ml/LC_MESSAGES/kcm_kwin_effects.mo share/locale/ml/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/ml/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ml/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ml/LC_MESSAGES/kcm_kwinrules.mo share/locale/ml/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ml/LC_MESSAGES/kcmkwincommon.mo share/locale/ml/LC_MESSAGES/kcmkwincompositing.mo share/locale/ml/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ml/LC_MESSAGES/kcmkwm.mo share/locale/ml/LC_MESSAGES/kwin.mo share/locale/ml/LC_MESSAGES/kwin_clients.mo share/locale/ml/LC_MESSAGES/kwin_effects.mo share/locale/ml/LC_MESSAGES/kwin_scripting.mo share/locale/ml/LC_MESSAGES/kwin_scripts.mo share/locale/mr/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/mr/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/mr/LC_MESSAGES/kcm_kwindecoration.mo share/locale/mr/LC_MESSAGES/kcm_kwinrules.mo share/locale/mr/LC_MESSAGES/kcm_kwintabbox.mo share/locale/mr/LC_MESSAGES/kcmkwincompositing.mo share/locale/mr/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/mr/LC_MESSAGES/kcmkwm.mo share/locale/mr/LC_MESSAGES/kwin.mo share/locale/mr/LC_MESSAGES/kwin_clients.mo share/locale/mr/LC_MESSAGES/kwin_effects.mo share/locale/mr/LC_MESSAGES/kwin_scripting.mo share/locale/ms/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ms/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ms/LC_MESSAGES/kcm_kwinrules.mo share/locale/ms/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ms/LC_MESSAGES/kcmkwincompositing.mo share/locale/ms/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ms/LC_MESSAGES/kcmkwm.mo share/locale/ms/LC_MESSAGES/kwin.mo share/locale/ms/LC_MESSAGES/kwin_clients.mo share/locale/ms/LC_MESSAGES/kwin_effects.mo share/locale/nb/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/nb/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/nb/LC_MESSAGES/kcm_kwindecoration.mo share/locale/nb/LC_MESSAGES/kcm_kwinrules.mo share/locale/nb/LC_MESSAGES/kcm_kwintabbox.mo share/locale/nb/LC_MESSAGES/kcmkwincommon.mo share/locale/nb/LC_MESSAGES/kcmkwincompositing.mo share/locale/nb/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/nb/LC_MESSAGES/kcmkwm.mo share/locale/nb/LC_MESSAGES/kwin.mo share/locale/nb/LC_MESSAGES/kwin_clients.mo share/locale/nb/LC_MESSAGES/kwin_effects.mo share/locale/nb/LC_MESSAGES/kwin_scripting.mo share/locale/nds/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/nds/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/nds/LC_MESSAGES/kcm_kwindecoration.mo share/locale/nds/LC_MESSAGES/kcm_kwinrules.mo share/locale/nds/LC_MESSAGES/kcm_kwintabbox.mo share/locale/nds/LC_MESSAGES/kcmkwincompositing.mo share/locale/nds/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/nds/LC_MESSAGES/kcmkwm.mo share/locale/nds/LC_MESSAGES/kwin.mo share/locale/nds/LC_MESSAGES/kwin_clients.mo share/locale/nds/LC_MESSAGES/kwin_effects.mo share/locale/nds/LC_MESSAGES/kwin_scripting.mo share/locale/ne/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ne/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ne/LC_MESSAGES/kcm_kwinrules.mo share/locale/ne/LC_MESSAGES/kcmkwincompositing.mo share/locale/ne/LC_MESSAGES/kcmkwm.mo share/locale/ne/LC_MESSAGES/kwin.mo share/locale/ne/LC_MESSAGES/kwin_clients.mo share/locale/nl/LC_MESSAGES/kcm_kwin_effects.mo share/locale/nl/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/nl/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/nl/LC_MESSAGES/kcm_kwindecoration.mo share/locale/nl/LC_MESSAGES/kcm_kwinrules.mo share/locale/nl/LC_MESSAGES/kcm_kwintabbox.mo share/locale/nl/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/nl/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/nl/LC_MESSAGES/kcmkwincommon.mo share/locale/nl/LC_MESSAGES/kcmkwincompositing.mo share/locale/nl/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/nl/LC_MESSAGES/kcmkwm.mo share/locale/nl/LC_MESSAGES/kwin.mo share/locale/nl/LC_MESSAGES/kwin_clients.mo share/locale/nl/LC_MESSAGES/kwin_effects.mo share/locale/nl/LC_MESSAGES/kwin_scripting.mo share/locale/nl/LC_MESSAGES/kwin_scripts.mo share/locale/nn/LC_MESSAGES/kcm_kwin_effects.mo share/locale/nn/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/nn/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/nn/LC_MESSAGES/kcm_kwindecoration.mo share/locale/nn/LC_MESSAGES/kcm_kwinrules.mo share/locale/nn/LC_MESSAGES/kcm_kwintabbox.mo share/locale/nn/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/nn/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/nn/LC_MESSAGES/kcmkwincommon.mo share/locale/nn/LC_MESSAGES/kcmkwincompositing.mo share/locale/nn/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/nn/LC_MESSAGES/kcmkwm.mo share/locale/nn/LC_MESSAGES/kwin.mo share/locale/nn/LC_MESSAGES/kwin_clients.mo share/locale/nn/LC_MESSAGES/kwin_effects.mo share/locale/nn/LC_MESSAGES/kwin_scripting.mo share/locale/nn/LC_MESSAGES/kwin_scripts.mo share/locale/oc/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/oc/LC_MESSAGES/kcm_kwindecoration.mo share/locale/oc/LC_MESSAGES/kcm_kwinrules.mo share/locale/oc/LC_MESSAGES/kcmkwincompositing.mo share/locale/oc/LC_MESSAGES/kcmkwm.mo share/locale/oc/LC_MESSAGES/kwin.mo share/locale/oc/LC_MESSAGES/kwin_clients.mo share/locale/oc/LC_MESSAGES/kwin_effects.mo share/locale/pa/LC_MESSAGES/kcm_kwin_effects.mo share/locale/pa/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/pa/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/pa/LC_MESSAGES/kcm_kwindecoration.mo share/locale/pa/LC_MESSAGES/kcm_kwinrules.mo share/locale/pa/LC_MESSAGES/kcm_kwintabbox.mo share/locale/pa/LC_MESSAGES/kcmkwincommon.mo share/locale/pa/LC_MESSAGES/kcmkwincompositing.mo share/locale/pa/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/pa/LC_MESSAGES/kcmkwm.mo share/locale/pa/LC_MESSAGES/kwin.mo share/locale/pa/LC_MESSAGES/kwin_clients.mo share/locale/pa/LC_MESSAGES/kwin_effects.mo share/locale/pa/LC_MESSAGES/kwin_scripting.mo share/locale/pa/LC_MESSAGES/kwin_scripts.mo share/locale/pl/LC_MESSAGES/kcm_kwin_effects.mo share/locale/pl/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/pl/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/pl/LC_MESSAGES/kcm_kwindecoration.mo share/locale/pl/LC_MESSAGES/kcm_kwinrules.mo share/locale/pl/LC_MESSAGES/kcm_kwintabbox.mo share/locale/pl/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/pl/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/pl/LC_MESSAGES/kcmkwincommon.mo share/locale/pl/LC_MESSAGES/kcmkwincompositing.mo share/locale/pl/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/pl/LC_MESSAGES/kcmkwm.mo share/locale/pl/LC_MESSAGES/kwin.mo share/locale/pl/LC_MESSAGES/kwin_clients.mo share/locale/pl/LC_MESSAGES/kwin_effects.mo share/locale/pl/LC_MESSAGES/kwin_scripting.mo share/locale/pl/LC_MESSAGES/kwin_scripts.mo share/locale/pt/LC_MESSAGES/kcm_kwin_effects.mo share/locale/pt/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/pt/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/pt/LC_MESSAGES/kcm_kwindecoration.mo share/locale/pt/LC_MESSAGES/kcm_kwinrules.mo share/locale/pt/LC_MESSAGES/kcm_kwintabbox.mo share/locale/pt/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/pt/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/pt/LC_MESSAGES/kcmkwincommon.mo share/locale/pt/LC_MESSAGES/kcmkwincompositing.mo share/locale/pt/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/pt/LC_MESSAGES/kcmkwm.mo share/locale/pt/LC_MESSAGES/kwin.mo share/locale/pt/LC_MESSAGES/kwin_clients.mo share/locale/pt/LC_MESSAGES/kwin_effects.mo share/locale/pt/LC_MESSAGES/kwin_scripting.mo share/locale/pt/LC_MESSAGES/kwin_scripts.mo share/locale/pt_BR/LC_MESSAGES/kcm_kwin_effects.mo share/locale/pt_BR/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/pt_BR/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/pt_BR/LC_MESSAGES/kcm_kwindecoration.mo share/locale/pt_BR/LC_MESSAGES/kcm_kwinrules.mo share/locale/pt_BR/LC_MESSAGES/kcm_kwintabbox.mo share/locale/pt_BR/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/pt_BR/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/pt_BR/LC_MESSAGES/kcmkwincommon.mo share/locale/pt_BR/LC_MESSAGES/kcmkwincompositing.mo share/locale/pt_BR/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/pt_BR/LC_MESSAGES/kcmkwm.mo share/locale/pt_BR/LC_MESSAGES/kwin.mo share/locale/pt_BR/LC_MESSAGES/kwin_clients.mo share/locale/pt_BR/LC_MESSAGES/kwin_effects.mo share/locale/pt_BR/LC_MESSAGES/kwin_scripting.mo share/locale/pt_BR/LC_MESSAGES/kwin_scripts.mo share/locale/ro/LC_MESSAGES/kcm_kwin_effects.mo share/locale/ro/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/ro/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ro/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ro/LC_MESSAGES/kcm_kwinrules.mo share/locale/ro/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ro/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/ro/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/ro/LC_MESSAGES/kcmkwincommon.mo share/locale/ro/LC_MESSAGES/kcmkwincompositing.mo share/locale/ro/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ro/LC_MESSAGES/kcmkwm.mo share/locale/ro/LC_MESSAGES/kwin.mo share/locale/ro/LC_MESSAGES/kwin_clients.mo share/locale/ro/LC_MESSAGES/kwin_effects.mo share/locale/ro/LC_MESSAGES/kwin_scripting.mo share/locale/ro/LC_MESSAGES/kwin_scripts.mo share/locale/ru/LC_MESSAGES/kcm_kwin_effects.mo share/locale/ru/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/ru/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ru/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ru/LC_MESSAGES/kcm_kwinrules.mo share/locale/ru/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ru/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/ru/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/ru/LC_MESSAGES/kcmkwincommon.mo share/locale/ru/LC_MESSAGES/kcmkwincompositing.mo share/locale/ru/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ru/LC_MESSAGES/kcmkwm.mo share/locale/ru/LC_MESSAGES/kwin.mo share/locale/ru/LC_MESSAGES/kwin_clients.mo share/locale/ru/LC_MESSAGES/kwin_effects.mo share/locale/ru/LC_MESSAGES/kwin_scripting.mo share/locale/ru/LC_MESSAGES/kwin_scripts.mo share/locale/se/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/se/LC_MESSAGES/kcm_kwindecoration.mo share/locale/se/LC_MESSAGES/kcm_kwinrules.mo share/locale/se/LC_MESSAGES/kcmkwincommon.mo share/locale/se/LC_MESSAGES/kcmkwincompositing.mo share/locale/se/LC_MESSAGES/kcmkwm.mo share/locale/se/LC_MESSAGES/kwin.mo share/locale/se/LC_MESSAGES/kwin_clients.mo share/locale/si/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/si/LC_MESSAGES/kcm_kwindecoration.mo share/locale/si/LC_MESSAGES/kcm_kwinrules.mo share/locale/si/LC_MESSAGES/kcm_kwintabbox.mo share/locale/si/LC_MESSAGES/kcmkwincompositing.mo share/locale/si/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/si/LC_MESSAGES/kcmkwm.mo share/locale/si/LC_MESSAGES/kwin.mo share/locale/si/LC_MESSAGES/kwin_clients.mo share/locale/si/LC_MESSAGES/kwin_effects.mo share/locale/sk/LC_MESSAGES/kcm_kwin_effects.mo share/locale/sk/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/sk/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/sk/LC_MESSAGES/kcm_kwindecoration.mo share/locale/sk/LC_MESSAGES/kcm_kwinrules.mo share/locale/sk/LC_MESSAGES/kcm_kwintabbox.mo share/locale/sk/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/sk/LC_MESSAGES/kcmkwincommon.mo share/locale/sk/LC_MESSAGES/kcmkwincompositing.mo share/locale/sk/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/sk/LC_MESSAGES/kcmkwm.mo share/locale/sk/LC_MESSAGES/kwin.mo share/locale/sk/LC_MESSAGES/kwin_clients.mo share/locale/sk/LC_MESSAGES/kwin_effects.mo share/locale/sk/LC_MESSAGES/kwin_scripting.mo share/locale/sk/LC_MESSAGES/kwin_scripts.mo share/locale/sl/LC_MESSAGES/kcm_kwin_effects.mo share/locale/sl/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/sl/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/sl/LC_MESSAGES/kcm_kwindecoration.mo share/locale/sl/LC_MESSAGES/kcm_kwinrules.mo share/locale/sl/LC_MESSAGES/kcm_kwintabbox.mo share/locale/sl/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/sl/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/sl/LC_MESSAGES/kcmkwincommon.mo share/locale/sl/LC_MESSAGES/kcmkwincompositing.mo share/locale/sl/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/sl/LC_MESSAGES/kcmkwm.mo share/locale/sl/LC_MESSAGES/kwin.mo share/locale/sl/LC_MESSAGES/kwin_clients.mo share/locale/sl/LC_MESSAGES/kwin_effects.mo share/locale/sl/LC_MESSAGES/kwin_scripting.mo share/locale/sl/LC_MESSAGES/kwin_scripts.mo share/locale/sq/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/sq/LC_MESSAGES/kcm_kwindecoration.mo share/locale/sq/LC_MESSAGES/kcm_kwinrules.mo share/locale/sq/LC_MESSAGES/kcmkwincompositing.mo share/locale/sq/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/sq/LC_MESSAGES/kcmkwm.mo share/locale/sq/LC_MESSAGES/kwin.mo share/locale/sq/LC_MESSAGES/kwin_clients.mo share/locale/sq/LC_MESSAGES/kwin_effects.mo share/locale/sr/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/sr/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/sr/LC_MESSAGES/kcm_kwindecoration.mo share/locale/sr/LC_MESSAGES/kcm_kwinrules.mo share/locale/sr/LC_MESSAGES/kcm_kwintabbox.mo share/locale/sr/LC_MESSAGES/kcmkwincompositing.mo share/locale/sr/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/sr/LC_MESSAGES/kcmkwm.mo share/locale/sr/LC_MESSAGES/kwin.mo share/locale/sr/LC_MESSAGES/kwin_clients.mo share/locale/sr/LC_MESSAGES/kwin_effects.mo share/locale/sr/LC_MESSAGES/kwin_scripting.mo share/locale/sr/LC_MESSAGES/kwin_scripts.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_kwindecoration.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_kwinrules.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_kwintabbox.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmkwincompositing.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmkwm.mo share/locale/sr@ijekavian/LC_MESSAGES/kwin.mo share/locale/sr@ijekavian/LC_MESSAGES/kwin_clients.mo share/locale/sr@ijekavian/LC_MESSAGES/kwin_effects.mo share/locale/sr@ijekavian/LC_MESSAGES/kwin_scripting.mo share/locale/sr@ijekavian/LC_MESSAGES/kwin_scripts.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_kwindecoration.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_kwinrules.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_kwintabbox.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmkwincompositing.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmkwm.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kwin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kwin_clients.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kwin_effects.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kwin_scripting.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kwin_scripts.mo share/locale/sr@latin/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/sr@latin/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/sr@latin/LC_MESSAGES/kcm_kwindecoration.mo share/locale/sr@latin/LC_MESSAGES/kcm_kwinrules.mo share/locale/sr@latin/LC_MESSAGES/kcm_kwintabbox.mo share/locale/sr@latin/LC_MESSAGES/kcmkwincompositing.mo share/locale/sr@latin/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/sr@latin/LC_MESSAGES/kcmkwm.mo share/locale/sr@latin/LC_MESSAGES/kwin.mo share/locale/sr@latin/LC_MESSAGES/kwin_clients.mo share/locale/sr@latin/LC_MESSAGES/kwin_effects.mo share/locale/sr@latin/LC_MESSAGES/kwin_scripting.mo share/locale/sr@latin/LC_MESSAGES/kwin_scripts.mo share/locale/sv/LC_MESSAGES/kcm_kwin_effects.mo share/locale/sv/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/sv/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/sv/LC_MESSAGES/kcm_kwindecoration.mo share/locale/sv/LC_MESSAGES/kcm_kwinrules.mo share/locale/sv/LC_MESSAGES/kcm_kwintabbox.mo share/locale/sv/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/sv/LC_MESSAGES/kcmkwincommon.mo share/locale/sv/LC_MESSAGES/kcmkwincompositing.mo share/locale/sv/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/sv/LC_MESSAGES/kcmkwm.mo share/locale/sv/LC_MESSAGES/kwin.mo share/locale/sv/LC_MESSAGES/kwin_clients.mo share/locale/sv/LC_MESSAGES/kwin_effects.mo share/locale/sv/LC_MESSAGES/kwin_scripting.mo share/locale/sv/LC_MESSAGES/kwin_scripts.mo share/locale/ta/LC_MESSAGES/kcm_kwin_effects.mo share/locale/ta/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/ta/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ta/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ta/LC_MESSAGES/kcm_kwinrules.mo share/locale/ta/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ta/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/ta/LC_MESSAGES/kcmkwincommon.mo share/locale/ta/LC_MESSAGES/kcmkwincompositing.mo share/locale/ta/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ta/LC_MESSAGES/kcmkwm.mo share/locale/ta/LC_MESSAGES/kwin.mo share/locale/ta/LC_MESSAGES/kwin_clients.mo share/locale/ta/LC_MESSAGES/kwin_effects.mo share/locale/ta/LC_MESSAGES/kwin_scripting.mo share/locale/ta/LC_MESSAGES/kwin_scripts.mo share/locale/te/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/te/LC_MESSAGES/kcm_kwindecoration.mo share/locale/te/LC_MESSAGES/kcm_kwinrules.mo share/locale/te/LC_MESSAGES/kcmkwincompositing.mo share/locale/te/LC_MESSAGES/kcmkwm.mo share/locale/te/LC_MESSAGES/kwin.mo share/locale/te/LC_MESSAGES/kwin_clients.mo share/locale/te/LC_MESSAGES/kwin_effects.mo share/locale/tg/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/tg/LC_MESSAGES/kcm_kwindecoration.mo share/locale/tg/LC_MESSAGES/kcm_kwinrules.mo share/locale/tg/LC_MESSAGES/kcmkwincommon.mo share/locale/tg/LC_MESSAGES/kcmkwincompositing.mo share/locale/tg/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/tg/LC_MESSAGES/kcmkwm.mo share/locale/tg/LC_MESSAGES/kwin.mo share/locale/tg/LC_MESSAGES/kwin_clients.mo share/locale/tg/LC_MESSAGES/kwin_effects.mo share/locale/th/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/th/LC_MESSAGES/kcm_kwindecoration.mo share/locale/th/LC_MESSAGES/kcm_kwinrules.mo share/locale/th/LC_MESSAGES/kcm_kwintabbox.mo share/locale/th/LC_MESSAGES/kcmkwincompositing.mo share/locale/th/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/th/LC_MESSAGES/kcmkwm.mo share/locale/th/LC_MESSAGES/kwin.mo share/locale/th/LC_MESSAGES/kwin_clients.mo share/locale/th/LC_MESSAGES/kwin_effects.mo share/locale/tr/LC_MESSAGES/kcm_kwin_effects.mo share/locale/tr/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/tr/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/tr/LC_MESSAGES/kcm_kwindecoration.mo share/locale/tr/LC_MESSAGES/kcm_kwinrules.mo share/locale/tr/LC_MESSAGES/kcm_kwintabbox.mo share/locale/tr/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/tr/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/tr/LC_MESSAGES/kcmkwincommon.mo share/locale/tr/LC_MESSAGES/kcmkwincompositing.mo share/locale/tr/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/tr/LC_MESSAGES/kcmkwm.mo share/locale/tr/LC_MESSAGES/kwin.mo share/locale/tr/LC_MESSAGES/kwin_clients.mo share/locale/tr/LC_MESSAGES/kwin_effects.mo share/locale/tr/LC_MESSAGES/kwin_scripting.mo share/locale/tr/LC_MESSAGES/kwin_scripts.mo share/locale/ug/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/ug/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ug/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ug/LC_MESSAGES/kcm_kwinrules.mo share/locale/ug/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ug/LC_MESSAGES/kcmkwincompositing.mo share/locale/ug/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ug/LC_MESSAGES/kcmkwm.mo share/locale/ug/LC_MESSAGES/kwin.mo share/locale/ug/LC_MESSAGES/kwin_clients.mo share/locale/ug/LC_MESSAGES/kwin_effects.mo share/locale/ug/LC_MESSAGES/kwin_scripting.mo share/locale/uk/LC_MESSAGES/kcm_kwin_effects.mo share/locale/uk/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/uk/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/uk/LC_MESSAGES/kcm_kwindecoration.mo share/locale/uk/LC_MESSAGES/kcm_kwinrules.mo share/locale/uk/LC_MESSAGES/kcm_kwintabbox.mo share/locale/uk/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/uk/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/uk/LC_MESSAGES/kcmkwincommon.mo share/locale/uk/LC_MESSAGES/kcmkwincompositing.mo share/locale/uk/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/uk/LC_MESSAGES/kcmkwm.mo share/locale/uk/LC_MESSAGES/kwin.mo share/locale/uk/LC_MESSAGES/kwin_clients.mo share/locale/uk/LC_MESSAGES/kwin_effects.mo share/locale/uk/LC_MESSAGES/kwin_scripting.mo share/locale/uk/LC_MESSAGES/kwin_scripts.mo share/locale/uz/LC_MESSAGES/kcm_kwindecoration.mo share/locale/uz/LC_MESSAGES/kcm_kwinrules.mo share/locale/uz/LC_MESSAGES/kcmkwm.mo share/locale/uz/LC_MESSAGES/kwin.mo share/locale/uz/LC_MESSAGES/kwin_clients.mo share/locale/uz@cyrillic/LC_MESSAGES/kcm_kwindecoration.mo share/locale/uz@cyrillic/LC_MESSAGES/kcm_kwinrules.mo share/locale/uz@cyrillic/LC_MESSAGES/kcmkwm.mo share/locale/uz@cyrillic/LC_MESSAGES/kwin.mo share/locale/uz@cyrillic/LC_MESSAGES/kwin_clients.mo share/locale/vi/LC_MESSAGES/kcm_kwin_effects.mo share/locale/vi/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/vi/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/vi/LC_MESSAGES/kcm_kwindecoration.mo share/locale/vi/LC_MESSAGES/kcm_kwinrules.mo share/locale/vi/LC_MESSAGES/kcm_kwintabbox.mo share/locale/vi/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/vi/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/vi/LC_MESSAGES/kcmkwincommon.mo share/locale/vi/LC_MESSAGES/kcmkwincompositing.mo share/locale/vi/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/vi/LC_MESSAGES/kcmkwm.mo share/locale/vi/LC_MESSAGES/kwin.mo share/locale/vi/LC_MESSAGES/kwin_clients.mo share/locale/vi/LC_MESSAGES/kwin_effects.mo share/locale/vi/LC_MESSAGES/kwin_scripting.mo share/locale/vi/LC_MESSAGES/kwin_scripts.mo share/locale/wa/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/wa/LC_MESSAGES/kcm_kwindecoration.mo share/locale/wa/LC_MESSAGES/kcm_kwinrules.mo share/locale/wa/LC_MESSAGES/kcm_kwintabbox.mo share/locale/wa/LC_MESSAGES/kcmkwincompositing.mo share/locale/wa/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/wa/LC_MESSAGES/kcmkwm.mo share/locale/wa/LC_MESSAGES/kwin.mo share/locale/wa/LC_MESSAGES/kwin_clients.mo share/locale/wa/LC_MESSAGES/kwin_effects.mo share/locale/xh/LC_MESSAGES/kcm_kwindecoration.mo share/locale/xh/LC_MESSAGES/kcmkwm.mo share/locale/xh/LC_MESSAGES/kwin.mo share/locale/zh_CN/LC_MESSAGES/kcm_kwin_effects.mo share/locale/zh_CN/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/zh_CN/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/zh_CN/LC_MESSAGES/kcm_kwindecoration.mo share/locale/zh_CN/LC_MESSAGES/kcm_kwinrules.mo share/locale/zh_CN/LC_MESSAGES/kcm_kwintabbox.mo share/locale/zh_CN/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/zh_CN/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/zh_CN/LC_MESSAGES/kcmkwincommon.mo share/locale/zh_CN/LC_MESSAGES/kcmkwincompositing.mo share/locale/zh_CN/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/zh_CN/LC_MESSAGES/kcmkwm.mo share/locale/zh_CN/LC_MESSAGES/kwin.mo share/locale/zh_CN/LC_MESSAGES/kwin_clients.mo share/locale/zh_CN/LC_MESSAGES/kwin_effects.mo share/locale/zh_CN/LC_MESSAGES/kwin_scripting.mo share/locale/zh_CN/LC_MESSAGES/kwin_scripts.mo share/locale/zh_TW/LC_MESSAGES/kcm_kwin_effects.mo share/locale/zh_TW/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/zh_TW/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/zh_TW/LC_MESSAGES/kcm_kwindecoration.mo share/locale/zh_TW/LC_MESSAGES/kcm_kwinrules.mo share/locale/zh_TW/LC_MESSAGES/kcm_kwintabbox.mo share/locale/zh_TW/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/zh_TW/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/zh_TW/LC_MESSAGES/kcmkwincommon.mo share/locale/zh_TW/LC_MESSAGES/kcmkwincompositing.mo share/locale/zh_TW/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/zh_TW/LC_MESSAGES/kcmkwm.mo share/locale/zh_TW/LC_MESSAGES/kwin.mo share/locale/zh_TW/LC_MESSAGES/kwin_clients.mo share/locale/zh_TW/LC_MESSAGES/kwin_effects.mo share/locale/zh_TW/LC_MESSAGES/kwin_scripting.mo share/locale/zh_TW/LC_MESSAGES/kwin_scripts.mo share/qlogging-categories5/org_kde_kwin.categories diff --git a/x11/plasma5-kactivitymanagerd/distinfo b/x11/plasma5-kactivitymanagerd/distinfo index 216d12c3b25c..7bd98c782084 100644 --- a/x11/plasma5-kactivitymanagerd/distinfo +++ b/x11/plasma5-kactivitymanagerd/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677653317 -SHA256 (KDE/plasma/5.27.2/kactivitymanagerd-5.27.2.tar.xz) = 3dee273247aa16e2145134142e7aa476417c4da46b1269261bc2e15026f622da -SIZE (KDE/plasma/5.27.2/kactivitymanagerd-5.27.2.tar.xz) = 124880 +TIMESTAMP = 1678807780 +SHA256 (KDE/plasma/5.27.3/kactivitymanagerd-5.27.3.tar.xz) = 64104a3a8c40b0e60f4d2fb0c314cfb93ebe4f7fd4c74af48311d388f3e8ee24 +SIZE (KDE/plasma/5.27.3/kactivitymanagerd-5.27.3.tar.xz) = 124948 diff --git a/x11/plasma5-kgamma5/distinfo b/x11/plasma5-kgamma5/distinfo index 911fc4b01298..7e2a3f14c407 100644 --- a/x11/plasma5-kgamma5/distinfo +++ b/x11/plasma5-kgamma5/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677653319 -SHA256 (KDE/plasma/5.27.2/kgamma5-5.27.2.tar.xz) = 4f0c06a9f383396b9bf4cefdb5bcfccd3bbf9b91df4fc2db0e98f86a8d68b90d -SIZE (KDE/plasma/5.27.2/kgamma5-5.27.2.tar.xz) = 86732 +TIMESTAMP = 1678807781 +SHA256 (KDE/plasma/5.27.3/kgamma5-5.27.3.tar.xz) = de89a5146eff62f633a068d0fa1eddb1c9fb77d7a296320941ffa747777cb67c +SIZE (KDE/plasma/5.27.3/kgamma5-5.27.3.tar.xz) = 86704 diff --git a/x11/plasma5-kscreen/distinfo b/x11/plasma5-kscreen/distinfo index 0adb0fc55511..cfbca25358fd 100644 --- a/x11/plasma5-kscreen/distinfo +++ b/x11/plasma5-kscreen/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677663888 -SHA256 (KDE/plasma/5.27.2/kscreen-5.27.2.tar.xz) = 1c89cfd26f7fd1a60beae5f31c7f40b3eb6b7c5d3a612eec75d9f7affb29d275 -SIZE (KDE/plasma/5.27.2/kscreen-5.27.2.tar.xz) = 184024 +TIMESTAMP = 1678807783 +SHA256 (KDE/plasma/5.27.3/kscreen-5.27.3.tar.xz) = c10e67f36d325f96747613f2dd707cba21764941bf186e01b8cbe05f3368bd35 +SIZE (KDE/plasma/5.27.3/kscreen-5.27.3.tar.xz) = 184224 diff --git a/x11/plasma5-kwayland-integration/distinfo b/x11/plasma5-kwayland-integration/distinfo index 2777c28ff8ec..1b45f7faa6ab 100644 --- a/x11/plasma5-kwayland-integration/distinfo +++ b/x11/plasma5-kwayland-integration/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677653321 -SHA256 (KDE/plasma/5.27.2/kwayland-integration-5.27.2.tar.xz) = 962b528324a3199f440514264daca6ccf312f07e1e4ea8d995bd0bff60cc1c03 -SIZE (KDE/plasma/5.27.2/kwayland-integration-5.27.2.tar.xz) = 25700 +TIMESTAMP = 1678807784 +SHA256 (KDE/plasma/5.27.3/kwayland-integration-5.27.3.tar.xz) = cd0118f39855eff157ef88ff7ddce7affe74305ceefd6bc5593edc9fe09f6f4a +SIZE (KDE/plasma/5.27.3/kwayland-integration-5.27.3.tar.xz) = 25700 diff --git a/x11/plasma5-layer-shell-qt/distinfo b/x11/plasma5-layer-shell-qt/distinfo index fa93c86a50a0..a0928622bf0c 100644 --- a/x11/plasma5-layer-shell-qt/distinfo +++ b/x11/plasma5-layer-shell-qt/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677653323 -SHA256 (KDE/plasma/5.27.2/layer-shell-qt-5.27.2.tar.xz) = 3aa880cf1b2cd83bedba86bd212a85517ed6e76a62d688b46bc9f132001608ff -SIZE (KDE/plasma/5.27.2/layer-shell-qt-5.27.2.tar.xz) = 18420 +TIMESTAMP = 1678807785 +SHA256 (KDE/plasma/5.27.3/layer-shell-qt-5.27.3.tar.xz) = 0e9ccdc7d6b6c73abb38bf67b7e54118ab0ec476b09095a80392751b029f72e7 +SIZE (KDE/plasma/5.27.3/layer-shell-qt-5.27.3.tar.xz) = 18424 diff --git a/x11/plasma5-libkscreen/distinfo b/x11/plasma5-libkscreen/distinfo index 797ffc7bb219..51837d15106e 100644 --- a/x11/plasma5-libkscreen/distinfo +++ b/x11/plasma5-libkscreen/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677653324 -SHA256 (KDE/plasma/5.27.2/libkscreen-5.27.2.tar.xz) = 6b7281763a21a40321897164c61384382396784e6853de2e69430da5fbb429cf -SIZE (KDE/plasma/5.27.2/libkscreen-5.27.2.tar.xz) = 113968 +TIMESTAMP = 1678807786 +SHA256 (KDE/plasma/5.27.3/libkscreen-5.27.3.tar.xz) = 85d77116323d6792e2b82263a240eff263cb2a25d2f4d1a6e2c4b005a8e9c65f +SIZE (KDE/plasma/5.27.3/libkscreen-5.27.3.tar.xz) = 114536 diff --git a/x11/plasma5-libkscreen/pkg-plist b/x11/plasma5-libkscreen/pkg-plist index b94d2b4d6510..8be5b39cac61 100644 --- a/x11/plasma5-libkscreen/pkg-plist +++ b/x11/plasma5-libkscreen/pkg-plist @@ -1,70 +1,72 @@ bin/kscreen-doctor include/KF5/KScreen/KScreen/Config include/KF5/KScreen/KScreen/ConfigMonitor include/KF5/KScreen/KScreen/ConfigOperation include/KF5/KScreen/KScreen/EDID include/KF5/KScreen/KScreen/GetConfigOperation include/KF5/KScreen/KScreen/Log include/KF5/KScreen/KScreen/Mode include/KF5/KScreen/KScreen/Output include/KF5/KScreen/KScreen/Screen include/KF5/KScreen/KScreen/SetConfigOperation include/KF5/KScreen/KScreen/Types include/KF5/KScreen/KScreenDpms/Dpms include/KF5/KScreen/kscreen/backendmanager_p.h include/KF5/KScreen/kscreen/config.h include/KF5/KScreen/kscreen/configmonitor.h include/KF5/KScreen/kscreen/configoperation.h include/KF5/KScreen/kscreen/edid.h include/KF5/KScreen/kscreen/getconfigoperation.h include/KF5/KScreen/kscreen/kscreen_export.h include/KF5/KScreen/kscreen/log.h include/KF5/KScreen/kscreen/mode.h include/KF5/KScreen/kscreen/output.h include/KF5/KScreen/kscreen/screen.h include/KF5/KScreen/kscreen/setconfigoperation.h include/KF5/KScreen/kscreen/types.h include/KF5/KScreen/kscreendpms/dpms.h include/KF5/KScreen/kscreendpms/kscreendpms_export.h include/KF5/kscreen_version.h lib/cmake/KF5Screen/KF5ScreenConfig.cmake lib/cmake/KF5Screen/KF5ScreenConfigVersion.cmake lib/cmake/KF5Screen/KF5ScreenTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5Screen/KF5ScreenTargets.cmake lib/libKF5Screen.so lib/libKF5Screen.so.%%KDE_PLASMA_VERSION%% lib/libKF5Screen.so.8 lib/libKF5ScreenDpms.so lib/libKF5ScreenDpms.so.%%KDE_PLASMA_VERSION%% lib/libKF5ScreenDpms.so.8 lib/libexec/kf5/kscreen_backend_launcher %%QT_MKSPECDIR%%/modules/qt_KScreen.pri %%QT_PLUGINDIR%%/kf5/kscreen/KSC_Fake.so %%QT_PLUGINDIR%%/kf5/kscreen/KSC_KWayland.so %%QT_PLUGINDIR%%/kf5/kscreen/KSC_QScreen.so %%QT_PLUGINDIR%%/kf5/kscreen/KSC_XRandR.so %%QT_PLUGINDIR%%/kf5/kscreen/KSC_XRandR11.so lib/systemd/user/plasma-kscreen.service libdata/pkgconfig/kscreen2.pc share/dbus-1/services/org.kde.kscreen.service share/locale/ca/LC_MESSAGES/libkscreen5_qt.qm share/locale/ca@valencia/LC_MESSAGES/libkscreen5_qt.qm share/locale/cs/LC_MESSAGES/libkscreen5_qt.qm share/locale/en_GB/LC_MESSAGES/libkscreen5_qt.qm share/locale/es/LC_MESSAGES/libkscreen5_qt.qm share/locale/eu/LC_MESSAGES/libkscreen5_qt.qm +share/locale/fi/LC_MESSAGES/libkscreen5_qt.qm share/locale/fr/LC_MESSAGES/libkscreen5_qt.qm share/locale/it/LC_MESSAGES/libkscreen5_qt.qm share/locale/ka/LC_MESSAGES/libkscreen5_qt.qm share/locale/nl/LC_MESSAGES/libkscreen5_qt.qm +share/locale/nn/LC_MESSAGES/libkscreen5_qt.qm share/locale/pl/LC_MESSAGES/libkscreen5_qt.qm share/locale/pt/LC_MESSAGES/libkscreen5_qt.qm share/locale/pt_BR/LC_MESSAGES/libkscreen5_qt.qm share/locale/ru/LC_MESSAGES/libkscreen5_qt.qm share/locale/sl/LC_MESSAGES/libkscreen5_qt.qm share/locale/tr/LC_MESSAGES/libkscreen5_qt.qm share/locale/uk/LC_MESSAGES/libkscreen5_qt.qm share/locale/zh_CN/LC_MESSAGES/libkscreen5_qt.qm share/locale/zh_TW/LC_MESSAGES/libkscreen5_qt.qm share/qlogging-categories5/libkscreen.categories share/zsh/site-functions/_kscreen-doctor diff --git a/x11/plasma5-plasma-bigscreen/distinfo b/x11/plasma5-plasma-bigscreen/distinfo index 299d807e45da..42f465d997d0 100644 --- a/x11/plasma5-plasma-bigscreen/distinfo +++ b/x11/plasma5-plasma-bigscreen/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677653326 -SHA256 (KDE/plasma/5.27.2/plasma-bigscreen-5.27.2.tar.xz) = 328956002a0b97026bae351326c9836f4e81d52e2f2e392926537f8a34e2e6aa -SIZE (KDE/plasma/5.27.2/plasma-bigscreen-5.27.2.tar.xz) = 1062820 +TIMESTAMP = 1678807787 +SHA256 (KDE/plasma/5.27.3/plasma-bigscreen-5.27.3.tar.xz) = 7de4bd70ee421845544fba906fec37360131e794e2476761092e354480b0e16e +SIZE (KDE/plasma/5.27.3/plasma-bigscreen-5.27.3.tar.xz) = 1062012 diff --git a/x11/plasma5-plasma-desktop/distinfo b/x11/plasma5-plasma-desktop/distinfo index 5850a2cf4257..74ffee97f6f6 100644 --- a/x11/plasma5-plasma-desktop/distinfo +++ b/x11/plasma5-plasma-desktop/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677653328 -SHA256 (KDE/plasma/5.27.2/plasma-desktop-5.27.2.tar.xz) = 658b292a4ed3b81c674962c23b85d25ef7b675e1db28340b87d182a660625137 -SIZE (KDE/plasma/5.27.2/plasma-desktop-5.27.2.tar.xz) = 14328460 +TIMESTAMP = 1678807789 +SHA256 (KDE/plasma/5.27.3/plasma-desktop-5.27.3.tar.xz) = e2ddd1a219b178068e4a91425185c752ff0616a8b09a80b6ccdbbb1104f334e1 +SIZE (KDE/plasma/5.27.3/plasma-desktop-5.27.3.tar.xz) = 14331384 diff --git a/x11/plasma5-plasma-desktop/pkg-plist b/x11/plasma5-plasma-desktop/pkg-plist index 0a32395cf622..d1db4e8121c9 100644 --- a/x11/plasma5-plasma-desktop/pkg-plist +++ b/x11/plasma5-plasma-desktop/pkg-plist @@ -1,4024 +1,4024 @@ bin/kaccess bin/kapplymousetheme bin/kcm-touchpad-list-devices bin/knetattach bin/krunner-plugininstaller bin/plasma-emojier bin/solid-action-desktop-gen bin/tastenbrett etc/xdg/autostart/kaccess.desktop lib/libexec/kauth/kcmdatetimehelper %%IBUS%%lib/libexec/kimpanel-ibus-panel %%IBUS%%lib/libexec/kimpanel-ibus-panel-launcher %%SCIM%%lib/libexec/kimpanel-scim-panel %%ACCOUNTS%%%%QT_PLUGINDIR%%/attica_kde.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%%/plasma/dataengine/plasma_engine_touchpad.so %%QT_PLUGINDIR%%/plasma/kcminit/kcm_mouse_init.so %%QT_PLUGINDIR%%/plasma/kcminit/kcm_touchpad_init.so %%QT_PLUGINDIR%%/plasma/kcms/desktop/kcm_krunnersettings.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_access.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_baloofile.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_componentchooser.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_kded.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_keyboard.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_keys.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_landingpage.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_mouse.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_plasmasearch.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_smserver.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_splashscreen.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_tablet.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_touchpad.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_touchscreen.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_workspace.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_activities.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_clock.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_desktoppaths.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_device_automounter.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_qtquicksettings.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_recentFiles.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_solid_actions.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcmspellchecking.so %%QT_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 %%IBUS%%%%QT_QMLDIR%%/org/kde/plasma/emoji/libEmojierDeclarativePlugin.so %%IBUS%%%%QT_QMLDIR%%/org/kde/plasma/emoji/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 %%ACCOUNTS%%share/accounts/providers/kde/opendesktop.provider %%ACCOUNTS%%share/accounts/services/kde/opendesktop-rating.service share/applications/kcm_access.desktop share/applications/kcm_activities.desktop share/applications/kcm_baloofile.desktop share/applications/kcm_clock.desktop share/applications/kcm_componentchooser.desktop share/applications/kcm_desktoppaths.desktop share/applications/kcm_kded.desktop share/applications/kcm_keyboard.desktop share/applications/kcm_keys.desktop share/applications/kcm_krunnersettings.desktop share/applications/kcm_landingpage.desktop share/applications/kcm_mouse.desktop share/applications/kcm_plasmasearch.desktop share/applications/kcm_qtquicksettings.desktop share/applications/kcm_recentFiles.desktop share/applications/kcm_smserver.desktop share/applications/kcm_solid_actions.desktop share/applications/kcm_splashscreen.desktop share/applications/kcm_tablet.desktop share/applications/kcm_touchpad.desktop share/applications/kcm_touchscreen.desktop share/applications/kcm_workspace.desktop share/applications/kcmspellchecking.desktop share/applications/org.kde.knetattach.desktop %%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/krunnersettingsbase.kcfg share/config.kcfg/landingpage_kdeglobalssettings.kcfg share/config.kcfg/splashscreensettings.kcfg share/config.kcfg/workspaceoptions_kdeglobalssettings.kcfg share/config.kcfg/workspaceoptions_kwinsettings.kcfg share/config.kcfg/workspaceoptions_plasmasettings.kcfg share/dbus-1/interfaces/org.kde.touchpad.xml share/dbus-1/system-services/org.kde.kcontrol.kcmclock.service share/dbus-1/system.d/org.kde.kcontrol.kcmclock.conf share/doc/HTML/ca/kcontrol/baloo/index.cache.bz2 share/doc/HTML/ca/kcontrol/baloo/index.docbook share/doc/HTML/ca/kcontrol/clock/index.cache.bz2 share/doc/HTML/ca/kcontrol/clock/index.docbook share/doc/HTML/ca/kcontrol/componentchooser/index.cache.bz2 share/doc/HTML/ca/kcontrol/componentchooser/index.docbook share/doc/HTML/ca/kcontrol/joystick/index.cache.bz2 share/doc/HTML/ca/kcontrol/joystick/index.docbook share/doc/HTML/ca/kcontrol/kcmaccess/index.cache.bz2 share/doc/HTML/ca/kcontrol/kcmaccess/index.docbook share/doc/HTML/ca/kcontrol/kcmactivities/index.cache.bz2 share/doc/HTML/ca/kcontrol/kcmactivities/index.docbook share/doc/HTML/ca/kcontrol/kcmlaunchfeedback/index.cache.bz2 share/doc/HTML/ca/kcontrol/kcmlaunchfeedback/index.docbook share/doc/HTML/ca/kcontrol/kcmsmserver/index.cache.bz2 share/doc/HTML/ca/kcontrol/kcmsmserver/index.docbook share/doc/HTML/ca/kcontrol/kded/index.cache.bz2 share/doc/HTML/ca/kcontrol/kded/index.docbook share/doc/HTML/ca/kcontrol/keyboard/index.cache.bz2 share/doc/HTML/ca/kcontrol/keyboard/index.docbook share/doc/HTML/ca/kcontrol/keys/index.cache.bz2 share/doc/HTML/ca/kcontrol/keys/index.docbook share/doc/HTML/ca/kcontrol/mouse/index.cache.bz2 share/doc/HTML/ca/kcontrol/mouse/index.docbook share/doc/HTML/ca/kcontrol/paths/index.cache.bz2 share/doc/HTML/ca/kcontrol/paths/index.docbook share/doc/HTML/ca/kcontrol/paths/paths.png share/doc/HTML/ca/kcontrol/solid-actions/add-action.png share/doc/HTML/ca/kcontrol/solid-actions/edit-action.png share/doc/HTML/ca/kcontrol/solid-actions/index.cache.bz2 share/doc/HTML/ca/kcontrol/solid-actions/index.docbook share/doc/HTML/ca/kcontrol/solid-actions/main.png share/doc/HTML/ca/kcontrol/solid-device-automounter/index.cache.bz2 share/doc/HTML/ca/kcontrol/solid-device-automounter/index.docbook share/doc/HTML/ca/kcontrol/spellchecking/index.cache.bz2 share/doc/HTML/ca/kcontrol/spellchecking/index.docbook share/doc/HTML/ca/kcontrol/splashscreen/get-new-theme.png share/doc/HTML/ca/kcontrol/splashscreen/index.cache.bz2 share/doc/HTML/ca/kcontrol/splashscreen/index.docbook share/doc/HTML/ca/kcontrol/splashscreen/splash-main.png share/doc/HTML/ca/kcontrol/workspaceoptions/index.cache.bz2 share/doc/HTML/ca/kcontrol/workspaceoptions/index.docbook share/doc/HTML/ca/kfontview/index.cache.bz2 share/doc/HTML/ca/kfontview/index.docbook share/doc/HTML/ca/kfontview/kfontview.png share/doc/HTML/ca/knetattach/index.cache.bz2 share/doc/HTML/ca/knetattach/index.docbook share/doc/HTML/ca/knetattach/screenshot.png share/doc/HTML/ca/knetattach/screenshot1.png share/doc/HTML/ca/knetattach/screenshot2.png share/doc/HTML/ca/knetattach/screenshot3.png share/doc/HTML/ca/knetattach/screenshot4.png share/doc/HTML/ca/plasma-desktop/add-widgets.png share/doc/HTML/ca/plasma-desktop/application-launcher.png share/doc/HTML/ca/plasma-desktop/application-menu.png share/doc/HTML/ca/plasma-desktop/index.cache.bz2 share/doc/HTML/ca/plasma-desktop/index.docbook share/doc/HTML/de/kcontrol/baloo/index.cache.bz2 share/doc/HTML/de/kcontrol/baloo/index.docbook share/doc/HTML/de/kcontrol/clock/index.cache.bz2 share/doc/HTML/de/kcontrol/clock/index.docbook share/doc/HTML/de/kcontrol/componentchooser/index.cache.bz2 share/doc/HTML/de/kcontrol/componentchooser/index.docbook share/doc/HTML/de/kcontrol/joystick/index.cache.bz2 share/doc/HTML/de/kcontrol/joystick/index.docbook share/doc/HTML/de/kcontrol/kcmaccess/index.cache.bz2 share/doc/HTML/de/kcontrol/kcmaccess/index.docbook share/doc/HTML/de/kcontrol/kcmactivities/index.cache.bz2 share/doc/HTML/de/kcontrol/kcmactivities/index.docbook share/doc/HTML/de/kcontrol/kcmlaunchfeedback/index.cache.bz2 share/doc/HTML/de/kcontrol/kcmlaunchfeedback/index.docbook share/doc/HTML/de/kcontrol/kcmsmserver/index.cache.bz2 share/doc/HTML/de/kcontrol/kcmsmserver/index.docbook share/doc/HTML/de/kcontrol/kded/index.cache.bz2 share/doc/HTML/de/kcontrol/kded/index.docbook share/doc/HTML/de/kcontrol/keyboard/index.cache.bz2 share/doc/HTML/de/kcontrol/keyboard/index.docbook share/doc/HTML/de/kcontrol/keys/index.cache.bz2 share/doc/HTML/de/kcontrol/keys/index.docbook share/doc/HTML/de/kcontrol/mouse/index.cache.bz2 share/doc/HTML/de/kcontrol/mouse/index.docbook share/doc/HTML/de/kcontrol/paths/index.cache.bz2 share/doc/HTML/de/kcontrol/paths/index.docbook share/doc/HTML/de/kcontrol/solid-actions/index.cache.bz2 share/doc/HTML/de/kcontrol/solid-actions/index.docbook share/doc/HTML/de/kcontrol/solid-device-automounter/index.cache.bz2 share/doc/HTML/de/kcontrol/solid-device-automounter/index.docbook share/doc/HTML/de/kcontrol/spellchecking/index.cache.bz2 share/doc/HTML/de/kcontrol/spellchecking/index.docbook share/doc/HTML/de/kcontrol/splashscreen/index.cache.bz2 share/doc/HTML/de/kcontrol/splashscreen/index.docbook share/doc/HTML/de/kcontrol/workspaceoptions/index.cache.bz2 share/doc/HTML/de/kcontrol/workspaceoptions/index.docbook share/doc/HTML/de/kfontview/index.cache.bz2 share/doc/HTML/de/kfontview/index.docbook share/doc/HTML/de/knetattach/index.cache.bz2 share/doc/HTML/de/knetattach/index.docbook share/doc/HTML/de/plasma-desktop/index.cache.bz2 share/doc/HTML/de/plasma-desktop/index.docbook share/doc/HTML/en/kcontrol/baloo/index.cache.bz2 share/doc/HTML/en/kcontrol/baloo/index.docbook share/doc/HTML/en/kcontrol/clock/index.cache.bz2 share/doc/HTML/en/kcontrol/clock/index.docbook share/doc/HTML/en/kcontrol/componentchooser/index.cache.bz2 share/doc/HTML/en/kcontrol/componentchooser/index.docbook share/doc/HTML/en/kcontrol/joystick/index.cache.bz2 share/doc/HTML/en/kcontrol/joystick/index.docbook share/doc/HTML/en/kcontrol/joystick/joystick-calibration.png share/doc/HTML/en/kcontrol/joystick/joystick-main.png share/doc/HTML/en/kcontrol/kcmaccess/index.cache.bz2 share/doc/HTML/en/kcontrol/kcmaccess/index.docbook share/doc/HTML/en/kcontrol/kcmactivities/configure.png share/doc/HTML/en/kcontrol/kcmactivities/edit-delete.png share/doc/HTML/en/kcontrol/kcmactivities/index.cache.bz2 share/doc/HTML/en/kcontrol/kcmactivities/index.docbook share/doc/HTML/en/kcontrol/kcmsmserver/index.cache.bz2 share/doc/HTML/en/kcontrol/kcmsmserver/index.docbook share/doc/HTML/en/kcontrol/kded/index.cache.bz2 share/doc/HTML/en/kcontrol/kded/index.docbook share/doc/HTML/en/kcontrol/keyboard/index.cache.bz2 share/doc/HTML/en/kcontrol/keyboard/index.docbook share/doc/HTML/en/kcontrol/keys/index.cache.bz2 share/doc/HTML/en/kcontrol/keys/index.docbook share/doc/HTML/en/kcontrol/keys/list-add.png share/doc/HTML/en/kcontrol/keys/remove.png share/doc/HTML/en/kcontrol/mouse/index.cache.bz2 share/doc/HTML/en/kcontrol/mouse/index.docbook share/doc/HTML/en/kcontrol/paths/index.cache.bz2 share/doc/HTML/en/kcontrol/paths/index.docbook share/doc/HTML/en/kcontrol/paths/paths.png share/doc/HTML/en/kcontrol/solid-actions/add-action.png share/doc/HTML/en/kcontrol/solid-actions/edit-action.png share/doc/HTML/en/kcontrol/solid-actions/index.cache.bz2 share/doc/HTML/en/kcontrol/solid-actions/index.docbook share/doc/HTML/en/kcontrol/solid-actions/main.png share/doc/HTML/en/kcontrol/solid-device-automounter/index.cache.bz2 share/doc/HTML/en/kcontrol/solid-device-automounter/index.docbook share/doc/HTML/en/kcontrol/spellchecking/index.cache.bz2 share/doc/HTML/en/kcontrol/spellchecking/index.docbook share/doc/HTML/en/kcontrol/splashscreen/get-new-theme.png share/doc/HTML/en/kcontrol/splashscreen/index.cache.bz2 share/doc/HTML/en/kcontrol/splashscreen/index.docbook share/doc/HTML/en/kcontrol/splashscreen/splash-main.png share/doc/HTML/en/kcontrol/workspaceoptions/index.cache.bz2 share/doc/HTML/en/kcontrol/workspaceoptions/index.docbook share/doc/HTML/en/kfontview/index.cache.bz2 share/doc/HTML/en/kfontview/index.docbook share/doc/HTML/en/kfontview/kfontview.png share/doc/HTML/en/knetattach/index.cache.bz2 share/doc/HTML/en/knetattach/index.docbook share/doc/HTML/en/knetattach/screenshot.png share/doc/HTML/en/knetattach/screenshot1.png share/doc/HTML/en/knetattach/screenshot2.png share/doc/HTML/en/knetattach/screenshot3.png share/doc/HTML/en/knetattach/screenshot4.png share/doc/HTML/en/plasma-desktop/add-widgets.png share/doc/HTML/en/plasma-desktop/application-launcher-settings.png share/doc/HTML/en/plasma-desktop/application-launcher.png share/doc/HTML/en/plasma-desktop/application-menu.png share/doc/HTML/en/plasma-desktop/desktop-settings.png share/doc/HTML/en/plasma-desktop/device_notifier_widget.png share/doc/HTML/en/plasma-desktop/device_notifier_widget_actions.png share/doc/HTML/en/plasma-desktop/folder-view.png share/doc/HTML/en/plasma-desktop/index.cache.bz2 share/doc/HTML/en/plasma-desktop/index.docbook share/doc/HTML/en/plasma-desktop/krunner-configure.png share/doc/HTML/en/plasma-desktop/krunner-desktop-actions.png share/doc/HTML/en/plasma-desktop/krunner.png share/doc/HTML/en/plasma-desktop/panel-settings.png share/doc/HTML/en/plasma-desktop/plasma-desktop-annotated.png share/doc/HTML/en/plasma-desktop/remove.png share/doc/HTML/en/plasma-desktop/system-tray-settings.png share/doc/HTML/en/plasma-desktop/system-tray-up-arrow.png share/doc/HTML/en/plasma-desktop/taskbar-settings.png share/doc/HTML/es/kcontrol/baloo/index.cache.bz2 share/doc/HTML/es/kcontrol/baloo/index.docbook share/doc/HTML/es/kcontrol/clock/index.cache.bz2 share/doc/HTML/es/kcontrol/clock/index.docbook share/doc/HTML/es/kcontrol/componentchooser/index.cache.bz2 share/doc/HTML/es/kcontrol/componentchooser/index.docbook share/doc/HTML/es/kcontrol/joystick/index.cache.bz2 share/doc/HTML/es/kcontrol/joystick/index.docbook share/doc/HTML/es/kcontrol/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/keys/index.cache.bz2 share/doc/HTML/es/kcontrol/keys/index.docbook share/doc/HTML/es/kcontrol/mouse/index.cache.bz2 share/doc/HTML/es/kcontrol/mouse/index.docbook share/doc/HTML/es/kcontrol/paths/index.cache.bz2 share/doc/HTML/es/kcontrol/paths/index.docbook share/doc/HTML/es/kcontrol/solid-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/joystick/index.cache.bz2 share/doc/HTML/id/kcontrol/joystick/index.docbook share/doc/HTML/id/kcontrol/kcmaccess/index.cache.bz2 share/doc/HTML/id/kcontrol/kcmaccess/index.docbook share/doc/HTML/id/kcontrol/kcmlaunchfeedback/index.cache.bz2 share/doc/HTML/id/kcontrol/kcmlaunchfeedback/index.docbook share/doc/HTML/id/kcontrol/kcmsmserver/index.cache.bz2 share/doc/HTML/id/kcontrol/kcmsmserver/index.docbook share/doc/HTML/id/kcontrol/kded/index.cache.bz2 share/doc/HTML/id/kcontrol/kded/index.docbook share/doc/HTML/id/kcontrol/keyboard/index.cache.bz2 share/doc/HTML/id/kcontrol/keyboard/index.docbook share/doc/HTML/id/kcontrol/keys/index.cache.bz2 share/doc/HTML/id/kcontrol/keys/index.docbook share/doc/HTML/id/kcontrol/mouse/index.cache.bz2 share/doc/HTML/id/kcontrol/mouse/index.docbook share/doc/HTML/id/kcontrol/paths/index.cache.bz2 share/doc/HTML/id/kcontrol/paths/index.docbook share/doc/HTML/id/kcontrol/solid-actions/index.cache.bz2 share/doc/HTML/id/kcontrol/solid-actions/index.docbook share/doc/HTML/id/kcontrol/solid-device-automounter/index.cache.bz2 share/doc/HTML/id/kcontrol/solid-device-automounter/index.docbook share/doc/HTML/id/kcontrol/spellchecking/index.cache.bz2 share/doc/HTML/id/kcontrol/spellchecking/index.docbook share/doc/HTML/id/kcontrol/splashscreen/index.cache.bz2 share/doc/HTML/id/kcontrol/splashscreen/index.docbook share/doc/HTML/id/kcontrol/workspaceoptions/index.cache.bz2 share/doc/HTML/id/kcontrol/workspaceoptions/index.docbook share/doc/HTML/id/kfontview/index.cache.bz2 share/doc/HTML/id/kfontview/index.docbook share/doc/HTML/id/knetattach/index.cache.bz2 share/doc/HTML/id/knetattach/index.docbook share/doc/HTML/id/plasma-desktop/index.cache.bz2 share/doc/HTML/id/plasma-desktop/index.docbook share/doc/HTML/it/kcontrol/baloo/index.cache.bz2 share/doc/HTML/it/kcontrol/baloo/index.docbook share/doc/HTML/it/kcontrol/clock/index.cache.bz2 share/doc/HTML/it/kcontrol/clock/index.docbook share/doc/HTML/it/kcontrol/componentchooser/index.cache.bz2 share/doc/HTML/it/kcontrol/componentchooser/index.docbook share/doc/HTML/it/kcontrol/joystick/index.cache.bz2 share/doc/HTML/it/kcontrol/joystick/index.docbook share/doc/HTML/it/kcontrol/kcmaccess/index.cache.bz2 share/doc/HTML/it/kcontrol/kcmaccess/index.docbook share/doc/HTML/it/kcontrol/kcmactivities/index.cache.bz2 share/doc/HTML/it/kcontrol/kcmactivities/index.docbook share/doc/HTML/it/kcontrol/kcmlaunchfeedback/index.cache.bz2 share/doc/HTML/it/kcontrol/kcmlaunchfeedback/index.docbook share/doc/HTML/it/kcontrol/kcmsmserver/index.cache.bz2 share/doc/HTML/it/kcontrol/kcmsmserver/index.docbook share/doc/HTML/it/kcontrol/kded/index.cache.bz2 share/doc/HTML/it/kcontrol/kded/index.docbook share/doc/HTML/it/kcontrol/keyboard/index.cache.bz2 share/doc/HTML/it/kcontrol/keyboard/index.docbook share/doc/HTML/it/kcontrol/keys/index.cache.bz2 share/doc/HTML/it/kcontrol/keys/index.docbook share/doc/HTML/it/kcontrol/mouse/index.cache.bz2 share/doc/HTML/it/kcontrol/mouse/index.docbook share/doc/HTML/it/kcontrol/paths/index.cache.bz2 share/doc/HTML/it/kcontrol/paths/index.docbook share/doc/HTML/it/kcontrol/solid-actions/add-action.png share/doc/HTML/it/kcontrol/solid-actions/edit-action.png share/doc/HTML/it/kcontrol/solid-actions/index.cache.bz2 share/doc/HTML/it/kcontrol/solid-actions/index.docbook share/doc/HTML/it/kcontrol/solid-actions/main.png share/doc/HTML/it/kcontrol/solid-device-automounter/index.cache.bz2 share/doc/HTML/it/kcontrol/solid-device-automounter/index.docbook share/doc/HTML/it/kcontrol/spellchecking/index.cache.bz2 share/doc/HTML/it/kcontrol/spellchecking/index.docbook share/doc/HTML/it/kcontrol/splashscreen/index.cache.bz2 share/doc/HTML/it/kcontrol/splashscreen/index.docbook share/doc/HTML/it/kcontrol/workspaceoptions/index.cache.bz2 share/doc/HTML/it/kcontrol/workspaceoptions/index.docbook share/doc/HTML/it/kfontview/index.cache.bz2 share/doc/HTML/it/kfontview/index.docbook share/doc/HTML/it/knetattach/index.cache.bz2 share/doc/HTML/it/knetattach/index.docbook share/doc/HTML/it/plasma-desktop/index.cache.bz2 share/doc/HTML/it/plasma-desktop/index.docbook share/doc/HTML/nl/kcontrol/baloo/index.cache.bz2 share/doc/HTML/nl/kcontrol/baloo/index.docbook share/doc/HTML/nl/kcontrol/clock/index.cache.bz2 share/doc/HTML/nl/kcontrol/clock/index.docbook share/doc/HTML/nl/kcontrol/componentchooser/index.cache.bz2 share/doc/HTML/nl/kcontrol/componentchooser/index.docbook share/doc/HTML/nl/kcontrol/joystick/index.cache.bz2 share/doc/HTML/nl/kcontrol/joystick/index.docbook share/doc/HTML/nl/kcontrol/kcmaccess/index.cache.bz2 share/doc/HTML/nl/kcontrol/kcmaccess/index.docbook share/doc/HTML/nl/kcontrol/kcmactivities/index.cache.bz2 share/doc/HTML/nl/kcontrol/kcmactivities/index.docbook share/doc/HTML/nl/kcontrol/kcmlaunchfeedback/index.cache.bz2 share/doc/HTML/nl/kcontrol/kcmlaunchfeedback/index.docbook share/doc/HTML/nl/kcontrol/kcmsmserver/index.cache.bz2 share/doc/HTML/nl/kcontrol/kcmsmserver/index.docbook share/doc/HTML/nl/kcontrol/kded/index.cache.bz2 share/doc/HTML/nl/kcontrol/kded/index.docbook share/doc/HTML/nl/kcontrol/keyboard/index.cache.bz2 share/doc/HTML/nl/kcontrol/keyboard/index.docbook share/doc/HTML/nl/kcontrol/keys/index.cache.bz2 share/doc/HTML/nl/kcontrol/keys/index.docbook share/doc/HTML/nl/kcontrol/mouse/index.cache.bz2 share/doc/HTML/nl/kcontrol/mouse/index.docbook share/doc/HTML/nl/kcontrol/paths/index.cache.bz2 share/doc/HTML/nl/kcontrol/paths/index.docbook share/doc/HTML/nl/kcontrol/solid-actions/index.cache.bz2 share/doc/HTML/nl/kcontrol/solid-actions/index.docbook share/doc/HTML/nl/kcontrol/solid-device-automounter/index.cache.bz2 share/doc/HTML/nl/kcontrol/solid-device-automounter/index.docbook share/doc/HTML/nl/kcontrol/spellchecking/index.cache.bz2 share/doc/HTML/nl/kcontrol/spellchecking/index.docbook share/doc/HTML/nl/kcontrol/splashscreen/index.cache.bz2 share/doc/HTML/nl/kcontrol/splashscreen/index.docbook share/doc/HTML/nl/kcontrol/workspaceoptions/index.cache.bz2 share/doc/HTML/nl/kcontrol/workspaceoptions/index.docbook share/doc/HTML/nl/kfontview/index.cache.bz2 share/doc/HTML/nl/kfontview/index.docbook share/doc/HTML/nl/knetattach/index.cache.bz2 share/doc/HTML/nl/knetattach/index.docbook share/doc/HTML/nl/plasma-desktop/index.cache.bz2 share/doc/HTML/nl/plasma-desktop/index.docbook share/doc/HTML/pt/kcontrol/baloo/index.cache.bz2 share/doc/HTML/pt/kcontrol/baloo/index.docbook share/doc/HTML/pt/kcontrol/clock/index.cache.bz2 share/doc/HTML/pt/kcontrol/clock/index.docbook share/doc/HTML/pt/kcontrol/componentchooser/index.cache.bz2 share/doc/HTML/pt/kcontrol/componentchooser/index.docbook share/doc/HTML/pt/kcontrol/joystick/index.cache.bz2 share/doc/HTML/pt/kcontrol/joystick/index.docbook share/doc/HTML/pt/kcontrol/kcmaccess/index.cache.bz2 share/doc/HTML/pt/kcontrol/kcmaccess/index.docbook share/doc/HTML/pt/kcontrol/kcmlaunchfeedback/index.cache.bz2 share/doc/HTML/pt/kcontrol/kcmlaunchfeedback/index.docbook -share/doc/HTML/pt/kcontrol/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/joystick/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/joystick/index.docbook share/doc/HTML/pt_BR/kcontrol/kcmaccess/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/kcmaccess/index.docbook share/doc/HTML/pt_BR/kcontrol/kcmlaunchfeedback/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/kcmlaunchfeedback/index.docbook share/doc/HTML/pt_BR/kcontrol/kcmsmserver/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/kcmsmserver/index.docbook share/doc/HTML/pt_BR/kcontrol/kded/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/kded/index.docbook share/doc/HTML/pt_BR/kcontrol/keyboard/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/keyboard/index.docbook share/doc/HTML/pt_BR/kcontrol/keys/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/keys/index.docbook share/doc/HTML/pt_BR/kcontrol/mouse/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/mouse/index.docbook share/doc/HTML/pt_BR/kcontrol/paths/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/paths/index.docbook share/doc/HTML/pt_BR/kcontrol/solid-actions/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/solid-actions/index.docbook share/doc/HTML/pt_BR/kcontrol/solid-device-automounter/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/solid-device-automounter/index.docbook share/doc/HTML/pt_BR/kcontrol/spellchecking/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/spellchecking/index.docbook share/doc/HTML/pt_BR/kcontrol/splashscreen/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/splashscreen/index.docbook share/doc/HTML/pt_BR/kcontrol/splashscreen/splash-main.png share/doc/HTML/pt_BR/kfontview/index.cache.bz2 share/doc/HTML/pt_BR/kfontview/index.docbook share/doc/HTML/pt_BR/knetattach/index.cache.bz2 share/doc/HTML/pt_BR/knetattach/index.docbook share/doc/HTML/pt_BR/knetattach/screenshot.png share/doc/HTML/pt_BR/knetattach/screenshot1.png share/doc/HTML/pt_BR/knetattach/screenshot2.png share/doc/HTML/pt_BR/knetattach/screenshot3.png share/doc/HTML/pt_BR/knetattach/screenshot4.png share/doc/HTML/pt_BR/plasma-desktop/add-widgets.png share/doc/HTML/pt_BR/plasma-desktop/desktop-settings.png share/doc/HTML/pt_BR/plasma-desktop/index.cache.bz2 share/doc/HTML/pt_BR/plasma-desktop/index.docbook share/doc/HTML/pt_BR/plasma-desktop/krunner-configure.png share/doc/HTML/pt_BR/plasma-desktop/krunner.png share/doc/HTML/pt_BR/plasma-desktop/panel-settings.png share/doc/HTML/pt_BR/plasma-desktop/system-tray-settings.png share/doc/HTML/pt_BR/plasma-desktop/system-tray-up-arrow.png share/doc/HTML/pt_BR/plasma-desktop/taskbar-settings.png share/doc/HTML/ru/kcontrol/baloo/index.cache.bz2 share/doc/HTML/ru/kcontrol/baloo/index.docbook share/doc/HTML/ru/kcontrol/clock/index.cache.bz2 share/doc/HTML/ru/kcontrol/clock/index.docbook share/doc/HTML/ru/kcontrol/componentchooser/index.cache.bz2 share/doc/HTML/ru/kcontrol/componentchooser/index.docbook share/doc/HTML/ru/kcontrol/joystick/index.cache.bz2 share/doc/HTML/ru/kcontrol/joystick/index.docbook share/doc/HTML/ru/kcontrol/joystick/joystick-calibration.png share/doc/HTML/ru/kcontrol/joystick/joystick-main.png share/doc/HTML/ru/kcontrol/kcmaccess/index.cache.bz2 share/doc/HTML/ru/kcontrol/kcmaccess/index.docbook share/doc/HTML/ru/kcontrol/kcmactivities/index.cache.bz2 share/doc/HTML/ru/kcontrol/kcmactivities/index.docbook share/doc/HTML/ru/kcontrol/kcmlaunchfeedback/index.cache.bz2 share/doc/HTML/ru/kcontrol/kcmlaunchfeedback/index.docbook share/doc/HTML/ru/kcontrol/kcmsmserver/index.cache.bz2 share/doc/HTML/ru/kcontrol/kcmsmserver/index.docbook share/doc/HTML/ru/kcontrol/kded/index.cache.bz2 share/doc/HTML/ru/kcontrol/kded/index.docbook share/doc/HTML/ru/kcontrol/keyboard/index.cache.bz2 share/doc/HTML/ru/kcontrol/keyboard/index.docbook share/doc/HTML/ru/kcontrol/keys/index.cache.bz2 share/doc/HTML/ru/kcontrol/keys/index.docbook share/doc/HTML/ru/kcontrol/mouse/index.cache.bz2 share/doc/HTML/ru/kcontrol/mouse/index.docbook share/doc/HTML/ru/kcontrol/paths/index.cache.bz2 share/doc/HTML/ru/kcontrol/paths/index.docbook share/doc/HTML/ru/kcontrol/paths/paths.png share/doc/HTML/ru/kcontrol/solid-actions/add-action.png share/doc/HTML/ru/kcontrol/solid-actions/edit-action.png share/doc/HTML/ru/kcontrol/solid-actions/index.cache.bz2 share/doc/HTML/ru/kcontrol/solid-actions/index.docbook share/doc/HTML/ru/kcontrol/solid-actions/main.png share/doc/HTML/ru/kcontrol/solid-device-automounter/index.cache.bz2 share/doc/HTML/ru/kcontrol/solid-device-automounter/index.docbook share/doc/HTML/ru/kcontrol/spellchecking/index.cache.bz2 share/doc/HTML/ru/kcontrol/spellchecking/index.docbook share/doc/HTML/ru/kcontrol/splashscreen/get-new-theme.png share/doc/HTML/ru/kcontrol/splashscreen/index.cache.bz2 share/doc/HTML/ru/kcontrol/splashscreen/index.docbook share/doc/HTML/ru/kcontrol/splashscreen/splash-main.png share/doc/HTML/ru/kcontrol/workspaceoptions/index.cache.bz2 share/doc/HTML/ru/kcontrol/workspaceoptions/index.docbook share/doc/HTML/ru/kfontview/index.cache.bz2 share/doc/HTML/ru/kfontview/index.docbook share/doc/HTML/ru/knetattach/index.cache.bz2 share/doc/HTML/ru/knetattach/index.docbook share/doc/HTML/ru/plasma-desktop/index.cache.bz2 share/doc/HTML/ru/plasma-desktop/index.docbook share/doc/HTML/sr/kcontrol/clock/index.cache.bz2 share/doc/HTML/sr/kcontrol/clock/index.docbook share/doc/HTML/sr/kcontrol/kcmlaunchfeedback/index.cache.bz2 share/doc/HTML/sr/kcontrol/kcmlaunchfeedback/index.docbook share/doc/HTML/sr/kcontrol/paths/index.cache.bz2 share/doc/HTML/sr/kcontrol/paths/index.docbook share/doc/HTML/sr/kcontrol/spellchecking/index.cache.bz2 share/doc/HTML/sr/kcontrol/spellchecking/index.docbook share/doc/HTML/sr/knetattach/index.cache.bz2 share/doc/HTML/sr/knetattach/index.docbook share/doc/HTML/sr@latin/kcontrol/clock/index.cache.bz2 share/doc/HTML/sr@latin/kcontrol/clock/index.docbook share/doc/HTML/sr@latin/kcontrol/kcmlaunchfeedback/index.cache.bz2 share/doc/HTML/sr@latin/kcontrol/kcmlaunchfeedback/index.docbook share/doc/HTML/sr@latin/kcontrol/paths/index.cache.bz2 share/doc/HTML/sr@latin/kcontrol/paths/index.docbook share/doc/HTML/sr@latin/kcontrol/spellchecking/index.cache.bz2 share/doc/HTML/sr@latin/kcontrol/spellchecking/index.docbook share/doc/HTML/sr@latin/knetattach/index.cache.bz2 share/doc/HTML/sr@latin/knetattach/index.docbook share/doc/HTML/sv/kcontrol/baloo/index.cache.bz2 share/doc/HTML/sv/kcontrol/baloo/index.docbook share/doc/HTML/sv/kcontrol/clock/index.cache.bz2 share/doc/HTML/sv/kcontrol/clock/index.docbook share/doc/HTML/sv/kcontrol/componentchooser/index.cache.bz2 share/doc/HTML/sv/kcontrol/componentchooser/index.docbook share/doc/HTML/sv/kcontrol/joystick/index.cache.bz2 share/doc/HTML/sv/kcontrol/joystick/index.docbook share/doc/HTML/sv/kcontrol/kcmaccess/index.cache.bz2 share/doc/HTML/sv/kcontrol/kcmaccess/index.docbook share/doc/HTML/sv/kcontrol/kcmactivities/index.cache.bz2 share/doc/HTML/sv/kcontrol/kcmactivities/index.docbook share/doc/HTML/sv/kcontrol/kcmlaunchfeedback/index.cache.bz2 share/doc/HTML/sv/kcontrol/kcmlaunchfeedback/index.docbook share/doc/HTML/sv/kcontrol/kcmsmserver/index.cache.bz2 share/doc/HTML/sv/kcontrol/kcmsmserver/index.docbook share/doc/HTML/sv/kcontrol/kded/index.cache.bz2 share/doc/HTML/sv/kcontrol/kded/index.docbook share/doc/HTML/sv/kcontrol/keyboard/index.cache.bz2 share/doc/HTML/sv/kcontrol/keyboard/index.docbook share/doc/HTML/sv/kcontrol/keys/index.cache.bz2 share/doc/HTML/sv/kcontrol/keys/index.docbook share/doc/HTML/sv/kcontrol/mouse/index.cache.bz2 share/doc/HTML/sv/kcontrol/mouse/index.docbook share/doc/HTML/sv/kcontrol/paths/index.cache.bz2 share/doc/HTML/sv/kcontrol/paths/index.docbook share/doc/HTML/sv/kcontrol/solid-actions/index.cache.bz2 share/doc/HTML/sv/kcontrol/solid-actions/index.docbook share/doc/HTML/sv/kcontrol/solid-device-automounter/index.cache.bz2 share/doc/HTML/sv/kcontrol/solid-device-automounter/index.docbook share/doc/HTML/sv/kcontrol/spellchecking/index.cache.bz2 share/doc/HTML/sv/kcontrol/spellchecking/index.docbook share/doc/HTML/sv/kcontrol/splashscreen/index.cache.bz2 share/doc/HTML/sv/kcontrol/splashscreen/index.docbook share/doc/HTML/sv/kcontrol/workspaceoptions/index.cache.bz2 share/doc/HTML/sv/kcontrol/workspaceoptions/index.docbook share/doc/HTML/sv/kfontview/index.cache.bz2 share/doc/HTML/sv/kfontview/index.docbook share/doc/HTML/sv/knetattach/index.cache.bz2 share/doc/HTML/sv/knetattach/index.docbook share/doc/HTML/sv/plasma-desktop/index.cache.bz2 share/doc/HTML/sv/plasma-desktop/index.docbook share/doc/HTML/uk/kcontrol/baloo/index.cache.bz2 share/doc/HTML/uk/kcontrol/baloo/index.docbook share/doc/HTML/uk/kcontrol/clock/index.cache.bz2 share/doc/HTML/uk/kcontrol/clock/index.docbook share/doc/HTML/uk/kcontrol/componentchooser/index.cache.bz2 share/doc/HTML/uk/kcontrol/componentchooser/index.docbook share/doc/HTML/uk/kcontrol/joystick/index.cache.bz2 share/doc/HTML/uk/kcontrol/joystick/index.docbook share/doc/HTML/uk/kcontrol/kcmaccess/index.cache.bz2 share/doc/HTML/uk/kcontrol/kcmaccess/index.docbook share/doc/HTML/uk/kcontrol/kcmactivities/index.cache.bz2 share/doc/HTML/uk/kcontrol/kcmactivities/index.docbook share/doc/HTML/uk/kcontrol/kcmlaunchfeedback/index.cache.bz2 share/doc/HTML/uk/kcontrol/kcmlaunchfeedback/index.docbook share/doc/HTML/uk/kcontrol/kcmsmserver/index.cache.bz2 share/doc/HTML/uk/kcontrol/kcmsmserver/index.docbook share/doc/HTML/uk/kcontrol/kded/index.cache.bz2 share/doc/HTML/uk/kcontrol/kded/index.docbook share/doc/HTML/uk/kcontrol/keyboard/index.cache.bz2 share/doc/HTML/uk/kcontrol/keyboard/index.docbook share/doc/HTML/uk/kcontrol/keys/index.cache.bz2 share/doc/HTML/uk/kcontrol/keys/index.docbook share/doc/HTML/uk/kcontrol/mouse/index.cache.bz2 share/doc/HTML/uk/kcontrol/mouse/index.docbook share/doc/HTML/uk/kcontrol/paths/index.cache.bz2 share/doc/HTML/uk/kcontrol/paths/index.docbook share/doc/HTML/uk/kcontrol/paths/paths.png share/doc/HTML/uk/kcontrol/solid-actions/add-action.png share/doc/HTML/uk/kcontrol/solid-actions/edit-action.png share/doc/HTML/uk/kcontrol/solid-actions/index.cache.bz2 share/doc/HTML/uk/kcontrol/solid-actions/index.docbook share/doc/HTML/uk/kcontrol/solid-actions/main.png share/doc/HTML/uk/kcontrol/solid-device-automounter/index.cache.bz2 share/doc/HTML/uk/kcontrol/solid-device-automounter/index.docbook share/doc/HTML/uk/kcontrol/spellchecking/index.cache.bz2 share/doc/HTML/uk/kcontrol/spellchecking/index.docbook share/doc/HTML/uk/kcontrol/splashscreen/get-new-theme.png share/doc/HTML/uk/kcontrol/splashscreen/index.cache.bz2 share/doc/HTML/uk/kcontrol/splashscreen/index.docbook share/doc/HTML/uk/kcontrol/splashscreen/splash-main.png share/doc/HTML/uk/kcontrol/workspaceoptions/index.cache.bz2 share/doc/HTML/uk/kcontrol/workspaceoptions/index.docbook share/doc/HTML/uk/kfontview/index.cache.bz2 share/doc/HTML/uk/kfontview/index.docbook share/doc/HTML/uk/kfontview/kfontview.png share/doc/HTML/uk/knetattach/index.cache.bz2 share/doc/HTML/uk/knetattach/index.docbook share/doc/HTML/uk/plasma-desktop/application-launcher-settings.png share/doc/HTML/uk/plasma-desktop/index.cache.bz2 share/doc/HTML/uk/plasma-desktop/index.docbook share/icons/hicolor/128x128/devices/input-touchpad.png share/icons/hicolor/16x16/devices/input-touchpad.png share/icons/hicolor/22x22/devices/input-touchpad.png share/icons/hicolor/24x24/devices/input-touchpad.png share/icons/hicolor/256x256/devices/input-touchpad.png share/icons/hicolor/32x32/devices/input-touchpad.png share/icons/hicolor/48x48/devices/input-touchpad.png share/icons/hicolor/64x64/devices/input-touchpad.png share/icons/hicolor/96x96/devices/input-touchpad.png share/icons/hicolor/scalable/devices/input-touchpad.svgz share/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/kcm_rename_plasma_desktop.sh share/kconf_update/kcm_rename_plasma_desktop.upd 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.upd share/kconf_update/kxkb_emptylists.awk share/kconf_update/kxkb_resetoptions.awk 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/kcm_recentFiles/workspace/settings/qml/recentFiles/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/kcm_access/contents/ui/Bell.qml share/kpackage/kcms/kcm_access/contents/ui/KeyboardFilters.qml share/kpackage/kcms/kcm_access/contents/ui/ModifierKeys.qml share/kpackage/kcms/kcm_access/contents/ui/MouseNavigation.qml share/kpackage/kcms/kcm_access/contents/ui/ScreenReader.qml share/kpackage/kcms/kcm_access/contents/ui/main.qml share/kpackage/kcms/kcm_baloofile/contents/ui/main.qml share/kpackage/kcms/kcm_componentchooser/contents/ui/ComponentComboBox.qml share/kpackage/kcms/kcm_componentchooser/contents/ui/main.qml share/kpackage/kcms/kcm_keys/contents/ui/ShortcutActionDelegate.qml share/kpackage/kcms/kcm_keys/contents/ui/main.qml share/kpackage/kcms/kcm_krunnersettings/contents/ui/main.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_plasmasearch/contents/ui/main.qml share/kpackage/kcms/kcm_smserver/contents/ui/main.qml share/kpackage/kcms/kcm_splashscreen/contents/ui/main.qml share/kpackage/kcms/kcm_tablet/contents/ui/Output.qml share/kpackage/kcms/kcm_tablet/contents/ui/main.qml share/kpackage/kcms/kcm_touchscreen/contents/ui/main.qml share/kpackage/kcms/kcm_workspace/contents/ui/main.qml 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_access.mo share/locale/af/LC_MESSAGES/kcm_componentchooser.mo share/locale/af/LC_MESSAGES/kcm_desktoppaths.mo share/locale/af/LC_MESSAGES/kcm_smserver.mo share/locale/af/LC_MESSAGES/kcmkclock.mo share/locale/af/LC_MESSAGES/kcmkeyboard.mo share/locale/af/LC_MESSAGES/kcmmouse.mo share/locale/af/LC_MESSAGES/knetattach5.mo share/locale/af/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ar/LC_MESSAGES/kaccess.mo share/locale/ar/LC_MESSAGES/kcm5_device_automounter.mo share/locale/ar/LC_MESSAGES/kcm5_joystick.mo share/locale/ar/LC_MESSAGES/kcm5_kded.mo share/locale/ar/LC_MESSAGES/kcm_access.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_krunnersettings.mo share/locale/ar/LC_MESSAGES/kcm_landingpage.mo share/locale/ar/LC_MESSAGES/kcm_plasmasearch.mo share/locale/ar/LC_MESSAGES/kcm_recentFiles.mo share/locale/ar/LC_MESSAGES/kcm_smserver.mo share/locale/ar/LC_MESSAGES/kcm_solid_actions.mo share/locale/ar/LC_MESSAGES/kcm_splashscreen.mo share/locale/ar/LC_MESSAGES/kcm_tablet.mo share/locale/ar/LC_MESSAGES/kcm_touchpad.mo share/locale/ar/LC_MESSAGES/kcm_touchscreen.mo share/locale/ar/LC_MESSAGES/kcm_workspace.mo share/locale/ar/LC_MESSAGES/kcmkclock.mo share/locale/ar/LC_MESSAGES/kcmkeyboard.mo share/locale/ar/LC_MESSAGES/kcmmouse.mo share/locale/ar/LC_MESSAGES/kcmqtquicksettings.mo share/locale/ar/LC_MESSAGES/knetattach5.mo share/locale/ar/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/ar/LC_MESSAGES/plasma_runner_kwin.mo share/locale/ar/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/ar/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/ar/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/ar/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/ar/LC_MESSAGES/plasmaactivitymanager.mo share/locale/as/LC_MESSAGES/kcm_access.mo share/locale/ast/LC_MESSAGES/kcm5_device_automounter.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_access.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_krunnersettings.mo share/locale/az/LC_MESSAGES/kcm_landingpage.mo share/locale/az/LC_MESSAGES/kcm_plasmasearch.mo share/locale/az/LC_MESSAGES/kcm_recentFiles.mo share/locale/az/LC_MESSAGES/kcm_smserver.mo share/locale/az/LC_MESSAGES/kcm_solid_actions.mo share/locale/az/LC_MESSAGES/kcm_splashscreen.mo share/locale/az/LC_MESSAGES/kcm_tablet.mo share/locale/az/LC_MESSAGES/kcm_touchpad.mo share/locale/az/LC_MESSAGES/kcm_workspace.mo share/locale/az/LC_MESSAGES/kcmkclock.mo share/locale/az/LC_MESSAGES/kcmkeyboard.mo share/locale/az/LC_MESSAGES/kcmmouse.mo share/locale/az/LC_MESSAGES/kcmqtquicksettings.mo share/locale/az/LC_MESSAGES/knetattach5.mo share/locale/az/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/az/LC_MESSAGES/plasma_runner_kwin.mo share/locale/az/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/az/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/az/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/az/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/az/LC_MESSAGES/plasmaactivitymanager.mo share/locale/be/LC_MESSAGES/kaccess.mo share/locale/be/LC_MESSAGES/kcm5_device_automounter.mo share/locale/be/LC_MESSAGES/kcm5_joystick.mo share/locale/be/LC_MESSAGES/kcm5_kded.mo share/locale/be/LC_MESSAGES/kcm_access.mo share/locale/be/LC_MESSAGES/kcm_activities5.mo share/locale/be/LC_MESSAGES/kcm_baloofile.mo share/locale/be/LC_MESSAGES/kcm_componentchooser.mo share/locale/be/LC_MESSAGES/kcm_desktoppaths.mo share/locale/be/LC_MESSAGES/kcm_keys.mo share/locale/be/LC_MESSAGES/kcm_krunnersettings.mo share/locale/be/LC_MESSAGES/kcm_landingpage.mo share/locale/be/LC_MESSAGES/kcm_plasmasearch.mo share/locale/be/LC_MESSAGES/kcm_recentFiles.mo share/locale/be/LC_MESSAGES/kcm_smserver.mo share/locale/be/LC_MESSAGES/kcm_solid_actions.mo share/locale/be/LC_MESSAGES/kcm_splashscreen.mo share/locale/be/LC_MESSAGES/kcm_tablet.mo share/locale/be/LC_MESSAGES/kcm_touchpad.mo share/locale/be/LC_MESSAGES/kcm_touchscreen.mo share/locale/be/LC_MESSAGES/kcm_workspace.mo share/locale/be/LC_MESSAGES/kcmkclock.mo share/locale/be/LC_MESSAGES/kcmkeyboard.mo share/locale/be/LC_MESSAGES/kcmmouse.mo share/locale/be/LC_MESSAGES/kcmqtquicksettings.mo share/locale/be/LC_MESSAGES/knetattach5.mo share/locale/be/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/be/LC_MESSAGES/plasma_runner_kwin.mo share/locale/be/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/be/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/be/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/be/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/be/LC_MESSAGES/plasmaactivitymanager.mo share/locale/be@latin/LC_MESSAGES/kcm_desktoppaths.mo share/locale/be@latin/LC_MESSAGES/kcmkclock.mo share/locale/be@latin/LC_MESSAGES/kcmkeyboard.mo share/locale/be@latin/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/be@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/be@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/be@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/bg/LC_MESSAGES/kaccess.mo share/locale/bg/LC_MESSAGES/kcm5_device_automounter.mo share/locale/bg/LC_MESSAGES/kcm5_joystick.mo share/locale/bg/LC_MESSAGES/kcm5_kded.mo share/locale/bg/LC_MESSAGES/kcm_access.mo share/locale/bg/LC_MESSAGES/kcm_activities5.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_keys.mo share/locale/bg/LC_MESSAGES/kcm_krunnersettings.mo share/locale/bg/LC_MESSAGES/kcm_landingpage.mo share/locale/bg/LC_MESSAGES/kcm_plasmasearch.mo share/locale/bg/LC_MESSAGES/kcm_recentFiles.mo share/locale/bg/LC_MESSAGES/kcm_smserver.mo share/locale/bg/LC_MESSAGES/kcm_solid_actions.mo share/locale/bg/LC_MESSAGES/kcm_splashscreen.mo share/locale/bg/LC_MESSAGES/kcm_tablet.mo share/locale/bg/LC_MESSAGES/kcm_touchpad.mo share/locale/bg/LC_MESSAGES/kcm_touchscreen.mo share/locale/bg/LC_MESSAGES/kcm_workspace.mo share/locale/bg/LC_MESSAGES/kcmkclock.mo share/locale/bg/LC_MESSAGES/kcmkeyboard.mo share/locale/bg/LC_MESSAGES/kcmmouse.mo share/locale/bg/LC_MESSAGES/kcmqtquicksettings.mo share/locale/bg/LC_MESSAGES/knetattach5.mo share/locale/bg/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/bg/LC_MESSAGES/plasma_runner_kwin.mo share/locale/bg/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/bg/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/bg/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/bg/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/bg/LC_MESSAGES/plasmaactivitymanager.mo share/locale/bn/LC_MESSAGES/kaccess.mo share/locale/bn/LC_MESSAGES/kcm5_kded.mo share/locale/bn/LC_MESSAGES/kcm_access.mo share/locale/bn/LC_MESSAGES/kcm_componentchooser.mo share/locale/bn/LC_MESSAGES/kcm_desktoppaths.mo share/locale/bn/LC_MESSAGES/kcm_smserver.mo share/locale/bn/LC_MESSAGES/kcmkclock.mo share/locale/bn/LC_MESSAGES/kcmkeyboard.mo share/locale/bn/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/bn_IN/LC_MESSAGES/kaccess.mo share/locale/bn_IN/LC_MESSAGES/kcm5_kded.mo share/locale/bn_IN/LC_MESSAGES/kcm_access.mo share/locale/bn_IN/LC_MESSAGES/kcm_desktoppaths.mo share/locale/bn_IN/LC_MESSAGES/kcm_smserver.mo share/locale/bn_IN/LC_MESSAGES/kcmkclock.mo share/locale/bn_IN/LC_MESSAGES/kcmkeyboard.mo share/locale/bn_IN/LC_MESSAGES/knetattach5.mo share/locale/bn_IN/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/bn_IN/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/bn_IN/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/bn_IN/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/br/LC_MESSAGES/kaccess.mo share/locale/br/LC_MESSAGES/kcm5_joystick.mo share/locale/br/LC_MESSAGES/kcm5_kded.mo share/locale/br/LC_MESSAGES/kcm_access.mo share/locale/br/LC_MESSAGES/kcm_componentchooser.mo share/locale/br/LC_MESSAGES/kcm_desktoppaths.mo share/locale/br/LC_MESSAGES/kcm_smserver.mo share/locale/br/LC_MESSAGES/kcmkclock.mo share/locale/br/LC_MESSAGES/kcmkeyboard.mo share/locale/br/LC_MESSAGES/kcmmouse.mo share/locale/br/LC_MESSAGES/knetattach5.mo share/locale/br/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/bs/LC_MESSAGES/kaccess.mo share/locale/bs/LC_MESSAGES/kcm5_device_automounter.mo share/locale/bs/LC_MESSAGES/kcm5_joystick.mo share/locale/bs/LC_MESSAGES/kcm5_kded.mo share/locale/bs/LC_MESSAGES/kcm_access.mo share/locale/bs/LC_MESSAGES/kcm_baloofile.mo share/locale/bs/LC_MESSAGES/kcm_componentchooser.mo share/locale/bs/LC_MESSAGES/kcm_desktoppaths.mo share/locale/bs/LC_MESSAGES/kcm_krunnersettings.mo share/locale/bs/LC_MESSAGES/kcm_plasmasearch.mo share/locale/bs/LC_MESSAGES/kcm_smserver.mo share/locale/bs/LC_MESSAGES/kcm_solid_actions.mo share/locale/bs/LC_MESSAGES/kcm_splashscreen.mo share/locale/bs/LC_MESSAGES/kcm_touchpad.mo share/locale/bs/LC_MESSAGES/kcm_workspace.mo share/locale/bs/LC_MESSAGES/kcmkclock.mo share/locale/bs/LC_MESSAGES/kcmkeyboard.mo share/locale/bs/LC_MESSAGES/kcmmouse.mo share/locale/bs/LC_MESSAGES/knetattach5.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/bs/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/bs/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/bs/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/ca/LC_MESSAGES/kaccess.mo share/locale/ca/LC_MESSAGES/kcm5_device_automounter.mo share/locale/ca/LC_MESSAGES/kcm5_joystick.mo share/locale/ca/LC_MESSAGES/kcm5_kded.mo share/locale/ca/LC_MESSAGES/kcm_access.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_krunnersettings.mo share/locale/ca/LC_MESSAGES/kcm_landingpage.mo share/locale/ca/LC_MESSAGES/kcm_plasmasearch.mo share/locale/ca/LC_MESSAGES/kcm_recentFiles.mo share/locale/ca/LC_MESSAGES/kcm_smserver.mo share/locale/ca/LC_MESSAGES/kcm_solid_actions.mo share/locale/ca/LC_MESSAGES/kcm_splashscreen.mo share/locale/ca/LC_MESSAGES/kcm_tablet.mo share/locale/ca/LC_MESSAGES/kcm_touchpad.mo share/locale/ca/LC_MESSAGES/kcm_touchscreen.mo share/locale/ca/LC_MESSAGES/kcm_workspace.mo share/locale/ca/LC_MESSAGES/kcmkclock.mo share/locale/ca/LC_MESSAGES/kcmkeyboard.mo share/locale/ca/LC_MESSAGES/kcmmouse.mo share/locale/ca/LC_MESSAGES/kcmqtquicksettings.mo share/locale/ca/LC_MESSAGES/knetattach5.mo share/locale/ca/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/ca/LC_MESSAGES/plasma_runner_kwin.mo share/locale/ca/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/ca/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/ca/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/ca/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/ca/LC_MESSAGES/plasmaactivitymanager.mo share/locale/ca@valencia/LC_MESSAGES/kaccess.mo share/locale/ca@valencia/LC_MESSAGES/kcm5_device_automounter.mo share/locale/ca@valencia/LC_MESSAGES/kcm5_joystick.mo share/locale/ca@valencia/LC_MESSAGES/kcm5_kded.mo share/locale/ca@valencia/LC_MESSAGES/kcm_access.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_krunnersettings.mo share/locale/ca@valencia/LC_MESSAGES/kcm_landingpage.mo share/locale/ca@valencia/LC_MESSAGES/kcm_plasmasearch.mo share/locale/ca@valencia/LC_MESSAGES/kcm_recentFiles.mo share/locale/ca@valencia/LC_MESSAGES/kcm_smserver.mo share/locale/ca@valencia/LC_MESSAGES/kcm_solid_actions.mo share/locale/ca@valencia/LC_MESSAGES/kcm_splashscreen.mo share/locale/ca@valencia/LC_MESSAGES/kcm_tablet.mo share/locale/ca@valencia/LC_MESSAGES/kcm_touchpad.mo share/locale/ca@valencia/LC_MESSAGES/kcm_touchscreen.mo share/locale/ca@valencia/LC_MESSAGES/kcm_workspace.mo share/locale/ca@valencia/LC_MESSAGES/kcmkclock.mo share/locale/ca@valencia/LC_MESSAGES/kcmkeyboard.mo share/locale/ca@valencia/LC_MESSAGES/kcmmouse.mo share/locale/ca@valencia/LC_MESSAGES/kcmqtquicksettings.mo share/locale/ca@valencia/LC_MESSAGES/knetattach5.mo share/locale/ca@valencia/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_kwin.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/ca@valencia/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/ca@valencia/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/ca@valencia/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/ca@valencia/LC_MESSAGES/plasmaactivitymanager.mo share/locale/cs/LC_MESSAGES/kaccess.mo share/locale/cs/LC_MESSAGES/kcm5_device_automounter.mo share/locale/cs/LC_MESSAGES/kcm5_joystick.mo share/locale/cs/LC_MESSAGES/kcm5_kded.mo share/locale/cs/LC_MESSAGES/kcm_access.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_krunnersettings.mo share/locale/cs/LC_MESSAGES/kcm_landingpage.mo share/locale/cs/LC_MESSAGES/kcm_plasmasearch.mo share/locale/cs/LC_MESSAGES/kcm_recentFiles.mo share/locale/cs/LC_MESSAGES/kcm_smserver.mo share/locale/cs/LC_MESSAGES/kcm_solid_actions.mo share/locale/cs/LC_MESSAGES/kcm_splashscreen.mo share/locale/cs/LC_MESSAGES/kcm_tablet.mo share/locale/cs/LC_MESSAGES/kcm_touchpad.mo share/locale/cs/LC_MESSAGES/kcm_touchscreen.mo share/locale/cs/LC_MESSAGES/kcm_workspace.mo share/locale/cs/LC_MESSAGES/kcmkclock.mo share/locale/cs/LC_MESSAGES/kcmkeyboard.mo share/locale/cs/LC_MESSAGES/kcmmouse.mo share/locale/cs/LC_MESSAGES/kcmqtquicksettings.mo share/locale/cs/LC_MESSAGES/knetattach5.mo share/locale/cs/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/cs/LC_MESSAGES/plasma_runner_kwin.mo share/locale/cs/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/cs/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/cs/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/cs/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/cs/LC_MESSAGES/plasmaactivitymanager.mo share/locale/csb/LC_MESSAGES/kaccess.mo share/locale/csb/LC_MESSAGES/kcm5_joystick.mo share/locale/csb/LC_MESSAGES/kcm5_kded.mo share/locale/csb/LC_MESSAGES/kcm_access.mo share/locale/csb/LC_MESSAGES/kcm_componentchooser.mo share/locale/csb/LC_MESSAGES/kcm_smserver.mo share/locale/csb/LC_MESSAGES/kcmkclock.mo share/locale/csb/LC_MESSAGES/kcmkeyboard.mo share/locale/csb/LC_MESSAGES/knetattach5.mo share/locale/csb/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/csb/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/csb/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/csb/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/csb/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/cy/LC_MESSAGES/kaccess.mo share/locale/cy/LC_MESSAGES/kcm5_joystick.mo share/locale/cy/LC_MESSAGES/kcm5_kded.mo share/locale/cy/LC_MESSAGES/kcm_access.mo share/locale/cy/LC_MESSAGES/kcm_componentchooser.mo share/locale/cy/LC_MESSAGES/kcm_desktoppaths.mo share/locale/cy/LC_MESSAGES/kcm_smserver.mo share/locale/cy/LC_MESSAGES/kcmkclock.mo share/locale/cy/LC_MESSAGES/kcmkeyboard.mo share/locale/cy/LC_MESSAGES/kcmmouse.mo share/locale/cy/LC_MESSAGES/knetattach5.mo share/locale/cy/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/da/LC_MESSAGES/kaccess.mo share/locale/da/LC_MESSAGES/kcm5_device_automounter.mo share/locale/da/LC_MESSAGES/kcm5_joystick.mo share/locale/da/LC_MESSAGES/kcm5_kded.mo share/locale/da/LC_MESSAGES/kcm_access.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_krunnersettings.mo share/locale/da/LC_MESSAGES/kcm_plasmasearch.mo share/locale/da/LC_MESSAGES/kcm_smserver.mo share/locale/da/LC_MESSAGES/kcm_solid_actions.mo share/locale/da/LC_MESSAGES/kcm_splashscreen.mo share/locale/da/LC_MESSAGES/kcm_touchpad.mo share/locale/da/LC_MESSAGES/kcm_workspace.mo share/locale/da/LC_MESSAGES/kcmkclock.mo share/locale/da/LC_MESSAGES/kcmkeyboard.mo share/locale/da/LC_MESSAGES/kcmmouse.mo share/locale/da/LC_MESSAGES/kcmqtquicksettings.mo share/locale/da/LC_MESSAGES/knetattach5.mo share/locale/da/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/da/LC_MESSAGES/plasma_runner_kwin.mo share/locale/da/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/da/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/da/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/da/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/da/LC_MESSAGES/plasmaactivitymanager.mo share/locale/de/LC_MESSAGES/kaccess.mo share/locale/de/LC_MESSAGES/kcm5_device_automounter.mo share/locale/de/LC_MESSAGES/kcm5_joystick.mo share/locale/de/LC_MESSAGES/kcm5_kded.mo share/locale/de/LC_MESSAGES/kcm_access.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_krunnersettings.mo share/locale/de/LC_MESSAGES/kcm_landingpage.mo share/locale/de/LC_MESSAGES/kcm_plasmasearch.mo share/locale/de/LC_MESSAGES/kcm_recentFiles.mo share/locale/de/LC_MESSAGES/kcm_smserver.mo share/locale/de/LC_MESSAGES/kcm_solid_actions.mo share/locale/de/LC_MESSAGES/kcm_splashscreen.mo share/locale/de/LC_MESSAGES/kcm_tablet.mo share/locale/de/LC_MESSAGES/kcm_touchpad.mo share/locale/de/LC_MESSAGES/kcm_touchscreen.mo share/locale/de/LC_MESSAGES/kcm_workspace.mo share/locale/de/LC_MESSAGES/kcmkclock.mo share/locale/de/LC_MESSAGES/kcmkeyboard.mo share/locale/de/LC_MESSAGES/kcmmouse.mo share/locale/de/LC_MESSAGES/kcmqtquicksettings.mo share/locale/de/LC_MESSAGES/knetattach5.mo share/locale/de/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/de/LC_MESSAGES/plasma_runner_kwin.mo share/locale/de/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/de/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/de/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/de/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/de/LC_MESSAGES/plasmaactivitymanager.mo share/locale/el/LC_MESSAGES/kaccess.mo share/locale/el/LC_MESSAGES/kcm5_device_automounter.mo share/locale/el/LC_MESSAGES/kcm5_joystick.mo share/locale/el/LC_MESSAGES/kcm5_kded.mo share/locale/el/LC_MESSAGES/kcm_access.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_krunnersettings.mo share/locale/el/LC_MESSAGES/kcm_plasmasearch.mo share/locale/el/LC_MESSAGES/kcm_smserver.mo share/locale/el/LC_MESSAGES/kcm_solid_actions.mo share/locale/el/LC_MESSAGES/kcm_splashscreen.mo share/locale/el/LC_MESSAGES/kcm_touchpad.mo share/locale/el/LC_MESSAGES/kcm_workspace.mo share/locale/el/LC_MESSAGES/kcmkclock.mo share/locale/el/LC_MESSAGES/kcmkeyboard.mo share/locale/el/LC_MESSAGES/kcmmouse.mo share/locale/el/LC_MESSAGES/knetattach5.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/el/LC_MESSAGES/plasma_runner_kwin.mo share/locale/el/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/el/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/el/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/el/LC_MESSAGES/plasmaactivitymanager.mo share/locale/en_GB/LC_MESSAGES/kaccess.mo share/locale/en_GB/LC_MESSAGES/kcm5_device_automounter.mo share/locale/en_GB/LC_MESSAGES/kcm5_joystick.mo share/locale/en_GB/LC_MESSAGES/kcm5_kded.mo share/locale/en_GB/LC_MESSAGES/kcm_access.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_krunnersettings.mo share/locale/en_GB/LC_MESSAGES/kcm_landingpage.mo share/locale/en_GB/LC_MESSAGES/kcm_plasmasearch.mo share/locale/en_GB/LC_MESSAGES/kcm_recentFiles.mo share/locale/en_GB/LC_MESSAGES/kcm_smserver.mo share/locale/en_GB/LC_MESSAGES/kcm_solid_actions.mo share/locale/en_GB/LC_MESSAGES/kcm_splashscreen.mo share/locale/en_GB/LC_MESSAGES/kcm_tablet.mo share/locale/en_GB/LC_MESSAGES/kcm_touchpad.mo share/locale/en_GB/LC_MESSAGES/kcm_touchscreen.mo share/locale/en_GB/LC_MESSAGES/kcm_workspace.mo share/locale/en_GB/LC_MESSAGES/kcmkclock.mo share/locale/en_GB/LC_MESSAGES/kcmkeyboard.mo share/locale/en_GB/LC_MESSAGES/kcmmouse.mo share/locale/en_GB/LC_MESSAGES/kcmqtquicksettings.mo share/locale/en_GB/LC_MESSAGES/knetattach5.mo share/locale/en_GB/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_kwin.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/en_GB/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/en_GB/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/en_GB/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/en_GB/LC_MESSAGES/plasmaactivitymanager.mo share/locale/eo/LC_MESSAGES/kaccess.mo share/locale/eo/LC_MESSAGES/kcm5_device_automounter.mo share/locale/eo/LC_MESSAGES/kcm5_joystick.mo share/locale/eo/LC_MESSAGES/kcm5_kded.mo share/locale/eo/LC_MESSAGES/kcm_access.mo share/locale/eo/LC_MESSAGES/kcm_componentchooser.mo share/locale/eo/LC_MESSAGES/kcm_desktoppaths.mo share/locale/eo/LC_MESSAGES/kcm_smserver.mo share/locale/eo/LC_MESSAGES/kcm_solid_actions.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_access.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_krunnersettings.mo share/locale/es/LC_MESSAGES/kcm_landingpage.mo share/locale/es/LC_MESSAGES/kcm_plasmasearch.mo share/locale/es/LC_MESSAGES/kcm_recentFiles.mo share/locale/es/LC_MESSAGES/kcm_smserver.mo share/locale/es/LC_MESSAGES/kcm_solid_actions.mo share/locale/es/LC_MESSAGES/kcm_splashscreen.mo share/locale/es/LC_MESSAGES/kcm_tablet.mo share/locale/es/LC_MESSAGES/kcm_touchpad.mo share/locale/es/LC_MESSAGES/kcm_touchscreen.mo share/locale/es/LC_MESSAGES/kcm_workspace.mo share/locale/es/LC_MESSAGES/kcmkclock.mo share/locale/es/LC_MESSAGES/kcmkeyboard.mo share/locale/es/LC_MESSAGES/kcmmouse.mo share/locale/es/LC_MESSAGES/kcmqtquicksettings.mo share/locale/es/LC_MESSAGES/knetattach5.mo share/locale/es/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/es/LC_MESSAGES/plasma_runner_kwin.mo share/locale/es/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/es/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/es/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/es/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/es/LC_MESSAGES/plasmaactivitymanager.mo share/locale/et/LC_MESSAGES/kaccess.mo share/locale/et/LC_MESSAGES/kcm5_device_automounter.mo share/locale/et/LC_MESSAGES/kcm5_joystick.mo share/locale/et/LC_MESSAGES/kcm5_kded.mo share/locale/et/LC_MESSAGES/kcm_access.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_krunnersettings.mo share/locale/et/LC_MESSAGES/kcm_landingpage.mo share/locale/et/LC_MESSAGES/kcm_plasmasearch.mo share/locale/et/LC_MESSAGES/kcm_recentFiles.mo share/locale/et/LC_MESSAGES/kcm_smserver.mo share/locale/et/LC_MESSAGES/kcm_solid_actions.mo share/locale/et/LC_MESSAGES/kcm_splashscreen.mo share/locale/et/LC_MESSAGES/kcm_touchpad.mo share/locale/et/LC_MESSAGES/kcm_workspace.mo share/locale/et/LC_MESSAGES/kcmkclock.mo share/locale/et/LC_MESSAGES/kcmkeyboard.mo share/locale/et/LC_MESSAGES/kcmmouse.mo share/locale/et/LC_MESSAGES/kcmqtquicksettings.mo share/locale/et/LC_MESSAGES/knetattach5.mo share/locale/et/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/et/LC_MESSAGES/plasma_runner_kwin.mo share/locale/et/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/et/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/et/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/et/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/et/LC_MESSAGES/plasmaactivitymanager.mo share/locale/eu/LC_MESSAGES/kaccess.mo share/locale/eu/LC_MESSAGES/kcm5_device_automounter.mo share/locale/eu/LC_MESSAGES/kcm5_joystick.mo share/locale/eu/LC_MESSAGES/kcm5_kded.mo share/locale/eu/LC_MESSAGES/kcm_access.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_krunnersettings.mo share/locale/eu/LC_MESSAGES/kcm_landingpage.mo share/locale/eu/LC_MESSAGES/kcm_plasmasearch.mo share/locale/eu/LC_MESSAGES/kcm_recentFiles.mo share/locale/eu/LC_MESSAGES/kcm_smserver.mo share/locale/eu/LC_MESSAGES/kcm_solid_actions.mo share/locale/eu/LC_MESSAGES/kcm_splashscreen.mo share/locale/eu/LC_MESSAGES/kcm_tablet.mo share/locale/eu/LC_MESSAGES/kcm_touchpad.mo share/locale/eu/LC_MESSAGES/kcm_touchscreen.mo share/locale/eu/LC_MESSAGES/kcm_workspace.mo share/locale/eu/LC_MESSAGES/kcmkclock.mo share/locale/eu/LC_MESSAGES/kcmkeyboard.mo share/locale/eu/LC_MESSAGES/kcmmouse.mo share/locale/eu/LC_MESSAGES/kcmqtquicksettings.mo share/locale/eu/LC_MESSAGES/knetattach5.mo share/locale/eu/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/eu/LC_MESSAGES/plasma_runner_kwin.mo share/locale/eu/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/eu/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/eu/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/eu/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/eu/LC_MESSAGES/plasmaactivitymanager.mo share/locale/fa/LC_MESSAGES/kaccess.mo share/locale/fa/LC_MESSAGES/kcm5_device_automounter.mo share/locale/fa/LC_MESSAGES/kcm5_joystick.mo share/locale/fa/LC_MESSAGES/kcm5_kded.mo share/locale/fa/LC_MESSAGES/kcm_access.mo share/locale/fa/LC_MESSAGES/kcm_componentchooser.mo share/locale/fa/LC_MESSAGES/kcm_desktoppaths.mo share/locale/fa/LC_MESSAGES/kcm_smserver.mo share/locale/fa/LC_MESSAGES/kcm_solid_actions.mo share/locale/fa/LC_MESSAGES/kcmkclock.mo share/locale/fa/LC_MESSAGES/kcmkeyboard.mo share/locale/fa/LC_MESSAGES/kcmmouse.mo share/locale/fa/LC_MESSAGES/knetattach5.mo share/locale/fa/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/fa/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/fa/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/fa/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/fi/LC_MESSAGES/kaccess.mo share/locale/fi/LC_MESSAGES/kcm5_device_automounter.mo share/locale/fi/LC_MESSAGES/kcm5_joystick.mo share/locale/fi/LC_MESSAGES/kcm5_kded.mo share/locale/fi/LC_MESSAGES/kcm_access.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_krunnersettings.mo share/locale/fi/LC_MESSAGES/kcm_landingpage.mo share/locale/fi/LC_MESSAGES/kcm_plasmasearch.mo share/locale/fi/LC_MESSAGES/kcm_recentFiles.mo share/locale/fi/LC_MESSAGES/kcm_smserver.mo share/locale/fi/LC_MESSAGES/kcm_solid_actions.mo share/locale/fi/LC_MESSAGES/kcm_splashscreen.mo share/locale/fi/LC_MESSAGES/kcm_tablet.mo share/locale/fi/LC_MESSAGES/kcm_touchpad.mo +share/locale/fi/LC_MESSAGES/kcm_touchscreen.mo share/locale/fi/LC_MESSAGES/kcm_workspace.mo share/locale/fi/LC_MESSAGES/kcmkclock.mo share/locale/fi/LC_MESSAGES/kcmkeyboard.mo share/locale/fi/LC_MESSAGES/kcmmouse.mo share/locale/fi/LC_MESSAGES/kcmqtquicksettings.mo share/locale/fi/LC_MESSAGES/knetattach5.mo share/locale/fi/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/fi/LC_MESSAGES/plasma_runner_kwin.mo share/locale/fi/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/fi/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/fi/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/fi/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/fi/LC_MESSAGES/plasmaactivitymanager.mo share/locale/fr/LC_MESSAGES/kaccess.mo share/locale/fr/LC_MESSAGES/kcm5_device_automounter.mo share/locale/fr/LC_MESSAGES/kcm5_joystick.mo share/locale/fr/LC_MESSAGES/kcm5_kded.mo share/locale/fr/LC_MESSAGES/kcm_access.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_krunnersettings.mo share/locale/fr/LC_MESSAGES/kcm_landingpage.mo share/locale/fr/LC_MESSAGES/kcm_plasmasearch.mo share/locale/fr/LC_MESSAGES/kcm_recentFiles.mo share/locale/fr/LC_MESSAGES/kcm_smserver.mo share/locale/fr/LC_MESSAGES/kcm_solid_actions.mo share/locale/fr/LC_MESSAGES/kcm_splashscreen.mo share/locale/fr/LC_MESSAGES/kcm_tablet.mo share/locale/fr/LC_MESSAGES/kcm_touchpad.mo share/locale/fr/LC_MESSAGES/kcm_touchscreen.mo share/locale/fr/LC_MESSAGES/kcm_workspace.mo share/locale/fr/LC_MESSAGES/kcmkclock.mo share/locale/fr/LC_MESSAGES/kcmkeyboard.mo share/locale/fr/LC_MESSAGES/kcmmouse.mo share/locale/fr/LC_MESSAGES/kcmqtquicksettings.mo share/locale/fr/LC_MESSAGES/knetattach5.mo share/locale/fr/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/fr/LC_MESSAGES/plasma_runner_kwin.mo share/locale/fr/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/fr/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/fr/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/fr/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/fr/LC_MESSAGES/plasmaactivitymanager.mo share/locale/fy/LC_MESSAGES/kaccess.mo share/locale/fy/LC_MESSAGES/kcm5_joystick.mo share/locale/fy/LC_MESSAGES/kcm5_kded.mo share/locale/fy/LC_MESSAGES/kcm_access.mo share/locale/fy/LC_MESSAGES/kcm_componentchooser.mo share/locale/fy/LC_MESSAGES/kcm_desktoppaths.mo share/locale/fy/LC_MESSAGES/kcm_smserver.mo share/locale/fy/LC_MESSAGES/kcm_solid_actions.mo share/locale/fy/LC_MESSAGES/kcmkclock.mo share/locale/fy/LC_MESSAGES/kcmkeyboard.mo share/locale/fy/LC_MESSAGES/kcmmouse.mo share/locale/fy/LC_MESSAGES/knetattach5.mo share/locale/fy/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/fy/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/fy/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/fy/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ga/LC_MESSAGES/kaccess.mo share/locale/ga/LC_MESSAGES/kcm5_device_automounter.mo share/locale/ga/LC_MESSAGES/kcm5_joystick.mo share/locale/ga/LC_MESSAGES/kcm5_kded.mo share/locale/ga/LC_MESSAGES/kcm_access.mo share/locale/ga/LC_MESSAGES/kcm_componentchooser.mo share/locale/ga/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ga/LC_MESSAGES/kcm_smserver.mo share/locale/ga/LC_MESSAGES/kcm_solid_actions.mo share/locale/ga/LC_MESSAGES/kcmkclock.mo share/locale/ga/LC_MESSAGES/kcmkeyboard.mo share/locale/ga/LC_MESSAGES/kcmmouse.mo share/locale/ga/LC_MESSAGES/knetattach5.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/ga/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/gl/LC_MESSAGES/kaccess.mo share/locale/gl/LC_MESSAGES/kcm5_device_automounter.mo share/locale/gl/LC_MESSAGES/kcm5_joystick.mo share/locale/gl/LC_MESSAGES/kcm5_kded.mo share/locale/gl/LC_MESSAGES/kcm_access.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_krunnersettings.mo share/locale/gl/LC_MESSAGES/kcm_plasmasearch.mo share/locale/gl/LC_MESSAGES/kcm_recentFiles.mo share/locale/gl/LC_MESSAGES/kcm_smserver.mo share/locale/gl/LC_MESSAGES/kcm_solid_actions.mo share/locale/gl/LC_MESSAGES/kcm_splashscreen.mo share/locale/gl/LC_MESSAGES/kcm_touchpad.mo share/locale/gl/LC_MESSAGES/kcm_workspace.mo share/locale/gl/LC_MESSAGES/kcmkclock.mo share/locale/gl/LC_MESSAGES/kcmkeyboard.mo share/locale/gl/LC_MESSAGES/kcmmouse.mo share/locale/gl/LC_MESSAGES/kcmqtquicksettings.mo share/locale/gl/LC_MESSAGES/knetattach5.mo share/locale/gl/LC_MESSAGES/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.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_access.mo share/locale/gu/LC_MESSAGES/kcm_componentchooser.mo share/locale/gu/LC_MESSAGES/kcm_desktoppaths.mo share/locale/gu/LC_MESSAGES/kcm_smserver.mo share/locale/gu/LC_MESSAGES/kcm_solid_actions.mo share/locale/gu/LC_MESSAGES/kcmkclock.mo share/locale/gu/LC_MESSAGES/kcmkeyboard.mo share/locale/gu/LC_MESSAGES/kcmmouse.mo share/locale/gu/LC_MESSAGES/knetattach5.mo share/locale/gu/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/gu/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/gu/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/gu/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/gu/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/gu/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/he/LC_MESSAGES/kaccess.mo share/locale/he/LC_MESSAGES/kcm5_device_automounter.mo share/locale/he/LC_MESSAGES/kcm5_joystick.mo share/locale/he/LC_MESSAGES/kcm5_kded.mo share/locale/he/LC_MESSAGES/kcm_access.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_krunnersettings.mo share/locale/he/LC_MESSAGES/kcm_plasmasearch.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/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.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_access.mo share/locale/hi/LC_MESSAGES/kcm_componentchooser.mo share/locale/hi/LC_MESSAGES/kcm_desktoppaths.mo share/locale/hi/LC_MESSAGES/kcm_krunnersettings.mo share/locale/hi/LC_MESSAGES/kcm_landingpage.mo share/locale/hi/LC_MESSAGES/kcm_plasmasearch.mo share/locale/hi/LC_MESSAGES/kcm_smserver.mo share/locale/hi/LC_MESSAGES/kcm_solid_actions.mo share/locale/hi/LC_MESSAGES/kcm_splashscreen.mo share/locale/hi/LC_MESSAGES/kcm_tablet.mo share/locale/hi/LC_MESSAGES/kcmkclock.mo share/locale/hi/LC_MESSAGES/kcmkeyboard.mo share/locale/hi/LC_MESSAGES/kcmmouse.mo share/locale/hi/LC_MESSAGES/kcmqtquicksettings.mo share/locale/hi/LC_MESSAGES/knetattach5.mo share/locale/hi/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/hi/LC_MESSAGES/plasma_runner_kwin.mo share/locale/hi/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/hi/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/hi/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/hne/LC_MESSAGES/kaccess.mo share/locale/hne/LC_MESSAGES/kcm5_joystick.mo share/locale/hne/LC_MESSAGES/kcm5_kded.mo share/locale/hne/LC_MESSAGES/kcm_access.mo share/locale/hne/LC_MESSAGES/kcm_componentchooser.mo share/locale/hne/LC_MESSAGES/kcm_desktoppaths.mo share/locale/hne/LC_MESSAGES/kcm_smserver.mo share/locale/hne/LC_MESSAGES/kcmkclock.mo share/locale/hne/LC_MESSAGES/kcmkeyboard.mo share/locale/hne/LC_MESSAGES/kcmmouse.mo share/locale/hne/LC_MESSAGES/knetattach5.mo share/locale/hne/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/hne/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/hne/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/hne/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/hr/LC_MESSAGES/kaccess.mo share/locale/hr/LC_MESSAGES/kcm5_device_automounter.mo share/locale/hr/LC_MESSAGES/kcm5_joystick.mo share/locale/hr/LC_MESSAGES/kcm5_kded.mo share/locale/hr/LC_MESSAGES/kcm_access.mo share/locale/hr/LC_MESSAGES/kcm_componentchooser.mo share/locale/hr/LC_MESSAGES/kcm_desktoppaths.mo share/locale/hr/LC_MESSAGES/kcm_smserver.mo share/locale/hr/LC_MESSAGES/kcm_solid_actions.mo share/locale/hr/LC_MESSAGES/kcmkclock.mo share/locale/hr/LC_MESSAGES/kcmkeyboard.mo share/locale/hr/LC_MESSAGES/kcmmouse.mo share/locale/hr/LC_MESSAGES/knetattach5.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/hr/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/hsb/LC_MESSAGES/kaccess.mo share/locale/hsb/LC_MESSAGES/kcm5_joystick.mo share/locale/hsb/LC_MESSAGES/kcm5_kded.mo share/locale/hsb/LC_MESSAGES/kcm_access.mo share/locale/hsb/LC_MESSAGES/kcm_componentchooser.mo share/locale/hsb/LC_MESSAGES/kcm_desktoppaths.mo share/locale/hsb/LC_MESSAGES/kcm_smserver.mo share/locale/hsb/LC_MESSAGES/kcmkclock.mo share/locale/hsb/LC_MESSAGES/kcmkeyboard.mo share/locale/hsb/LC_MESSAGES/kcmmouse.mo share/locale/hsb/LC_MESSAGES/knetattach5.mo share/locale/hsb/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/hsb/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/hsb/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/hsb/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/hsb/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/hsb/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/hu/LC_MESSAGES/kaccess.mo share/locale/hu/LC_MESSAGES/kcm5_device_automounter.mo share/locale/hu/LC_MESSAGES/kcm5_joystick.mo share/locale/hu/LC_MESSAGES/kcm5_kded.mo share/locale/hu/LC_MESSAGES/kcm_access.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_krunnersettings.mo share/locale/hu/LC_MESSAGES/kcm_landingpage.mo share/locale/hu/LC_MESSAGES/kcm_plasmasearch.mo share/locale/hu/LC_MESSAGES/kcm_smserver.mo share/locale/hu/LC_MESSAGES/kcm_solid_actions.mo share/locale/hu/LC_MESSAGES/kcm_splashscreen.mo share/locale/hu/LC_MESSAGES/kcm_tablet.mo share/locale/hu/LC_MESSAGES/kcm_touchpad.mo share/locale/hu/LC_MESSAGES/kcm_workspace.mo share/locale/hu/LC_MESSAGES/kcmkclock.mo share/locale/hu/LC_MESSAGES/kcmkeyboard.mo share/locale/hu/LC_MESSAGES/kcmmouse.mo share/locale/hu/LC_MESSAGES/kcmqtquicksettings.mo share/locale/hu/LC_MESSAGES/knetattach5.mo share/locale/hu/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/hu/LC_MESSAGES/plasma_runner_kwin.mo share/locale/hu/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/hu/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/hu/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/hu/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/hu/LC_MESSAGES/plasmaactivitymanager.mo share/locale/ia/LC_MESSAGES/kaccess.mo share/locale/ia/LC_MESSAGES/kcm5_device_automounter.mo share/locale/ia/LC_MESSAGES/kcm5_joystick.mo share/locale/ia/LC_MESSAGES/kcm5_kded.mo share/locale/ia/LC_MESSAGES/kcm_access.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_krunnersettings.mo share/locale/ia/LC_MESSAGES/kcm_landingpage.mo share/locale/ia/LC_MESSAGES/kcm_plasmasearch.mo share/locale/ia/LC_MESSAGES/kcm_recentFiles.mo share/locale/ia/LC_MESSAGES/kcm_smserver.mo share/locale/ia/LC_MESSAGES/kcm_solid_actions.mo share/locale/ia/LC_MESSAGES/kcm_splashscreen.mo share/locale/ia/LC_MESSAGES/kcm_tablet.mo share/locale/ia/LC_MESSAGES/kcm_touchpad.mo share/locale/ia/LC_MESSAGES/kcm_touchscreen.mo share/locale/ia/LC_MESSAGES/kcm_workspace.mo share/locale/ia/LC_MESSAGES/kcmkclock.mo share/locale/ia/LC_MESSAGES/kcmkeyboard.mo share/locale/ia/LC_MESSAGES/kcmmouse.mo share/locale/ia/LC_MESSAGES/kcmqtquicksettings.mo share/locale/ia/LC_MESSAGES/knetattach5.mo share/locale/ia/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/ia/LC_MESSAGES/plasma_runner_kwin.mo share/locale/ia/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/ia/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/ia/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/ia/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/ia/LC_MESSAGES/plasmaactivitymanager.mo share/locale/id/LC_MESSAGES/kaccess.mo share/locale/id/LC_MESSAGES/kcm5_device_automounter.mo share/locale/id/LC_MESSAGES/kcm5_joystick.mo share/locale/id/LC_MESSAGES/kcm5_kded.mo share/locale/id/LC_MESSAGES/kcm_access.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_krunnersettings.mo share/locale/id/LC_MESSAGES/kcm_landingpage.mo share/locale/id/LC_MESSAGES/kcm_plasmasearch.mo share/locale/id/LC_MESSAGES/kcm_recentFiles.mo share/locale/id/LC_MESSAGES/kcm_smserver.mo share/locale/id/LC_MESSAGES/kcm_solid_actions.mo share/locale/id/LC_MESSAGES/kcm_splashscreen.mo share/locale/id/LC_MESSAGES/kcm_tablet.mo share/locale/id/LC_MESSAGES/kcm_touchpad.mo share/locale/id/LC_MESSAGES/kcm_workspace.mo share/locale/id/LC_MESSAGES/kcmkclock.mo share/locale/id/LC_MESSAGES/kcmkeyboard.mo share/locale/id/LC_MESSAGES/kcmmouse.mo share/locale/id/LC_MESSAGES/kcmqtquicksettings.mo share/locale/id/LC_MESSAGES/knetattach5.mo share/locale/id/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/id/LC_MESSAGES/plasma_runner_kwin.mo share/locale/id/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/id/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/id/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/id/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/id/LC_MESSAGES/plasmaactivitymanager.mo share/locale/ie/LC_MESSAGES/kcmkclock.mo share/locale/ie/LC_MESSAGES/kcmkeyboard.mo share/locale/ie/LC_MESSAGES/kcmmouse.mo share/locale/ie/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/ie/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ie/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/ie/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/ie/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/is/LC_MESSAGES/kaccess.mo share/locale/is/LC_MESSAGES/kcm5_device_automounter.mo share/locale/is/LC_MESSAGES/kcm5_joystick.mo share/locale/is/LC_MESSAGES/kcm5_kded.mo share/locale/is/LC_MESSAGES/kcm_access.mo share/locale/is/LC_MESSAGES/kcm_componentchooser.mo share/locale/is/LC_MESSAGES/kcm_desktoppaths.mo share/locale/is/LC_MESSAGES/kcm_landingpage.mo share/locale/is/LC_MESSAGES/kcm_smserver.mo share/locale/is/LC_MESSAGES/kcm_solid_actions.mo share/locale/is/LC_MESSAGES/kcmkclock.mo share/locale/is/LC_MESSAGES/kcmkeyboard.mo share/locale/is/LC_MESSAGES/kcmmouse.mo share/locale/is/LC_MESSAGES/knetattach5.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/is/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/is/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/is/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/is/LC_MESSAGES/plasmaactivitymanager.mo share/locale/it/LC_MESSAGES/kaccess.mo share/locale/it/LC_MESSAGES/kcm5_device_automounter.mo share/locale/it/LC_MESSAGES/kcm5_joystick.mo share/locale/it/LC_MESSAGES/kcm5_kded.mo share/locale/it/LC_MESSAGES/kcm_access.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_krunnersettings.mo share/locale/it/LC_MESSAGES/kcm_landingpage.mo share/locale/it/LC_MESSAGES/kcm_plasmasearch.mo share/locale/it/LC_MESSAGES/kcm_recentFiles.mo share/locale/it/LC_MESSAGES/kcm_smserver.mo share/locale/it/LC_MESSAGES/kcm_solid_actions.mo share/locale/it/LC_MESSAGES/kcm_splashscreen.mo share/locale/it/LC_MESSAGES/kcm_tablet.mo share/locale/it/LC_MESSAGES/kcm_touchpad.mo share/locale/it/LC_MESSAGES/kcm_touchscreen.mo share/locale/it/LC_MESSAGES/kcm_workspace.mo share/locale/it/LC_MESSAGES/kcmkclock.mo share/locale/it/LC_MESSAGES/kcmkeyboard.mo share/locale/it/LC_MESSAGES/kcmmouse.mo share/locale/it/LC_MESSAGES/kcmqtquicksettings.mo share/locale/it/LC_MESSAGES/knetattach5.mo share/locale/it/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/it/LC_MESSAGES/plasma_runner_kwin.mo share/locale/it/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/it/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/it/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/it/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/it/LC_MESSAGES/plasmaactivitymanager.mo share/locale/ja/LC_MESSAGES/kaccess.mo share/locale/ja/LC_MESSAGES/kcm5_device_automounter.mo share/locale/ja/LC_MESSAGES/kcm5_joystick.mo share/locale/ja/LC_MESSAGES/kcm5_kded.mo share/locale/ja/LC_MESSAGES/kcm_access.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_krunnersettings.mo share/locale/ja/LC_MESSAGES/kcm_landingpage.mo share/locale/ja/LC_MESSAGES/kcm_plasmasearch.mo share/locale/ja/LC_MESSAGES/kcm_recentFiles.mo share/locale/ja/LC_MESSAGES/kcm_smserver.mo share/locale/ja/LC_MESSAGES/kcm_solid_actions.mo share/locale/ja/LC_MESSAGES/kcm_splashscreen.mo share/locale/ja/LC_MESSAGES/kcm_tablet.mo share/locale/ja/LC_MESSAGES/kcm_touchpad.mo share/locale/ja/LC_MESSAGES/kcm_touchscreen.mo share/locale/ja/LC_MESSAGES/kcm_workspace.mo share/locale/ja/LC_MESSAGES/kcmkclock.mo share/locale/ja/LC_MESSAGES/kcmkeyboard.mo share/locale/ja/LC_MESSAGES/kcmmouse.mo share/locale/ja/LC_MESSAGES/kcmqtquicksettings.mo share/locale/ja/LC_MESSAGES/knetattach5.mo share/locale/ja/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/ja/LC_MESSAGES/plasma_runner_kwin.mo share/locale/ja/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/ja/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/ja/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/ja/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/ja/LC_MESSAGES/plasmaactivitymanager.mo share/locale/ka/LC_MESSAGES/kaccess.mo share/locale/ka/LC_MESSAGES/kcm5_device_automounter.mo share/locale/ka/LC_MESSAGES/kcm5_joystick.mo share/locale/ka/LC_MESSAGES/kcm5_kded.mo share/locale/ka/LC_MESSAGES/kcm_access.mo share/locale/ka/LC_MESSAGES/kcm_activities5.mo share/locale/ka/LC_MESSAGES/kcm_baloofile.mo share/locale/ka/LC_MESSAGES/kcm_componentchooser.mo share/locale/ka/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ka/LC_MESSAGES/kcm_keys.mo share/locale/ka/LC_MESSAGES/kcm_krunnersettings.mo share/locale/ka/LC_MESSAGES/kcm_landingpage.mo share/locale/ka/LC_MESSAGES/kcm_plasmasearch.mo share/locale/ka/LC_MESSAGES/kcm_recentFiles.mo share/locale/ka/LC_MESSAGES/kcm_smserver.mo share/locale/ka/LC_MESSAGES/kcm_solid_actions.mo share/locale/ka/LC_MESSAGES/kcm_splashscreen.mo share/locale/ka/LC_MESSAGES/kcm_tablet.mo share/locale/ka/LC_MESSAGES/kcm_touchpad.mo share/locale/ka/LC_MESSAGES/kcm_touchscreen.mo share/locale/ka/LC_MESSAGES/kcm_workspace.mo share/locale/ka/LC_MESSAGES/kcmkclock.mo share/locale/ka/LC_MESSAGES/kcmkeyboard.mo share/locale/ka/LC_MESSAGES/kcmmouse.mo share/locale/ka/LC_MESSAGES/kcmqtquicksettings.mo share/locale/ka/LC_MESSAGES/knetattach5.mo share/locale/ka/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/ka/LC_MESSAGES/plasma_runner_kwin.mo share/locale/ka/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/ka/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/ka/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/ka/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/ka/LC_MESSAGES/plasmaactivitymanager.mo share/locale/kk/LC_MESSAGES/kaccess.mo share/locale/kk/LC_MESSAGES/kcm5_device_automounter.mo share/locale/kk/LC_MESSAGES/kcm5_joystick.mo share/locale/kk/LC_MESSAGES/kcm5_kded.mo share/locale/kk/LC_MESSAGES/kcm_access.mo share/locale/kk/LC_MESSAGES/kcm_componentchooser.mo share/locale/kk/LC_MESSAGES/kcm_desktoppaths.mo share/locale/kk/LC_MESSAGES/kcm_smserver.mo share/locale/kk/LC_MESSAGES/kcm_solid_actions.mo share/locale/kk/LC_MESSAGES/kcmkclock.mo share/locale/kk/LC_MESSAGES/kcmkeyboard.mo share/locale/kk/LC_MESSAGES/kcmmouse.mo share/locale/kk/LC_MESSAGES/knetattach5.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/kk/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/kk/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/km/LC_MESSAGES/kaccess.mo share/locale/km/LC_MESSAGES/kcm5_device_automounter.mo share/locale/km/LC_MESSAGES/kcm5_joystick.mo share/locale/km/LC_MESSAGES/kcm5_kded.mo share/locale/km/LC_MESSAGES/kcm_access.mo share/locale/km/LC_MESSAGES/kcm_componentchooser.mo share/locale/km/LC_MESSAGES/kcm_desktoppaths.mo share/locale/km/LC_MESSAGES/kcm_smserver.mo share/locale/km/LC_MESSAGES/kcm_solid_actions.mo share/locale/km/LC_MESSAGES/kcmkclock.mo share/locale/km/LC_MESSAGES/kcmkeyboard.mo share/locale/km/LC_MESSAGES/kcmmouse.mo share/locale/km/LC_MESSAGES/knetattach5.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/km/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/kn/LC_MESSAGES/kaccess.mo share/locale/kn/LC_MESSAGES/kcm5_device_automounter.mo share/locale/kn/LC_MESSAGES/kcm5_joystick.mo share/locale/kn/LC_MESSAGES/kcm5_kded.mo share/locale/kn/LC_MESSAGES/kcm_access.mo share/locale/kn/LC_MESSAGES/kcm_componentchooser.mo share/locale/kn/LC_MESSAGES/kcm_desktoppaths.mo share/locale/kn/LC_MESSAGES/kcm_smserver.mo share/locale/kn/LC_MESSAGES/kcmkclock.mo share/locale/kn/LC_MESSAGES/kcmkeyboard.mo share/locale/kn/LC_MESSAGES/kcmmouse.mo share/locale/kn/LC_MESSAGES/knetattach5.mo share/locale/kn/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/kn/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/kn/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/kn/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/kn/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/kn/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/ko/LC_MESSAGES/kaccess.mo share/locale/ko/LC_MESSAGES/kcm5_device_automounter.mo share/locale/ko/LC_MESSAGES/kcm5_joystick.mo share/locale/ko/LC_MESSAGES/kcm5_kded.mo share/locale/ko/LC_MESSAGES/kcm_access.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_krunnersettings.mo share/locale/ko/LC_MESSAGES/kcm_landingpage.mo share/locale/ko/LC_MESSAGES/kcm_plasmasearch.mo share/locale/ko/LC_MESSAGES/kcm_recentFiles.mo share/locale/ko/LC_MESSAGES/kcm_smserver.mo share/locale/ko/LC_MESSAGES/kcm_solid_actions.mo share/locale/ko/LC_MESSAGES/kcm_splashscreen.mo share/locale/ko/LC_MESSAGES/kcm_tablet.mo share/locale/ko/LC_MESSAGES/kcm_touchpad.mo +share/locale/ko/LC_MESSAGES/kcm_touchscreen.mo share/locale/ko/LC_MESSAGES/kcm_workspace.mo share/locale/ko/LC_MESSAGES/kcmkclock.mo share/locale/ko/LC_MESSAGES/kcmkeyboard.mo share/locale/ko/LC_MESSAGES/kcmmouse.mo share/locale/ko/LC_MESSAGES/kcmqtquicksettings.mo share/locale/ko/LC_MESSAGES/knetattach5.mo share/locale/ko/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/ko/LC_MESSAGES/plasma_runner_kwin.mo share/locale/ko/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/ko/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/ko/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/ko/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/ko/LC_MESSAGES/plasmaactivitymanager.mo share/locale/ku/LC_MESSAGES/kaccess.mo share/locale/ku/LC_MESSAGES/kcm5_joystick.mo share/locale/ku/LC_MESSAGES/kcm5_kded.mo share/locale/ku/LC_MESSAGES/kcm_access.mo share/locale/ku/LC_MESSAGES/kcm_componentchooser.mo share/locale/ku/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ku/LC_MESSAGES/kcm_smserver.mo share/locale/ku/LC_MESSAGES/kcmkclock.mo share/locale/ku/LC_MESSAGES/kcmkeyboard.mo share/locale/ku/LC_MESSAGES/kcmmouse.mo share/locale/ku/LC_MESSAGES/knetattach5.mo share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/lt/LC_MESSAGES/kaccess.mo share/locale/lt/LC_MESSAGES/kcm5_device_automounter.mo share/locale/lt/LC_MESSAGES/kcm5_joystick.mo share/locale/lt/LC_MESSAGES/kcm5_kded.mo share/locale/lt/LC_MESSAGES/kcm_access.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_krunnersettings.mo share/locale/lt/LC_MESSAGES/kcm_plasmasearch.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_workspace.mo share/locale/lt/LC_MESSAGES/kcmkclock.mo share/locale/lt/LC_MESSAGES/kcmkeyboard.mo share/locale/lt/LC_MESSAGES/kcmmouse.mo share/locale/lt/LC_MESSAGES/kcmqtquicksettings.mo share/locale/lt/LC_MESSAGES/knetattach5.mo share/locale/lt/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/lt/LC_MESSAGES/plasma_runner_kwin.mo share/locale/lt/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/lt/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/lt/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/lt/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/lt/LC_MESSAGES/plasmaactivitymanager.mo share/locale/lv/LC_MESSAGES/kaccess.mo share/locale/lv/LC_MESSAGES/kcm5_device_automounter.mo share/locale/lv/LC_MESSAGES/kcm5_joystick.mo share/locale/lv/LC_MESSAGES/kcm5_kded.mo share/locale/lv/LC_MESSAGES/kcm_access.mo share/locale/lv/LC_MESSAGES/kcm_componentchooser.mo share/locale/lv/LC_MESSAGES/kcm_desktoppaths.mo share/locale/lv/LC_MESSAGES/kcm_smserver.mo share/locale/lv/LC_MESSAGES/kcm_solid_actions.mo share/locale/lv/LC_MESSAGES/kcmkclock.mo share/locale/lv/LC_MESSAGES/kcmkeyboard.mo share/locale/lv/LC_MESSAGES/kcmmouse.mo share/locale/lv/LC_MESSAGES/knetattach5.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/lv/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/mai/LC_MESSAGES/kaccess.mo share/locale/mai/LC_MESSAGES/kcm5_device_automounter.mo share/locale/mai/LC_MESSAGES/kcm5_joystick.mo share/locale/mai/LC_MESSAGES/kcm5_kded.mo share/locale/mai/LC_MESSAGES/kcm_access.mo share/locale/mai/LC_MESSAGES/kcm_componentchooser.mo share/locale/mai/LC_MESSAGES/kcm_desktoppaths.mo share/locale/mai/LC_MESSAGES/kcm_smserver.mo share/locale/mai/LC_MESSAGES/kcm_solid_actions.mo share/locale/mai/LC_MESSAGES/kcmkclock.mo share/locale/mai/LC_MESSAGES/kcmkeyboard.mo share/locale/mai/LC_MESSAGES/kcmmouse.mo share/locale/mai/LC_MESSAGES/knetattach5.mo share/locale/mai/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/mai/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/mai/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/mai/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/mai/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/mai/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/mk/LC_MESSAGES/kaccess.mo share/locale/mk/LC_MESSAGES/kcm5_joystick.mo share/locale/mk/LC_MESSAGES/kcm5_kded.mo share/locale/mk/LC_MESSAGES/kcm_access.mo share/locale/mk/LC_MESSAGES/kcm_componentchooser.mo share/locale/mk/LC_MESSAGES/kcm_desktoppaths.mo share/locale/mk/LC_MESSAGES/kcm_smserver.mo share/locale/mk/LC_MESSAGES/kcmkclock.mo share/locale/mk/LC_MESSAGES/kcmkeyboard.mo share/locale/mk/LC_MESSAGES/kcmmouse.mo share/locale/mk/LC_MESSAGES/knetattach5.mo share/locale/mk/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/mk/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/mk/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/mk/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ml/LC_MESSAGES/kaccess.mo share/locale/ml/LC_MESSAGES/kcm5_device_automounter.mo share/locale/ml/LC_MESSAGES/kcm5_joystick.mo share/locale/ml/LC_MESSAGES/kcm5_kded.mo share/locale/ml/LC_MESSAGES/kcm_access.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_krunnersettings.mo share/locale/ml/LC_MESSAGES/kcm_plasmasearch.mo share/locale/ml/LC_MESSAGES/kcm_smserver.mo share/locale/ml/LC_MESSAGES/kcm_solid_actions.mo share/locale/ml/LC_MESSAGES/kcm_splashscreen.mo share/locale/ml/LC_MESSAGES/kcm_touchpad.mo share/locale/ml/LC_MESSAGES/kcm_workspace.mo share/locale/ml/LC_MESSAGES/kcmkclock.mo share/locale/ml/LC_MESSAGES/kcmkeyboard.mo share/locale/ml/LC_MESSAGES/kcmmouse.mo share/locale/ml/LC_MESSAGES/kcmqtquicksettings.mo share/locale/ml/LC_MESSAGES/knetattach5.mo share/locale/ml/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/ml/LC_MESSAGES/plasma_runner_kwin.mo share/locale/ml/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/ml/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/ml/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/ml/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/ml/LC_MESSAGES/plasmaactivitymanager.mo share/locale/mr/LC_MESSAGES/kaccess.mo share/locale/mr/LC_MESSAGES/kcm5_device_automounter.mo share/locale/mr/LC_MESSAGES/kcm5_joystick.mo share/locale/mr/LC_MESSAGES/kcm5_kded.mo share/locale/mr/LC_MESSAGES/kcm_access.mo share/locale/mr/LC_MESSAGES/kcm_componentchooser.mo share/locale/mr/LC_MESSAGES/kcm_desktoppaths.mo share/locale/mr/LC_MESSAGES/kcm_smserver.mo share/locale/mr/LC_MESSAGES/kcm_solid_actions.mo share/locale/mr/LC_MESSAGES/kcmkclock.mo share/locale/mr/LC_MESSAGES/kcmkeyboard.mo share/locale/mr/LC_MESSAGES/kcmmouse.mo share/locale/mr/LC_MESSAGES/knetattach5.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/mr/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/mr/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/ms/LC_MESSAGES/kaccess.mo share/locale/ms/LC_MESSAGES/kcm5_device_automounter.mo share/locale/ms/LC_MESSAGES/kcm5_joystick.mo share/locale/ms/LC_MESSAGES/kcm5_kded.mo share/locale/ms/LC_MESSAGES/kcm_access.mo share/locale/ms/LC_MESSAGES/kcm_componentchooser.mo share/locale/ms/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ms/LC_MESSAGES/kcm_smserver.mo share/locale/ms/LC_MESSAGES/kcm_solid_actions.mo share/locale/ms/LC_MESSAGES/kcmkclock.mo share/locale/ms/LC_MESSAGES/kcmkeyboard.mo share/locale/ms/LC_MESSAGES/kcmmouse.mo share/locale/ms/LC_MESSAGES/knetattach5.mo share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/ms/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/nb/LC_MESSAGES/kaccess.mo share/locale/nb/LC_MESSAGES/kcm5_device_automounter.mo share/locale/nb/LC_MESSAGES/kcm5_joystick.mo share/locale/nb/LC_MESSAGES/kcm5_kded.mo share/locale/nb/LC_MESSAGES/kcm_access.mo share/locale/nb/LC_MESSAGES/kcm_baloofile.mo share/locale/nb/LC_MESSAGES/kcm_componentchooser.mo share/locale/nb/LC_MESSAGES/kcm_desktoppaths.mo share/locale/nb/LC_MESSAGES/kcm_krunnersettings.mo share/locale/nb/LC_MESSAGES/kcm_plasmasearch.mo share/locale/nb/LC_MESSAGES/kcm_smserver.mo share/locale/nb/LC_MESSAGES/kcm_solid_actions.mo share/locale/nb/LC_MESSAGES/kcm_splashscreen.mo share/locale/nb/LC_MESSAGES/kcm_touchpad.mo share/locale/nb/LC_MESSAGES/kcm_workspace.mo share/locale/nb/LC_MESSAGES/kcmkclock.mo share/locale/nb/LC_MESSAGES/kcmkeyboard.mo share/locale/nb/LC_MESSAGES/kcmmouse.mo share/locale/nb/LC_MESSAGES/knetattach5.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/nb/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/nb/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/nb/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/nds/LC_MESSAGES/kaccess.mo share/locale/nds/LC_MESSAGES/kcm5_device_automounter.mo share/locale/nds/LC_MESSAGES/kcm5_joystick.mo share/locale/nds/LC_MESSAGES/kcm5_kded.mo share/locale/nds/LC_MESSAGES/kcm_access.mo share/locale/nds/LC_MESSAGES/kcm_baloofile.mo share/locale/nds/LC_MESSAGES/kcm_componentchooser.mo share/locale/nds/LC_MESSAGES/kcm_desktoppaths.mo share/locale/nds/LC_MESSAGES/kcm_krunnersettings.mo share/locale/nds/LC_MESSAGES/kcm_plasmasearch.mo share/locale/nds/LC_MESSAGES/kcm_smserver.mo share/locale/nds/LC_MESSAGES/kcm_solid_actions.mo share/locale/nds/LC_MESSAGES/kcm_splashscreen.mo share/locale/nds/LC_MESSAGES/kcm_workspace.mo share/locale/nds/LC_MESSAGES/kcmkclock.mo share/locale/nds/LC_MESSAGES/kcmkeyboard.mo share/locale/nds/LC_MESSAGES/kcmmouse.mo share/locale/nds/LC_MESSAGES/knetattach5.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/nds/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/nds/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/nds/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/ne/LC_MESSAGES/kaccess.mo share/locale/ne/LC_MESSAGES/kcm5_joystick.mo share/locale/ne/LC_MESSAGES/kcm5_kded.mo share/locale/ne/LC_MESSAGES/kcm_access.mo share/locale/ne/LC_MESSAGES/kcm_componentchooser.mo share/locale/ne/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ne/LC_MESSAGES/kcm_smserver.mo share/locale/ne/LC_MESSAGES/kcmkclock.mo share/locale/ne/LC_MESSAGES/kcmkeyboard.mo share/locale/ne/LC_MESSAGES/kcmmouse.mo share/locale/ne/LC_MESSAGES/knetattach5.mo share/locale/ne/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ne/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/nl/LC_MESSAGES/kaccess.mo share/locale/nl/LC_MESSAGES/kcm5_device_automounter.mo share/locale/nl/LC_MESSAGES/kcm5_joystick.mo share/locale/nl/LC_MESSAGES/kcm5_kded.mo share/locale/nl/LC_MESSAGES/kcm_access.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_krunnersettings.mo share/locale/nl/LC_MESSAGES/kcm_landingpage.mo share/locale/nl/LC_MESSAGES/kcm_plasmasearch.mo share/locale/nl/LC_MESSAGES/kcm_recentFiles.mo share/locale/nl/LC_MESSAGES/kcm_smserver.mo share/locale/nl/LC_MESSAGES/kcm_solid_actions.mo share/locale/nl/LC_MESSAGES/kcm_splashscreen.mo share/locale/nl/LC_MESSAGES/kcm_tablet.mo share/locale/nl/LC_MESSAGES/kcm_touchpad.mo share/locale/nl/LC_MESSAGES/kcm_touchscreen.mo share/locale/nl/LC_MESSAGES/kcm_workspace.mo share/locale/nl/LC_MESSAGES/kcmkclock.mo share/locale/nl/LC_MESSAGES/kcmkeyboard.mo share/locale/nl/LC_MESSAGES/kcmmouse.mo share/locale/nl/LC_MESSAGES/kcmqtquicksettings.mo share/locale/nl/LC_MESSAGES/knetattach5.mo share/locale/nl/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/nl/LC_MESSAGES/plasma_runner_kwin.mo share/locale/nl/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/nl/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/nl/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/nl/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/nl/LC_MESSAGES/plasmaactivitymanager.mo share/locale/nn/LC_MESSAGES/kaccess.mo share/locale/nn/LC_MESSAGES/kcm5_device_automounter.mo share/locale/nn/LC_MESSAGES/kcm5_joystick.mo share/locale/nn/LC_MESSAGES/kcm5_kded.mo share/locale/nn/LC_MESSAGES/kcm_access.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_krunnersettings.mo share/locale/nn/LC_MESSAGES/kcm_landingpage.mo share/locale/nn/LC_MESSAGES/kcm_plasmasearch.mo share/locale/nn/LC_MESSAGES/kcm_recentFiles.mo share/locale/nn/LC_MESSAGES/kcm_smserver.mo share/locale/nn/LC_MESSAGES/kcm_solid_actions.mo share/locale/nn/LC_MESSAGES/kcm_splashscreen.mo share/locale/nn/LC_MESSAGES/kcm_tablet.mo share/locale/nn/LC_MESSAGES/kcm_touchpad.mo share/locale/nn/LC_MESSAGES/kcm_touchscreen.mo share/locale/nn/LC_MESSAGES/kcm_workspace.mo share/locale/nn/LC_MESSAGES/kcmkclock.mo share/locale/nn/LC_MESSAGES/kcmkeyboard.mo share/locale/nn/LC_MESSAGES/kcmmouse.mo share/locale/nn/LC_MESSAGES/kcmqtquicksettings.mo share/locale/nn/LC_MESSAGES/knetattach5.mo share/locale/nn/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/nn/LC_MESSAGES/plasma_runner_kwin.mo share/locale/nn/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/nn/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/nn/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/nn/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/nn/LC_MESSAGES/plasmaactivitymanager.mo share/locale/oc/LC_MESSAGES/kaccess.mo share/locale/oc/LC_MESSAGES/kcm5_joystick.mo share/locale/oc/LC_MESSAGES/kcm5_kded.mo share/locale/oc/LC_MESSAGES/kcm_access.mo share/locale/oc/LC_MESSAGES/kcm_componentchooser.mo share/locale/oc/LC_MESSAGES/kcm_desktoppaths.mo share/locale/oc/LC_MESSAGES/kcm_smserver.mo share/locale/oc/LC_MESSAGES/kcmkclock.mo share/locale/oc/LC_MESSAGES/kcmkeyboard.mo share/locale/oc/LC_MESSAGES/kcmmouse.mo share/locale/oc/LC_MESSAGES/knetattach5.mo share/locale/oc/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/or/LC_MESSAGES/kaccess.mo share/locale/or/LC_MESSAGES/kcm5_joystick.mo share/locale/or/LC_MESSAGES/kcm5_kded.mo share/locale/or/LC_MESSAGES/kcm_access.mo share/locale/or/LC_MESSAGES/kcm_componentchooser.mo share/locale/or/LC_MESSAGES/kcm_desktoppaths.mo share/locale/or/LC_MESSAGES/kcm_smserver.mo share/locale/or/LC_MESSAGES/kcmkclock.mo share/locale/or/LC_MESSAGES/kcmkeyboard.mo share/locale/or/LC_MESSAGES/kcmmouse.mo share/locale/or/LC_MESSAGES/knetattach5.mo share/locale/or/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/or/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/or/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/or/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/pa/LC_MESSAGES/kaccess.mo share/locale/pa/LC_MESSAGES/kcm5_device_automounter.mo share/locale/pa/LC_MESSAGES/kcm5_joystick.mo share/locale/pa/LC_MESSAGES/kcm5_kded.mo share/locale/pa/LC_MESSAGES/kcm_access.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_krunnersettings.mo share/locale/pa/LC_MESSAGES/kcm_landingpage.mo share/locale/pa/LC_MESSAGES/kcm_plasmasearch.mo share/locale/pa/LC_MESSAGES/kcm_smserver.mo share/locale/pa/LC_MESSAGES/kcm_solid_actions.mo share/locale/pa/LC_MESSAGES/kcm_splashscreen.mo share/locale/pa/LC_MESSAGES/kcm_touchpad.mo share/locale/pa/LC_MESSAGES/kcm_workspace.mo share/locale/pa/LC_MESSAGES/kcmkclock.mo share/locale/pa/LC_MESSAGES/kcmkeyboard.mo share/locale/pa/LC_MESSAGES/kcmmouse.mo share/locale/pa/LC_MESSAGES/kcmqtquicksettings.mo share/locale/pa/LC_MESSAGES/knetattach5.mo share/locale/pa/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/pa/LC_MESSAGES/plasma_runner_kwin.mo share/locale/pa/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/pa/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/pa/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/pa/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/pa/LC_MESSAGES/plasmaactivitymanager.mo share/locale/pl/LC_MESSAGES/kaccess.mo share/locale/pl/LC_MESSAGES/kcm5_device_automounter.mo share/locale/pl/LC_MESSAGES/kcm5_joystick.mo share/locale/pl/LC_MESSAGES/kcm5_kded.mo share/locale/pl/LC_MESSAGES/kcm_access.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_krunnersettings.mo share/locale/pl/LC_MESSAGES/kcm_landingpage.mo share/locale/pl/LC_MESSAGES/kcm_plasmasearch.mo share/locale/pl/LC_MESSAGES/kcm_recentFiles.mo share/locale/pl/LC_MESSAGES/kcm_smserver.mo share/locale/pl/LC_MESSAGES/kcm_solid_actions.mo share/locale/pl/LC_MESSAGES/kcm_splashscreen.mo share/locale/pl/LC_MESSAGES/kcm_tablet.mo share/locale/pl/LC_MESSAGES/kcm_touchpad.mo share/locale/pl/LC_MESSAGES/kcm_touchscreen.mo share/locale/pl/LC_MESSAGES/kcm_workspace.mo share/locale/pl/LC_MESSAGES/kcmkclock.mo share/locale/pl/LC_MESSAGES/kcmkeyboard.mo share/locale/pl/LC_MESSAGES/kcmmouse.mo share/locale/pl/LC_MESSAGES/kcmqtquicksettings.mo share/locale/pl/LC_MESSAGES/knetattach5.mo share/locale/pl/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/pl/LC_MESSAGES/plasma_runner_kwin.mo share/locale/pl/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/pl/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/pl/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/pl/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/pl/LC_MESSAGES/plasmaactivitymanager.mo share/locale/pt/LC_MESSAGES/kaccess.mo share/locale/pt/LC_MESSAGES/kcm5_device_automounter.mo share/locale/pt/LC_MESSAGES/kcm5_joystick.mo share/locale/pt/LC_MESSAGES/kcm5_kded.mo share/locale/pt/LC_MESSAGES/kcm_access.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_krunnersettings.mo share/locale/pt/LC_MESSAGES/kcm_landingpage.mo share/locale/pt/LC_MESSAGES/kcm_plasmasearch.mo share/locale/pt/LC_MESSAGES/kcm_recentFiles.mo share/locale/pt/LC_MESSAGES/kcm_smserver.mo share/locale/pt/LC_MESSAGES/kcm_solid_actions.mo share/locale/pt/LC_MESSAGES/kcm_splashscreen.mo share/locale/pt/LC_MESSAGES/kcm_tablet.mo share/locale/pt/LC_MESSAGES/kcm_touchpad.mo share/locale/pt/LC_MESSAGES/kcm_touchscreen.mo share/locale/pt/LC_MESSAGES/kcm_workspace.mo share/locale/pt/LC_MESSAGES/kcmkclock.mo share/locale/pt/LC_MESSAGES/kcmkeyboard.mo share/locale/pt/LC_MESSAGES/kcmmouse.mo share/locale/pt/LC_MESSAGES/kcmqtquicksettings.mo share/locale/pt/LC_MESSAGES/knetattach5.mo share/locale/pt/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/pt/LC_MESSAGES/plasma_runner_kwin.mo share/locale/pt/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/pt/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/pt/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/pt/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/pt/LC_MESSAGES/plasmaactivitymanager.mo share/locale/pt_BR/LC_MESSAGES/kaccess.mo share/locale/pt_BR/LC_MESSAGES/kcm5_device_automounter.mo share/locale/pt_BR/LC_MESSAGES/kcm5_joystick.mo share/locale/pt_BR/LC_MESSAGES/kcm5_kded.mo share/locale/pt_BR/LC_MESSAGES/kcm_access.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_krunnersettings.mo share/locale/pt_BR/LC_MESSAGES/kcm_landingpage.mo share/locale/pt_BR/LC_MESSAGES/kcm_plasmasearch.mo share/locale/pt_BR/LC_MESSAGES/kcm_recentFiles.mo share/locale/pt_BR/LC_MESSAGES/kcm_smserver.mo share/locale/pt_BR/LC_MESSAGES/kcm_solid_actions.mo share/locale/pt_BR/LC_MESSAGES/kcm_splashscreen.mo share/locale/pt_BR/LC_MESSAGES/kcm_tablet.mo share/locale/pt_BR/LC_MESSAGES/kcm_touchpad.mo share/locale/pt_BR/LC_MESSAGES/kcm_touchscreen.mo share/locale/pt_BR/LC_MESSAGES/kcm_workspace.mo share/locale/pt_BR/LC_MESSAGES/kcmkclock.mo share/locale/pt_BR/LC_MESSAGES/kcmkeyboard.mo share/locale/pt_BR/LC_MESSAGES/kcmmouse.mo share/locale/pt_BR/LC_MESSAGES/kcmqtquicksettings.mo share/locale/pt_BR/LC_MESSAGES/knetattach5.mo share/locale/pt_BR/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_kwin.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/pt_BR/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/pt_BR/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/pt_BR/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/pt_BR/LC_MESSAGES/plasmaactivitymanager.mo share/locale/ro/LC_MESSAGES/kaccess.mo share/locale/ro/LC_MESSAGES/kcm5_device_automounter.mo share/locale/ro/LC_MESSAGES/kcm5_joystick.mo share/locale/ro/LC_MESSAGES/kcm5_kded.mo share/locale/ro/LC_MESSAGES/kcm_access.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_krunnersettings.mo share/locale/ro/LC_MESSAGES/kcm_landingpage.mo share/locale/ro/LC_MESSAGES/kcm_plasmasearch.mo share/locale/ro/LC_MESSAGES/kcm_recentFiles.mo share/locale/ro/LC_MESSAGES/kcm_smserver.mo share/locale/ro/LC_MESSAGES/kcm_solid_actions.mo share/locale/ro/LC_MESSAGES/kcm_splashscreen.mo share/locale/ro/LC_MESSAGES/kcm_tablet.mo share/locale/ro/LC_MESSAGES/kcm_touchpad.mo share/locale/ro/LC_MESSAGES/kcm_touchscreen.mo share/locale/ro/LC_MESSAGES/kcm_workspace.mo share/locale/ro/LC_MESSAGES/kcmkclock.mo share/locale/ro/LC_MESSAGES/kcmkeyboard.mo share/locale/ro/LC_MESSAGES/kcmmouse.mo share/locale/ro/LC_MESSAGES/kcmqtquicksettings.mo share/locale/ro/LC_MESSAGES/knetattach5.mo share/locale/ro/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/ro/LC_MESSAGES/plasma_runner_kwin.mo share/locale/ro/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/ro/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/ro/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/ro/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/ro/LC_MESSAGES/plasmaactivitymanager.mo share/locale/ru/LC_MESSAGES/kaccess.mo share/locale/ru/LC_MESSAGES/kcm5_device_automounter.mo share/locale/ru/LC_MESSAGES/kcm5_joystick.mo share/locale/ru/LC_MESSAGES/kcm5_kded.mo share/locale/ru/LC_MESSAGES/kcm_access.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_krunnersettings.mo share/locale/ru/LC_MESSAGES/kcm_landingpage.mo share/locale/ru/LC_MESSAGES/kcm_plasmasearch.mo share/locale/ru/LC_MESSAGES/kcm_recentFiles.mo share/locale/ru/LC_MESSAGES/kcm_smserver.mo share/locale/ru/LC_MESSAGES/kcm_solid_actions.mo share/locale/ru/LC_MESSAGES/kcm_splashscreen.mo share/locale/ru/LC_MESSAGES/kcm_tablet.mo share/locale/ru/LC_MESSAGES/kcm_touchpad.mo share/locale/ru/LC_MESSAGES/kcm_touchscreen.mo share/locale/ru/LC_MESSAGES/kcm_workspace.mo share/locale/ru/LC_MESSAGES/kcmkclock.mo share/locale/ru/LC_MESSAGES/kcmkeyboard.mo share/locale/ru/LC_MESSAGES/kcmmouse.mo share/locale/ru/LC_MESSAGES/kcmqtquicksettings.mo share/locale/ru/LC_MESSAGES/knetattach5.mo share/locale/ru/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/ru/LC_MESSAGES/plasma_runner_kwin.mo share/locale/ru/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/ru/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/ru/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/ru/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/ru/LC_MESSAGES/plasmaactivitymanager.mo share/locale/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_access.mo share/locale/se/LC_MESSAGES/kcm_componentchooser.mo share/locale/se/LC_MESSAGES/kcm_desktoppaths.mo share/locale/se/LC_MESSAGES/kcm_smserver.mo share/locale/se/LC_MESSAGES/kcmkclock.mo share/locale/se/LC_MESSAGES/kcmkeyboard.mo share/locale/se/LC_MESSAGES/kcmmouse.mo share/locale/se/LC_MESSAGES/knetattach5.mo share/locale/se/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/se/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/si/LC_MESSAGES/kaccess.mo share/locale/si/LC_MESSAGES/kcm5_device_automounter.mo share/locale/si/LC_MESSAGES/kcm5_joystick.mo share/locale/si/LC_MESSAGES/kcm5_kded.mo share/locale/si/LC_MESSAGES/kcm_access.mo share/locale/si/LC_MESSAGES/kcm_componentchooser.mo share/locale/si/LC_MESSAGES/kcm_desktoppaths.mo share/locale/si/LC_MESSAGES/kcm_smserver.mo share/locale/si/LC_MESSAGES/kcm_solid_actions.mo share/locale/si/LC_MESSAGES/kcmkclock.mo share/locale/si/LC_MESSAGES/kcmkeyboard.mo share/locale/si/LC_MESSAGES/kcmmouse.mo share/locale/si/LC_MESSAGES/knetattach5.mo share/locale/si/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/si/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/si/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/si/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/si/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/sk/LC_MESSAGES/kaccess.mo share/locale/sk/LC_MESSAGES/kcm5_device_automounter.mo share/locale/sk/LC_MESSAGES/kcm5_joystick.mo share/locale/sk/LC_MESSAGES/kcm5_kded.mo share/locale/sk/LC_MESSAGES/kcm_access.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_krunnersettings.mo share/locale/sk/LC_MESSAGES/kcm_landingpage.mo share/locale/sk/LC_MESSAGES/kcm_plasmasearch.mo share/locale/sk/LC_MESSAGES/kcm_recentFiles.mo share/locale/sk/LC_MESSAGES/kcm_smserver.mo share/locale/sk/LC_MESSAGES/kcm_solid_actions.mo share/locale/sk/LC_MESSAGES/kcm_splashscreen.mo share/locale/sk/LC_MESSAGES/kcm_tablet.mo share/locale/sk/LC_MESSAGES/kcm_touchpad.mo share/locale/sk/LC_MESSAGES/kcm_workspace.mo share/locale/sk/LC_MESSAGES/kcmkclock.mo share/locale/sk/LC_MESSAGES/kcmkeyboard.mo share/locale/sk/LC_MESSAGES/kcmmouse.mo share/locale/sk/LC_MESSAGES/kcmqtquicksettings.mo share/locale/sk/LC_MESSAGES/knetattach5.mo share/locale/sk/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/sk/LC_MESSAGES/plasma_runner_kwin.mo share/locale/sk/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/sk/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/sk/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/sk/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/sk/LC_MESSAGES/plasmaactivitymanager.mo share/locale/sl/LC_MESSAGES/kaccess.mo share/locale/sl/LC_MESSAGES/kcm5_device_automounter.mo share/locale/sl/LC_MESSAGES/kcm5_joystick.mo share/locale/sl/LC_MESSAGES/kcm5_kded.mo share/locale/sl/LC_MESSAGES/kcm_access.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_krunnersettings.mo share/locale/sl/LC_MESSAGES/kcm_landingpage.mo share/locale/sl/LC_MESSAGES/kcm_plasmasearch.mo share/locale/sl/LC_MESSAGES/kcm_recentFiles.mo share/locale/sl/LC_MESSAGES/kcm_smserver.mo share/locale/sl/LC_MESSAGES/kcm_solid_actions.mo share/locale/sl/LC_MESSAGES/kcm_splashscreen.mo share/locale/sl/LC_MESSAGES/kcm_tablet.mo share/locale/sl/LC_MESSAGES/kcm_touchpad.mo share/locale/sl/LC_MESSAGES/kcm_touchscreen.mo share/locale/sl/LC_MESSAGES/kcm_workspace.mo share/locale/sl/LC_MESSAGES/kcmkclock.mo share/locale/sl/LC_MESSAGES/kcmkeyboard.mo share/locale/sl/LC_MESSAGES/kcmmouse.mo share/locale/sl/LC_MESSAGES/kcmqtquicksettings.mo share/locale/sl/LC_MESSAGES/knetattach5.mo share/locale/sl/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/sl/LC_MESSAGES/plasma_runner_kwin.mo share/locale/sl/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/sl/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/sl/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/sl/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/sl/LC_MESSAGES/plasmaactivitymanager.mo share/locale/sq/LC_MESSAGES/kaccess.mo share/locale/sq/LC_MESSAGES/kcm5_joystick.mo share/locale/sq/LC_MESSAGES/kcm5_kded.mo share/locale/sq/LC_MESSAGES/kcm_access.mo share/locale/sq/LC_MESSAGES/kcm_componentchooser.mo share/locale/sq/LC_MESSAGES/kcm_smserver.mo share/locale/sq/LC_MESSAGES/kcm_solid_actions.mo share/locale/sq/LC_MESSAGES/kcmkclock.mo share/locale/sq/LC_MESSAGES/kcmkeyboard.mo share/locale/sq/LC_MESSAGES/kcmmouse.mo share/locale/sq/LC_MESSAGES/knetattach5.mo share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/sr/LC_MESSAGES/kaccess.mo share/locale/sr/LC_MESSAGES/kcm5_device_automounter.mo share/locale/sr/LC_MESSAGES/kcm5_joystick.mo share/locale/sr/LC_MESSAGES/kcm5_kded.mo share/locale/sr/LC_MESSAGES/kcm_access.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_krunnersettings.mo share/locale/sr/LC_MESSAGES/kcm_plasmasearch.mo share/locale/sr/LC_MESSAGES/kcm_smserver.mo share/locale/sr/LC_MESSAGES/kcm_solid_actions.mo share/locale/sr/LC_MESSAGES/kcm_splashscreen.mo share/locale/sr/LC_MESSAGES/kcm_touchpad.mo share/locale/sr/LC_MESSAGES/kcm_workspace.mo share/locale/sr/LC_MESSAGES/kcmkclock.mo share/locale/sr/LC_MESSAGES/kcmkeyboard.mo share/locale/sr/LC_MESSAGES/kcmmouse.mo share/locale/sr/LC_MESSAGES/knetattach5.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/sr/LC_MESSAGES/plasma_runner_kwin.mo share/locale/sr/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/sr/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/sr/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/sr/LC_MESSAGES/plasmaactivitymanager.mo share/locale/sr/LC_SCRIPTS/kfontinst/kfontinst.js share/locale/sr@ijekavian/LC_MESSAGES/kaccess.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm5_device_automounter.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm5_joystick.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm5_kded.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_access.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_krunnersettings.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_plasmasearch.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_smserver.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_solid_actions.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_splashscreen.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_touchpad.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_workspace.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmkclock.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmkeyboard.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmmouse.mo share/locale/sr@ijekavian/LC_MESSAGES/knetattach5.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_kwin.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/sr@ijekavian/LC_MESSAGES/plasmaactivitymanager.mo share/locale/sr@ijekavian/LC_SCRIPTS/kfontinst/kfontinst.js share/locale/sr@ijekavianlatin/LC_MESSAGES/kaccess.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm5_device_automounter.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm5_joystick.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm5_kded.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_access.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_krunnersettings.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_plasmasearch.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_smserver.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_solid_actions.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_splashscreen.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_touchpad.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_workspace.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmkclock.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmkeyboard.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmmouse.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/knetattach5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_kwin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasmaactivitymanager.mo share/locale/sr@ijekavianlatin/LC_SCRIPTS/kfontinst/kfontinst.js share/locale/sr@latin/LC_MESSAGES/kaccess.mo share/locale/sr@latin/LC_MESSAGES/kcm5_device_automounter.mo share/locale/sr@latin/LC_MESSAGES/kcm5_joystick.mo share/locale/sr@latin/LC_MESSAGES/kcm5_kded.mo share/locale/sr@latin/LC_MESSAGES/kcm_access.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_krunnersettings.mo share/locale/sr@latin/LC_MESSAGES/kcm_plasmasearch.mo share/locale/sr@latin/LC_MESSAGES/kcm_smserver.mo share/locale/sr@latin/LC_MESSAGES/kcm_solid_actions.mo share/locale/sr@latin/LC_MESSAGES/kcm_splashscreen.mo share/locale/sr@latin/LC_MESSAGES/kcm_touchpad.mo share/locale/sr@latin/LC_MESSAGES/kcm_workspace.mo share/locale/sr@latin/LC_MESSAGES/kcmkclock.mo share/locale/sr@latin/LC_MESSAGES/kcmkeyboard.mo share/locale/sr@latin/LC_MESSAGES/kcmmouse.mo share/locale/sr@latin/LC_MESSAGES/knetattach5.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_kwin.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/sr@latin/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/sr@latin/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/sr@latin/LC_MESSAGES/plasmaactivitymanager.mo share/locale/sr@latin/LC_SCRIPTS/kfontinst/kfontinst.js share/locale/sv/LC_MESSAGES/kaccess.mo share/locale/sv/LC_MESSAGES/kcm5_device_automounter.mo share/locale/sv/LC_MESSAGES/kcm5_joystick.mo share/locale/sv/LC_MESSAGES/kcm5_kded.mo share/locale/sv/LC_MESSAGES/kcm_access.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_krunnersettings.mo share/locale/sv/LC_MESSAGES/kcm_landingpage.mo share/locale/sv/LC_MESSAGES/kcm_plasmasearch.mo share/locale/sv/LC_MESSAGES/kcm_recentFiles.mo share/locale/sv/LC_MESSAGES/kcm_smserver.mo share/locale/sv/LC_MESSAGES/kcm_solid_actions.mo share/locale/sv/LC_MESSAGES/kcm_splashscreen.mo share/locale/sv/LC_MESSAGES/kcm_tablet.mo share/locale/sv/LC_MESSAGES/kcm_touchpad.mo share/locale/sv/LC_MESSAGES/kcm_workspace.mo share/locale/sv/LC_MESSAGES/kcmkclock.mo share/locale/sv/LC_MESSAGES/kcmkeyboard.mo share/locale/sv/LC_MESSAGES/kcmmouse.mo share/locale/sv/LC_MESSAGES/kcmqtquicksettings.mo share/locale/sv/LC_MESSAGES/knetattach5.mo share/locale/sv/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/sv/LC_MESSAGES/plasma_runner_kwin.mo share/locale/sv/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/sv/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/sv/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/sv/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/sv/LC_MESSAGES/plasmaactivitymanager.mo share/locale/ta/LC_MESSAGES/kaccess.mo share/locale/ta/LC_MESSAGES/kcm5_device_automounter.mo share/locale/ta/LC_MESSAGES/kcm5_joystick.mo share/locale/ta/LC_MESSAGES/kcm5_kded.mo share/locale/ta/LC_MESSAGES/kcm_access.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_krunnersettings.mo share/locale/ta/LC_MESSAGES/kcm_landingpage.mo share/locale/ta/LC_MESSAGES/kcm_plasmasearch.mo share/locale/ta/LC_MESSAGES/kcm_smserver.mo share/locale/ta/LC_MESSAGES/kcm_solid_actions.mo share/locale/ta/LC_MESSAGES/kcm_splashscreen.mo share/locale/ta/LC_MESSAGES/kcm_tablet.mo share/locale/ta/LC_MESSAGES/kcm_touchpad.mo share/locale/ta/LC_MESSAGES/kcm_workspace.mo share/locale/ta/LC_MESSAGES/kcmkclock.mo share/locale/ta/LC_MESSAGES/kcmkeyboard.mo share/locale/ta/LC_MESSAGES/kcmmouse.mo share/locale/ta/LC_MESSAGES/kcmqtquicksettings.mo share/locale/ta/LC_MESSAGES/knetattach5.mo share/locale/ta/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/ta/LC_MESSAGES/plasma_runner_kwin.mo share/locale/ta/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/ta/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/ta/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/ta/LC_MESSAGES/plasmaactivitymanager.mo share/locale/te/LC_MESSAGES/kaccess.mo share/locale/te/LC_MESSAGES/kcm5_joystick.mo share/locale/te/LC_MESSAGES/kcm5_kded.mo share/locale/te/LC_MESSAGES/kcm_access.mo share/locale/te/LC_MESSAGES/kcm_componentchooser.mo share/locale/te/LC_MESSAGES/kcm_desktoppaths.mo share/locale/te/LC_MESSAGES/kcm_smserver.mo share/locale/te/LC_MESSAGES/kcmkclock.mo share/locale/te/LC_MESSAGES/kcmkeyboard.mo share/locale/te/LC_MESSAGES/kcmmouse.mo share/locale/te/LC_MESSAGES/knetattach5.mo share/locale/te/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/te/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/te/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/te/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/tg/LC_MESSAGES/kaccess.mo share/locale/tg/LC_MESSAGES/kcm5_joystick.mo share/locale/tg/LC_MESSAGES/kcm5_kded.mo share/locale/tg/LC_MESSAGES/kcm_access.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_krunnersettings.mo share/locale/tg/LC_MESSAGES/kcm_plasmasearch.mo share/locale/tg/LC_MESSAGES/kcm_smserver.mo share/locale/tg/LC_MESSAGES/kcm_splashscreen.mo share/locale/tg/LC_MESSAGES/kcmkclock.mo share/locale/tg/LC_MESSAGES/kcmkeyboard.mo share/locale/tg/LC_MESSAGES/kcmmouse.mo share/locale/tg/LC_MESSAGES/knetattach5.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/tg/LC_MESSAGES/plasma_runner_kwin.mo share/locale/tg/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/tg/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/tg/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/th/LC_MESSAGES/kaccess.mo share/locale/th/LC_MESSAGES/kcm5_device_automounter.mo share/locale/th/LC_MESSAGES/kcm5_joystick.mo share/locale/th/LC_MESSAGES/kcm5_kded.mo share/locale/th/LC_MESSAGES/kcm_access.mo share/locale/th/LC_MESSAGES/kcm_componentchooser.mo share/locale/th/LC_MESSAGES/kcm_desktoppaths.mo share/locale/th/LC_MESSAGES/kcm_smserver.mo share/locale/th/LC_MESSAGES/kcm_solid_actions.mo share/locale/th/LC_MESSAGES/kcmkclock.mo share/locale/th/LC_MESSAGES/kcmkeyboard.mo share/locale/th/LC_MESSAGES/kcmmouse.mo share/locale/th/LC_MESSAGES/knetattach5.mo share/locale/th/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/th/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/tr/LC_MESSAGES/kaccess.mo share/locale/tr/LC_MESSAGES/kcm5_device_automounter.mo share/locale/tr/LC_MESSAGES/kcm5_joystick.mo share/locale/tr/LC_MESSAGES/kcm5_kded.mo share/locale/tr/LC_MESSAGES/kcm_access.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_keys.mo share/locale/tr/LC_MESSAGES/kcm_krunnersettings.mo share/locale/tr/LC_MESSAGES/kcm_landingpage.mo share/locale/tr/LC_MESSAGES/kcm_plasmasearch.mo share/locale/tr/LC_MESSAGES/kcm_recentFiles.mo share/locale/tr/LC_MESSAGES/kcm_smserver.mo share/locale/tr/LC_MESSAGES/kcm_solid_actions.mo share/locale/tr/LC_MESSAGES/kcm_splashscreen.mo share/locale/tr/LC_MESSAGES/kcm_tablet.mo share/locale/tr/LC_MESSAGES/kcm_touchpad.mo share/locale/tr/LC_MESSAGES/kcm_touchscreen.mo share/locale/tr/LC_MESSAGES/kcm_workspace.mo share/locale/tr/LC_MESSAGES/kcmkclock.mo share/locale/tr/LC_MESSAGES/kcmkeyboard.mo share/locale/tr/LC_MESSAGES/kcmmouse.mo share/locale/tr/LC_MESSAGES/kcmqtquicksettings.mo share/locale/tr/LC_MESSAGES/knetattach5.mo share/locale/tr/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/tr/LC_MESSAGES/plasma_runner_kwin.mo share/locale/tr/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/tr/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/tr/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/tr/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/tr/LC_MESSAGES/plasmaactivitymanager.mo share/locale/ug/LC_MESSAGES/kaccess.mo share/locale/ug/LC_MESSAGES/kcm5_device_automounter.mo share/locale/ug/LC_MESSAGES/kcm5_joystick.mo share/locale/ug/LC_MESSAGES/kcm5_kded.mo share/locale/ug/LC_MESSAGES/kcm_access.mo share/locale/ug/LC_MESSAGES/kcm_componentchooser.mo share/locale/ug/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ug/LC_MESSAGES/kcm_smserver.mo share/locale/ug/LC_MESSAGES/kcm_solid_actions.mo share/locale/ug/LC_MESSAGES/kcmkclock.mo share/locale/ug/LC_MESSAGES/kcmkeyboard.mo share/locale/ug/LC_MESSAGES/kcmmouse.mo share/locale/ug/LC_MESSAGES/knetattach5.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/ug/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/ug/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/uk/LC_MESSAGES/kaccess.mo share/locale/uk/LC_MESSAGES/kcm5_device_automounter.mo share/locale/uk/LC_MESSAGES/kcm5_joystick.mo share/locale/uk/LC_MESSAGES/kcm5_kded.mo share/locale/uk/LC_MESSAGES/kcm_access.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_krunnersettings.mo share/locale/uk/LC_MESSAGES/kcm_landingpage.mo share/locale/uk/LC_MESSAGES/kcm_plasmasearch.mo share/locale/uk/LC_MESSAGES/kcm_recentFiles.mo share/locale/uk/LC_MESSAGES/kcm_smserver.mo share/locale/uk/LC_MESSAGES/kcm_solid_actions.mo share/locale/uk/LC_MESSAGES/kcm_splashscreen.mo share/locale/uk/LC_MESSAGES/kcm_tablet.mo share/locale/uk/LC_MESSAGES/kcm_touchpad.mo share/locale/uk/LC_MESSAGES/kcm_touchscreen.mo share/locale/uk/LC_MESSAGES/kcm_workspace.mo share/locale/uk/LC_MESSAGES/kcmkclock.mo share/locale/uk/LC_MESSAGES/kcmkeyboard.mo share/locale/uk/LC_MESSAGES/kcmmouse.mo share/locale/uk/LC_MESSAGES/kcmqtquicksettings.mo share/locale/uk/LC_MESSAGES/knetattach5.mo share/locale/uk/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/uk/LC_MESSAGES/plasma_runner_kwin.mo share/locale/uk/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/uk/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/uk/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/uk/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/uk/LC_MESSAGES/plasmaactivitymanager.mo share/locale/uz/LC_MESSAGES/kaccess.mo share/locale/uz/LC_MESSAGES/kcm5_joystick.mo share/locale/uz/LC_MESSAGES/kcm5_kded.mo share/locale/uz/LC_MESSAGES/kcm_access.mo share/locale/uz/LC_MESSAGES/kcm_componentchooser.mo share/locale/uz/LC_MESSAGES/kcm_desktoppaths.mo share/locale/uz/LC_MESSAGES/kcm_smserver.mo share/locale/uz/LC_MESSAGES/kcmkclock.mo share/locale/uz/LC_MESSAGES/kcmkeyboard.mo share/locale/uz/LC_MESSAGES/kcmmouse.mo share/locale/uz/LC_MESSAGES/knetattach5.mo share/locale/uz/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/uz@cyrillic/LC_MESSAGES/kaccess.mo share/locale/uz@cyrillic/LC_MESSAGES/kcm5_joystick.mo share/locale/uz@cyrillic/LC_MESSAGES/kcm5_kded.mo share/locale/uz@cyrillic/LC_MESSAGES/kcm_access.mo share/locale/uz@cyrillic/LC_MESSAGES/kcm_componentchooser.mo share/locale/uz@cyrillic/LC_MESSAGES/kcm_desktoppaths.mo share/locale/uz@cyrillic/LC_MESSAGES/kcm_smserver.mo share/locale/uz@cyrillic/LC_MESSAGES/kcmkclock.mo share/locale/uz@cyrillic/LC_MESSAGES/kcmkeyboard.mo share/locale/uz@cyrillic/LC_MESSAGES/kcmmouse.mo share/locale/uz@cyrillic/LC_MESSAGES/knetattach5.mo share/locale/uz@cyrillic/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/vi/LC_MESSAGES/kaccess.mo share/locale/vi/LC_MESSAGES/kcm5_device_automounter.mo share/locale/vi/LC_MESSAGES/kcm5_joystick.mo share/locale/vi/LC_MESSAGES/kcm5_kded.mo share/locale/vi/LC_MESSAGES/kcm_access.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_krunnersettings.mo share/locale/vi/LC_MESSAGES/kcm_landingpage.mo share/locale/vi/LC_MESSAGES/kcm_plasmasearch.mo share/locale/vi/LC_MESSAGES/kcm_recentFiles.mo share/locale/vi/LC_MESSAGES/kcm_smserver.mo share/locale/vi/LC_MESSAGES/kcm_solid_actions.mo share/locale/vi/LC_MESSAGES/kcm_splashscreen.mo share/locale/vi/LC_MESSAGES/kcm_tablet.mo share/locale/vi/LC_MESSAGES/kcm_touchpad.mo share/locale/vi/LC_MESSAGES/kcm_touchscreen.mo share/locale/vi/LC_MESSAGES/kcm_workspace.mo share/locale/vi/LC_MESSAGES/kcmkclock.mo share/locale/vi/LC_MESSAGES/kcmkeyboard.mo share/locale/vi/LC_MESSAGES/kcmmouse.mo share/locale/vi/LC_MESSAGES/kcmqtquicksettings.mo share/locale/vi/LC_MESSAGES/knetattach5.mo share/locale/vi/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/vi/LC_MESSAGES/plasma_runner_kwin.mo share/locale/vi/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/vi/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/vi/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/vi/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/vi/LC_MESSAGES/plasmaactivitymanager.mo share/locale/wa/LC_MESSAGES/kaccess.mo share/locale/wa/LC_MESSAGES/kcm5_device_automounter.mo share/locale/wa/LC_MESSAGES/kcm5_joystick.mo share/locale/wa/LC_MESSAGES/kcm5_kded.mo share/locale/wa/LC_MESSAGES/kcm_access.mo share/locale/wa/LC_MESSAGES/kcm_componentchooser.mo share/locale/wa/LC_MESSAGES/kcm_desktoppaths.mo share/locale/wa/LC_MESSAGES/kcm_smserver.mo share/locale/wa/LC_MESSAGES/kcm_solid_actions.mo share/locale/wa/LC_MESSAGES/kcmkclock.mo share/locale/wa/LC_MESSAGES/kcmkeyboard.mo share/locale/wa/LC_MESSAGES/kcmmouse.mo share/locale/wa/LC_MESSAGES/knetattach5.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/wa/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/xh/LC_MESSAGES/kaccess.mo share/locale/xh/LC_MESSAGES/kcm5_kded.mo share/locale/xh/LC_MESSAGES/kcm_access.mo share/locale/xh/LC_MESSAGES/kcm_componentchooser.mo share/locale/xh/LC_MESSAGES/kcm_desktoppaths.mo share/locale/xh/LC_MESSAGES/kcm_smserver.mo share/locale/xh/LC_MESSAGES/kcmkclock.mo share/locale/xh/LC_MESSAGES/kcmkeyboard.mo share/locale/xh/LC_MESSAGES/kcmmouse.mo share/locale/xh/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/zh_CN/LC_MESSAGES/kaccess.mo share/locale/zh_CN/LC_MESSAGES/kcm5_device_automounter.mo share/locale/zh_CN/LC_MESSAGES/kcm5_joystick.mo share/locale/zh_CN/LC_MESSAGES/kcm5_kded.mo share/locale/zh_CN/LC_MESSAGES/kcm_access.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_krunnersettings.mo share/locale/zh_CN/LC_MESSAGES/kcm_landingpage.mo share/locale/zh_CN/LC_MESSAGES/kcm_plasmasearch.mo share/locale/zh_CN/LC_MESSAGES/kcm_recentFiles.mo share/locale/zh_CN/LC_MESSAGES/kcm_smserver.mo share/locale/zh_CN/LC_MESSAGES/kcm_solid_actions.mo share/locale/zh_CN/LC_MESSAGES/kcm_splashscreen.mo share/locale/zh_CN/LC_MESSAGES/kcm_tablet.mo share/locale/zh_CN/LC_MESSAGES/kcm_touchpad.mo share/locale/zh_CN/LC_MESSAGES/kcm_touchscreen.mo share/locale/zh_CN/LC_MESSAGES/kcm_workspace.mo share/locale/zh_CN/LC_MESSAGES/kcmkclock.mo share/locale/zh_CN/LC_MESSAGES/kcmkeyboard.mo share/locale/zh_CN/LC_MESSAGES/kcmmouse.mo share/locale/zh_CN/LC_MESSAGES/kcmqtquicksettings.mo share/locale/zh_CN/LC_MESSAGES/knetattach5.mo share/locale/zh_CN/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_kwin.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/zh_CN/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/zh_CN/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/zh_CN/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/zh_CN/LC_MESSAGES/plasmaactivitymanager.mo share/locale/zh_TW/LC_MESSAGES/kaccess.mo share/locale/zh_TW/LC_MESSAGES/kcm5_device_automounter.mo share/locale/zh_TW/LC_MESSAGES/kcm5_joystick.mo share/locale/zh_TW/LC_MESSAGES/kcm5_kded.mo share/locale/zh_TW/LC_MESSAGES/kcm_access.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_keys.mo share/locale/zh_TW/LC_MESSAGES/kcm_krunnersettings.mo share/locale/zh_TW/LC_MESSAGES/kcm_landingpage.mo share/locale/zh_TW/LC_MESSAGES/kcm_plasmasearch.mo share/locale/zh_TW/LC_MESSAGES/kcm_recentFiles.mo share/locale/zh_TW/LC_MESSAGES/kcm_smserver.mo share/locale/zh_TW/LC_MESSAGES/kcm_solid_actions.mo share/locale/zh_TW/LC_MESSAGES/kcm_splashscreen.mo share/locale/zh_TW/LC_MESSAGES/kcm_tablet.mo share/locale/zh_TW/LC_MESSAGES/kcm_touchpad.mo share/locale/zh_TW/LC_MESSAGES/kcm_touchscreen.mo share/locale/zh_TW/LC_MESSAGES/kcm_workspace.mo share/locale/zh_TW/LC_MESSAGES/kcmkclock.mo share/locale/zh_TW/LC_MESSAGES/kcmkeyboard.mo share/locale/zh_TW/LC_MESSAGES/kcmmouse.mo share/locale/zh_TW/LC_MESSAGES/kcmqtquicksettings.mo share/locale/zh_TW/LC_MESSAGES/knetattach5.mo share/locale/zh_TW/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_kwin.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/zh_TW/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/zh_TW/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/zh_TW/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/zh_TW/LC_MESSAGES/plasmaactivitymanager.mo share/metainfo/org.kde.desktopcontainment.appdata.xml share/metainfo/org.kde.desktoptoolbox.appdata.xml share/metainfo/org.kde.paneltoolbox.appdata.xml share/metainfo/org.kde.plasma.activitypager.appdata.xml share/metainfo/org.kde.plasma.desktop.appdata.xml share/metainfo/org.kde.plasma.desktop.appmenubar.appdata.xml share/metainfo/org.kde.plasma.desktop.defaultPanel.appdata.xml share/metainfo/org.kde.plasma.desktop.emptyPanel.appdata.xml share/metainfo/org.kde.plasma.folder.appdata.xml share/metainfo/org.kde.plasma.icontasks.appdata.xml share/metainfo/org.kde.plasma.keyboardlayout.appdata.xml share/metainfo/org.kde.plasma.kicker.appdata.xml share/metainfo/org.kde.plasma.kickoff.appdata.xml share/metainfo/org.kde.plasma.kimpanel.appdata.xml share/metainfo/org.kde.plasma.marginsseparator.appdata.xml share/metainfo/org.kde.plasma.minimizeall.appdata.xml share/metainfo/org.kde.plasma.pager.appdata.xml share/metainfo/org.kde.plasma.showActivityManager.appdata.xml share/metainfo/org.kde.plasma.showdesktop.appdata.xml share/metainfo/org.kde.plasma.taskmanager.appdata.xml share/metainfo/org.kde.plasma.trash.appdata.xml share/metainfo/org.kde.plasma.windowlist.appdata.xml share/metainfo/org.kde.plasmashell.metainfo.xml share/plasma/desktoptheme/default/icons/touchpad.svg share/plasma/emoji/af.dict share/plasma/emoji/am.dict share/plasma/emoji/ar.dict share/plasma/emoji/ar_SA.dict share/plasma/emoji/as.dict share/plasma/emoji/ast.dict share/plasma/emoji/az.dict share/plasma/emoji/be.dict share/plasma/emoji/bg.dict share/plasma/emoji/bn.dict share/plasma/emoji/br.dict share/plasma/emoji/bs.dict share/plasma/emoji/ca.dict share/plasma/emoji/ccp.dict share/plasma/emoji/ceb.dict share/plasma/emoji/chr.dict share/plasma/emoji/ckb.dict share/plasma/emoji/cs.dict share/plasma/emoji/cy.dict share/plasma/emoji/da.dict share/plasma/emoji/de.dict share/plasma/emoji/de_CH.dict share/plasma/emoji/dsb.dict share/plasma/emoji/el.dict share/plasma/emoji/en.dict share/plasma/emoji/en_001.dict share/plasma/emoji/en_AU.dict share/plasma/emoji/en_CA.dict share/plasma/emoji/en_GB.dict share/plasma/emoji/es.dict share/plasma/emoji/es_419.dict share/plasma/emoji/es_MX.dict share/plasma/emoji/es_US.dict share/plasma/emoji/et.dict share/plasma/emoji/eu.dict share/plasma/emoji/fa.dict share/plasma/emoji/fi.dict share/plasma/emoji/fil.dict share/plasma/emoji/fo.dict share/plasma/emoji/fr.dict share/plasma/emoji/fr_CA.dict share/plasma/emoji/ga.dict share/plasma/emoji/gd.dict share/plasma/emoji/gl.dict share/plasma/emoji/gu.dict share/plasma/emoji/ha.dict share/plasma/emoji/he.dict share/plasma/emoji/hi.dict share/plasma/emoji/hi_Latn.dict share/plasma/emoji/hr.dict share/plasma/emoji/hsb.dict share/plasma/emoji/hu.dict share/plasma/emoji/hy.dict share/plasma/emoji/ia.dict share/plasma/emoji/id.dict share/plasma/emoji/ig.dict share/plasma/emoji/is.dict share/plasma/emoji/it.dict share/plasma/emoji/ja.dict share/plasma/emoji/jv.dict share/plasma/emoji/ka.dict share/plasma/emoji/kab.dict share/plasma/emoji/kk.dict share/plasma/emoji/kl.dict share/plasma/emoji/km.dict share/plasma/emoji/kn.dict share/plasma/emoji/ko.dict share/plasma/emoji/kok.dict share/plasma/emoji/ky.dict share/plasma/emoji/lb.dict share/plasma/emoji/lo.dict share/plasma/emoji/lt.dict share/plasma/emoji/lv.dict share/plasma/emoji/mi.dict share/plasma/emoji/mk.dict share/plasma/emoji/ml.dict share/plasma/emoji/mn.dict share/plasma/emoji/mni.dict share/plasma/emoji/mr.dict share/plasma/emoji/ms.dict share/plasma/emoji/mt.dict share/plasma/emoji/my.dict share/plasma/emoji/ne.dict share/plasma/emoji/nl.dict share/plasma/emoji/nn.dict share/plasma/emoji/no.dict share/plasma/emoji/or.dict share/plasma/emoji/pa.dict share/plasma/emoji/pa_Arab.dict share/plasma/emoji/pcm.dict share/plasma/emoji/pl.dict share/plasma/emoji/ps.dict share/plasma/emoji/pt.dict share/plasma/emoji/pt_PT.dict share/plasma/emoji/qu.dict share/plasma/emoji/rm.dict share/plasma/emoji/ro.dict share/plasma/emoji/ru.dict share/plasma/emoji/rw.dict share/plasma/emoji/sc.dict share/plasma/emoji/sd.dict share/plasma/emoji/si.dict share/plasma/emoji/sk.dict share/plasma/emoji/sl.dict share/plasma/emoji/so.dict share/plasma/emoji/sq.dict share/plasma/emoji/sr.dict share/plasma/emoji/sr_Cyrl_BA.dict share/plasma/emoji/sr_Latn.dict share/plasma/emoji/sr_Latn_BA.dict share/plasma/emoji/sv.dict share/plasma/emoji/sw.dict share/plasma/emoji/sw_KE.dict share/plasma/emoji/ta.dict share/plasma/emoji/te.dict share/plasma/emoji/tg.dict share/plasma/emoji/th.dict share/plasma/emoji/ti.dict share/plasma/emoji/tk.dict share/plasma/emoji/to.dict share/plasma/emoji/tr.dict share/plasma/emoji/ug.dict share/plasma/emoji/uk.dict share/plasma/emoji/ur.dict share/plasma/emoji/uz.dict share/plasma/emoji/vi.dict share/plasma/emoji/wo.dict share/plasma/emoji/xh.dict share/plasma/emoji/yo.dict share/plasma/emoji/yo_BJ.dict share/plasma/emoji/yue.dict share/plasma/emoji/yue_Hans.dict share/plasma/emoji/zh.dict share/plasma/emoji/zh_Hant.dict share/plasma/emoji/zh_Hant_HK.dict share/plasma/emoji/zu.dict share/plasma/layout-templates/org.kde.plasma.desktop.appmenubar/contents/layout.js share/plasma/layout-templates/org.kde.plasma.desktop.appmenubar/metadata.json share/plasma/layout-templates/org.kde.plasma.desktop.defaultPanel/contents/layout.js share/plasma/layout-templates/org.kde.plasma.desktop.defaultPanel/metadata.json share/plasma/layout-templates/org.kde.plasma.desktop.emptyPanel/contents/layout.js share/plasma/layout-templates/org.kde.plasma.desktop.emptyPanel/metadata.json share/plasma/packages/org.kde.desktoptoolbox/contents/config/main.xml share/plasma/packages/org.kde.desktoptoolbox/contents/ui/ToolBoxContent.qml share/plasma/packages/org.kde.desktoptoolbox/contents/ui/ToolBoxRoot.qml share/plasma/packages/org.kde.desktoptoolbox/metadata.json share/plasma/packages/org.kde.paneltoolbox/contents/ui/main.qml share/plasma/packages/org.kde.paneltoolbox/metadata.json share/plasma/plasmoids/org.kde.desktopcontainment/contents/config/config.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/config/main.xml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/ActionButton.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/BackButtonItem.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/CompactRepresentation.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/ConfigFilter.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/ConfigIcons.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/ConfigLocation.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/ConfigOverlay.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/FolderItemActionButton.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/FolderItemDelegate.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/FolderItemPreviewPluginsDialog.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/FolderView.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/FolderViewDialog.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/FolderViewDropArea.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/FolderViewLayer.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/code/FolderTools.js share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/main.qml share/plasma/plasmoids/org.kde.desktopcontainment/metadata.json share/plasma/plasmoids/org.kde.panel/contents/config/main.xml share/plasma/plasmoids/org.kde.panel/contents/ui/ConfigOverlay.qml share/plasma/plasmoids/org.kde.panel/contents/ui/LayoutManager.js share/plasma/plasmoids/org.kde.panel/contents/ui/main.qml share/plasma/plasmoids/org.kde.panel/metadata.json share/plasma/plasmoids/org.kde.plasma.activitypager/metadata.json share/plasma/plasmoids/org.kde.plasma.folder/metadata.json share/plasma/plasmoids/org.kde.plasma.icontasks/metadata.json share/plasma/plasmoids/org.kde.plasma.keyboardlayout/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.keyboardlayout/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.keyboardlayout/contents/ui/configGeneral.qml share/plasma/plasmoids/org.kde.plasma.keyboardlayout/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.keyboardlayout/metadata.json share/plasma/plasmoids/org.kde.plasma.kicker/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/ActionMenu.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/CompactRepresentation.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/ConfigGeneral.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/DashboardRepresentation.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/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.json share/plasma/plasmoids/org.kde.plasma.kickoff/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/AbstractKickoffItemDelegate.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/ActionMenu.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/ApplicationsPage.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/BasePage.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/ConfigGeneral.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/DropAreaGridView.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/DropAreaListView.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/EmptyPage.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/Footer.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/FullRepresentation.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/Header.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/HorizontalStackView.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/Kickoff.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/KickoffDropArea.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/KickoffGridDelegate.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/KickoffGridView.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/KickoffListDelegate.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/KickoffListView.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/KickoffSingleton.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/LeaveButtons.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/NormalPage.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/PlacesPage.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/SectionView.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/VerticalStackView.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/code/tools.js share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/qmldir share/plasma/plasmoids/org.kde.plasma.kickoff/metadata.json share/plasma/plasmoids/org.kde.plasma.kimpanel/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.kimpanel/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.kimpanel/contents/ui/ActionMenu.qml share/plasma/plasmoids/org.kde.plasma.kimpanel/contents/ui/CandidateHighlight.qml share/plasma/plasmoids/org.kde.plasma.kimpanel/contents/ui/ConfigAppearance.qml share/plasma/plasmoids/org.kde.plasma.kimpanel/contents/ui/ContextMenu.qml share/plasma/plasmoids/org.kde.plasma.kimpanel/contents/ui/InputPanel.qml share/plasma/plasmoids/org.kde.plasma.kimpanel/contents/ui/StatusIcon.qml share/plasma/plasmoids/org.kde.plasma.kimpanel/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.kimpanel/metadata.json share/plasma/plasmoids/org.kde.plasma.marginsseparator/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.marginsseparator/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.marginsseparator/metadata.json share/plasma/plasmoids/org.kde.plasma.minimizeall/metadata.json share/plasma/plasmoids/org.kde.plasma.pager/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.pager/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.pager/contents/ui/configGeneral.qml share/plasma/plasmoids/org.kde.plasma.pager/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.pager/metadata.json share/plasma/plasmoids/org.kde.plasma.showActivityManager/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.showActivityManager/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.showActivityManager/contents/ui/ConfigAppearance.qml share/plasma/plasmoids/org.kde.plasma.showActivityManager/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.showActivityManager/metadata.json share/plasma/plasmoids/org.kde.plasma.showdesktop/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.showdesktop/contents/ui/Controller.qml share/plasma/plasmoids/org.kde.plasma.showdesktop/contents/ui/MinimizeAllController.qml share/plasma/plasmoids/org.kde.plasma.showdesktop/contents/ui/PeekController.qml share/plasma/plasmoids/org.kde.plasma.showdesktop/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.showdesktop/metadata.json share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/AudioStream.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/Badge.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/ConfigAppearance.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/ConfigBehavior.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/ContextMenu.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/GroupDialog.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/GroupExpanderOverlay.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/MouseHandler.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/PipeWireThumbnail.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/PlayerController.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/PulseAudio.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/ScrollableTextWrapper.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/Task.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/TaskBadgeOverlay.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/TaskList.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/TaskProgressOverlay.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/ToolTipDelegate.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/ToolTipInstance.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/ToolTipWindowMouseArea.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/code/layout.js share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/code/tools.js share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/metadata.json share/plasma/plasmoids/org.kde.plasma.trash/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.trash/metadata.json share/plasma/plasmoids/org.kde.plasma.windowlist/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.windowlist/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.windowlist/contents/ui/ConfigGeneral.qml share/plasma/plasmoids/org.kde.plasma.windowlist/contents/ui/MenuButton.qml share/plasma/plasmoids/org.kde.plasma.windowlist/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.windowlist/metadata.json share/plasma/plasmoids/touchpad/contents/ui/touchpad.qml share/plasma/plasmoids/touchpad/metadata.json share/plasma/services/touchpad.operations share/plasma/shells/org.kde.plasma.desktop/contents/InteractiveConsole.qml share/plasma/shells/org.kde.plasma.desktop/contents/activitymanager/ActivityItem.qml share/plasma/shells/org.kde.plasma.desktop/contents/activitymanager/ActivityList.qml share/plasma/shells/org.kde.plasma.desktop/contents/activitymanager/ActivityManager.qml share/plasma/shells/org.kde.plasma.desktop/contents/activitymanager/Heading.qml share/plasma/shells/org.kde.plasma.desktop/contents/activitymanager/StoppedActivityItem.qml share/plasma/shells/org.kde.plasma.desktop/contents/activitymanager/TaskDropArea.qml share/plasma/shells/org.kde.plasma.desktop/contents/activitymanager/WindowPreview.qml share/plasma/shells/org.kde.plasma.desktop/contents/activitymanager/static.js share/plasma/shells/org.kde.plasma.desktop/contents/applet/AppletError.qml share/plasma/shells/org.kde.plasma.desktop/contents/applet/CompactApplet.qml share/plasma/shells/org.kde.plasma.desktop/contents/applet/DefaultCompactRepresentation.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/AboutPlugin.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/AppletConfiguration.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/ConfigCategoryDelegate.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/ConfigurationAppletPage.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/ConfigurationContainmentActions.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/ConfigurationContainmentAppearance.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/ConfigurationKcmPage.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/ConfigurationShortcuts.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/ContainmentConfiguration.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/MouseEventInputButton.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/PanelConfiguration.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/ShellContainmentConfiguration.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/panelconfiguration/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/configuration/shellcontainmentconfiguration/Delegate.qml share/plasma/shells/org.kde.plasma.desktop/contents/defaults share/plasma/shells/org.kde.plasma.desktop/contents/explorer/AppletAlternatives.qml share/plasma/shells/org.kde.plasma.desktop/contents/explorer/AppletDelegate.qml share/plasma/shells/org.kde.plasma.desktop/contents/explorer/Tooltip.qml share/plasma/shells/org.kde.plasma.desktop/contents/explorer/WidgetExplorer.qml share/plasma/shells/org.kde.plasma.desktop/contents/layout.js share/plasma/shells/org.kde.plasma.desktop/contents/updates/containmentactions_middlebutton.js share/plasma/shells/org.kde.plasma.desktop/contents/updates/digitalclock_migrate_font_settings.js share/plasma/shells/org.kde.plasma.desktop/contents/updates/digitalclock_rename_timezonedisplay_key.js share/plasma/shells/org.kde.plasma.desktop/contents/updates/keyboardlayout_migrateiconsetting.js share/plasma/shells/org.kde.plasma.desktop/contents/updates/keyboardlayout_remove_shortcut.js share/plasma/shells/org.kde.plasma.desktop/contents/updates/klipper_clear_config.js share/plasma/shells/org.kde.plasma.desktop/contents/updates/maintain_existing_desktop_icon_sizes.js share/plasma/shells/org.kde.plasma.desktop/contents/updates/mediaframe_migrate_useBackground_setting.js share/plasma/shells/org.kde.plasma.desktop/contents/updates/move_desktop_layout_config.js share/plasma/shells/org.kde.plasma.desktop/contents/updates/no_middle_click_paste_on_panels.js share/plasma/shells/org.kde.plasma.desktop/contents/updates/systemloadviewer_systemmonitor.js share/plasma/shells/org.kde.plasma.desktop/contents/updates/unlock_widgets.js share/plasma/shells/org.kde.plasma.desktop/contents/views/Desktop.qml share/plasma/shells/org.kde.plasma.desktop/contents/views/Panel.qml share/plasma/shells/org.kde.plasma.desktop/metadata.json share/polkit-1/actions/org.kde.kcontrol.kcmclock.policy share/qlogging-categories5/kcm_kded.categories share/qlogging-categories5/kcm_keyboard.categories share/qlogging-categories5/kcm_mouse.categories share/qlogging-categories5/kcm_tablet.categories share/qlogging-categories5/kcm_touchscreen.categories share/qlogging-categories5/kcmkeys.categories share/solid/devices/solid-device-Battery.desktop share/solid/devices/solid-device-Block.desktop share/solid/devices/solid-device-Camera.desktop share/solid/devices/solid-device-OpticalDisc.desktop share/solid/devices/solid-device-OpticalDrive.desktop share/solid/devices/solid-device-PortableMediaPlayer.desktop share/solid/devices/solid-device-Processor.desktop share/solid/devices/solid-device-StorageAccess.desktop share/solid/devices/solid-device-StorageDrive.desktop share/solid/devices/solid-device-StorageVolume.desktop diff --git a/x11/plasma5-plasma-integration/distinfo b/x11/plasma5-plasma-integration/distinfo index 96e6baf05611..b8181faeb38b 100644 --- a/x11/plasma5-plasma-integration/distinfo +++ b/x11/plasma5-plasma-integration/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677653330 -SHA256 (KDE/plasma/5.27.2/plasma-integration-5.27.2.tar.xz) = da4f0c9e3294aee41fd55b1008698b6e981b65eb88d1fa6ccfb94e2f1c714088 -SIZE (KDE/plasma/5.27.2/plasma-integration-5.27.2.tar.xz) = 90412 +TIMESTAMP = 1678807790 +SHA256 (KDE/plasma/5.27.3/plasma-integration-5.27.3.tar.xz) = 260518daaa7a608b488a4ed979ffb17ab1b447a97921a8dce6e1e04f3278998e +SIZE (KDE/plasma/5.27.3/plasma-integration-5.27.3.tar.xz) = 89208 diff --git a/x11/plasma5-plasma-workspace/distinfo b/x11/plasma5-plasma-workspace/distinfo index 34f6532a3fb1..d58dfcec2e52 100644 --- a/x11/plasma5-plasma-workspace/distinfo +++ b/x11/plasma5-plasma-workspace/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1677653332 -SHA256 (KDE/plasma/5.27.2/plasma-workspace-5.27.2.tar.xz) = f10cc2f8bf1f01b77f51ff8d8aabf8655a929fd38a1232ad2f9c2e18c55d14a6 -SIZE (KDE/plasma/5.27.2/plasma-workspace-5.27.2.tar.xz) = 18632808 +TIMESTAMP = 1678807792 +SHA256 (KDE/plasma/5.27.3/plasma-workspace-5.27.3.tar.xz) = f4d337edb03178a1b8381dfaf21c4aee19bb670366866c9eb4fd42418307e13c +SIZE (KDE/plasma/5.27.3/plasma-workspace-5.27.3.tar.xz) = 18642372