diff --git a/Mk/Uses/kde.mk b/Mk/Uses/kde.mk index 6199d598ba4e..7070bd699729 100644 --- a/Mk/Uses/kde.mk +++ b/Mk/Uses/kde.mk @@ -1,1071 +1,1071 @@ # Provides support for KDE and KF5-based ports. # # Feature: kde # Valid ARGS: 5 6 # # 5: Depend on KDE Frameworks 5 components and variables. # 6: Depend on KDE Frameworks 6 components and variables. # # Variables that can be set by a port: # # USE_KDE List of KF[56]/Plasma[56] components (other ports) that this # port depends on. # * foo:build Add a build-time dependency (BUILD_DEPENDS) # * foo:run Add a run-time dependency (RUN_DEPENDS) # * foo (default) Add both dependencies on component , or # a LIB_DEPENDS if applicable. # # To simplify the ports, also: # CATEGORIES If the port is part of one of the KDE Software distribution, # it can add, in addition to 'kde' one of the following: # kde-applications: part of applications release # kde-frameworks: part of frameworks release # kde-plasma: part of plasma release # this will then set default values for MASTER_SITES and DIST_SUBDIR # as well as CPE_VENDOR and LICENSE. # # option DOCS If the port is part of kde-applications (see CATEGORIES, # above) and has an option defined for DOCS then a dependency # for doctools:build is added. The option itself doesn't # have to do anything -- the dependency is always there. # # KDE_INVENT If the port does not have a regular release, and should # be fetched from KDE Invent (a GitLab instance) it can set # KDE_INVENT to 3 space-separated values: # * a full 40-character commit hash # * a category name inside KDE Invent # * a repository name inside KDE Invent # Default values for category and name are: # * the first item in CATEGORIES that is not "kde"; this # is useful when the FreeBSD ports category and the KDE # category are the same (which happens sometimes) # * PORTNAME, often the FreeBSD port name is the same # as the upstream name and it will not need to be specified. # Sometimes `KDE_INVENT=` will do and often # `KDE_INVENT= ` is enough. # # Setting KDE_INVENT is the equivalent of a handful of USE_GITLAB # and related settings. # # MAINTAINER: kde@FreeBSD.org .if !defined(_INCLUDE_USES_KDE_MK) _INCLUDE_USES_KDE_MK= yes _KDE_SUPPORTED= 5 6 . if empty(kde_ARGS) IGNORE= kde needs a version (${_KDE_SUPPORTED}) . endif . for ver in ${_KDE_SUPPORTED:O:u} . if ${kde_ARGS:M${ver}} . if !defined(_KDE_VERSION) _KDE_VERSION= ${ver} . else IGNORE?= cannot be installed: different KDE versions specified via kde:[${_KDE_SUPPORTED:S/ //g}] #' . endif . endif . endfor . if empty(_KDE_VERSION) IGNORE?= kde:[${_KDE_SUPPORTED:S/ //g}] needs an argument #' . else _KDE_RELNAME= KDE${_KDE_VERSION} # === VERSIONS OF THE DIFFERENT COMPONENTS ===================================== KDE_PLASMA_VERSION?= ${KDE_PLASMA${_KDE_VERSION}_VERSION} KDE_PLASMA_BRANCH?= ${KDE_PLASMA${_KDE_VERSION}_BRANCH} KDE_FRAMEWORKS_VERSION?= ${KDE_FRAMEWORKS${_KDE_VERSION}_VERSION} KDE_FRAMEWORKS_BRANCH?= ${KDE_FRAMEWORKS${_KDE_VERSION}_BRANCH} . if ${CATEGORIES:Mkde-devel} KDE_APPLICATIONS_BRANCH?= ${KDE_APPLICATIONS6_BRANCH} KDE_APPLICATIONS_VERSION?= ${KDE_APPLICATIONS6_VERSION} KDE_APPLICATIONS_SHLIB_VER?= ${KDE_APPLICATIONS6_SHLIB_VER} KDE_APPLICATIONS_SHLIB_G_VER?= ${KDE_APPLICATIONS6_SHLIB_G_VER} PKGNAMESUFFIX?= -devel . else KDE_APPLICATIONS_BRANCH?= ${KDE_APPLICATIONS5_BRANCH} KDE_APPLICATIONS_VERSION?= ${KDE_APPLICATIONS5_VERSION} KDE_APPLICATIONS_SHLIB_VER?= ${KDE_APPLICATIONS5_SHLIB_VER} KDE_APPLICATIONS_SHLIB_G_VER?= ${KDE_APPLICATIONS5_SHLIB_G_VER} . endif # Current KDE desktop. KDE_PLASMA5_VERSION?= 5.27.11 KDE_PLASMA5_BRANCH?= stable # Next KDE Plasma desktop -KDE_PLASMA6_VERSION?= 6.0.2 +KDE_PLASMA6_VERSION?= 6.0.3 KDE_PLASMA6_BRANCH?= stable # Current KDE frameworks. KDE_FRAMEWORKS5_VERSION?= 5.115.0 KDE_FRAMEWORKS5_BRANCH?= stable # Next KDE Frameworks (Qt6 based) KDE_FRAMEWORKS6_VERSION?= 6.0.0 KDE_FRAMEWORKS6_BRANCH?= stable # Current KDE applications. KDE_APPLICATIONS5_VERSION?= 23.08.5 KDE_APPLICATIONS5_SHLIB_VER?= 5.24.5 # G as in KDE Gear, and as in "don't make the variable name longer than required" KDE_APPLICATIONS5_SHLIB_G_VER?= 23.8.5 KDE_APPLICATIONS5_BRANCH?= stable # Next KDE applications. KDE_APPLICATIONS6_VERSION?= 24.01.90 KDE_APPLICATIONS6_SHLIB_VER?= 5.24.3 # G as in KDE Gear, and as in "don't make the variable name longer than required" KDE_APPLICATIONS6_SHLIB_G_VER?= 24.01.90 KDE_APPLICATIONS6_BRANCH?= unstable # Extended KDE universe applications. CALLIGRA_VERSION?= 2.9.11 CALLIGRA_BRANCH?= stable # ============================================================================== # === INSTALLATION PREFIXES AND HEADER LOCATION ================================ # Define unversioned prefix variable. KDE_PREFIX= ${LOCALBASE} # ============================================================================== # === CATEGORIES HANDLING -- SETTING DEFAULT VALUES ============================ # Doing MASTER_SITES magic based on the category of the port _KDE_CATEGORIES_SUPPORTED= kde-applications kde-frameworks kde-plasma kde-devel . for cat in ${_KDE_CATEGORIES_SUPPORTED:Nkde-devel} . if ${CATEGORIES:M${cat}} . if !defined(_KDE_CATEGORY) _KDE_CATEGORY= ${cat} . else IGNORE?= cannot be installed: multiple kde-<...> categories specified via CATEGORIES=${CATEGORIES} #' . endif . endif . endfor # Doing source-selection if the sources are on KDE invent . if defined(KDE_INVENT) _invent_hash= ${KDE_INVENT:[1]} _invent_category= ${KDE_INVENT:[2]} _invent_name= ${KDE_INVENT:[3]} # Fill in default values if bits are missing . if empty(_invent_category) _invent_category= ${CATEGORIES:Nkde:[1]} . endif . if empty(_invent_name) _invent_name= ${PORTNAME} . endif # If valid, use it for GitLab . if empty(_invent_hash) || empty(_invent_category) || empty(_invent_name) IGNORE?= invalid KDE_INVENT value '${KDE_INVENT}' . else USE_GITLAB= yes GL_SITE= https://invent.kde.org GL_ACCOUNT= ${_invent_category} GL_PROJECT= ${_invent_name} GL_TAGNAME= ${_invent_hash} . endif . endif . if defined(_KDE_CATEGORY) # KDE is normally licensed under the LGPL 2.0. LICENSE?= LGPL20 # Set CPE Vendor Information # As _KDE_CATEGORY is set we can assume it is port release by KDE and the # vendor is therefore kde. CPE_VENDOR?= kde . if ${_KDE_CATEGORY:Mkde-applications} PORTVERSION?= ${KDE_APPLICATIONS_VERSION} MASTER_SITES?= KDE/${KDE_APPLICATIONS_BRANCH}/release-service/${KDE_APPLICATIONS_VERSION}/src # Let bsd.port.mk create the plist-entries for the documentation. # KDE Applications ports install their documentation to # ${PREFIX}/share/doc. This is only done if the port # defines OPTION DOCS -- the _KDE_OPTIONS here is to # avoid make errors when there are no options defined at all. _KDE_OPTIONS= bogus ${OPTIONS_DEFINE} . if ${_KDE_OPTIONS:MDOCS} DOCSDIR= ${PREFIX}/share/doc PORTDOCS?= HTML/* USE_KDE+= doctools:build . endif # Further pass along a SHLIB_VER PLIST_SUB PLIST_SUB+= KDE_APPLICATIONS_SHLIB_VER=${KDE_APPLICATIONS_SHLIB_VER} \ KDE_APPLICATIONS_VERSION_SHORT="${KDE_APPLICATIONS_VERSION:R:R}" DIST_SUBDIR?= KDE/release-service/${KDE_APPLICATIONS_VERSION} . elif ${_KDE_CATEGORY:Mkde-plasma} PORTVERSION?= ${KDE_PLASMA_VERSION} PKGNAMEPREFIX?= plasma${_KDE_VERSION}- MASTER_SITES?= KDE/${KDE_PLASMA_BRANCH}/plasma/${KDE_PLASMA_VERSION} DIST_SUBDIR?= KDE/plasma/${KDE_PLASMA_VERSION} . if ${_KDE_VERSION:M6} DESCR= ${.CURDIR:H:H}/x11/plasma6-plasma/pkg-descr . endif . elif ${_KDE_CATEGORY:Mkde-frameworks} PORTVERSION?= ${KDE_FRAMEWORKS_VERSION} PKGNAMEPREFIX?= kf${_KDE_VERSION}- WWW?= https://api.kde.org/frameworks/${PORTNAME}/html/index.html # This is a slight duplication of _USE_FRAMEWORKS_PORTING -- it maybe would be # better to rely on ${_USE_FRAMEWORKS_PORTING:S/^/k/g} _PORTINGAIDS= kjs kjsembed kdelibs4support kdesignerplugin khtml kmediaplayer kross kxmlrpcclient . if ${_KDE_VERSION:M5} . if ${_PORTINGAIDS:M*${PORTNAME}*} MASTER_SITES?= KDE/${KDE_FRAMEWORKS_BRANCH}/frameworks/${KDE_FRAMEWORKS_VERSION:R}/portingAids . else MASTER_SITES?= KDE/${KDE_FRAMEWORKS_BRANCH}/frameworks/${KDE_FRAMEWORKS_VERSION:R} . endif . else MASTER_SITES?= KDE/${KDE_FRAMEWORKS_BRANCH}/frameworks/${KDE_FRAMEWORKS_VERSION:R} . endif DIST_SUBDIR?= KDE/frameworks/${KDE_FRAMEWORKS_VERSION} . if ${_KDE_VERSION:M6} DESCR= ${.CURDIR:H:H}/x11/kf6-frameworks/pkg-descr . endif . else IGNORE?= unknown CATEGORY value '${_KDE_CATEGORY}' #' . endif . endif #defined(_KDE_CATEGORY) # ============================================================================== # === SET UP LOCALE ENVIRONMENT ================================================= USE_LOCALE?= en_US.UTF-8 # === SET UP CMAKE ENVIRONMENT ================================================= # Help cmake to find files when testing ports with non-default PREFIX. CMAKE_ARGS+= -DCMAKE_PREFIX_PATH="${LOCALBASE}" # We set KDE_INSTALL_USE_QT_SYS_PATHS to install mkspecs files, plugins and # imports to the Qt 5 install directory. CMAKE_ARGS+= -DCMAKE_MODULE_PATH="${LOCALBASE};${KDE_PREFIX}" \ -DCMAKE_INSTALL_PREFIX="${KDE_PREFIX}" \ -DKDE_INSTALL_USE_QT_SYS_PATHS:BOOL=true KDE_MAN_PREFIX?= ${KDE_PREFIX}/share/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 libkcddb libkcompactdisc libkdcraw libkdegames \ libkeduvocdocument libkipi libksane okular \ 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 attica 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 baloo bookmarks configwidgets \ designerplugin emoticons globalaccel guiaddons \ iconthemes init kcmutils kdav kdeclarative \ kded kdesu kio kpipewire newstuff notifyconfig parts \ people plasma-framework purpose runner service texteditor \ textwidgets wallet xmlgui xmlrpcclient _USE_FRAMEWORKS_TIER4= frameworkintegration calendarcore contacts # Porting Aids frameworks provide code and utilities to ease the transition from # kdelibs 4 to KDE Frameworks 5. Code should aim to port away from this framework, # new projects should avoid using these libraries. _USE_FRAMEWORKS_PORTING=js jsembed kdelibs4support khtml mediaplayer kross _USE_FRAMEWORKS5_ALL= ecm \ ${_USE_FRAMEWORKS_TIER1} \ ${_USE_FRAMEWORKS_TIER2} \ ${_USE_FRAMEWORKS_TIER3} \ ${_USE_FRAMEWORKS_TIER4} \ ${_USE_FRAMEWORKS_PORTING} \ ${_USE_FRAMEWORKS_EXTRA} \ kpublictransport kosm \ plasma-wayland-protocols # TODO: fix _USE_FRAMEWORKS6_ALL= ecm colorscheme \ svg \ statusnotifieritem \ plasma-wayland-protocols \ userfeedback \ ${_USE_FRAMEWORKS_TIER1:Noxygen-icons5:Nwayland} \ ${_USE_FRAMEWORKS_TIER2} \ ${_USE_FRAMEWORKS_TIER3:Nemoticons:Ndesignerplugin:Nactivities:Nactivities-stats:Ninit:Nplasma-framework:Nxmlrpcclient:Nkpipewire} \ ${_USE_FRAMEWORKS_TIER4} \ ${_USE_FRAMEWORKS_EXTRA} _USE_FRAMEWORKS_ALL= ${_USE_FRAMEWORKS${_KDE_VERSION}_ALL} # List of components of the KDE Plasma distribution. _USE_PLASMA_ALL= activitymanagerd breeze breeze-gtk \ decoration discover drkonqi hotkeys \ infocenter kde-cli-tools kde-gtk-config \ kdeplasma-addons kgamma5 kmenuedit kscreen \ kscreenlocker ksshaskpass ksysguard ksystemstats kwallet-pam \ kwayland-integration kwin kwrited layer-shell-qt libkscreen \ libksysguard milou oxygen oxygen-sounds plasma-browser-integration \ plasma-desktop plasma-disks plasma-integration plasma-pa \ plasma-sdk plasma-workspace plasma-workspace-wallpapers \ polkit-kde-agent-1 powerdevil systemsettings xdg-desktop-portal-kde \ kirigami-addons # List of components of the KDE PIM distribution (part of applications). _USE_KDEPIM5_ALL= akonadicontacts akonadiimportwizard akonadimime akonadinotes \ akonadicalendar akonadisearch \ calendarcore calendarsupport calendarutils \ contacts eventviews gapi grantleetheme \ gravatar identitymanagement imap \ incidenceeditor kdepim-addons \ kdepim-runtime5 kitinerary kontactinterface kpkpass \ ksmtp ldap libkdepim libkleo libksieve mailcommon \ mailimporter mailtransport mbox messagelib \ mime pimcommon pimtextedit tnef \ kalarm kontact kmail mbox-importer \ akonadiconsole akregator grantlee-editor kaddressbook \ kalarm kmail-account-wizard kmail knotes kontact \ korganizer pim-data-exporter ktextaddons _USE_PHONON_ALL= phonon phonon-backend _USE_KDE5_ALL= ${_USE_FRAMEWORKS_ALL} \ ${_USE_PLASMA_ALL} \ ${_USE_KDEPIM5_ALL} \ ${_USE_KDE_BOTH} \ ${_USE_PHONON_ALL} \ libkexiv2 # TODO: fix _USE_KDE6_ALL= ecm colorscheme \ svg \ plasma-wayland-protocols \ mediaplayer \ ${_USE_FRAMEWORKS_ALL} \ ${_USE_PLASMA_ALL} \ plasma5support activities activities-stats kpipewire wayland globalacceld libplasma \ ${_USE_PHONON_ALL} \ libkexiv2 # ====================== frameworks components ================================= kde-activities_PORT5= x11/kf${_KDE_VERSION}-kactivities kde-activities_PORT6= x11/plasma${_KDE_VERSION}-plasma-activities kde-activities_PORT= ${kde-activities_PORT${_KDE_VERSION}} kde-activities_LIB5= libKF${_KDE_VERSION}Activities.so kde-activities_LIB6= libPlasmaActivities.so kde-activities_LIB= ${kde-activities_LIB${_KDE_VERSION}} kde-activities-stats_PORT5= x11/kf${_KDE_VERSION}-kactivities-stats kde-activities-stats_PORT6= x11/plasma${_KDE_VERSION}-plasma-activities-stats kde-activities-stats_PORT= ${kde-activities-stats_PORT${_KDE_VERSION}} kde-activities-stats_LIB5= libKF${_KDE_VERSION}ActivitiesStats.so kde-activities-stats_LIB6= libPlasmaActivitiesStats.so kde-activities-stats_LIB= ${kde-activities-stats_LIB${_KDE_VERSION}} kde-apidox_PORT= devel/kf${_KDE_VERSION}-kapidox kde-apidox_PATH= ${KDE_PREFIX}/bin/kapidox-generate kde-apidox_TYPE= run kde-archive_PORT= archivers/kf${_KDE_VERSION}-karchive kde-archive_LIB= libKF${_KDE_VERSION}Archive.so kde-attica_PORT= x11-toolkits/kf${_KDE_VERSION}-attica kde-attica_LIB= libKF${_KDE_VERSION}Attica.so kde-auth_PORT= devel/kf${_KDE_VERSION}-kauth kde-auth_LIB= libKF${_KDE_VERSION}AuthCore.so kde-baloo_PORT= sysutils/kf${_KDE_VERSION}-baloo kde-baloo_LIB= libKF${_KDE_VERSION}Baloo.so kde-bookmarks_PORT= devel/kf${_KDE_VERSION}-kbookmarks kde-bookmarks_LIB= libKF${_KDE_VERSION}Bookmarks.so kde-breeze-icons_PORT= x11-themes/kf${_KDE_VERSION}-breeze-icons kde-breeze-icons_PATH= ${KDE_PREFIX}/share/icons/breeze/index.theme kde-breeze-icons_TYPE= run kde-codecs_PORT= textproc/kf${_KDE_VERSION}-kcodecs kde-codecs_LIB= libKF${_KDE_VERSION}Codecs.so kde-completion_PORT= x11-toolkits/kf${_KDE_VERSION}-kcompletion kde-completion_LIB= libKF${_KDE_VERSION}Completion.so kde-config_PORT= devel/kf${_KDE_VERSION}-kconfig kde-config_LIB= libKF${_KDE_VERSION}ConfigCore.so kde-configwidgets_PORT= x11-toolkits/kf${_KDE_VERSION}-kconfigwidgets kde-configwidgets_LIB= libKF${_KDE_VERSION}ConfigWidgets.so kde-coreaddons_PORT= devel/kf${_KDE_VERSION}-kcoreaddons kde-coreaddons_LIB= libKF${_KDE_VERSION}CoreAddons.so kde-crash_PORT= devel/kf${_KDE_VERSION}-kcrash kde-crash_LIB= libKF${_KDE_VERSION}Crash.so kde-dbusaddons_PORT= devel/kf${_KDE_VERSION}-kdbusaddons kde-dbusaddons_LIB= libKF${_KDE_VERSION}DBusAddons.so kde-designerplugin_PORT= x11-toolkits/kf${_KDE_VERSION}-kdesignerplugin kde-designerplugin_PATH= ${KDE_PREFIX}/bin/kgendesignerplugin kde-designerplugin_TYPE= run kde-dnssd_PORT= dns/kf${_KDE_VERSION}-kdnssd kde-dnssd_LIB= libKF${_KDE_VERSION}DNSSD.so kde-doctools_PORT= devel/kf${_KDE_VERSION}-kdoctools kde-doctools_PATH= ${KDE_PREFIX}/bin/meinproc${_KDE_VERSION} kde-ecm_PORT= devel/kf${_KDE_VERSION}-extra-cmake-modules kde-ecm_PATH= ${LOCALBASE}/share/ECM/cmake/ECMConfig.cmake kde-emoticons_PORT= x11-themes/kf${_KDE_VERSION}-kemoticons kde-emoticons_LIB= libKF${_KDE_VERSION}Emoticons.so kde-filemetadata_PORT= devel/kf${_KDE_VERSION}-kfilemetadata kde-filemetadata_LIB= libKF${_KDE_VERSION}FileMetaData.so kde-frameworkintegration_PORT= x11/kf${_KDE_VERSION}-frameworkintegration kde-frameworkintegration_LIB= libKF${_KDE_VERSION}Style.so kde-globalaccel_PORT= x11/kf${_KDE_VERSION}-kglobalaccel kde-globalaccel_LIB= libKF${_KDE_VERSION}GlobalAccel.so kde-guiaddons_PORT= x11-toolkits/kf${_KDE_VERSION}-kguiaddons kde-guiaddons_LIB= libKF${_KDE_VERSION}GuiAddons.so kde-holidays_PORT= net/kf${_KDE_VERSION}-kholidays kde-holidays_LIB= libKF${_KDE_VERSION}Holidays.so kde-i18n_PORT= devel/kf${_KDE_VERSION}-ki18n kde-i18n_LIB= libKF${_KDE_VERSION}I18n.so kde-iconthemes_PORT= x11-themes/kf${_KDE_VERSION}-kiconthemes kde-iconthemes_LIB= libKF${_KDE_VERSION}IconThemes.so kde-idletime_PORT= devel/kf${_KDE_VERSION}-kidletime kde-idletime_LIB= libKF${_KDE_VERSION}IdleTime.so kde-init_PORT= x11/kf${_KDE_VERSION}-kinit kde-init_PATH= ${KDE_PREFIX}/bin/kdeinit5 kde-itemmodels_PORT= devel/kf${_KDE_VERSION}-kitemmodels kde-itemmodels_LIB= libKF${_KDE_VERSION}ItemModels.so kde-itemviews_PORT= x11-toolkits/kf${_KDE_VERSION}-kitemviews kde-itemviews_LIB= libKF${_KDE_VERSION}ItemViews.so kde-jobwidgets_PORT= x11-toolkits/kf${_KDE_VERSION}-kjobwidgets kde-jobwidgets_LIB= libKF${_KDE_VERSION}JobWidgets.so kde-js_PORT= www/kf${_KDE_VERSION}-kjs kde-js_LIB= libKF${_KDE_VERSION}JS.so kde-jsembed_PORT= www/kf${_KDE_VERSION}-kjsembed kde-jsembed_LIB= libKF${_KDE_VERSION}JsEmbed.so kde-kcmutils_PORT= devel/kf${_KDE_VERSION}-kcmutils kde-kcmutils_LIB= libKF${_KDE_VERSION}KCMUtils.so kde-kdeclarative_PORT= devel/kf${_KDE_VERSION}-kdeclarative kde-kdeclarative_LIB5= libKF${_KDE_VERSION}Declarative.so kde-kdeclarative_LIB6= libKF${_KDE_VERSION}CalendarEvents.so kde-kdeclarative_LIB= ${kde-kdeclarative_LIB${_KDE_VERSION}} kde-kded_PORT= x11/kf${_KDE_VERSION}-kded kde-kded_PATH= ${KDE_PREFIX}/bin/kded${_KDE_VERSION} kde-kdelibs4support_PORT= x11/kf${_KDE_VERSION}-kdelibs4support kde-kdelibs4support_LIB= libKF${_KDE_VERSION}KDELibs4Support.so kde-kdesu_PORT= security/kf${_KDE_VERSION}-kdesu kde-kdesu_LIB= libKF${_KDE_VERSION}Su.so kde-khtml_PORT= www/kf${_KDE_VERSION}-khtml kde-khtml_LIB= libKF${_KDE_VERSION}KHtml.so kde-kimageformats_PORT= graphics/kf${_KDE_VERSION}-kimageformats kde-kimageformats_PATH= ${QT_PLUGINDIR}/imageformats/kimg_xcf.so kde-kimageformats_TYPE= run kde-kio_PORT= devel/kf${_KDE_VERSION}-kio kde-kio_LIB= libKF${_KDE_VERSION}KIOCore.so kde-kirigami2_PORT5= x11-toolkits/kf${_KDE_VERSION}-kirigami2 kde-kirigami2_PORT6= x11-toolkits/kf${_KDE_VERSION}-kirigami kde-kirigami2_PATH5= ${QT_QMLDIR}/org/kde/kirigami.2/libKirigamiPlugin.so kde-kirigami2_PATH6= ${QT_QMLDIR}/org/kde/kirigami/libKirigamiplugin.so kde-kirigami2_PORT= ${kde-kirigami2_PORT${_KDE_VERSION}} kde-kirigami2_PATH= ${kde-kirigami2_PATH${_KDE_VERSION}} kde-kquickcharts_PORT= graphics/kf${_KDE_VERSION}-kquickcharts kde-kquickcharts_PATH5= ${QT_QMLDIR}/org/kde/quickcharts/libQuickCharts.so kde-kquickcharts_PATH6= ${QT_QMLDIR}/org/kde/quickcharts/libQuickChartsplugin.so kde-kquickcharts_PATH= ${kde-kquickcharts_PATH${_KDE_VERSION}} kde-kross_PORT= lang/kf${_KDE_VERSION}-kross kde-kross_LIB= libKF${_KDE_VERSION}KrossCore.so kde-layer-shell-qt_PORT= x11/plasma${_KDE_VERSION}-layer-shell-qt kde-layer-shell-qt_LIB= libLayerShellQtInterface.so kde-mediaplayer_PORT= multimedia/kf${_KDE_VERSION}-kmediaplayer kde-mediaplayer_LIB= libKF${_KDE_VERSION}MediaPlayer.so.5 kde-newstuff_PORT= devel/kf${_KDE_VERSION}-knewstuff kde-newstuff_LIB= libKF${_KDE_VERSION}NewStuffCore.so kde-notifications_PORT= devel/kf${_KDE_VERSION}-knotifications kde-notifications_LIB= libKF${_KDE_VERSION}Notifications.so kde-notifyconfig_PORT= devel/kf${_KDE_VERSION}-knotifyconfig kde-notifyconfig_LIB= libKF${_KDE_VERSION}NotifyConfig.so kde-oxygen-icons5_PORT= x11-themes/kf${_KDE_VERSION}-oxygen-icons5 kde-oxygen-icons5_PATH= ${KDE_PREFIX}/share/icons/oxygen/index.theme kde-oxygen-icons5_TYPE= run kde-oxygen-sounds_PORT= audio/plasma${_KDE_VERSION}-oxygen-sounds kde-oxygen-sounds_PATH= ${KDE_PREFIX}/share/sounds/Oxygen-Sys-Log-In.ogg kde-oxygen-sounds_TYPE= run kde-package_PORT= devel/kf${_KDE_VERSION}-kpackage kde-package_LIB= libKF${_KDE_VERSION}Package.so kde-parts_PORT= devel/kf${_KDE_VERSION}-kparts kde-parts_LIB= libKF${_KDE_VERSION}Parts.so kde-people_PORT= devel/kf${_KDE_VERSION}-kpeople kde-people_LIB= libKF${_KDE_VERSION}People.so kde-plasma-framework_PORT= x11/kf${_KDE_VERSION}-plasma-framework kde-plasma-framework_LIB= libKF${_KDE_VERSION}Plasma.so kde-plasma-wayland-protocols_PORT= x11/plasma-wayland-protocols kde-plasma-wayland-protocols_PATH= ${KDE_PREFIX}/lib/cmake/PlasmaWaylandProtocols/PlasmaWaylandProtocolsConfig.cmake kde-plotting_PORT= graphics/kf${_KDE_VERSION}-kplotting kde-plotting_LIB= libKF${_KDE_VERSION}Plotting.so kde-prison_PORT= graphics/kf${_KDE_VERSION}-prison kde-prison_LIB= libKF${_KDE_VERSION}Prison.so kde-pty_PORT= devel/kf${_KDE_VERSION}-kpty kde-pty_LIB= libKF${_KDE_VERSION}Pty.so kde-purpose_PORT= misc/kf${_KDE_VERSION}-purpose kde-purpose_LIB= libKF${_KDE_VERSION}Purpose.so kde-qqc2-desktop-style_PORT= x11-themes/kf${_KDE_VERSION}-qqc2-desktop-style kde-qqc2-desktop-style_PATH5= ${QT_PLUGINDIR}/kf${_KDE_VERSION}/kirigami/org.kde.desktop.so kde-qqc2-desktop-style_PATH6= ${QT_QMLDIR}/org/kde/desktop/liborg_kde_desktop.so kde-qqc2-desktop-style_PATH= ${kde-qqc2-desktop-style_PATH${_KDE_VERSION}} kde-runner_PORT= x11/kf${_KDE_VERSION}-krunner kde-runner_LIB= libKF${_KDE_VERSION}Runner.so kde-service_PORT= devel/kf${_KDE_VERSION}-kservice kde-service_LIB= libKF${_KDE_VERSION}Service.so kde-solid_PORT= devel/kf${_KDE_VERSION}-solid kde-solid_LIB= libKF${_KDE_VERSION}Solid.so kde-sonnet_PORT= textproc/kf${_KDE_VERSION}-sonnet kde-sonnet_LIB= libKF${_KDE_VERSION}SonnetCore.so kde-syndication_PORT= net/kf${_KDE_VERSION}-syndication kde-syndication_LIB= libKF${_KDE_VERSION}Syndication.so kde-syntaxhighlighting_PORT= textproc/kf${_KDE_VERSION}-syntax-highlighting kde-syntaxhighlighting_LIB= libKF${_KDE_VERSION}SyntaxHighlighting.so kde-texteditor_PORT= devel/kf${_KDE_VERSION}-ktexteditor kde-texteditor_LIB= libKF${_KDE_VERSION}TextEditor.so kde-textwidgets_PORT= x11-toolkits/kf${_KDE_VERSION}-ktextwidgets kde-textwidgets_LIB= libKF${_KDE_VERSION}TextWidgets.so kde-threadweaver_PORT= devel/kf${_KDE_VERSION}-threadweaver kde-threadweaver_LIB= libKF${_KDE_VERSION}ThreadWeaver.so kde-unitconversion_PORT= devel/kf${_KDE_VERSION}-kunitconversion kde-unitconversion_LIB= libKF${_KDE_VERSION}UnitConversion.so kde-wallet_PORT= sysutils/kf${_KDE_VERSION}-kwallet kde-wallet_LIB= libKF${_KDE_VERSION}Wallet.so kde-wayland_PORT5= x11/kf${_KDE_VERSION}-kwayland kde-wayland_PORT6= x11/plasma${_KDE_VERSION}-kwayland kde-wayland_PORT= ${kde-wayland_PORT${_KDE_VERSION}} kde-wayland_LIB5= libKF${_KDE_VERSION}WaylandClient.so kde-wayland_LIB6= libKWaylandClient.so kde-wayland_LIB= ${kde-wayland_LIB${_KDE_VERSION}} kde-widgetsaddons_PORT= x11-toolkits/kf${_KDE_VERSION}-kwidgetsaddons kde-widgetsaddons_LIB= libKF${_KDE_VERSION}WidgetsAddons.so kde-windowsystem_PORT= x11/kf${_KDE_VERSION}-kwindowsystem kde-windowsystem_LIB= libKF${_KDE_VERSION}WindowSystem.so kde-xmlgui_PORT= x11-toolkits/kf${_KDE_VERSION}-kxmlgui kde-xmlgui_LIB= libKF${_KDE_VERSION}XmlGui.so kde-xmlrpcclient_PORT= net/kf${_KDE_VERSION}-kxmlrpcclient kde-xmlrpcclient_LIB= libKF${_KDE_VERSION}XmlRpcClient.so kde-calendarcore_PORT= net/kf${_KDE_VERSION}-kcalendarcore kde-calendarcore_LIB= libKF${_KDE_VERSION}CalendarCore.so kde-contacts_PORT= net/kf${_KDE_VERSION}-kcontacts kde-contacts_LIB= libKF${_KDE_VERSION}Contacts.so kde-kdav_PORT= net/kf${_KDE_VERSION}-kdav kde-kdav_LIB= libKF${_KDE_VERSION}DAV.so kde-colorscheme_PORT= x11-themes/kf${_KDE_VERSION}-kcolorscheme kde-colorscheme_LIB= libKF${_KDE_VERSION}ColorScheme.so kde-svg_PORT= graphics/kf${_KDE_VERSION}-ksvg kde-svg_LIB= libKF${_KDE_VERSION}Svg.so kde-statusnotifieritem_PORT= deskutils/kf6-kstatusnotifieritem kde-statusnotifieritem_LIB= libKF${_KDE_VERSION}StatusNotifierItem.so kde-userfeedback_PORT= sysutils/kf6-kuserfeedback kde-userfeedback_LIB= libKF${_KDE_VERSION}UserFeedbackCore.so # ====================== end of frameworks components ========================== # ====================== plasma components ===================================== kde-kpipewire_PORT= audio/plasma${_KDE_VERSION}-kpipewire kde-kpipewire_LIB= libKPipeWire.so kde-activitymanagerd_PORT= x11/plasma${_KDE_VERSION}-kactivitymanagerd kde-activitymanagerd_LIB= libkactivitymanagerd_plugin.so kde-breeze_PORT= x11-themes/plasma${_KDE_VERSION}-breeze kde-breeze_PATH= ${KDE_PREFIX}/share/QtCurve/Breeze.qtcurve kde-breeze-gtk_PORT= x11-themes/plasma${_KDE_VERSION}-breeze-gtk kde-breeze-gtk_PATH= ${KDE_PREFIX}/share/themes/Breeze/gtk-2.0/gtkrc kde-decoration_PORT= x11-wm/plasma${_KDE_VERSION}-kdecoration kde-decoration_LIB= libkdecorations2.so kde-discover_PORT= sysutils/plasma${_KDE_VERSION}-discover kde-discover_PATH= ${KDE_PREFIX}/bin/plasma-discover kde-drkonqi_PORT= sysutils/plasma${_KDE_VERSION}-drkonqi kde-drkonqi_PATH= ${KDE_PREFIX}/lib/libexec/drkonqi kde-hotkeys_PORT= devel/plasma${_KDE_VERSION}-khotkeys kde-hotkeys_LIB= libkhotkeysprivate.so.5 kde-infocenter_PORT= sysutils/plasma${_KDE_VERSION}-kinfocenter kde-infocenter_PATH= ${KDE_PREFIX}/bin/kinfocenter kde-kde-cli-tools_PORT= sysutils/plasma${_KDE_VERSION}-kde-cli-tools kde-kde-cli-tools_PATH= ${KDE_PREFIX}/bin/kde-open kde-kde-gtk-config_PORT= x11-themes/plasma${_KDE_VERSION}-kde-gtk-config kde-kde-gtk-config_PATH= ${KDE_PREFIX}/lib/kconf_update_bin/gtk_theme kde-kdeplasma-addons_PORT= x11-toolkits/plasma${_KDE_VERSION}-kdeplasma-addons kde-kdeplasma-addons_LIB= libplasmapotdprovidercore.so kde-kgamma5_PORT5= x11/plasma${_KDE_VERSION}-kgamma5 kde-kgamma5_PORT6= x11/plasma${_KDE_VERSION}-kgamma kde-kgamma5_PORT= ${kde-kgamma5_PORT${_KDE_VERSION}} kde-kgamma5_PATH5= ${QT_PLUGINDIR}/plasma/kcms/systemsettings/kcm_kgamma.so kde-kgamma5_PATH6= ${QT_PLUGINDIR}/plasma/kcms/systemsettings_qwidgets/kcm_kgamma.so kde-kgamma5_PATH= ${kde-kgamma5_PATH${_KDE_VERSION}} kde-kmenuedit_PORT= sysutils/plasma${_KDE_VERSION}-kmenuedit kde-kmenuedit_PATH= ${KDE_PREFIX}/bin/kmenuedit kde-kscreen_PORT= x11/plasma${_KDE_VERSION}-kscreen kde-kscreen_PATH= ${KDE_PREFIX}/bin/kscreen-console kde-kscreenlocker_PORT= security/plasma${_KDE_VERSION}-kscreenlocker kde-kscreenlocker_LIB= libKScreenLocker.so kde-ksshaskpass_PORT= security/plasma${_KDE_VERSION}-ksshaskpass kde-ksshaskpass_PATH= ${KDE_PREFIX}/bin/ksshaskpass kde-ksysguard_PORT= sysutils/plasma${_KDE_VERSION}-ksysguard kde-ksysguard_PATH= ${KDE_PREFIX}/bin/ksysguard kde-ksystemstats_PORT= sysutils/plasma${_KDE_VERSION}-ksystemstats kde-ksystemstats_PATH= ${KDE_PREFIX}/bin/ksystemstats kde-kwallet-pam_PORT= security/plasma${_KDE_VERSION}-kwallet-pam kde-kwallet-pam_PATH5= ${KDE_PREFIX}/lib/pam_kwallet5.so kde-kwallet-pam_PATH6= ${KDE_PREFIX}/lib/security/pam_kwallet5.so kde-kwallet-pam_PATH= ${kde-kwallet-pam_PATH${_KDE_VERSION}} kde-kwayland-integration_PORT= x11/plasma${_KDE_VERSION}-kwayland-integration kde-kwayland-integration_PATH= ${QT_PLUGINDIR}/kf${_KDE_VERSION}/kwindowsystem/KF5WindowSystemKWaylandPlugin.so kde-kwin_PORT= x11-wm/plasma${_KDE_VERSION}-kwin kde-kwin_PATH= ${KDE_PREFIX}/bin/kwin_x11 kde-kwrited_PORT= devel/plasma${_KDE_VERSION}-kwrited kde-kwrited_PATH= ${QT_PLUGINDIR}/kf${_KDE_VERSION}/kded/kwrited.so kde-libkscreen_PORT= x11/plasma${_KDE_VERSION}-libkscreen kde-libkscreen_LIB= libKF${_KDE_VERSION}Screen.so kde-libksysguard_PORT= sysutils/plasma${_KDE_VERSION}-libksysguard kde-libksysguard_LIB5= libksgrd.so kde-libksysguard_LIB6= libKSysGuardSystemStats.so kde-libksysguard_LIB= ${kde-libksysguard_LIB${_KDE_VERSION}} kde-milou_PORT= deskutils/plasma${_KDE_VERSION}-milou kde-milou_PATH5= ${KDE_PREFIX}/lib/libmilou.so.5 kde-milou_PATH6= ${QT_QMLDIR}/org/kde/milou/libmilouqmlplugin.so kde-milou_PATH= ${kde-milou_PATH${_KDE_VERSION}} kde-oxygen_PORT= x11-themes/plasma${_KDE_VERSION}-oxygen kde-oxygen_PATH5= ${QT_PLUGINDIR}/styles/oxygen.so kde-oxygen_PATH6= ${QT_PLUGINDIR}/kstyle_config/kstyle_oxygen_config.so kde-oxygen_PATH= ${kde-oxygen_PATH${_KDE_VERSION}} kde-plasma-browser-integration_PORT= www/plasma${_KDE_VERSION}-plasma-browser-integration kde-plasma-browser-integration_PATH= ${KDE_PREFIX}/bin/plasma-browser-integration-host kde-plasma-desktop_PORT= x11/plasma${_KDE_VERSION}-plasma-desktop kde-plasma-desktop_PATH= ${KDE_PREFIX}/bin/kaccess kde-plasma-disks_PORT= sysutils/plasma${_KDE_VERSION}-plasma-disks kde-plasma-disks_PATH5= ${KDE_PREFIX}/lib/libexec/kauth/kded-smart-helper kde-plasma-disks_PATH6= ${KDE_PREFIX}/lib/libexec/kf6/kauth/kded-smart-helper kde-plasma-disks_PATH= ${kde-plasma-disks_PATH${_KDE_VERSION}} kde-plasma-integration_PORT= x11/plasma${_KDE_VERSION}-plasma-integration kde-plasma-integration_PATH5= ${QT_PLUGINDIR}/platformthemes/KDEPlasmaPlatformTheme.so kde-plasma-integration_PATH6= ${QT_PLUGINDIR}/platformthemes/KDEPlasmaPlatformTheme6.so kde-plasma-integration_PATH= ${kde-plasma-integration_PATH${_KDE_VERSION}} kde-plasma-pa_PORT= audio/plasma${_KDE_VERSION}-plasma-pa kde-plasma-pa_PATH= ${QT_PLUGINDIR}/plasma/kcms/systemsettings/kcm_pulseaudio.so kde-plasma-sdk_PORT= devel/plasma${_KDE_VERSION}-plasma-sdk kde-plasma-sdk_PATH= ${KDE_PREFIX}/bin/plasmoidviewer kde-plasma-workspace_PORT= x11/plasma${_KDE_VERSION}-plasma-workspace kde-plasma-workspace_LIB= libkworkspace${_KDE_VERSION}.so kde-plasma-workspace-wallpapers_PORT= x11-themes/plasma${_KDE_VERSION}-plasma-workspace-wallpapers kde-plasma-workspace-wallpapers_PATH= ${KDE_PREFIX}/share/wallpapers/Autumn/contents/images/1280x1024.jpg kde-polkit-kde-agent-1_PORT= sysutils/plasma${_KDE_VERSION}-polkit-kde-agent-1 kde-polkit-kde-agent-1_PATH= ${KDE_PREFIX}/lib/libexec/polkit-kde-authentication-agent-1 kde-powerdevil_PORT= sysutils/plasma${_KDE_VERSION}-powerdevil kde-powerdevil_LIB= libpowerdevilcore.so kde-systemsettings_PORT= sysutils/plasma${_KDE_VERSION}-systemsettings kde-systemsettings_PATH5= ${KDE_PREFIX}/bin/systemsettings5 kde-systemsettings_PATH6= ${KDE_PREFIX}/bin/systemsettings kde-systemsettings_PATH= ${kde-systemsettings_PATH${_KDE_VERSION}} kde-xdg-desktop-portal-kde_PORT= deskutils/plasma${_KDE_VERSION}-xdg-desktop-portal-kde kde-xdg-desktop-portal-kde_PATH= ${KDE_PREFIX}/lib/libexec/xdg-desktop-portal-kde kde-plasma5support_PORT= devel/plasma${_KDE_VERSION}-plasma5support kde-plasma5support_LIB= libPlasma5Support.so kde-kirigami-addons_PORT5= x11-toolkits/kirigami-addons kde-kirigami-addons_PORT6= x11-toolkits/kirigami-addons-devel kde-kirigami-addons_PORT= ${kde-kirigami-addons_PORT${_KDE_VERSION}} kde-kirigami-addons_PATH= ${QT_QMLDIR}/org/kde/kirigamiaddons/components/libcomponentsplugin.so kde-globalacceld_PORT= x11/plasma${_KDE_VERSION}-kglobalacceld kde-globalacceld_PATH= ${QT_PLUGINDIR}/org.kde.kglobalacceld.platforms/KGlobalAccelDXcb.so kde-libplasma_PORT= x11/plasma${_KDE_VERSION}-libplasma kde-libplasma_LIB= libPlasma.so # ====================== end of plasma components ============================== # ====================== pim5 components ======================================= kde-akonadicontacts_PORT= net/akonadi-contacts kde-akonadicontacts_LIB= libKPim5AkonadiContact.so kde-akonadiimportwizard_PORT= deskutils/akonadi-import-wizard kde-akonadiimportwizard_LIB= libKPim5ImportWizard.so kde-akonadimime_PORT= net/akonadi-mime kde-akonadimime_LIB= libKPim5AkonadiMime.so kde-akonadinotes_PORT= net/akonadi-notes kde-akonadinotes_LIB= libKPim5AkonadiNotes.so kde-akonadicalendar_PORT= net/akonadi-calendar kde-akonadicalendar_LIB= libKPim5AkonadiCalendar.so kde-akonadisearch_PORT= net/akonadi-search kde-akonadisearch_LIB= libKPim5AkonadiSearchCore.so kde-calendarsupport_PORT= net/calendarsupport kde-calendarsupport_LIB= libKPim5CalendarSupport.so kde-calendarutils_PORT= net/kcalutils kde-calendarutils_LIB= libKPim5CalendarUtils.so kde-eventviews_PORT= net/eventviews kde-eventviews_LIB= libKPim5EventViews.so kde-gapi_PORT= net/libkgapi kde-gapi_LIB= libKPim5GAPIBlogger.so kde-grantleetheme_PORT= deskutils/grantleetheme kde-grantleetheme_LIB= libKPim5GrantleeTheme.so kde-gravatar_PORT= net/libgravatar kde-gravatar_LIB= libKPim5Gravatar.so kde-identitymanagement_PORT= net/kidentitymanagement kde-identitymanagement_LIB= libKPim5IdentityManagement.so kde-imap_PORT= net/kimap kde-imap_LIB= libKPim5IMAP.so kde-incidenceeditor_PORT= net/incidenceeditor kde-incidenceeditor_LIB= libKPim5IncidenceEditor.so kde-kdepim-addons_PORT= deskutils/kdepim-addons kde-kdepim-addons_PATH= ${QT_PLUGINDIR}/pim5/contacteditor/editorpageplugins/cryptopageplugin.so kde-kdepim-runtime5_PORT= deskutils/kdepim-runtime kde-kdepim-runtime5_PATH= ${KDE_PREFIX}/bin/gidmigrator kde-kitinerary_PORT= net/kitinerary kde-kitinerary_LIB= libKPim5Itinerary.so kde-kontactinterface_PORT= net/kontactinterface kde-kontactinterface_LIB= libKPim5KontactInterface.so kde-kpkpass_PORT= security/kpkpass kde-kpkpass_LIB= libKPim5PkPass.so kde-ksmtp_PORT= net/ksmtp kde-ksmtp_LIB= libKPim5SMTP.so kde-ldap_PORT= net/kldap kde-ldap_LIB= libKPim5Ldap.so kde-libkdepim_PORT= deskutils/libkdepim kde-libkdepim_LIB= libKPim5Libkdepim.so kde-libkleo_PORT= security/libkleo kde-libkleo_LIB= libKPim5Libkleo.so kde-libksieve_PORT= net/libksieve kde-libksieve_LIB= libKPim5KSieve.so kde-mailcommon_PORT= net/mailcommon kde-mailcommon_LIB= libKPim5MailCommon.so kde-mailimporter_PORT= net/mailimporter kde-mailimporter_LIB= libKPim5MailImporter.so kde-mailtransport_PORT= net/kmailtransport kde-mailtransport_LIB= libKPim5MailTransport.so kde-mbox_PORT= net/kmbox kde-mbox_LIB= libKPim5Mbox.so kde-messagelib_PORT= net/messagelib kde-messagelib_LIB= libKPim5MessageList.so kde-mime_PORT= net/kmime kde-mime_LIB= libKPim5Mime.so kde-pimcommon_PORT= net/pimcommon kde-pimcommon_LIB= libKPim5PimCommon.so kde-pimtextedit_PORT= net/kpimtextedit kde-pimtextedit_LIB= libKPim5TextEdit.so kde-tnef_PORT= net/ktnef kde-tnef_LIB= libKPim5Tnef.so kde-ktextaddons_PORT= devel/ktextaddons kde-ktextaddons_LIB= libKF${_KDE_VERSION}TextAutoCorrectionCore.so # PIM Applications kde-akonadiconsole_PORT= deskutils/akonadiconsole kde-akonadiconsole_PATH= ${KDE_PREFIX}/bin/akonadiconsole kde-akregator_PORT= deskutils/akregator kde-akregator_PATH= ${KDE_PREFIX}/bin/akregator kde-grantlee-editor_PORT= deskutils/grantlee-editor kde-grantlee-editor_PATH= ${KDE_PREFIX}/bin/contactthemeeditor kde-kaddressbook_PORT= deskutils/kaddressbook kde-kaddressbook_PATH= ${KDE_PREFIX}/bin/kaddressbook kde-kalarm_PORT= deskutils/kalarm kde-kalarm_PATH= ${KDE_PREFIX}/bin/kalarm kde-kmail_PORT= deskutils/kmail kde-kmail_PATH= ${KDE_PREFIX}/bin/kmail kde-kmail-account-wizard_PORT= deskutils/kmail-account-wizard kde-kmail-account-wizard_PATH= ${KDE_PREFIX}/bin/accountwizard kde-knotes_PORT= deskutils/knotes kde-knotex_PATH= ${KDE_PREFIX}/bin/knotes kde-kontact_PORT= deskutils/kontact kde-kontact_PATH= ${KDE_PREFIX}/bin/kontact kde-korganizer_PORT= deskutils/korganizer kde-korganizer_PATH= ${KDE_PREFIX}/bin/korganizer kde-mbox-importer_PORT= deskutils/mbox-importer kde-mbox-importer_PATH= ${KDE_PREFIX}/bin/mboximporter kde-pim-data-exporter_PORT= deskutils/pim-data-exporter kde-pim-data-exporter_PATH= ${KDE_PREFIX}/bin/pimdataexporter # ====================== end of pim5 components ================================ # ====================== multiversion component ================================ kde-akonadi5_PORT= databases/akonadi kde-akonadi5_LIB= libKPim5AkonadiPrivate.so kde-baloo-widgets5_PORT= sysutils/baloo-widgets kde-baloo-widgets5_LIB= libKF${_KDE_VERSION}BalooWidgets.so kde-kate5_PORT= editors/kate kde-kate5_PATH= ${QT_PLUGINDIR}/ktexteditor/katebacktracebrowserplugin.so kde-libkcddb5_PORT= audio/libkcddb kde-libkcddb5_LIB= libKF${_KDE_VERSION}Cddb.so kde-libkcompactdisc5_PORT= audio/libkcompactdisc kde-libkcompactdisc5_LIB= libKF${_KDE_VERSION}CompactDisc.so kde-libkdcraw5_PORT= graphics/libkdcraw@qt${_KDE_VERSION} kde-libkdcraw5_LIB= libKF${_KDE_VERSION}KDcraw.so kde-libkdegames5_PORT= games/libkdegames kde-libkdegames5_LIB= libKF${_KDE_VERSION}KDEGames.so kde-libkeduvocdocument5_PORT= misc/libkeduvocdocument kde-libkeduvocdocument5_LIB= libKEduVocDocument.so kde-libkexiv2_PORT5= graphics/libkexiv2 kde-libkexiv2_PORT6= graphics/libkexiv2-devel kde-libkexiv2_PORT= ${kde-libkexiv2_PORT${_KDE_VERSION}} kde-libkexiv2_LIB5= libKF${_KDE_VERSION}KExiv2.so kde-libkexiv2_LIB6= libKExiv2Qt${_KDE_VERSION}.so kde-libkexiv2_LIB= ${kde-libkexiv2_LIB${_KDE_VERSION}} kde-libkipi5_PORT= graphics/libkipi kde-libkipi5_LIB= libKF${_KDE_VERSION}Kipi.so kde-libksane5_PORT= graphics/libksane kde-libksane5_LIB= libKF${_KDE_VERSION}Sane.so kde-marble5_PORT= astro/marble kde-marble5_LIB= libmarblewidget-qt5.so kde-kpublictransport_PORT= devel/kpublictransport kde-kpublictransport_LIB= libKPublicTransport.so kde-kosm_PORT= astro/kosmindoormap kde-kosm_LIB= libKOSM.so kde-okular5_PORT= graphics/okular kde-okular5_LIB= libOkular5Core.so kde-phonon_PORT= multimedia/phonon@${_QT_RELNAME} kde-phonon_LIB= libphonon4${_QT_RELNAME}.so kde-phonon-backend_PORT= multimedia/phonon-vlc@${_QT_RELNAME} kde-phonon-backend_PATH= ${QT_PLUGINDIR}/phonon4${_QT_RELNAME}_backend/phonon_vlc_${_QT_RELNAME}.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/plasma6-kpipewire/distinfo b/audio/plasma6-kpipewire/distinfo index 35d31be4f221..1a575ea1dc8a 100644 --- a/audio/plasma6-kpipewire/distinfo +++ b/audio/plasma6-kpipewire/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1710959333 -SHA256 (KDE/plasma/6.0.2/kpipewire-6.0.2.tar.xz) = 00f986b6296032461a35871dbe8a12fc24c2f93b6239d3098c97b76dcbd46cc9 -SIZE (KDE/plasma/6.0.2/kpipewire-6.0.2.tar.xz) = 144720 +TIMESTAMP = 1712731764 +SHA256 (KDE/plasma/6.0.3/kpipewire-6.0.3.tar.xz) = 1aba7a04bf35c8869068af387845121b5db4e7e61f1990e4deb86cb683a0527e +SIZE (KDE/plasma/6.0.3/kpipewire-6.0.3.tar.xz) = 144804 diff --git a/audio/plasma6-ocean-sound-theme/distinfo b/audio/plasma6-ocean-sound-theme/distinfo index 2ce8d16ca4f6..76d4542d2d69 100644 --- a/audio/plasma6-ocean-sound-theme/distinfo +++ b/audio/plasma6-ocean-sound-theme/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1710959334 -SHA256 (KDE/plasma/6.0.2/ocean-sound-theme-6.0.2.tar.xz) = fa01e15b8a997e5dd34e7dea67a827129876582e6b0fdd4432352f16b6745577 -SIZE (KDE/plasma/6.0.2/ocean-sound-theme-6.0.2.tar.xz) = 1209252 +TIMESTAMP = 1712731765 +SHA256 (KDE/plasma/6.0.3/ocean-sound-theme-6.0.3.tar.xz) = 63bbdf6ec15c14ec80807cbc428650e5e2de1e9c639b7ddeae5c7899c233c536 +SIZE (KDE/plasma/6.0.3/ocean-sound-theme-6.0.3.tar.xz) = 1209652 diff --git a/audio/plasma6-oxygen-sounds/distinfo b/audio/plasma6-oxygen-sounds/distinfo index 18a751dcc2f9..d56839f9248b 100644 --- a/audio/plasma6-oxygen-sounds/distinfo +++ b/audio/plasma6-oxygen-sounds/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1710959335 -SHA256 (KDE/plasma/6.0.2/oxygen-sounds-6.0.2.tar.xz) = 35da28e52652be9b1a6c3b26919d5247d41aa68b572fb10c4583a0f5ccb70b61 -SIZE (KDE/plasma/6.0.2/oxygen-sounds-6.0.2.tar.xz) = 1936276 +TIMESTAMP = 1712731765 +SHA256 (KDE/plasma/6.0.3/oxygen-sounds-6.0.3.tar.xz) = 30ea00a09c7595f6e8471aa028b45d3f518f58e3b19ac14c8817b16245284fa6 +SIZE (KDE/plasma/6.0.3/oxygen-sounds-6.0.3.tar.xz) = 1936220 diff --git a/audio/plasma6-plasma-pa/distinfo b/audio/plasma6-plasma-pa/distinfo index afdad920ad74..010aa727d92b 100644 --- a/audio/plasma6-plasma-pa/distinfo +++ b/audio/plasma6-plasma-pa/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1710959336 -SHA256 (KDE/plasma/6.0.2/plasma-pa-6.0.2.tar.xz) = 998da8f7831e16004315bcb488d05d1d539713406e235155bdbfbb80d301e5ad -SIZE (KDE/plasma/6.0.2/plasma-pa-6.0.2.tar.xz) = 170820 +TIMESTAMP = 1712731766 +SHA256 (KDE/plasma/6.0.3/plasma-pa-6.0.3.tar.xz) = b1e198a01551e87275b3f9b718b94df3edf391dccf2ba71ea9af07bc52ddee5b +SIZE (KDE/plasma/6.0.3/plasma-pa-6.0.3.tar.xz) = 170420 diff --git a/deskutils/plasma6-milou/distinfo b/deskutils/plasma6-milou/distinfo index 09fe3927a767..225837fbb9a3 100644 --- a/deskutils/plasma6-milou/distinfo +++ b/deskutils/plasma6-milou/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1710959336 -SHA256 (KDE/plasma/6.0.2/milou-6.0.2.tar.xz) = 58a3db1eff597cb203959ea30aa49688e2f428adad388c54e2cbae810af41a14 -SIZE (KDE/plasma/6.0.2/milou-6.0.2.tar.xz) = 49912 +TIMESTAMP = 1712731767 +SHA256 (KDE/plasma/6.0.3/milou-6.0.3.tar.xz) = 2efbf9e2a644145d2da4a1040e6a2f4e547032eafc61190659bb571f8e7cd3a2 +SIZE (KDE/plasma/6.0.3/milou-6.0.3.tar.xz) = 49876 diff --git a/deskutils/plasma6-sddm-kcm/distinfo b/deskutils/plasma6-sddm-kcm/distinfo index 3050f8e5d4ad..abb8f97a21d3 100644 --- a/deskutils/plasma6-sddm-kcm/distinfo +++ b/deskutils/plasma6-sddm-kcm/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1710959337 -SHA256 (KDE/plasma/6.0.2/sddm-kcm-6.0.2.tar.xz) = 1a3176aaa4ed4b6b8214e37446ebd5b4ae0b9e2823b9641f1ef7e8b6723b24cb -SIZE (KDE/plasma/6.0.2/sddm-kcm-6.0.2.tar.xz) = 97440 +TIMESTAMP = 1712731768 +SHA256 (KDE/plasma/6.0.3/sddm-kcm-6.0.3.tar.xz) = faa75e0f5afe1e290f00c696fbf76e4aa71188e351bf844547043e062600986e +SIZE (KDE/plasma/6.0.3/sddm-kcm-6.0.3.tar.xz) = 97480 diff --git a/deskutils/plasma6-xdg-desktop-portal-kde/distinfo b/deskutils/plasma6-xdg-desktop-portal-kde/distinfo index 0e6809e4b3c7..36bef180ebe9 100644 --- a/deskutils/plasma6-xdg-desktop-portal-kde/distinfo +++ b/deskutils/plasma6-xdg-desktop-portal-kde/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1710959337 -SHA256 (KDE/plasma/6.0.2/xdg-desktop-portal-kde-6.0.2.tar.xz) = 2d7e63fcb02bfa357f325d900387456aee0193ea414b2ede98b1a159b520e765 -SIZE (KDE/plasma/6.0.2/xdg-desktop-portal-kde-6.0.2.tar.xz) = 163908 +TIMESTAMP = 1712731768 +SHA256 (KDE/plasma/6.0.3/xdg-desktop-portal-kde-6.0.3.tar.xz) = bd659b7e1b68ded28d8199abf8c5f49fc6eeb432c9b6a8843ebf4c04cc035aa9 +SIZE (KDE/plasma/6.0.3/xdg-desktop-portal-kde-6.0.3.tar.xz) = 163692 diff --git a/devel/plasma6-kwrited/distinfo b/devel/plasma6-kwrited/distinfo index 41bbc16f4c1f..0c79d942e774 100644 --- a/devel/plasma6-kwrited/distinfo +++ b/devel/plasma6-kwrited/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1710959338 -SHA256 (KDE/plasma/6.0.2/kwrited-6.0.2.tar.xz) = fb52194d5e559a56967af1c8a1a08085ec77b7d6510ab486a0f10c93fae8d928 -SIZE (KDE/plasma/6.0.2/kwrited-6.0.2.tar.xz) = 23696 +TIMESTAMP = 1712731769 +SHA256 (KDE/plasma/6.0.3/kwrited-6.0.3.tar.xz) = 39dfa8fedeadf139abc610a88c517cab658d52cba50223a68b70760be1277bab +SIZE (KDE/plasma/6.0.3/kwrited-6.0.3.tar.xz) = 23696 diff --git a/devel/plasma6-plasma-sdk/distinfo b/devel/plasma6-plasma-sdk/distinfo index 8ec1a189805d..35a13e9394f9 100644 --- a/devel/plasma6-plasma-sdk/distinfo +++ b/devel/plasma6-plasma-sdk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1710959338 -SHA256 (KDE/plasma/6.0.2/plasma-sdk-6.0.2.tar.xz) = b70bd17d636b26f837459b1f72eb29fd0ba225711c8caef7a762dd60bff46405 -SIZE (KDE/plasma/6.0.2/plasma-sdk-6.0.2.tar.xz) = 327728 +TIMESTAMP = 1712731769 +SHA256 (KDE/plasma/6.0.3/plasma-sdk-6.0.3.tar.xz) = 4ae4d495c77b6508ef8535d39b73a8b14c1ee1297c7dba740e928b260fdbfd79 +SIZE (KDE/plasma/6.0.3/plasma-sdk-6.0.3.tar.xz) = 326492 diff --git a/devel/plasma6-plasma5support/distinfo b/devel/plasma6-plasma5support/distinfo index 10d8b740f0a4..6002ff0b5f52 100644 --- a/devel/plasma6-plasma5support/distinfo +++ b/devel/plasma6-plasma5support/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1710959339 -SHA256 (KDE/plasma/6.0.2/plasma5support-6.0.2.tar.xz) = 18b1de3461f5f3721c5d3cbb084113a0ceea5bf3e376f21b24fe98ca56d54a6f -SIZE (KDE/plasma/6.0.2/plasma5support-6.0.2.tar.xz) = 55556 +TIMESTAMP = 1712731770 +SHA256 (KDE/plasma/6.0.3/plasma5support-6.0.3.tar.xz) = c883bb07e513edc66fd3939a542f3c4e017c882c1851286e55bb7addcb5c3495 +SIZE (KDE/plasma/6.0.3/plasma5support-6.0.3.tar.xz) = 55712 diff --git a/print/plasma6-print-manager/distinfo b/print/plasma6-print-manager/distinfo index 77bb263f2fed..af1fcf004c8d 100644 --- a/print/plasma6-print-manager/distinfo +++ b/print/plasma6-print-manager/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1710959340 -SHA256 (KDE/plasma/6.0.2/print-manager-6.0.2.tar.xz) = 66ce0738158380eeec2c259cc2d3f259d53e29dbff2dfd853e55a09d3aca46ff -SIZE (KDE/plasma/6.0.2/print-manager-6.0.2.tar.xz) = 336576 +TIMESTAMP = 1712731772 +SHA256 (KDE/plasma/6.0.3/print-manager-6.0.3.tar.xz) = f2a2e91e7c43b6ab1db0b99a97c42a4845230c7f6cb739cb30a48c282457e48c +SIZE (KDE/plasma/6.0.3/print-manager-6.0.3.tar.xz) = 337828 diff --git a/security/plasma6-kscreenlocker/distinfo b/security/plasma6-kscreenlocker/distinfo index 4ee691246acc..c0e037f0a055 100644 --- a/security/plasma6-kscreenlocker/distinfo +++ b/security/plasma6-kscreenlocker/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1710959341 -SHA256 (KDE/plasma/6.0.2/kscreenlocker-6.0.2.tar.xz) = 451c69a2356c545c118e32c9f8b4586272b299f8d9ddc4c9c884b19db427b53f -SIZE (KDE/plasma/6.0.2/kscreenlocker-6.0.2.tar.xz) = 164672 +TIMESTAMP = 1712731772 +SHA256 (KDE/plasma/6.0.3/kscreenlocker-6.0.3.tar.xz) = 4afedb43a935241ff698e44905b4af6e1901440326868093163ca36f8398d669 +SIZE (KDE/plasma/6.0.3/kscreenlocker-6.0.3.tar.xz) = 164472 diff --git a/security/plasma6-ksshaskpass/distinfo b/security/plasma6-ksshaskpass/distinfo index 4cb897a9511a..983b91d7a947 100644 --- a/security/plasma6-ksshaskpass/distinfo +++ b/security/plasma6-ksshaskpass/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1710959342 -SHA256 (KDE/plasma/6.0.2/ksshaskpass-6.0.2.tar.xz) = 0bea76d31ca06f742442ace693e2dc489612309b5aa567d16978ac26ee20fac9 -SIZE (KDE/plasma/6.0.2/ksshaskpass-6.0.2.tar.xz) = 28884 +TIMESTAMP = 1712731773 +SHA256 (KDE/plasma/6.0.3/ksshaskpass-6.0.3.tar.xz) = b7ea4a5bbb50ab0c98f042d001a835f0fe84f2cb91e4f6f90f1be0c66a183209 +SIZE (KDE/plasma/6.0.3/ksshaskpass-6.0.3.tar.xz) = 28860 diff --git a/security/plasma6-kwallet-pam/distinfo b/security/plasma6-kwallet-pam/distinfo index 448246385d37..e291471adf82 100644 --- a/security/plasma6-kwallet-pam/distinfo +++ b/security/plasma6-kwallet-pam/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1710959342 -SHA256 (KDE/plasma/6.0.2/kwallet-pam-6.0.2.tar.xz) = 41321bea82add23f86b6bcbe6d388bc8c35923bd1d7f8a66d08c3f2ab1ab0273 -SIZE (KDE/plasma/6.0.2/kwallet-pam-6.0.2.tar.xz) = 22928 +TIMESTAMP = 1712731774 +SHA256 (KDE/plasma/6.0.3/kwallet-pam-6.0.3.tar.xz) = 22cd8b00ae17a92c473af6196a36855fc3eace9204b73f3bce2489d80f34e87f +SIZE (KDE/plasma/6.0.3/kwallet-pam-6.0.3.tar.xz) = 23008 diff --git a/sysutils/plasma6-drkonqi/distinfo b/sysutils/plasma6-drkonqi/distinfo index 7cdb3806b648..148d2783b252 100644 --- a/sysutils/plasma6-drkonqi/distinfo +++ b/sysutils/plasma6-drkonqi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1710959343 -SHA256 (KDE/plasma/6.0.2/drkonqi-6.0.2.tar.xz) = 4b81c794319e04c570a9487f09dda02f18881e248547ba856aa84a6ede70c314 -SIZE (KDE/plasma/6.0.2/drkonqi-6.0.2.tar.xz) = 873892 +TIMESTAMP = 1712731774 +SHA256 (KDE/plasma/6.0.3/drkonqi-6.0.3.tar.xz) = 1fa9e7522551a9aab92d8ade3f6bbb7fcfb832973a01111aa444b188e434e2ce +SIZE (KDE/plasma/6.0.3/drkonqi-6.0.3.tar.xz) = 873932 diff --git a/sysutils/plasma6-kde-cli-tools/distinfo b/sysutils/plasma6-kde-cli-tools/distinfo index eba6b4ba13be..47ee93f96642 100644 --- a/sysutils/plasma6-kde-cli-tools/distinfo +++ b/sysutils/plasma6-kde-cli-tools/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1710959343 -SHA256 (KDE/plasma/6.0.2/kde-cli-tools-6.0.2.tar.xz) = 4abec932b4b479a4224e0ef256305598655d3389b369a61fe48637e2b5ce8e55 -SIZE (KDE/plasma/6.0.2/kde-cli-tools-6.0.2.tar.xz) = 628276 +TIMESTAMP = 1712731775 +SHA256 (KDE/plasma/6.0.3/kde-cli-tools-6.0.3.tar.xz) = 50de4abcaf2659ba8c1be857bcb7f1a09550d27cc47f25a0dee592110a559c42 +SIZE (KDE/plasma/6.0.3/kde-cli-tools-6.0.3.tar.xz) = 627736 diff --git a/sysutils/plasma6-kde-cli-tools/pkg-plist b/sysutils/plasma6-kde-cli-tools/pkg-plist index ed70b308a0ef..8f3948fe77df 100644 --- a/sysutils/plasma6-kde-cli-tools/pkg-plist +++ b/sysutils/plasma6-kde-cli-tools/pkg-plist @@ -1,670 +1,671 @@ bin/kbroadcastnotification bin/kde-inhibit bin/kde-open bin/kde-open5 bin/kdecp bin/kdecp5 bin/kdemv bin/kdemv5 bin/keditfiletype bin/keditfiletype5 bin/kinfo bin/kioclient bin/kioclient5 bin/kmimetypefinder bin/kmimetypefinder5 bin/kstart bin/kstart5 bin/ksvgtopng bin/ksvgtopng5 bin/plasma-open-settings lib/libexec/kf6/kdeeject lib/libexec/kf6/kdesu %%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_filetypes.so share/applications/kcm_filetypes.desktop share/applications/org.kde.keditfiletype.desktop share/applications/org.kde.plasma.settings.open.desktop share/doc/HTML/ca/kcontrol6/filetypes/index.cache.bz2 share/doc/HTML/ca/kcontrol6/filetypes/index.docbook share/doc/HTML/ca/kdesu/index.cache.bz2 share/doc/HTML/ca/kdesu/index.docbook share/doc/HTML/de/kcontrol6/filetypes/index.cache.bz2 share/doc/HTML/de/kcontrol6/filetypes/index.docbook share/doc/HTML/de/kdesu/index.cache.bz2 share/doc/HTML/de/kdesu/index.docbook share/doc/HTML/en/kcontrol6/filetypes/index.cache.bz2 share/doc/HTML/en/kcontrol6/filetypes/index.docbook share/doc/HTML/en/kdesu/index.cache.bz2 share/doc/HTML/en/kdesu/index.docbook share/doc/HTML/es/kcontrol6/filetypes/index.cache.bz2 share/doc/HTML/es/kcontrol6/filetypes/index.docbook share/doc/HTML/es/kdesu/index.cache.bz2 share/doc/HTML/es/kdesu/index.docbook share/doc/HTML/et/kdesu/index.cache.bz2 share/doc/HTML/et/kdesu/index.docbook share/doc/HTML/fr/kcontrol6/filetypes/index.cache.bz2 share/doc/HTML/fr/kcontrol6/filetypes/index.docbook share/doc/HTML/fr/kdesu/index.cache.bz2 share/doc/HTML/fr/kdesu/index.docbook share/doc/HTML/id/kcontrol6/filetypes/index.cache.bz2 share/doc/HTML/id/kcontrol6/filetypes/index.docbook share/doc/HTML/id/kdesu/index.cache.bz2 share/doc/HTML/id/kdesu/index.docbook share/doc/HTML/it/kcontrol6/filetypes/index.cache.bz2 share/doc/HTML/it/kcontrol6/filetypes/index.docbook share/doc/HTML/it/kdesu/index.cache.bz2 share/doc/HTML/it/kdesu/index.docbook share/doc/HTML/nl/kcontrol6/filetypes/index.cache.bz2 share/doc/HTML/nl/kcontrol6/filetypes/index.docbook share/doc/HTML/nl/kdesu/index.cache.bz2 share/doc/HTML/nl/kdesu/index.docbook share/doc/HTML/pt/kcontrol6/filetypes/index.cache.bz2 share/doc/HTML/pt/kcontrol6/filetypes/index.docbook share/doc/HTML/pt/kdesu/index.cache.bz2 share/doc/HTML/pt/kdesu/index.docbook share/doc/HTML/pt_BR/kcontrol6/filetypes/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol6/filetypes/index.docbook share/doc/HTML/pt_BR/kdesu/index.cache.bz2 share/doc/HTML/pt_BR/kdesu/index.docbook share/doc/HTML/ru/kcontrol6/filetypes/index.cache.bz2 share/doc/HTML/ru/kcontrol6/filetypes/index.docbook share/doc/HTML/ru/kdesu/index.cache.bz2 share/doc/HTML/ru/kdesu/index.docbook share/doc/HTML/sr/kcontrol6/filetypes/index.cache.bz2 share/doc/HTML/sr/kcontrol6/filetypes/index.docbook share/doc/HTML/sr/kdesu/index.cache.bz2 share/doc/HTML/sr/kdesu/index.docbook share/doc/HTML/sr@latin/kcontrol6/filetypes/index.cache.bz2 share/doc/HTML/sr@latin/kcontrol6/filetypes/index.docbook share/doc/HTML/sr@latin/kdesu/index.cache.bz2 share/doc/HTML/sr@latin/kdesu/index.docbook share/doc/HTML/sv/kcontrol6/filetypes/index.cache.bz2 share/doc/HTML/sv/kcontrol6/filetypes/index.docbook share/doc/HTML/sv/kdesu/index.cache.bz2 share/doc/HTML/sv/kdesu/index.docbook share/doc/HTML/tr/kcontrol6/filetypes/index.cache.bz2 share/doc/HTML/tr/kcontrol6/filetypes/index.docbook share/doc/HTML/tr/kdesu/index.cache.bz2 share/doc/HTML/tr/kdesu/index.docbook share/doc/HTML/uk/kcontrol6/filetypes/index.cache.bz2 share/doc/HTML/uk/kcontrol6/filetypes/index.docbook share/doc/HTML/uk/kdesu/index.cache.bz2 share/doc/HTML/uk/kdesu/index.docbook share/locale/af/LC_MESSAGES/kcm_filetypes.mo share/locale/af/LC_MESSAGES/kdesu.mo share/locale/af/LC_MESSAGES/kstart.mo share/locale/ar/LC_MESSAGES/kbroadcastnotification.mo share/locale/ar/LC_MESSAGES/kcm_filetypes.mo share/locale/ar/LC_MESSAGES/kdesu.mo share/locale/ar/LC_MESSAGES/kioclient.mo share/locale/ar/LC_MESSAGES/kmimetypefinder.mo share/locale/ar/LC_MESSAGES/kstart.mo share/locale/ar/LC_MESSAGES/plasma-open-settings.mo share/locale/ast/LC_MESSAGES/kbroadcastnotification.mo share/locale/ast/LC_MESSAGES/kcm_filetypes.mo share/locale/ast/LC_MESSAGES/kdesu.mo share/locale/ast/LC_MESSAGES/kioclient.mo share/locale/ast/LC_MESSAGES/kmimetypefinder.mo share/locale/ast/LC_MESSAGES/kstart.mo share/locale/ast/LC_MESSAGES/plasma-open-settings.mo share/locale/az/LC_MESSAGES/kbroadcastnotification.mo share/locale/az/LC_MESSAGES/kcm_filetypes.mo share/locale/az/LC_MESSAGES/kdesu.mo share/locale/az/LC_MESSAGES/kioclient.mo share/locale/az/LC_MESSAGES/kmimetypefinder.mo share/locale/az/LC_MESSAGES/kstart.mo share/locale/az/LC_MESSAGES/plasma-open-settings.mo share/locale/be/LC_MESSAGES/kcm_filetypes.mo share/locale/be/LC_MESSAGES/kdesu.mo share/locale/be/LC_MESSAGES/kioclient.mo share/locale/be/LC_MESSAGES/kmimetypefinder.mo share/locale/be/LC_MESSAGES/kstart.mo share/locale/be@latin/LC_MESSAGES/kcm_filetypes.mo share/locale/be@latin/LC_MESSAGES/kdesu.mo share/locale/be@latin/LC_MESSAGES/kmimetypefinder.mo share/locale/be@latin/LC_MESSAGES/kstart.mo share/locale/bg/LC_MESSAGES/kbroadcastnotification.mo share/locale/bg/LC_MESSAGES/kcm_filetypes.mo share/locale/bg/LC_MESSAGES/kde-inhibit.mo share/locale/bg/LC_MESSAGES/kdesu.mo share/locale/bg/LC_MESSAGES/kioclient.mo share/locale/bg/LC_MESSAGES/kmimetypefinder.mo share/locale/bg/LC_MESSAGES/kstart.mo share/locale/bg/LC_MESSAGES/plasma-open-settings.mo share/locale/bn/LC_MESSAGES/kcm_filetypes.mo share/locale/bn/LC_MESSAGES/kstart.mo share/locale/bn_IN/LC_MESSAGES/kcm_filetypes.mo share/locale/bn_IN/LC_MESSAGES/kdesu.mo share/locale/bn_IN/LC_MESSAGES/kioclient.mo share/locale/bn_IN/LC_MESSAGES/kmimetypefinder.mo share/locale/bn_IN/LC_MESSAGES/kstart.mo share/locale/br/LC_MESSAGES/kcm_filetypes.mo share/locale/br/LC_MESSAGES/kdesu.mo share/locale/br/LC_MESSAGES/kstart.mo share/locale/bs/LC_MESSAGES/kcm_filetypes.mo share/locale/bs/LC_MESSAGES/kdesu.mo share/locale/bs/LC_MESSAGES/kioclient.mo share/locale/bs/LC_MESSAGES/kmimetypefinder.mo share/locale/bs/LC_MESSAGES/kstart.mo share/locale/ca/LC_MESSAGES/kbroadcastnotification.mo share/locale/ca/LC_MESSAGES/kcm_filetypes.mo share/locale/ca/LC_MESSAGES/kde-inhibit.mo share/locale/ca/LC_MESSAGES/kdesu.mo share/locale/ca/LC_MESSAGES/kioclient.mo share/locale/ca/LC_MESSAGES/kmimetypefinder.mo share/locale/ca/LC_MESSAGES/kstart.mo share/locale/ca/LC_MESSAGES/plasma-open-settings.mo share/locale/ca@valencia/LC_MESSAGES/kbroadcastnotification.mo share/locale/ca@valencia/LC_MESSAGES/kcm_filetypes.mo share/locale/ca@valencia/LC_MESSAGES/kde-inhibit.mo share/locale/ca@valencia/LC_MESSAGES/kdesu.mo share/locale/ca@valencia/LC_MESSAGES/kioclient.mo share/locale/ca@valencia/LC_MESSAGES/kmimetypefinder.mo share/locale/ca@valencia/LC_MESSAGES/kstart.mo share/locale/ca@valencia/LC_MESSAGES/plasma-open-settings.mo share/locale/cs/LC_MESSAGES/kbroadcastnotification.mo share/locale/cs/LC_MESSAGES/kcm_filetypes.mo share/locale/cs/LC_MESSAGES/kde-inhibit.mo share/locale/cs/LC_MESSAGES/kdesu.mo share/locale/cs/LC_MESSAGES/kioclient.mo share/locale/cs/LC_MESSAGES/kmimetypefinder.mo share/locale/cs/LC_MESSAGES/kstart.mo share/locale/cs/LC_MESSAGES/plasma-open-settings.mo share/locale/csb/LC_MESSAGES/kcm_filetypes.mo share/locale/csb/LC_MESSAGES/kdesu.mo share/locale/csb/LC_MESSAGES/kioclient.mo share/locale/csb/LC_MESSAGES/kmimetypefinder.mo share/locale/csb/LC_MESSAGES/kstart.mo share/locale/cy/LC_MESSAGES/kcm_filetypes.mo share/locale/cy/LC_MESSAGES/kdesu.mo share/locale/cy/LC_MESSAGES/kstart.mo share/locale/da/LC_MESSAGES/kbroadcastnotification.mo share/locale/da/LC_MESSAGES/kcm_filetypes.mo share/locale/da/LC_MESSAGES/kdesu.mo share/locale/da/LC_MESSAGES/kioclient.mo share/locale/da/LC_MESSAGES/kmimetypefinder.mo share/locale/da/LC_MESSAGES/kstart.mo share/locale/de/LC_MESSAGES/kbroadcastnotification.mo share/locale/de/LC_MESSAGES/kcm_filetypes.mo share/locale/de/LC_MESSAGES/kde-inhibit.mo share/locale/de/LC_MESSAGES/kdesu.mo share/locale/de/LC_MESSAGES/kioclient.mo share/locale/de/LC_MESSAGES/kmimetypefinder.mo share/locale/de/LC_MESSAGES/kstart.mo share/locale/de/LC_MESSAGES/plasma-open-settings.mo share/locale/el/LC_MESSAGES/kbroadcastnotification.mo share/locale/el/LC_MESSAGES/kcm_filetypes.mo share/locale/el/LC_MESSAGES/kdesu.mo share/locale/el/LC_MESSAGES/kioclient.mo share/locale/el/LC_MESSAGES/kmimetypefinder.mo share/locale/el/LC_MESSAGES/kstart.mo share/locale/el/LC_MESSAGES/plasma-open-settings.mo share/locale/en_GB/LC_MESSAGES/kbroadcastnotification.mo share/locale/en_GB/LC_MESSAGES/kcm_filetypes.mo share/locale/en_GB/LC_MESSAGES/kdesu.mo share/locale/en_GB/LC_MESSAGES/kioclient.mo share/locale/en_GB/LC_MESSAGES/kmimetypefinder.mo share/locale/en_GB/LC_MESSAGES/kstart.mo share/locale/en_GB/LC_MESSAGES/plasma-open-settings.mo share/locale/eo/LC_MESSAGES/kbroadcastnotification.mo share/locale/eo/LC_MESSAGES/kcm_filetypes.mo share/locale/eo/LC_MESSAGES/kde-inhibit.mo share/locale/eo/LC_MESSAGES/kdesu.mo share/locale/eo/LC_MESSAGES/kioclient.mo share/locale/eo/LC_MESSAGES/kmimetypefinder.mo share/locale/eo/LC_MESSAGES/kstart.mo share/locale/eo/LC_MESSAGES/plasma-open-settings.mo share/locale/es/LC_MESSAGES/kbroadcastnotification.mo share/locale/es/LC_MESSAGES/kcm_filetypes.mo share/locale/es/LC_MESSAGES/kde-inhibit.mo share/locale/es/LC_MESSAGES/kdesu.mo share/locale/es/LC_MESSAGES/kioclient.mo share/locale/es/LC_MESSAGES/kmimetypefinder.mo share/locale/es/LC_MESSAGES/kstart.mo share/locale/es/LC_MESSAGES/plasma-open-settings.mo share/locale/et/LC_MESSAGES/kbroadcastnotification.mo share/locale/et/LC_MESSAGES/kcm_filetypes.mo share/locale/et/LC_MESSAGES/kdesu.mo share/locale/et/LC_MESSAGES/kioclient.mo share/locale/et/LC_MESSAGES/kmimetypefinder.mo share/locale/et/LC_MESSAGES/kstart.mo share/locale/eu/LC_MESSAGES/kbroadcastnotification.mo share/locale/eu/LC_MESSAGES/kcm_filetypes.mo share/locale/eu/LC_MESSAGES/kde-inhibit.mo share/locale/eu/LC_MESSAGES/kdesu.mo share/locale/eu/LC_MESSAGES/kioclient.mo share/locale/eu/LC_MESSAGES/kmimetypefinder.mo share/locale/eu/LC_MESSAGES/kstart.mo share/locale/eu/LC_MESSAGES/plasma-open-settings.mo share/locale/fa/LC_MESSAGES/kcm_filetypes.mo share/locale/fa/LC_MESSAGES/kdesu.mo share/locale/fa/LC_MESSAGES/kioclient.mo share/locale/fa/LC_MESSAGES/kmimetypefinder.mo share/locale/fa/LC_MESSAGES/kstart.mo share/locale/fi/LC_MESSAGES/kbroadcastnotification.mo share/locale/fi/LC_MESSAGES/kcm_filetypes.mo share/locale/fi/LC_MESSAGES/kde-inhibit.mo share/locale/fi/LC_MESSAGES/kdesu.mo share/locale/fi/LC_MESSAGES/kioclient.mo share/locale/fi/LC_MESSAGES/kmimetypefinder.mo share/locale/fi/LC_MESSAGES/kstart.mo share/locale/fi/LC_MESSAGES/plasma-open-settings.mo share/locale/fr/LC_MESSAGES/kbroadcastnotification.mo share/locale/fr/LC_MESSAGES/kcm_filetypes.mo share/locale/fr/LC_MESSAGES/kde-inhibit.mo share/locale/fr/LC_MESSAGES/kdesu.mo share/locale/fr/LC_MESSAGES/kioclient.mo share/locale/fr/LC_MESSAGES/kmimetypefinder.mo share/locale/fr/LC_MESSAGES/kstart.mo share/locale/fr/LC_MESSAGES/plasma-open-settings.mo share/locale/fy/LC_MESSAGES/kcm_filetypes.mo share/locale/fy/LC_MESSAGES/kdesu.mo share/locale/fy/LC_MESSAGES/kioclient.mo share/locale/fy/LC_MESSAGES/kmimetypefinder.mo share/locale/fy/LC_MESSAGES/kstart.mo share/locale/ga/LC_MESSAGES/kcm_filetypes.mo share/locale/ga/LC_MESSAGES/kdesu.mo share/locale/ga/LC_MESSAGES/kioclient.mo share/locale/ga/LC_MESSAGES/kmimetypefinder.mo share/locale/ga/LC_MESSAGES/kstart.mo share/locale/gl/LC_MESSAGES/kbroadcastnotification.mo share/locale/gl/LC_MESSAGES/kcm_filetypes.mo share/locale/gl/LC_MESSAGES/kde-inhibit.mo share/locale/gl/LC_MESSAGES/kdesu.mo share/locale/gl/LC_MESSAGES/kioclient.mo share/locale/gl/LC_MESSAGES/kmimetypefinder.mo share/locale/gl/LC_MESSAGES/kstart.mo share/locale/gl/LC_MESSAGES/plasma-open-settings.mo share/locale/gu/LC_MESSAGES/kcm_filetypes.mo share/locale/gu/LC_MESSAGES/kdesu.mo share/locale/gu/LC_MESSAGES/kioclient.mo share/locale/gu/LC_MESSAGES/kmimetypefinder.mo share/locale/gu/LC_MESSAGES/kstart.mo share/locale/he/LC_MESSAGES/kbroadcastnotification.mo share/locale/he/LC_MESSAGES/kcm_filetypes.mo share/locale/he/LC_MESSAGES/kde-inhibit.mo share/locale/he/LC_MESSAGES/kdesu.mo share/locale/he/LC_MESSAGES/kioclient.mo share/locale/he/LC_MESSAGES/kmimetypefinder.mo share/locale/he/LC_MESSAGES/kstart.mo share/locale/he/LC_MESSAGES/plasma-open-settings.mo share/locale/hi/LC_MESSAGES/kcm_filetypes.mo share/locale/hi/LC_MESSAGES/kdesu.mo share/locale/hi/LC_MESSAGES/kioclient.mo share/locale/hi/LC_MESSAGES/kmimetypefinder.mo share/locale/hi/LC_MESSAGES/kstart.mo share/locale/hne/LC_MESSAGES/kcm_filetypes.mo share/locale/hne/LC_MESSAGES/kdesu.mo share/locale/hne/LC_MESSAGES/kioclient.mo share/locale/hne/LC_MESSAGES/kmimetypefinder.mo share/locale/hne/LC_MESSAGES/kstart.mo share/locale/hr/LC_MESSAGES/kcm_filetypes.mo share/locale/hr/LC_MESSAGES/kdesu.mo share/locale/hr/LC_MESSAGES/kioclient.mo share/locale/hr/LC_MESSAGES/kmimetypefinder.mo share/locale/hr/LC_MESSAGES/kstart.mo share/locale/hsb/LC_MESSAGES/kcm_filetypes.mo share/locale/hsb/LC_MESSAGES/kdesu.mo share/locale/hsb/LC_MESSAGES/kioclient.mo share/locale/hsb/LC_MESSAGES/kmimetypefinder.mo share/locale/hsb/LC_MESSAGES/kstart.mo share/locale/hu/LC_MESSAGES/kbroadcastnotification.mo share/locale/hu/LC_MESSAGES/kcm_filetypes.mo share/locale/hu/LC_MESSAGES/kde-inhibit.mo share/locale/hu/LC_MESSAGES/kdesu.mo share/locale/hu/LC_MESSAGES/kioclient.mo share/locale/hu/LC_MESSAGES/kmimetypefinder.mo share/locale/hu/LC_MESSAGES/kstart.mo share/locale/hu/LC_MESSAGES/plasma-open-settings.mo share/locale/ia/LC_MESSAGES/kbroadcastnotification.mo share/locale/ia/LC_MESSAGES/kcm_filetypes.mo share/locale/ia/LC_MESSAGES/kde-inhibit.mo share/locale/ia/LC_MESSAGES/kdesu.mo share/locale/ia/LC_MESSAGES/kioclient.mo share/locale/ia/LC_MESSAGES/kmimetypefinder.mo share/locale/ia/LC_MESSAGES/kstart.mo share/locale/ia/LC_MESSAGES/plasma-open-settings.mo share/locale/id/LC_MESSAGES/kbroadcastnotification.mo share/locale/id/LC_MESSAGES/kcm_filetypes.mo share/locale/id/LC_MESSAGES/kdesu.mo share/locale/id/LC_MESSAGES/kioclient.mo share/locale/id/LC_MESSAGES/kmimetypefinder.mo share/locale/id/LC_MESSAGES/kstart.mo share/locale/is/LC_MESSAGES/kcm_filetypes.mo share/locale/is/LC_MESSAGES/kdesu.mo share/locale/is/LC_MESSAGES/kioclient.mo share/locale/is/LC_MESSAGES/kmimetypefinder.mo share/locale/is/LC_MESSAGES/kstart.mo share/locale/it/LC_MESSAGES/kbroadcastnotification.mo share/locale/it/LC_MESSAGES/kcm_filetypes.mo share/locale/it/LC_MESSAGES/kde-inhibit.mo share/locale/it/LC_MESSAGES/kdesu.mo share/locale/it/LC_MESSAGES/kioclient.mo share/locale/it/LC_MESSAGES/kmimetypefinder.mo share/locale/it/LC_MESSAGES/kstart.mo share/locale/it/LC_MESSAGES/plasma-open-settings.mo share/locale/ja/LC_MESSAGES/kbroadcastnotification.mo share/locale/ja/LC_MESSAGES/kcm_filetypes.mo share/locale/ja/LC_MESSAGES/kde-inhibit.mo share/locale/ja/LC_MESSAGES/kdesu.mo share/locale/ja/LC_MESSAGES/kioclient.mo share/locale/ja/LC_MESSAGES/kmimetypefinder.mo share/locale/ja/LC_MESSAGES/kstart.mo share/locale/ja/LC_MESSAGES/plasma-open-settings.mo share/locale/ka/LC_MESSAGES/kbroadcastnotification.mo share/locale/ka/LC_MESSAGES/kcm_filetypes.mo share/locale/ka/LC_MESSAGES/kde-inhibit.mo share/locale/ka/LC_MESSAGES/kdesu.mo share/locale/ka/LC_MESSAGES/kioclient.mo share/locale/ka/LC_MESSAGES/kmimetypefinder.mo share/locale/ka/LC_MESSAGES/kstart.mo share/locale/ka/LC_MESSAGES/plasma-open-settings.mo share/locale/kk/LC_MESSAGES/kcm_filetypes.mo share/locale/kk/LC_MESSAGES/kdesu.mo share/locale/kk/LC_MESSAGES/kioclient.mo share/locale/kk/LC_MESSAGES/kmimetypefinder.mo share/locale/kk/LC_MESSAGES/kstart.mo share/locale/km/LC_MESSAGES/kcm_filetypes.mo share/locale/km/LC_MESSAGES/kdesu.mo share/locale/km/LC_MESSAGES/kioclient.mo share/locale/km/LC_MESSAGES/kmimetypefinder.mo share/locale/km/LC_MESSAGES/kstart.mo share/locale/kn/LC_MESSAGES/kcm_filetypes.mo share/locale/kn/LC_MESSAGES/kdesu.mo share/locale/kn/LC_MESSAGES/kioclient.mo share/locale/kn/LC_MESSAGES/kmimetypefinder.mo share/locale/kn/LC_MESSAGES/kstart.mo share/locale/ko/LC_MESSAGES/kbroadcastnotification.mo share/locale/ko/LC_MESSAGES/kcm_filetypes.mo share/locale/ko/LC_MESSAGES/kde-inhibit.mo share/locale/ko/LC_MESSAGES/kdesu.mo share/locale/ko/LC_MESSAGES/kioclient.mo share/locale/ko/LC_MESSAGES/kmimetypefinder.mo share/locale/ko/LC_MESSAGES/kstart.mo share/locale/ko/LC_MESSAGES/plasma-open-settings.mo share/locale/ku/LC_MESSAGES/kcm_filetypes.mo share/locale/ku/LC_MESSAGES/kdesu.mo share/locale/ku/LC_MESSAGES/kioclient.mo share/locale/ku/LC_MESSAGES/kmimetypefinder.mo share/locale/ku/LC_MESSAGES/kstart.mo share/locale/lt/LC_MESSAGES/kbroadcastnotification.mo share/locale/lt/LC_MESSAGES/kcm_filetypes.mo share/locale/lt/LC_MESSAGES/kdesu.mo share/locale/lt/LC_MESSAGES/kioclient.mo share/locale/lt/LC_MESSAGES/kmimetypefinder.mo share/locale/lt/LC_MESSAGES/kstart.mo share/locale/lt/LC_MESSAGES/plasma-open-settings.mo share/locale/lv/LC_MESSAGES/kcm_filetypes.mo share/locale/lv/LC_MESSAGES/kdesu.mo share/locale/lv/LC_MESSAGES/kioclient.mo share/locale/lv/LC_MESSAGES/kmimetypefinder.mo share/locale/lv/LC_MESSAGES/kstart.mo share/locale/mai/LC_MESSAGES/kcm_filetypes.mo share/locale/mai/LC_MESSAGES/kdesu.mo share/locale/mai/LC_MESSAGES/kioclient.mo share/locale/mai/LC_MESSAGES/kmimetypefinder.mo share/locale/mai/LC_MESSAGES/kstart.mo share/locale/mk/LC_MESSAGES/kcm_filetypes.mo share/locale/mk/LC_MESSAGES/kdesu.mo share/locale/mk/LC_MESSAGES/kioclient.mo share/locale/mk/LC_MESSAGES/kmimetypefinder.mo share/locale/mk/LC_MESSAGES/kstart.mo share/locale/ml/LC_MESSAGES/kbroadcastnotification.mo share/locale/ml/LC_MESSAGES/kcm_filetypes.mo share/locale/ml/LC_MESSAGES/kdesu.mo share/locale/ml/LC_MESSAGES/kioclient.mo share/locale/ml/LC_MESSAGES/kmimetypefinder.mo share/locale/ml/LC_MESSAGES/kstart.mo share/locale/mr/LC_MESSAGES/kcm_filetypes.mo share/locale/mr/LC_MESSAGES/kdesu.mo share/locale/mr/LC_MESSAGES/kioclient.mo share/locale/mr/LC_MESSAGES/kmimetypefinder.mo share/locale/mr/LC_MESSAGES/kstart.mo share/locale/ms/LC_MESSAGES/kcm_filetypes.mo share/locale/ms/LC_MESSAGES/kdesu.mo share/locale/ms/LC_MESSAGES/kioclient.mo share/locale/ms/LC_MESSAGES/kmimetypefinder.mo share/locale/ms/LC_MESSAGES/kstart.mo share/locale/nb/LC_MESSAGES/kcm_filetypes.mo share/locale/nb/LC_MESSAGES/kdesu.mo share/locale/nb/LC_MESSAGES/kioclient.mo share/locale/nb/LC_MESSAGES/kmimetypefinder.mo share/locale/nb/LC_MESSAGES/kstart.mo share/locale/nds/LC_MESSAGES/kcm_filetypes.mo share/locale/nds/LC_MESSAGES/kdesu.mo share/locale/nds/LC_MESSAGES/kioclient.mo share/locale/nds/LC_MESSAGES/kmimetypefinder.mo share/locale/nds/LC_MESSAGES/kstart.mo share/locale/ne/LC_MESSAGES/kcm_filetypes.mo share/locale/ne/LC_MESSAGES/kdesu.mo share/locale/ne/LC_MESSAGES/kioclient.mo share/locale/ne/LC_MESSAGES/kmimetypefinder.mo share/locale/ne/LC_MESSAGES/kstart.mo share/locale/nl/LC_MESSAGES/kbroadcastnotification.mo share/locale/nl/LC_MESSAGES/kcm_filetypes.mo share/locale/nl/LC_MESSAGES/kde-inhibit.mo share/locale/nl/LC_MESSAGES/kdesu.mo share/locale/nl/LC_MESSAGES/kioclient.mo share/locale/nl/LC_MESSAGES/kmimetypefinder.mo share/locale/nl/LC_MESSAGES/kstart.mo share/locale/nl/LC_MESSAGES/plasma-open-settings.mo share/locale/nn/LC_MESSAGES/kbroadcastnotification.mo share/locale/nn/LC_MESSAGES/kcm_filetypes.mo share/locale/nn/LC_MESSAGES/kdesu.mo share/locale/nn/LC_MESSAGES/kioclient.mo share/locale/nn/LC_MESSAGES/kmimetypefinder.mo share/locale/nn/LC_MESSAGES/kstart.mo share/locale/nn/LC_MESSAGES/plasma-open-settings.mo share/locale/oc/LC_MESSAGES/kcm_filetypes.mo share/locale/oc/LC_MESSAGES/kdesu.mo share/locale/oc/LC_MESSAGES/kioclient.mo share/locale/oc/LC_MESSAGES/kmimetypefinder.mo share/locale/oc/LC_MESSAGES/kstart.mo share/locale/or/LC_MESSAGES/kdesu.mo share/locale/or/LC_MESSAGES/kioclient.mo share/locale/or/LC_MESSAGES/kmimetypefinder.mo share/locale/or/LC_MESSAGES/kstart.mo share/locale/pa/LC_MESSAGES/kcm_filetypes.mo share/locale/pa/LC_MESSAGES/kdesu.mo share/locale/pa/LC_MESSAGES/kioclient.mo share/locale/pa/LC_MESSAGES/kmimetypefinder.mo share/locale/pa/LC_MESSAGES/kstart.mo share/locale/pl/LC_MESSAGES/kbroadcastnotification.mo share/locale/pl/LC_MESSAGES/kcm_filetypes.mo share/locale/pl/LC_MESSAGES/kde-inhibit.mo share/locale/pl/LC_MESSAGES/kdesu.mo share/locale/pl/LC_MESSAGES/kioclient.mo share/locale/pl/LC_MESSAGES/kmimetypefinder.mo share/locale/pl/LC_MESSAGES/kstart.mo share/locale/pl/LC_MESSAGES/plasma-open-settings.mo share/locale/pt/LC_MESSAGES/kbroadcastnotification.mo share/locale/pt/LC_MESSAGES/kcm_filetypes.mo share/locale/pt/LC_MESSAGES/kdesu.mo share/locale/pt/LC_MESSAGES/kioclient.mo share/locale/pt/LC_MESSAGES/kmimetypefinder.mo share/locale/pt/LC_MESSAGES/kstart.mo share/locale/pt/LC_MESSAGES/plasma-open-settings.mo share/locale/pt_BR/LC_MESSAGES/kbroadcastnotification.mo share/locale/pt_BR/LC_MESSAGES/kcm_filetypes.mo +share/locale/pt_BR/LC_MESSAGES/kde-inhibit.mo share/locale/pt_BR/LC_MESSAGES/kdesu.mo share/locale/pt_BR/LC_MESSAGES/kioclient.mo share/locale/pt_BR/LC_MESSAGES/kmimetypefinder.mo share/locale/pt_BR/LC_MESSAGES/kstart.mo share/locale/pt_BR/LC_MESSAGES/plasma-open-settings.mo share/locale/ro/LC_MESSAGES/kbroadcastnotification.mo share/locale/ro/LC_MESSAGES/kcm_filetypes.mo share/locale/ro/LC_MESSAGES/kdesu.mo share/locale/ro/LC_MESSAGES/kioclient.mo share/locale/ro/LC_MESSAGES/kmimetypefinder.mo share/locale/ro/LC_MESSAGES/kstart.mo share/locale/ro/LC_MESSAGES/plasma-open-settings.mo share/locale/ru/LC_MESSAGES/kbroadcastnotification.mo share/locale/ru/LC_MESSAGES/kcm_filetypes.mo share/locale/ru/LC_MESSAGES/kde-inhibit.mo share/locale/ru/LC_MESSAGES/kdesu.mo share/locale/ru/LC_MESSAGES/kioclient.mo share/locale/ru/LC_MESSAGES/kmimetypefinder.mo share/locale/ru/LC_MESSAGES/kstart.mo share/locale/ru/LC_MESSAGES/plasma-open-settings.mo share/locale/se/LC_MESSAGES/kcm_filetypes.mo share/locale/se/LC_MESSAGES/kdesu.mo share/locale/se/LC_MESSAGES/kioclient.mo share/locale/se/LC_MESSAGES/kmimetypefinder.mo share/locale/se/LC_MESSAGES/kstart.mo share/locale/si/LC_MESSAGES/kcm_filetypes.mo share/locale/si/LC_MESSAGES/kdesu.mo share/locale/si/LC_MESSAGES/kioclient.mo share/locale/si/LC_MESSAGES/kmimetypefinder.mo share/locale/si/LC_MESSAGES/kstart.mo share/locale/sk/LC_MESSAGES/kbroadcastnotification.mo share/locale/sk/LC_MESSAGES/kcm_filetypes.mo share/locale/sk/LC_MESSAGES/kde-inhibit.mo share/locale/sk/LC_MESSAGES/kdesu.mo share/locale/sk/LC_MESSAGES/kioclient.mo share/locale/sk/LC_MESSAGES/kmimetypefinder.mo share/locale/sk/LC_MESSAGES/kstart.mo share/locale/sk/LC_MESSAGES/plasma-open-settings.mo share/locale/sl/LC_MESSAGES/kbroadcastnotification.mo share/locale/sl/LC_MESSAGES/kcm_filetypes.mo share/locale/sl/LC_MESSAGES/kde-inhibit.mo share/locale/sl/LC_MESSAGES/kdesu.mo share/locale/sl/LC_MESSAGES/kioclient.mo share/locale/sl/LC_MESSAGES/kmimetypefinder.mo share/locale/sl/LC_MESSAGES/kstart.mo share/locale/sl/LC_MESSAGES/plasma-open-settings.mo share/locale/sq/LC_MESSAGES/kcm_filetypes.mo share/locale/sq/LC_MESSAGES/kdesu.mo share/locale/sq/LC_MESSAGES/kioclient.mo share/locale/sq/LC_MESSAGES/kmimetypefinder.mo share/locale/sq/LC_MESSAGES/kstart.mo share/locale/sr/LC_MESSAGES/kbroadcastnotification.mo share/locale/sr/LC_MESSAGES/kcm_filetypes.mo share/locale/sr/LC_MESSAGES/kdesu.mo share/locale/sr/LC_MESSAGES/kioclient.mo share/locale/sr/LC_MESSAGES/kmimetypefinder.mo share/locale/sr/LC_MESSAGES/kstart.mo share/locale/sr@ijekavian/LC_MESSAGES/kbroadcastnotification.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_filetypes.mo share/locale/sr@ijekavian/LC_MESSAGES/kdesu.mo share/locale/sr@ijekavian/LC_MESSAGES/kioclient.mo share/locale/sr@ijekavian/LC_MESSAGES/kmimetypefinder.mo share/locale/sr@ijekavian/LC_MESSAGES/kstart.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kbroadcastnotification.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_filetypes.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kdesu.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kioclient.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kmimetypefinder.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kstart.mo share/locale/sr@latin/LC_MESSAGES/kbroadcastnotification.mo share/locale/sr@latin/LC_MESSAGES/kcm_filetypes.mo share/locale/sr@latin/LC_MESSAGES/kdesu.mo share/locale/sr@latin/LC_MESSAGES/kioclient.mo share/locale/sr@latin/LC_MESSAGES/kmimetypefinder.mo share/locale/sr@latin/LC_MESSAGES/kstart.mo share/locale/sv/LC_MESSAGES/kbroadcastnotification.mo share/locale/sv/LC_MESSAGES/kcm_filetypes.mo share/locale/sv/LC_MESSAGES/kdesu.mo share/locale/sv/LC_MESSAGES/kioclient.mo share/locale/sv/LC_MESSAGES/kmimetypefinder.mo share/locale/sv/LC_MESSAGES/kstart.mo share/locale/sv/LC_MESSAGES/plasma-open-settings.mo share/locale/ta/LC_MESSAGES/kbroadcastnotification.mo share/locale/ta/LC_MESSAGES/kcm_filetypes.mo share/locale/ta/LC_MESSAGES/kde-inhibit.mo share/locale/ta/LC_MESSAGES/kdesu.mo share/locale/ta/LC_MESSAGES/kioclient.mo share/locale/ta/LC_MESSAGES/kmimetypefinder.mo share/locale/ta/LC_MESSAGES/kstart.mo share/locale/ta/LC_MESSAGES/plasma-open-settings.mo share/locale/te/LC_MESSAGES/kcm_filetypes.mo share/locale/te/LC_MESSAGES/kdesu.mo share/locale/te/LC_MESSAGES/kioclient.mo share/locale/te/LC_MESSAGES/kmimetypefinder.mo share/locale/te/LC_MESSAGES/kstart.mo share/locale/tg/LC_MESSAGES/kcm_filetypes.mo share/locale/tg/LC_MESSAGES/kdesu.mo share/locale/tg/LC_MESSAGES/kioclient.mo share/locale/tg/LC_MESSAGES/kmimetypefinder.mo share/locale/tg/LC_MESSAGES/kstart.mo share/locale/th/LC_MESSAGES/kcm_filetypes.mo share/locale/th/LC_MESSAGES/kdesu.mo share/locale/th/LC_MESSAGES/kioclient.mo share/locale/th/LC_MESSAGES/kmimetypefinder.mo share/locale/th/LC_MESSAGES/kstart.mo share/locale/tr/LC_MESSAGES/kbroadcastnotification.mo share/locale/tr/LC_MESSAGES/kcm_filetypes.mo share/locale/tr/LC_MESSAGES/kde-inhibit.mo share/locale/tr/LC_MESSAGES/kdesu.mo share/locale/tr/LC_MESSAGES/kioclient.mo share/locale/tr/LC_MESSAGES/kmimetypefinder.mo share/locale/tr/LC_MESSAGES/kstart.mo share/locale/tr/LC_MESSAGES/plasma-open-settings.mo share/locale/ug/LC_MESSAGES/kcm_filetypes.mo share/locale/ug/LC_MESSAGES/kdesu.mo share/locale/ug/LC_MESSAGES/kioclient.mo share/locale/ug/LC_MESSAGES/kmimetypefinder.mo share/locale/ug/LC_MESSAGES/kstart.mo share/locale/uk/LC_MESSAGES/kbroadcastnotification.mo share/locale/uk/LC_MESSAGES/kcm_filetypes.mo share/locale/uk/LC_MESSAGES/kde-inhibit.mo share/locale/uk/LC_MESSAGES/kdesu.mo share/locale/uk/LC_MESSAGES/kioclient.mo share/locale/uk/LC_MESSAGES/kmimetypefinder.mo share/locale/uk/LC_MESSAGES/kstart.mo share/locale/uk/LC_MESSAGES/plasma-open-settings.mo share/locale/uz/LC_MESSAGES/kcm_filetypes.mo share/locale/uz/LC_MESSAGES/kdesu.mo share/locale/uz/LC_MESSAGES/kstart.mo share/locale/uz@cyrillic/LC_MESSAGES/kcm_filetypes.mo share/locale/uz@cyrillic/LC_MESSAGES/kdesu.mo share/locale/uz@cyrillic/LC_MESSAGES/kstart.mo share/locale/vi/LC_MESSAGES/kbroadcastnotification.mo share/locale/vi/LC_MESSAGES/kcm_filetypes.mo share/locale/vi/LC_MESSAGES/kdesu.mo share/locale/vi/LC_MESSAGES/kioclient.mo share/locale/vi/LC_MESSAGES/kmimetypefinder.mo share/locale/vi/LC_MESSAGES/kstart.mo share/locale/vi/LC_MESSAGES/plasma-open-settings.mo share/locale/wa/LC_MESSAGES/kcm_filetypes.mo share/locale/wa/LC_MESSAGES/kdesu.mo share/locale/wa/LC_MESSAGES/kioclient.mo share/locale/wa/LC_MESSAGES/kmimetypefinder.mo share/locale/wa/LC_MESSAGES/kstart.mo share/locale/xh/LC_MESSAGES/kcm_filetypes.mo share/locale/xh/LC_MESSAGES/kdesu.mo share/locale/xh/LC_MESSAGES/kstart.mo share/locale/zh_CN/LC_MESSAGES/kbroadcastnotification.mo share/locale/zh_CN/LC_MESSAGES/kcm_filetypes.mo share/locale/zh_CN/LC_MESSAGES/kde-inhibit.mo share/locale/zh_CN/LC_MESSAGES/kdesu.mo share/locale/zh_CN/LC_MESSAGES/kioclient.mo share/locale/zh_CN/LC_MESSAGES/kmimetypefinder.mo share/locale/zh_CN/LC_MESSAGES/kstart.mo share/locale/zh_CN/LC_MESSAGES/plasma-open-settings.mo share/locale/zh_TW/LC_MESSAGES/kbroadcastnotification.mo share/locale/zh_TW/LC_MESSAGES/kcm_filetypes.mo share/locale/zh_TW/LC_MESSAGES/kde-inhibit.mo share/locale/zh_TW/LC_MESSAGES/kdesu.mo share/locale/zh_TW/LC_MESSAGES/kioclient.mo share/locale/zh_TW/LC_MESSAGES/kmimetypefinder.mo share/locale/zh_TW/LC_MESSAGES/kstart.mo share/locale/zh_TW/LC_MESSAGES/plasma-open-settings.mo share/man/ca/man1/kdesu.1.gz share/man/de/man1/kdesu.1.gz share/man/es/man1/kdesu.1.gz share/man/et/man1/kdesu.1.gz share/man/fr/man1/kdesu.1.gz share/man/id/man1/kdesu.1.gz share/man/it/man1/kdesu.1.gz share/man/man1/kdesu.1.gz share/man/nb/man1/kdesu.1.gz share/man/nl/man1/kdesu.1.gz share/man/pt/man1/kdesu.1.gz share/man/pt_BR/man1/kdesu.1.gz share/man/ru/man1/kdesu.1.gz share/man/sr/man1/kdesu.1.gz share/man/sr@latin/man1/kdesu.1.gz share/man/sv/man1/kdesu.1.gz share/man/tr/man1/kdesu.1.gz share/man/uk/man1/kdesu.1.gz share/zsh/site-functions/_kde-inhibit diff --git a/sysutils/plasma6-kinfocenter/distinfo b/sysutils/plasma6-kinfocenter/distinfo index 11bf997085bf..2c055779e4ac 100644 --- a/sysutils/plasma6-kinfocenter/distinfo +++ b/sysutils/plasma6-kinfocenter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1710959344 -SHA256 (KDE/plasma/6.0.2/kinfocenter-6.0.2.tar.xz) = 5d7d42990b7bdcaee776510fdbdf27e44b5bbe168c4e4e4d549f561e8fe2cb20 -SIZE (KDE/plasma/6.0.2/kinfocenter-6.0.2.tar.xz) = 833220 +TIMESTAMP = 1712731776 +SHA256 (KDE/plasma/6.0.3/kinfocenter-6.0.3.tar.xz) = ee9c2ddaee2c8bf453c38e82c3327dc83ad390042dd106c19ddf4b6251a8adfb +SIZE (KDE/plasma/6.0.3/kinfocenter-6.0.3.tar.xz) = 830548 diff --git a/sysutils/plasma6-kinfocenter/pkg-plist b/sysutils/plasma6-kinfocenter/pkg-plist index dd2f992e3514..0740e8b96d45 100644 --- a/sysutils/plasma6-kinfocenter/pkg-plist +++ b/sysutils/plasma6-kinfocenter/pkg-plist @@ -1,520 +1,521 @@ bin/kinfocenter etc/xdg/menus/kinfocenter.menu lib/libKInfoCenterInternal.so lib/libexec/kf6/kauth/kinfocenter-dmidecode-helper %%QT_PLUGINDIR%%/plasma/kcms/kcm_about-distro.so %%QT_PLUGINDIR%%/plasma/kcms/kinfocenter/kcm_cpu.so %%QT_PLUGINDIR%%/plasma/kcms/kinfocenter/kcm_devinfo.so %%QT_PLUGINDIR%%/plasma/kcms/kinfocenter/kcm_egl.so %%QT_PLUGINDIR%%/plasma/kcms/kinfocenter/kcm_firmware_security.so %%QT_PLUGINDIR%%/plasma/kcms/kinfocenter/kcm_glx.so %%QT_PLUGINDIR%%/plasma/kcms/kinfocenter/kcm_interrupts.so %%QT_PLUGINDIR%%/plasma/kcms/kinfocenter/kcm_kwinsupportinfo.so %%QT_PLUGINDIR%%/plasma/kcms/kinfocenter/kcm_nic.so %%QT_PLUGINDIR%%/plasma/kcms/kinfocenter/kcm_opencl.so %%QT_PLUGINDIR%%/plasma/kcms/kinfocenter/kcm_pci.so %%QT_PLUGINDIR%%/plasma/kcms/kinfocenter/kcm_samba.so %%QT_PLUGINDIR%%/plasma/kcms/kinfocenter/kcm_vulkan.so %%QT_PLUGINDIR%%/plasma/kcms/kinfocenter/kcm_wayland.so %%QT_PLUGINDIR%%/plasma/kcms/kinfocenter/kcm_xserver.so %%QT_QMLDIR%%/org/kde/kinfocenter/private/CommandOutputKCM.qml %%QT_QMLDIR%%/org/kde/kinfocenter/private/qmldir share/applications/kcm_about-distro.desktop share/applications/org.kde.kinfocenter.desktop share/dbus-1/system-services/org.kde.kinfocenter.dmidecode.service share/dbus-1/system.d/org.kde.kinfocenter.dmidecode.conf share/desktop-directories/kinfocenter.directory share/doc/HTML/ca/kinfocenter/index.cache.bz2 share/doc/HTML/ca/kinfocenter/index.docbook share/doc/HTML/ca/kinfocenter/kinfocenter.png share/doc/HTML/en/kinfocenter/index.cache.bz2 share/doc/HTML/en/kinfocenter/index.docbook share/doc/HTML/en/kinfocenter/kinfocenter.png share/doc/HTML/es/kinfocenter/index.cache.bz2 share/doc/HTML/es/kinfocenter/index.docbook share/doc/HTML/fr/kinfocenter/index.cache.bz2 share/doc/HTML/fr/kinfocenter/index.docbook share/doc/HTML/id/kinfocenter/index.cache.bz2 share/doc/HTML/id/kinfocenter/index.docbook share/doc/HTML/it/kinfocenter/index.cache.bz2 share/doc/HTML/it/kinfocenter/index.docbook share/doc/HTML/it/kinfocenter/kinfocenter.png share/doc/HTML/nl/kinfocenter/index.cache.bz2 share/doc/HTML/nl/kinfocenter/index.docbook share/doc/HTML/pt/kinfocenter/index.cache.bz2 share/doc/HTML/pt/kinfocenter/index.docbook share/doc/HTML/pt_BR/kinfocenter/index.cache.bz2 share/doc/HTML/pt_BR/kinfocenter/index.docbook share/doc/HTML/pt_BR/kinfocenter/kinfocenter.png share/doc/HTML/ru/kinfocenter/index.cache.bz2 share/doc/HTML/ru/kinfocenter/index.docbook share/doc/HTML/sr/kinfocenter/index.cache.bz2 share/doc/HTML/sr/kinfocenter/index.docbook share/doc/HTML/sr@latin/kinfocenter/index.cache.bz2 share/doc/HTML/sr@latin/kinfocenter/index.docbook share/doc/HTML/sv/kinfocenter/index.cache.bz2 share/doc/HTML/sv/kinfocenter/index.docbook share/doc/HTML/tr/kinfocenter/index.cache.bz2 share/doc/HTML/tr/kinfocenter/index.docbook share/doc/HTML/uk/kinfocenter/index.cache.bz2 share/doc/HTML/uk/kinfocenter/index.docbook share/doc/HTML/uk/kinfocenter/kinfocenter.png %%DATADIR%%/categories/basicinformation.desktop %%DATADIR%%/categories/deviceinfocategory.desktop %%DATADIR%%/categories/graphicalinfocategory.desktop %%DATADIR%%/categories/lostfoundcategory.desktop %%DATADIR%%/categories/networkinfocategory.desktop %%DATADIR%%/firmware_security/fwupdmgr.sh share/locale/af/LC_MESSAGES/kcm_samba.mo share/locale/af/LC_MESSAGES/kcmusb.mo share/locale/ar/LC_MESSAGES/kcm_about-distro.mo share/locale/ar/LC_MESSAGES/kcm_energyinfo.mo share/locale/ar/LC_MESSAGES/kcm_nic.mo share/locale/ar/LC_MESSAGES/kcm_samba.mo share/locale/ar/LC_MESSAGES/kcmdevinfo.mo share/locale/ar/LC_MESSAGES/kcmusb.mo share/locale/ast/LC_MESSAGES/kcm_about-distro.mo share/locale/ast/LC_MESSAGES/kcm_energyinfo.mo share/locale/ast/LC_MESSAGES/kcm_nic.mo share/locale/ast/LC_MESSAGES/kcm_samba.mo share/locale/ast/LC_MESSAGES/kcmdevinfo.mo share/locale/ast/LC_MESSAGES/kcmusb.mo share/locale/az/LC_MESSAGES/kcm_about-distro.mo share/locale/az/LC_MESSAGES/kcm_energyinfo.mo share/locale/az/LC_MESSAGES/kcm_nic.mo share/locale/az/LC_MESSAGES/kcm_samba.mo share/locale/az/LC_MESSAGES/kcmdevinfo.mo share/locale/az/LC_MESSAGES/kcmusb.mo share/locale/be/LC_MESSAGES/kcm_samba.mo share/locale/be/LC_MESSAGES/kcmusb.mo share/locale/bg/LC_MESSAGES/kcm_about-distro.mo share/locale/bg/LC_MESSAGES/kcm_energyinfo.mo share/locale/bg/LC_MESSAGES/kcm_nic.mo share/locale/bg/LC_MESSAGES/kcm_samba.mo share/locale/bg/LC_MESSAGES/kcmdevinfo.mo share/locale/bg/LC_MESSAGES/kcmusb.mo share/locale/bg/LC_MESSAGES/kinfocenter.mo share/locale/bn/LC_MESSAGES/kcmusb.mo share/locale/bn_IN/LC_MESSAGES/kcm_samba.mo share/locale/bn_IN/LC_MESSAGES/kcmusb.mo share/locale/br/LC_MESSAGES/kcm_samba.mo share/locale/br/LC_MESSAGES/kcmusb.mo share/locale/bs/LC_MESSAGES/kcm_about-distro.mo share/locale/bs/LC_MESSAGES/kcm_nic.mo share/locale/bs/LC_MESSAGES/kcm_samba.mo share/locale/bs/LC_MESSAGES/kcmdevinfo.mo share/locale/bs/LC_MESSAGES/kcmusb.mo share/locale/ca/LC_MESSAGES/kcm_about-distro.mo share/locale/ca/LC_MESSAGES/kcm_energyinfo.mo share/locale/ca/LC_MESSAGES/kcm_nic.mo share/locale/ca/LC_MESSAGES/kcm_samba.mo share/locale/ca/LC_MESSAGES/kcmdevinfo.mo share/locale/ca/LC_MESSAGES/kcmusb.mo share/locale/ca/LC_MESSAGES/kinfocenter.mo share/locale/ca@valencia/LC_MESSAGES/kcm_about-distro.mo share/locale/ca@valencia/LC_MESSAGES/kcm_energyinfo.mo share/locale/ca@valencia/LC_MESSAGES/kcm_nic.mo share/locale/ca@valencia/LC_MESSAGES/kcm_samba.mo share/locale/ca@valencia/LC_MESSAGES/kcmdevinfo.mo share/locale/ca@valencia/LC_MESSAGES/kcmusb.mo share/locale/ca@valencia/LC_MESSAGES/kinfocenter.mo share/locale/cs/LC_MESSAGES/kcm_about-distro.mo share/locale/cs/LC_MESSAGES/kcm_energyinfo.mo share/locale/cs/LC_MESSAGES/kcm_nic.mo share/locale/cs/LC_MESSAGES/kcm_samba.mo share/locale/cs/LC_MESSAGES/kcmdevinfo.mo share/locale/cs/LC_MESSAGES/kcmusb.mo share/locale/cs/LC_MESSAGES/kinfocenter.mo share/locale/csb/LC_MESSAGES/kcm_samba.mo share/locale/csb/LC_MESSAGES/kcmusb.mo share/locale/cy/LC_MESSAGES/kcm_samba.mo share/locale/cy/LC_MESSAGES/kcmusb.mo share/locale/da/LC_MESSAGES/kcm_about-distro.mo share/locale/da/LC_MESSAGES/kcm_energyinfo.mo share/locale/da/LC_MESSAGES/kcm_nic.mo share/locale/da/LC_MESSAGES/kcm_samba.mo share/locale/da/LC_MESSAGES/kcmdevinfo.mo share/locale/da/LC_MESSAGES/kcmusb.mo share/locale/de/LC_MESSAGES/kcm_about-distro.mo share/locale/de/LC_MESSAGES/kcm_energyinfo.mo share/locale/de/LC_MESSAGES/kcm_nic.mo share/locale/de/LC_MESSAGES/kcm_samba.mo share/locale/de/LC_MESSAGES/kcmdevinfo.mo share/locale/de/LC_MESSAGES/kcmusb.mo share/locale/de/LC_MESSAGES/kinfocenter.mo share/locale/el/LC_MESSAGES/kcm_about-distro.mo share/locale/el/LC_MESSAGES/kcm_energyinfo.mo share/locale/el/LC_MESSAGES/kcm_nic.mo share/locale/el/LC_MESSAGES/kcm_samba.mo share/locale/el/LC_MESSAGES/kcmdevinfo.mo share/locale/el/LC_MESSAGES/kcmusb.mo share/locale/en_GB/LC_MESSAGES/kcm_about-distro.mo share/locale/en_GB/LC_MESSAGES/kcm_energyinfo.mo share/locale/en_GB/LC_MESSAGES/kcm_nic.mo share/locale/en_GB/LC_MESSAGES/kcm_samba.mo share/locale/en_GB/LC_MESSAGES/kcmdevinfo.mo share/locale/en_GB/LC_MESSAGES/kcmusb.mo share/locale/eo/LC_MESSAGES/kcm_about-distro.mo share/locale/eo/LC_MESSAGES/kcm_energyinfo.mo share/locale/eo/LC_MESSAGES/kcm_nic.mo share/locale/eo/LC_MESSAGES/kcm_samba.mo share/locale/eo/LC_MESSAGES/kcmdevinfo.mo share/locale/eo/LC_MESSAGES/kcmusb.mo share/locale/eo/LC_MESSAGES/kinfocenter.mo share/locale/es/LC_MESSAGES/kcm_about-distro.mo share/locale/es/LC_MESSAGES/kcm_energyinfo.mo share/locale/es/LC_MESSAGES/kcm_nic.mo share/locale/es/LC_MESSAGES/kcm_samba.mo share/locale/es/LC_MESSAGES/kcmdevinfo.mo share/locale/es/LC_MESSAGES/kcmusb.mo share/locale/es/LC_MESSAGES/kinfocenter.mo share/locale/et/LC_MESSAGES/kcm_about-distro.mo share/locale/et/LC_MESSAGES/kcm_energyinfo.mo share/locale/et/LC_MESSAGES/kcm_nic.mo share/locale/et/LC_MESSAGES/kcm_samba.mo share/locale/et/LC_MESSAGES/kcmdevinfo.mo share/locale/et/LC_MESSAGES/kcmusb.mo share/locale/eu/LC_MESSAGES/kcm_about-distro.mo share/locale/eu/LC_MESSAGES/kcm_energyinfo.mo share/locale/eu/LC_MESSAGES/kcm_nic.mo share/locale/eu/LC_MESSAGES/kcm_samba.mo share/locale/eu/LC_MESSAGES/kcmdevinfo.mo share/locale/eu/LC_MESSAGES/kcmusb.mo share/locale/eu/LC_MESSAGES/kinfocenter.mo share/locale/fa/LC_MESSAGES/kcm_samba.mo share/locale/fa/LC_MESSAGES/kcmdevinfo.mo share/locale/fa/LC_MESSAGES/kcmusb.mo share/locale/fi/LC_MESSAGES/kcm_about-distro.mo share/locale/fi/LC_MESSAGES/kcm_energyinfo.mo share/locale/fi/LC_MESSAGES/kcm_nic.mo share/locale/fi/LC_MESSAGES/kcm_samba.mo share/locale/fi/LC_MESSAGES/kcmdevinfo.mo share/locale/fi/LC_MESSAGES/kcmusb.mo share/locale/fi/LC_MESSAGES/kinfocenter.mo share/locale/fr/LC_MESSAGES/kcm_about-distro.mo share/locale/fr/LC_MESSAGES/kcm_energyinfo.mo share/locale/fr/LC_MESSAGES/kcm_nic.mo share/locale/fr/LC_MESSAGES/kcm_samba.mo share/locale/fr/LC_MESSAGES/kcmdevinfo.mo share/locale/fr/LC_MESSAGES/kcmusb.mo share/locale/fr/LC_MESSAGES/kinfocenter.mo share/locale/fy/LC_MESSAGES/kcm_samba.mo share/locale/fy/LC_MESSAGES/kcmusb.mo share/locale/ga/LC_MESSAGES/kcm_nic.mo share/locale/ga/LC_MESSAGES/kcm_samba.mo share/locale/ga/LC_MESSAGES/kcmdevinfo.mo share/locale/ga/LC_MESSAGES/kcmusb.mo share/locale/gl/LC_MESSAGES/kcm_about-distro.mo share/locale/gl/LC_MESSAGES/kcm_energyinfo.mo share/locale/gl/LC_MESSAGES/kcm_nic.mo share/locale/gl/LC_MESSAGES/kcm_samba.mo share/locale/gl/LC_MESSAGES/kcmdevinfo.mo share/locale/gl/LC_MESSAGES/kcmusb.mo share/locale/gl/LC_MESSAGES/kinfocenter.mo share/locale/gu/LC_MESSAGES/kcm_nic.mo share/locale/gu/LC_MESSAGES/kcm_samba.mo share/locale/gu/LC_MESSAGES/kcmdevinfo.mo share/locale/gu/LC_MESSAGES/kcmusb.mo share/locale/he/LC_MESSAGES/kcm_about-distro.mo share/locale/he/LC_MESSAGES/kcm_energyinfo.mo share/locale/he/LC_MESSAGES/kcm_nic.mo share/locale/he/LC_MESSAGES/kcm_samba.mo share/locale/he/LC_MESSAGES/kcmdevinfo.mo share/locale/he/LC_MESSAGES/kcmusb.mo share/locale/he/LC_MESSAGES/kinfocenter.mo share/locale/hi/LC_MESSAGES/kcm_nic.mo share/locale/hi/LC_MESSAGES/kcm_samba.mo share/locale/hi/LC_MESSAGES/kcmdevinfo.mo share/locale/hi/LC_MESSAGES/kcmusb.mo share/locale/hne/LC_MESSAGES/kcm_samba.mo share/locale/hne/LC_MESSAGES/kcmusb.mo share/locale/hr/LC_MESSAGES/kcm_nic.mo share/locale/hr/LC_MESSAGES/kcm_samba.mo share/locale/hr/LC_MESSAGES/kcmdevinfo.mo share/locale/hr/LC_MESSAGES/kcmusb.mo share/locale/hsb/LC_MESSAGES/kcm_samba.mo share/locale/hsb/LC_MESSAGES/kcmusb.mo share/locale/hu/LC_MESSAGES/kcm_about-distro.mo share/locale/hu/LC_MESSAGES/kcm_energyinfo.mo share/locale/hu/LC_MESSAGES/kcm_nic.mo share/locale/hu/LC_MESSAGES/kcm_samba.mo share/locale/hu/LC_MESSAGES/kcmdevinfo.mo share/locale/hu/LC_MESSAGES/kcmusb.mo share/locale/hu/LC_MESSAGES/kinfocenter.mo share/locale/ia/LC_MESSAGES/kcm_about-distro.mo share/locale/ia/LC_MESSAGES/kcm_energyinfo.mo share/locale/ia/LC_MESSAGES/kcm_nic.mo share/locale/ia/LC_MESSAGES/kcm_samba.mo share/locale/ia/LC_MESSAGES/kcmdevinfo.mo share/locale/ia/LC_MESSAGES/kcmusb.mo share/locale/ia/LC_MESSAGES/kinfocenter.mo share/locale/id/LC_MESSAGES/kcm_about-distro.mo share/locale/id/LC_MESSAGES/kcm_energyinfo.mo share/locale/id/LC_MESSAGES/kcm_nic.mo share/locale/id/LC_MESSAGES/kcm_samba.mo share/locale/id/LC_MESSAGES/kcmdevinfo.mo share/locale/id/LC_MESSAGES/kcmusb.mo share/locale/is/LC_MESSAGES/kcm_nic.mo share/locale/is/LC_MESSAGES/kcm_samba.mo share/locale/is/LC_MESSAGES/kcmdevinfo.mo share/locale/is/LC_MESSAGES/kcmusb.mo share/locale/it/LC_MESSAGES/kcm_about-distro.mo share/locale/it/LC_MESSAGES/kcm_energyinfo.mo share/locale/it/LC_MESSAGES/kcm_nic.mo share/locale/it/LC_MESSAGES/kcm_samba.mo share/locale/it/LC_MESSAGES/kcmdevinfo.mo share/locale/it/LC_MESSAGES/kcmusb.mo share/locale/it/LC_MESSAGES/kinfocenter.mo share/locale/ja/LC_MESSAGES/kcm_about-distro.mo share/locale/ja/LC_MESSAGES/kcm_energyinfo.mo share/locale/ja/LC_MESSAGES/kcm_nic.mo share/locale/ja/LC_MESSAGES/kcm_samba.mo share/locale/ja/LC_MESSAGES/kcmdevinfo.mo share/locale/ja/LC_MESSAGES/kcmusb.mo share/locale/ja/LC_MESSAGES/kinfocenter.mo share/locale/ka/LC_MESSAGES/kcm_about-distro.mo share/locale/ka/LC_MESSAGES/kcm_energyinfo.mo share/locale/ka/LC_MESSAGES/kcm_nic.mo share/locale/ka/LC_MESSAGES/kcm_samba.mo share/locale/ka/LC_MESSAGES/kcmdevinfo.mo share/locale/ka/LC_MESSAGES/kcmusb.mo share/locale/ka/LC_MESSAGES/kinfocenter.mo share/locale/kk/LC_MESSAGES/kcm_nic.mo share/locale/kk/LC_MESSAGES/kcm_samba.mo share/locale/kk/LC_MESSAGES/kcmdevinfo.mo share/locale/kk/LC_MESSAGES/kcmusb.mo share/locale/km/LC_MESSAGES/kcm_nic.mo share/locale/km/LC_MESSAGES/kcm_samba.mo share/locale/km/LC_MESSAGES/kcmdevinfo.mo share/locale/km/LC_MESSAGES/kcmusb.mo share/locale/kn/LC_MESSAGES/kcm_nic.mo share/locale/kn/LC_MESSAGES/kcm_samba.mo share/locale/kn/LC_MESSAGES/kcmdevinfo.mo share/locale/kn/LC_MESSAGES/kcmusb.mo share/locale/ko/LC_MESSAGES/kcm_about-distro.mo share/locale/ko/LC_MESSAGES/kcm_energyinfo.mo share/locale/ko/LC_MESSAGES/kcm_nic.mo share/locale/ko/LC_MESSAGES/kcm_samba.mo share/locale/ko/LC_MESSAGES/kcmdevinfo.mo share/locale/ko/LC_MESSAGES/kcmusb.mo share/locale/ko/LC_MESSAGES/kinfocenter.mo share/locale/ku/LC_MESSAGES/kcm_samba.mo share/locale/ku/LC_MESSAGES/kcmusb.mo share/locale/lt/LC_MESSAGES/kcm_about-distro.mo share/locale/lt/LC_MESSAGES/kcm_energyinfo.mo share/locale/lt/LC_MESSAGES/kcm_nic.mo share/locale/lt/LC_MESSAGES/kcm_samba.mo share/locale/lt/LC_MESSAGES/kcmdevinfo.mo share/locale/lt/LC_MESSAGES/kcmusb.mo share/locale/lv/LC_MESSAGES/kcm_nic.mo share/locale/lv/LC_MESSAGES/kcm_samba.mo share/locale/lv/LC_MESSAGES/kcmdevinfo.mo share/locale/lv/LC_MESSAGES/kcmusb.mo share/locale/mai/LC_MESSAGES/kcm_nic.mo share/locale/mai/LC_MESSAGES/kcm_samba.mo share/locale/mai/LC_MESSAGES/kcmdevinfo.mo share/locale/mai/LC_MESSAGES/kcmusb.mo share/locale/mk/LC_MESSAGES/kcm_samba.mo share/locale/mk/LC_MESSAGES/kcmusb.mo share/locale/ml/LC_MESSAGES/kcm_about-distro.mo share/locale/ml/LC_MESSAGES/kcm_energyinfo.mo share/locale/ml/LC_MESSAGES/kcm_nic.mo share/locale/ml/LC_MESSAGES/kcm_samba.mo share/locale/ml/LC_MESSAGES/kcmdevinfo.mo share/locale/ml/LC_MESSAGES/kcmusb.mo share/locale/mr/LC_MESSAGES/kcm_nic.mo share/locale/mr/LC_MESSAGES/kcm_samba.mo share/locale/mr/LC_MESSAGES/kcmdevinfo.mo share/locale/mr/LC_MESSAGES/kcmusb.mo share/locale/ms/LC_MESSAGES/kcm_nic.mo share/locale/ms/LC_MESSAGES/kcm_samba.mo share/locale/ms/LC_MESSAGES/kcmdevinfo.mo share/locale/ms/LC_MESSAGES/kcmusb.mo share/locale/nb/LC_MESSAGES/kcm_about-distro.mo share/locale/nb/LC_MESSAGES/kcm_energyinfo.mo share/locale/nb/LC_MESSAGES/kcm_nic.mo share/locale/nb/LC_MESSAGES/kcm_samba.mo share/locale/nb/LC_MESSAGES/kcmdevinfo.mo share/locale/nb/LC_MESSAGES/kcmusb.mo share/locale/nds/LC_MESSAGES/kcm_nic.mo share/locale/nds/LC_MESSAGES/kcm_samba.mo share/locale/nds/LC_MESSAGES/kcmdevinfo.mo share/locale/nds/LC_MESSAGES/kcmusb.mo share/locale/ne/LC_MESSAGES/kcm_samba.mo share/locale/ne/LC_MESSAGES/kcmusb.mo share/locale/nl/LC_MESSAGES/kcm_about-distro.mo share/locale/nl/LC_MESSAGES/kcm_energyinfo.mo share/locale/nl/LC_MESSAGES/kcm_nic.mo share/locale/nl/LC_MESSAGES/kcm_samba.mo share/locale/nl/LC_MESSAGES/kcmdevinfo.mo share/locale/nl/LC_MESSAGES/kcmusb.mo share/locale/nl/LC_MESSAGES/kinfocenter.mo share/locale/nn/LC_MESSAGES/kcm_about-distro.mo share/locale/nn/LC_MESSAGES/kcm_energyinfo.mo share/locale/nn/LC_MESSAGES/kcm_nic.mo share/locale/nn/LC_MESSAGES/kcm_samba.mo share/locale/nn/LC_MESSAGES/kcmdevinfo.mo share/locale/nn/LC_MESSAGES/kcmusb.mo share/locale/oc/LC_MESSAGES/kcm_samba.mo share/locale/oc/LC_MESSAGES/kcmusb.mo share/locale/or/LC_MESSAGES/kcm_samba.mo share/locale/or/LC_MESSAGES/kcmusb.mo share/locale/pa/LC_MESSAGES/kcm_about-distro.mo share/locale/pa/LC_MESSAGES/kcm_energyinfo.mo share/locale/pa/LC_MESSAGES/kcm_nic.mo share/locale/pa/LC_MESSAGES/kcm_samba.mo share/locale/pa/LC_MESSAGES/kcmdevinfo.mo share/locale/pa/LC_MESSAGES/kcmusb.mo share/locale/pl/LC_MESSAGES/kcm_about-distro.mo share/locale/pl/LC_MESSAGES/kcm_energyinfo.mo share/locale/pl/LC_MESSAGES/kcm_nic.mo share/locale/pl/LC_MESSAGES/kcm_samba.mo share/locale/pl/LC_MESSAGES/kcmdevinfo.mo share/locale/pl/LC_MESSAGES/kcmusb.mo share/locale/pl/LC_MESSAGES/kinfocenter.mo share/locale/pt/LC_MESSAGES/kcm_about-distro.mo share/locale/pt/LC_MESSAGES/kcm_energyinfo.mo share/locale/pt/LC_MESSAGES/kcm_nic.mo share/locale/pt/LC_MESSAGES/kcm_samba.mo share/locale/pt/LC_MESSAGES/kcmdevinfo.mo share/locale/pt/LC_MESSAGES/kcmusb.mo share/locale/pt_BR/LC_MESSAGES/kcm_about-distro.mo share/locale/pt_BR/LC_MESSAGES/kcm_energyinfo.mo share/locale/pt_BR/LC_MESSAGES/kcm_nic.mo share/locale/pt_BR/LC_MESSAGES/kcm_samba.mo share/locale/pt_BR/LC_MESSAGES/kcmdevinfo.mo share/locale/pt_BR/LC_MESSAGES/kcmusb.mo share/locale/pt_BR/LC_MESSAGES/kinfocenter.mo share/locale/ro/LC_MESSAGES/kcm_about-distro.mo share/locale/ro/LC_MESSAGES/kcm_energyinfo.mo share/locale/ro/LC_MESSAGES/kcm_nic.mo share/locale/ro/LC_MESSAGES/kcm_samba.mo share/locale/ro/LC_MESSAGES/kcmdevinfo.mo share/locale/ro/LC_MESSAGES/kcmusb.mo share/locale/ro/LC_MESSAGES/kinfocenter.mo share/locale/ru/LC_MESSAGES/kcm_about-distro.mo share/locale/ru/LC_MESSAGES/kcm_energyinfo.mo share/locale/ru/LC_MESSAGES/kcm_nic.mo share/locale/ru/LC_MESSAGES/kcm_samba.mo share/locale/ru/LC_MESSAGES/kcmdevinfo.mo share/locale/ru/LC_MESSAGES/kcmusb.mo share/locale/ru/LC_MESSAGES/kinfocenter.mo share/locale/se/LC_MESSAGES/kcm_nic.mo share/locale/se/LC_MESSAGES/kcm_samba.mo share/locale/se/LC_MESSAGES/kcmusb.mo share/locale/si/LC_MESSAGES/kcm_samba.mo share/locale/si/LC_MESSAGES/kcmdevinfo.mo share/locale/si/LC_MESSAGES/kcmusb.mo share/locale/sk/LC_MESSAGES/kcm_about-distro.mo share/locale/sk/LC_MESSAGES/kcm_energyinfo.mo share/locale/sk/LC_MESSAGES/kcm_nic.mo share/locale/sk/LC_MESSAGES/kcm_samba.mo share/locale/sk/LC_MESSAGES/kcmdevinfo.mo share/locale/sk/LC_MESSAGES/kcmusb.mo share/locale/sk/LC_MESSAGES/kinfocenter.mo share/locale/sl/LC_MESSAGES/kcm_about-distro.mo share/locale/sl/LC_MESSAGES/kcm_energyinfo.mo share/locale/sl/LC_MESSAGES/kcm_nic.mo share/locale/sl/LC_MESSAGES/kcm_samba.mo share/locale/sl/LC_MESSAGES/kcmdevinfo.mo share/locale/sl/LC_MESSAGES/kcmusb.mo share/locale/sl/LC_MESSAGES/kinfocenter.mo share/locale/sq/LC_MESSAGES/kcm_nic.mo share/locale/sq/LC_MESSAGES/kcm_samba.mo share/locale/sq/LC_MESSAGES/kcmusb.mo share/locale/sr/LC_MESSAGES/kcm_about-distro.mo share/locale/sr/LC_MESSAGES/kcm_energyinfo.mo share/locale/sr/LC_MESSAGES/kcm_nic.mo share/locale/sr/LC_MESSAGES/kcm_samba.mo share/locale/sr/LC_MESSAGES/kcmdevinfo.mo share/locale/sr/LC_MESSAGES/kcmusb.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_about-distro.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_energyinfo.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_nic.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_samba.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmdevinfo.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmusb.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_about-distro.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_energyinfo.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_nic.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_samba.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmdevinfo.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmusb.mo share/locale/sr@latin/LC_MESSAGES/kcm_about-distro.mo share/locale/sr@latin/LC_MESSAGES/kcm_energyinfo.mo share/locale/sr@latin/LC_MESSAGES/kcm_nic.mo share/locale/sr@latin/LC_MESSAGES/kcm_samba.mo share/locale/sr@latin/LC_MESSAGES/kcmdevinfo.mo share/locale/sr@latin/LC_MESSAGES/kcmusb.mo share/locale/sv/LC_MESSAGES/kcm_about-distro.mo share/locale/sv/LC_MESSAGES/kcm_energyinfo.mo share/locale/sv/LC_MESSAGES/kcm_nic.mo share/locale/sv/LC_MESSAGES/kcm_samba.mo share/locale/sv/LC_MESSAGES/kcmdevinfo.mo share/locale/sv/LC_MESSAGES/kcmusb.mo share/locale/ta/LC_MESSAGES/kcm_about-distro.mo +share/locale/ta/LC_MESSAGES/kcm_energyinfo.mo share/locale/ta/LC_MESSAGES/kcm_samba.mo share/locale/ta/LC_MESSAGES/kcmdevinfo.mo share/locale/ta/LC_MESSAGES/kcmusb.mo share/locale/ta/LC_MESSAGES/kinfocenter.mo share/locale/te/LC_MESSAGES/kcm_samba.mo share/locale/te/LC_MESSAGES/kcmusb.mo share/locale/tg/LC_MESSAGES/kcm_energyinfo.mo share/locale/tg/LC_MESSAGES/kcm_nic.mo share/locale/tg/LC_MESSAGES/kcm_samba.mo share/locale/tg/LC_MESSAGES/kcmdevinfo.mo share/locale/tg/LC_MESSAGES/kcmusb.mo share/locale/th/LC_MESSAGES/kcm_nic.mo share/locale/th/LC_MESSAGES/kcm_samba.mo share/locale/th/LC_MESSAGES/kcmdevinfo.mo share/locale/th/LC_MESSAGES/kcmusb.mo share/locale/tr/LC_MESSAGES/kcm_about-distro.mo share/locale/tr/LC_MESSAGES/kcm_energyinfo.mo share/locale/tr/LC_MESSAGES/kcm_nic.mo share/locale/tr/LC_MESSAGES/kcm_samba.mo share/locale/tr/LC_MESSAGES/kcmdevinfo.mo share/locale/tr/LC_MESSAGES/kcmusb.mo share/locale/tr/LC_MESSAGES/kinfocenter.mo share/locale/ug/LC_MESSAGES/kcm_about-distro.mo share/locale/ug/LC_MESSAGES/kcm_nic.mo share/locale/ug/LC_MESSAGES/kcm_samba.mo share/locale/ug/LC_MESSAGES/kcmdevinfo.mo share/locale/ug/LC_MESSAGES/kcmusb.mo share/locale/uk/LC_MESSAGES/kcm_about-distro.mo share/locale/uk/LC_MESSAGES/kcm_energyinfo.mo share/locale/uk/LC_MESSAGES/kcm_nic.mo share/locale/uk/LC_MESSAGES/kcm_samba.mo share/locale/uk/LC_MESSAGES/kcmdevinfo.mo share/locale/uk/LC_MESSAGES/kcmusb.mo share/locale/uk/LC_MESSAGES/kinfocenter.mo share/locale/uz/LC_MESSAGES/kcm_samba.mo share/locale/uz/LC_MESSAGES/kcmusb.mo share/locale/uz@cyrillic/LC_MESSAGES/kcm_samba.mo share/locale/uz@cyrillic/LC_MESSAGES/kcmusb.mo share/locale/vi/LC_MESSAGES/kcm_about-distro.mo share/locale/vi/LC_MESSAGES/kcm_energyinfo.mo share/locale/vi/LC_MESSAGES/kcm_nic.mo share/locale/vi/LC_MESSAGES/kcm_samba.mo share/locale/vi/LC_MESSAGES/kcmdevinfo.mo share/locale/vi/LC_MESSAGES/kcmusb.mo share/locale/wa/LC_MESSAGES/kcm_nic.mo share/locale/wa/LC_MESSAGES/kcm_samba.mo share/locale/wa/LC_MESSAGES/kcmdevinfo.mo share/locale/wa/LC_MESSAGES/kcmusb.mo share/locale/xh/LC_MESSAGES/kcm_samba.mo share/locale/xh/LC_MESSAGES/kcmusb.mo share/locale/zh_CN/LC_MESSAGES/kcm_about-distro.mo share/locale/zh_CN/LC_MESSAGES/kcm_energyinfo.mo share/locale/zh_CN/LC_MESSAGES/kcm_nic.mo share/locale/zh_CN/LC_MESSAGES/kcm_samba.mo share/locale/zh_CN/LC_MESSAGES/kcmdevinfo.mo share/locale/zh_CN/LC_MESSAGES/kcmusb.mo share/locale/zh_CN/LC_MESSAGES/kinfocenter.mo share/locale/zh_TW/LC_MESSAGES/kcm_about-distro.mo share/locale/zh_TW/LC_MESSAGES/kcm_energyinfo.mo share/locale/zh_TW/LC_MESSAGES/kcm_nic.mo share/locale/zh_TW/LC_MESSAGES/kcm_samba.mo share/locale/zh_TW/LC_MESSAGES/kcmdevinfo.mo share/locale/zh_TW/LC_MESSAGES/kcmusb.mo share/locale/zh_TW/LC_MESSAGES/kinfocenter.mo share/metainfo/org.kde.kinfocenter.appdata.xml diff --git a/sysutils/plasma6-kmenuedit/distinfo b/sysutils/plasma6-kmenuedit/distinfo index ddb50c6aab2a..784234295333 100644 --- a/sysutils/plasma6-kmenuedit/distinfo +++ b/sysutils/plasma6-kmenuedit/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1710959345 -SHA256 (KDE/plasma/6.0.2/kmenuedit-6.0.2.tar.xz) = d0aec4ca74c5a5578ca7b934175a9ec7e21324bbda55cce96f4a0dd5326dc197 -SIZE (KDE/plasma/6.0.2/kmenuedit-6.0.2.tar.xz) = 930584 +TIMESTAMP = 1712731776 +SHA256 (KDE/plasma/6.0.3/kmenuedit-6.0.3.tar.xz) = 7cf8d4e2aa9e2633a9d0f092025c48c0a731a14cf920a6b528d8ffe7b4d6c72c +SIZE (KDE/plasma/6.0.3/kmenuedit-6.0.3.tar.xz) = 930308 diff --git a/sysutils/plasma6-ksystemstats/distinfo b/sysutils/plasma6-ksystemstats/distinfo index b6685806bc19..fe9607b8f85e 100644 --- a/sysutils/plasma6-ksystemstats/distinfo +++ b/sysutils/plasma6-ksystemstats/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1710959346 -SHA256 (KDE/plasma/6.0.2/ksystemstats-6.0.2.tar.xz) = 975ffcfe89101ce55cf1c0c56c666e02e5dc3d1fa9245e315b0d2303034ca840 -SIZE (KDE/plasma/6.0.2/ksystemstats-6.0.2.tar.xz) = 124504 +TIMESTAMP = 1712731777 +SHA256 (KDE/plasma/6.0.3/ksystemstats-6.0.3.tar.xz) = 7fec3a705dd06faff4f98ce94b505fca957e09d826192402f9643f818dcf4445 +SIZE (KDE/plasma/6.0.3/ksystemstats-6.0.3.tar.xz) = 124660 diff --git a/sysutils/plasma6-libksysguard/distinfo b/sysutils/plasma6-libksysguard/distinfo index fe34caf7ae0b..01a98f84725a 100644 --- a/sysutils/plasma6-libksysguard/distinfo +++ b/sysutils/plasma6-libksysguard/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1710959346 -SHA256 (KDE/plasma/6.0.2/libksysguard-6.0.2.tar.xz) = 969faebdf997ca097e94dd877df27ec5bff496714f66789fe62cd4557bec6dd3 -SIZE (KDE/plasma/6.0.2/libksysguard-6.0.2.tar.xz) = 293936 +TIMESTAMP = 1712731777 +SHA256 (KDE/plasma/6.0.3/libksysguard-6.0.3.tar.xz) = 53361387f39293c721af0d4bac48bb008757e642fda9b9af8190a1ca9d9c2b92 +SIZE (KDE/plasma/6.0.3/libksysguard-6.0.3.tar.xz) = 293436 diff --git a/sysutils/plasma6-libksysguard/pkg-plist b/sysutils/plasma6-libksysguard/pkg-plist index 723910e4e67b..3cffce67c7d4 100644 --- a/sysutils/plasma6-libksysguard/pkg-plist +++ b/sysutils/plasma6-libksysguard/pkg-plist @@ -1,565 +1,572 @@ 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/processcore/formatter.h include/ksysguard/processcore/process.h include/ksysguard/processcore/process_attribute.h include/ksysguard/processcore/process_attribute_model.h include/ksysguard/processcore/process_controller.h include/ksysguard/processcore/process_data_model.h include/ksysguard/processcore/process_data_provider.h include/ksysguard/processcore/processcore_export.h include/ksysguard/processcore/processes.h include/ksysguard/processcore/unit.h include/ksysguard/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.ksystemstats1.h include/ksysguard/systemstats/systemstats_export.h lib/cmake/KSysGuard/KSysGuardConfig.cmake lib/cmake/KSysGuard/KSysGuardConfigVersion.cmake lib/cmake/KSysGuard/KSysGuardLibraryTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KSysGuard/KSysGuardLibraryTargets.cmake lib/libKSysGuardFormatter.so lib/libKSysGuardFormatter.so.2 lib/libKSysGuardFormatter.so.%%KDE_PLASMA_VERSION%% lib/libKSysGuardSensorFaces.so lib/libKSysGuardSensorFaces.so.2 lib/libKSysGuardSensorFaces.so.%%KDE_PLASMA_VERSION%% lib/libKSysGuardSensors.so lib/libKSysGuardSensors.so.2 lib/libKSysGuardSensors.so.%%KDE_PLASMA_VERSION%% lib/libKSysGuardSystemStats.so lib/libKSysGuardSystemStats.so.2 lib/libKSysGuardSystemStats.so.%%KDE_PLASMA_VERSION%% lib/libexec/kf6/kauth/ksysguardprocesslist_helper lib/libprocesscore.so lib/libprocesscore.so.10 lib/libprocesscore.so.%%KDE_PLASMA_VERSION%% %%QT_PLUGINDIR%%/kf6/packagestructure/ksysguard_sensorface.so %%QT_PLUGINDIR%%/ksysguard/process/ksysguard_plugin_nvidia.so %%QT_QMLDIR%%/org/kde/ksysguard/faces/Choices.qml %%QT_QMLDIR%%/org/kde/ksysguard/faces/ExtendedLegend.qml %%QT_QMLDIR%%/org/kde/ksysguard/faces/SensorFace.qml %%QT_QMLDIR%%/org/kde/ksysguard/faces/SensorRangeSpinBox.qml %%QT_QMLDIR%%/org/kde/ksysguard/faces/libFacesPlugin.so %%QT_QMLDIR%%/org/kde/ksysguard/faces/qmldir %%QT_QMLDIR%%/org/kde/ksysguard/formatter/libFormatterPlugin.so %%QT_QMLDIR%%/org/kde/ksysguard/formatter/qmldir %%QT_QMLDIR%%/org/kde/ksysguard/process/libProcessPlugin.so %%QT_QMLDIR%%/org/kde/ksysguard/process/qmldir %%QT_QMLDIR%%/org/kde/ksysguard/sensors/libSensorsPlugin.so %%QT_QMLDIR%%/org/kde/ksysguard/sensors/qmldir share/dbus-1/interfaces/org.kde.ksystemstats1.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/sensorfaces/org.kde.ksysguard.barchart/contents/config/main.xml share/ksysguard/sensorfaces/org.kde.ksysguard.barchart/contents/faceproperties share/ksysguard/sensorfaces/org.kde.ksysguard.barchart/contents/ui/BarChart.qml share/ksysguard/sensorfaces/org.kde.ksysguard.barchart/contents/ui/CompactRepresentation.qml share/ksysguard/sensorfaces/org.kde.ksysguard.barchart/contents/ui/Config.qml share/ksysguard/sensorfaces/org.kde.ksysguard.barchart/contents/ui/FullRepresentation.qml share/ksysguard/sensorfaces/org.kde.ksysguard.barchart/metadata.json share/ksysguard/sensorfaces/org.kde.ksysguard.colorgrid/contents/config/main.xml share/ksysguard/sensorfaces/org.kde.ksysguard.colorgrid/contents/faceproperties share/ksysguard/sensorfaces/org.kde.ksysguard.colorgrid/contents/ui/CompactRepresentation.qml share/ksysguard/sensorfaces/org.kde.ksysguard.colorgrid/contents/ui/Config.qml share/ksysguard/sensorfaces/org.kde.ksysguard.colorgrid/contents/ui/FaceGrid.qml share/ksysguard/sensorfaces/org.kde.ksysguard.colorgrid/contents/ui/FullRepresentation.qml share/ksysguard/sensorfaces/org.kde.ksysguard.colorgrid/contents/ui/SensorRect.qml share/ksysguard/sensorfaces/org.kde.ksysguard.colorgrid/metadata.json share/ksysguard/sensorfaces/org.kde.ksysguard.facegrid/contents/config/main.xml share/ksysguard/sensorfaces/org.kde.ksysguard.facegrid/contents/faceproperties share/ksysguard/sensorfaces/org.kde.ksysguard.facegrid/contents/ui/CompactRepresentation.qml share/ksysguard/sensorfaces/org.kde.ksysguard.facegrid/contents/ui/Config.qml share/ksysguard/sensorfaces/org.kde.ksysguard.facegrid/contents/ui/FaceControl.qml share/ksysguard/sensorfaces/org.kde.ksysguard.facegrid/contents/ui/FaceGrid.qml share/ksysguard/sensorfaces/org.kde.ksysguard.facegrid/contents/ui/FullRepresentation.qml share/ksysguard/sensorfaces/org.kde.ksysguard.facegrid/metadata.json share/ksysguard/sensorfaces/org.kde.ksysguard.horizontalbars/contents/config/main.xml 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/Config.qml share/ksysguard/sensorfaces/org.kde.ksysguard.horizontalbars/contents/ui/FullRepresentation.qml share/ksysguard/sensorfaces/org.kde.ksysguard.horizontalbars/metadata.json share/ksysguard/sensorfaces/org.kde.ksysguard.linechart/contents/config/main.xml share/ksysguard/sensorfaces/org.kde.ksysguard.linechart/contents/faceproperties share/ksysguard/sensorfaces/org.kde.ksysguard.linechart/contents/ui/CompactRepresentation.qml share/ksysguard/sensorfaces/org.kde.ksysguard.linechart/contents/ui/Config.qml share/ksysguard/sensorfaces/org.kde.ksysguard.linechart/contents/ui/FullRepresentation.qml share/ksysguard/sensorfaces/org.kde.ksysguard.linechart/contents/ui/LineChart.qml share/ksysguard/sensorfaces/org.kde.ksysguard.linechart/metadata.json share/ksysguard/sensorfaces/org.kde.ksysguard.piechart/contents/config/main.xml share/ksysguard/sensorfaces/org.kde.ksysguard.piechart/contents/faceproperties share/ksysguard/sensorfaces/org.kde.ksysguard.piechart/contents/ui/CompactRepresentation.qml share/ksysguard/sensorfaces/org.kde.ksysguard.piechart/contents/ui/Config.qml share/ksysguard/sensorfaces/org.kde.ksysguard.piechart/contents/ui/FullRepresentation.qml share/ksysguard/sensorfaces/org.kde.ksysguard.piechart/contents/ui/PieChart.qml share/ksysguard/sensorfaces/org.kde.ksysguard.piechart/contents/ui/UsedTotalDisplay.qml share/ksysguard/sensorfaces/org.kde.ksysguard.piechart/metadata.json share/ksysguard/sensorfaces/org.kde.ksysguard.textonly/contents/config/main.xml share/ksysguard/sensorfaces/org.kde.ksysguard.textonly/contents/faceproperties share/ksysguard/sensorfaces/org.kde.ksysguard.textonly/contents/ui/CompactRepresentation.qml share/ksysguard/sensorfaces/org.kde.ksysguard.textonly/contents/ui/Config.qml share/ksysguard/sensorfaces/org.kde.ksysguard.textonly/contents/ui/FullRepresentation.qml share/ksysguard/sensorfaces/org.kde.ksysguard.textonly/contents/ui/GroupedText.qml share/ksysguard/sensorfaces/org.kde.ksysguard.textonly/metadata.json share/locale/ar/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/ar/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/ar/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/ar/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/ar/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/ar/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/ar/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/ar/LC_MESSAGES/ksysguard_sensors.mo share/locale/ar/LC_MESSAGES/processcore.mo share/locale/ast/LC_MESSAGES/KSysGuardFormatter.mo share/locale/ast/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/ast/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/ast/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/ast/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/ast/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/ast/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/ast/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/ast/LC_MESSAGES/ksysguard_sensors.mo share/locale/ast/LC_MESSAGES/processcore.mo share/locale/az/LC_MESSAGES/KSysGuardFormatter.mo share/locale/az/LC_MESSAGES/KSysGuardSensorFaces.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/processcore.mo share/locale/be/LC_MESSAGES/processcore.mo share/locale/bg/LC_MESSAGES/KSysGuardFormatter.mo share/locale/bg/LC_MESSAGES/KSysGuardSensorFaces.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.horizontalbars.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/ksysguard_systemstats.mo share/locale/bg/LC_MESSAGES/processcore.mo share/locale/bn_IN/LC_MESSAGES/processcore.mo share/locale/bs/LC_MESSAGES/processcore.mo share/locale/ca/LC_MESSAGES/KSysGuardFormatter.mo share/locale/ca/LC_MESSAGES/KSysGuardSensorFaces.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.horizontalbars.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/ksysguard_systemstats.mo share/locale/ca/LC_MESSAGES/processcore.mo share/locale/ca@valencia/LC_MESSAGES/KSysGuardFormatter.mo share/locale/ca@valencia/LC_MESSAGES/KSysGuardSensorFaces.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.horizontalbars.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/ksysguard_systemstats.mo share/locale/ca@valencia/LC_MESSAGES/processcore.mo share/locale/cs/LC_MESSAGES/KSysGuardFormatter.mo share/locale/cs/LC_MESSAGES/KSysGuardSensorFaces.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.horizontalbars.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/ksysguard_systemstats.mo share/locale/cs/LC_MESSAGES/processcore.mo share/locale/csb/LC_MESSAGES/processcore.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/processcore.mo share/locale/de/LC_MESSAGES/KSysGuardFormatter.mo share/locale/de/LC_MESSAGES/KSysGuardSensorFaces.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.horizontalbars.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/ksysguard_systemstats.mo share/locale/de/LC_MESSAGES/processcore.mo share/locale/el/LC_MESSAGES/processcore.mo share/locale/en_GB/LC_MESSAGES/KSysGuardFormatter.mo share/locale/en_GB/LC_MESSAGES/KSysGuardSensorFaces.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/processcore.mo share/locale/eo/LC_MESSAGES/KSysGuardFormatter.mo share/locale/eo/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/eo/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/eo/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/eo/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/eo/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/eo/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/eo/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/eo/LC_MESSAGES/ksysguard_sensors.mo share/locale/eo/LC_MESSAGES/processcore.mo share/locale/es/LC_MESSAGES/KSysGuardFormatter.mo share/locale/es/LC_MESSAGES/KSysGuardSensorFaces.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.horizontalbars.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/ksysguard_systemstats.mo share/locale/es/LC_MESSAGES/processcore.mo share/locale/et/LC_MESSAGES/KSysGuardSensorFaces.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/processcore.mo share/locale/eu/LC_MESSAGES/KSysGuardFormatter.mo share/locale/eu/LC_MESSAGES/KSysGuardSensorFaces.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.horizontalbars.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/ksysguard_systemstats.mo share/locale/eu/LC_MESSAGES/processcore.mo share/locale/fa/LC_MESSAGES/processcore.mo share/locale/fi/LC_MESSAGES/KSysGuardFormatter.mo share/locale/fi/LC_MESSAGES/KSysGuardSensorFaces.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.horizontalbars.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/processcore.mo share/locale/fr/LC_MESSAGES/KSysGuardFormatter.mo share/locale/fr/LC_MESSAGES/KSysGuardSensorFaces.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.horizontalbars.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/ksysguard_systemstats.mo share/locale/fr/LC_MESSAGES/processcore.mo share/locale/fy/LC_MESSAGES/processcore.mo share/locale/ga/LC_MESSAGES/processcore.mo share/locale/gl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/gl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/gl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/gl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/gl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/gl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/gl/LC_MESSAGES/ksysguard_sensors.mo share/locale/gl/LC_MESSAGES/processcore.mo share/locale/gu/LC_MESSAGES/processcore.mo share/locale/he/LC_MESSAGES/processcore.mo share/locale/hi/LC_MESSAGES/processcore.mo share/locale/hne/LC_MESSAGES/processcore.mo share/locale/hr/LC_MESSAGES/processcore.mo share/locale/hsb/LC_MESSAGES/processcore.mo share/locale/hu/LC_MESSAGES/KSysGuardFormatter.mo share/locale/hu/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/hu/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/hu/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/hu/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/hu/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.horizontalbars.mo share/locale/hu/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/hu/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/hu/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/hu/LC_MESSAGES/ksysguard_sensors.mo +share/locale/hu/LC_MESSAGES/ksysguard_systemstats.mo share/locale/hu/LC_MESSAGES/processcore.mo share/locale/ia/LC_MESSAGES/KSysGuardFormatter.mo share/locale/ia/LC_MESSAGES/KSysGuardSensorFaces.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.horizontalbars.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/ksysguard_systemstats.mo share/locale/ia/LC_MESSAGES/processcore.mo share/locale/id/LC_MESSAGES/processcore.mo share/locale/is/LC_MESSAGES/processcore.mo share/locale/it/LC_MESSAGES/KSysGuardFormatter.mo share/locale/it/LC_MESSAGES/KSysGuardSensorFaces.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.horizontalbars.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/ksysguard_systemstats.mo share/locale/it/LC_MESSAGES/processcore.mo share/locale/ja/LC_MESSAGES/KSysGuardFormatter.mo share/locale/ja/LC_MESSAGES/KSysGuardSensorFaces.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/processcore.mo share/locale/ka/LC_MESSAGES/KSysGuardFormatter.mo share/locale/ka/LC_MESSAGES/KSysGuardSensorFaces.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.horizontalbars.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/ksysguard_systemstats.mo share/locale/ka/LC_MESSAGES/processcore.mo share/locale/kk/LC_MESSAGES/processcore.mo share/locale/km/LC_MESSAGES/processcore.mo share/locale/ko/LC_MESSAGES/KSysGuardFormatter.mo share/locale/ko/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/ko/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/ko/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/ko/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/ko/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.horizontalbars.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/processcore.mo share/locale/ku/LC_MESSAGES/processcore.mo share/locale/lt/LC_MESSAGES/KSysGuardFormatter.mo share/locale/lt/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/lt/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/lt/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/lt/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/lt/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/lt/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/lt/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/lt/LC_MESSAGES/ksysguard_sensors.mo share/locale/lt/LC_MESSAGES/processcore.mo share/locale/lv/LC_MESSAGES/processcore.mo share/locale/mai/LC_MESSAGES/processcore.mo share/locale/mk/LC_MESSAGES/processcore.mo share/locale/ml/LC_MESSAGES/processcore.mo share/locale/mr/LC_MESSAGES/processcore.mo share/locale/ms/LC_MESSAGES/processcore.mo share/locale/nb/LC_MESSAGES/processcore.mo share/locale/nds/LC_MESSAGES/processcore.mo share/locale/ne/LC_MESSAGES/processcore.mo share/locale/nl/LC_MESSAGES/KSysGuardFormatter.mo share/locale/nl/LC_MESSAGES/KSysGuardSensorFaces.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/processcore.mo share/locale/nn/LC_MESSAGES/KSysGuardFormatter.mo share/locale/nn/LC_MESSAGES/KSysGuardSensorFaces.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/processcore.mo share/locale/oc/LC_MESSAGES/processcore.mo share/locale/or/LC_MESSAGES/processcore.mo share/locale/pa/LC_MESSAGES/processcore.mo share/locale/pl/LC_MESSAGES/KSysGuardFormatter.mo share/locale/pl/LC_MESSAGES/KSysGuardSensorFaces.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.horizontalbars.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/ksysguard_systemstats.mo share/locale/pl/LC_MESSAGES/processcore.mo share/locale/pt/LC_MESSAGES/KSysGuardFormatter.mo share/locale/pt/LC_MESSAGES/KSysGuardSensorFaces.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/processcore.mo share/locale/pt_BR/LC_MESSAGES/KSysGuardSensorFaces.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/processcore.mo share/locale/ro/LC_MESSAGES/KSysGuardSensorFaces.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/processcore.mo share/locale/ru/LC_MESSAGES/KSysGuardFormatter.mo share/locale/ru/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/ru/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/ru/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/ru/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/ru/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.horizontalbars.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_face_org.kde.ksysguard.textonly.mo share/locale/ru/LC_MESSAGES/ksysguard_sensors.mo share/locale/ru/LC_MESSAGES/processcore.mo share/locale/se/LC_MESSAGES/processcore.mo share/locale/si/LC_MESSAGES/processcore.mo share/locale/sk/LC_MESSAGES/KSysGuardFormatter.mo share/locale/sk/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/sk/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/sk/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/sk/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/sk/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/sk/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/sk/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/sk/LC_MESSAGES/ksysguard_sensors.mo share/locale/sk/LC_MESSAGES/processcore.mo share/locale/sl/LC_MESSAGES/KSysGuardFormatter.mo share/locale/sl/LC_MESSAGES/KSysGuardSensorFaces.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.horizontalbars.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/ksysguard_systemstats.mo share/locale/sl/LC_MESSAGES/processcore.mo share/locale/sq/LC_MESSAGES/processcore.mo share/locale/sr/LC_MESSAGES/processcore.mo share/locale/sr@ijekavian/LC_MESSAGES/processcore.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/processcore.mo share/locale/sr@latin/LC_MESSAGES/processcore.mo share/locale/sv/LC_MESSAGES/KSysGuardSensorFaces.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/processcore.mo share/locale/ta/LC_MESSAGES/processcore.mo share/locale/te/LC_MESSAGES/processcore.mo share/locale/tg/LC_MESSAGES/processcore.mo share/locale/th/LC_MESSAGES/processcore.mo share/locale/tr/LC_MESSAGES/KSysGuardFormatter.mo share/locale/tr/LC_MESSAGES/KSysGuardSensorFaces.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.horizontalbars.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/ksysguard_systemstats.mo share/locale/tr/LC_MESSAGES/processcore.mo share/locale/ug/LC_MESSAGES/processcore.mo share/locale/uk/LC_MESSAGES/KSysGuardFormatter.mo share/locale/uk/LC_MESSAGES/KSysGuardSensorFaces.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/processcore.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/wa/LC_MESSAGES/processcore.mo share/locale/zh_CN/LC_MESSAGES/KSysGuardFormatter.mo share/locale/zh_CN/LC_MESSAGES/KSysGuardSensorFaces.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/processcore.mo share/locale/zh_TW/LC_MESSAGES/KSysGuardFormatter.mo share/locale/zh_TW/LC_MESSAGES/KSysGuardSensorFaces.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.colorgrid.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.horizontalbars.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/ksysguard_systemstats.mo share/locale/zh_TW/LC_MESSAGES/processcore.mo share/qlogging-categories6/libksysguard.categories diff --git a/sysutils/plasma6-plasma-disks/distinfo b/sysutils/plasma6-plasma-disks/distinfo index 752d5ca6430c..74ce28728288 100644 --- a/sysutils/plasma6-plasma-disks/distinfo +++ b/sysutils/plasma6-plasma-disks/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1710959347 -SHA256 (KDE/plasma/6.0.2/plasma-disks-6.0.2.tar.xz) = 3d67869bbe46a82b983b1f6dc08626d0d361740446c7000575d735456522f0b6 -SIZE (KDE/plasma/6.0.2/plasma-disks-6.0.2.tar.xz) = 99700 +TIMESTAMP = 1712731778 +SHA256 (KDE/plasma/6.0.3/plasma-disks-6.0.3.tar.xz) = fa6f1cf9084d7fefdadbe0c958577aca7447b1397ec4d41461aeae44af6ac328 +SIZE (KDE/plasma/6.0.3/plasma-disks-6.0.3.tar.xz) = 99828 diff --git a/sysutils/plasma6-plasma-systemmonitor/distinfo b/sysutils/plasma6-plasma-systemmonitor/distinfo index 045cdcecfb71..6ee0e1de501d 100644 --- a/sysutils/plasma6-plasma-systemmonitor/distinfo +++ b/sysutils/plasma6-plasma-systemmonitor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1710959347 -SHA256 (KDE/plasma/6.0.2/plasma-systemmonitor-6.0.2.tar.xz) = bc3573797b99de96e399a29362ebcf6e1bb989ced4a1c419f2322048426c938b -SIZE (KDE/plasma/6.0.2/plasma-systemmonitor-6.0.2.tar.xz) = 181556 +TIMESTAMP = 1712731779 +SHA256 (KDE/plasma/6.0.3/plasma-systemmonitor-6.0.3.tar.xz) = 25c308e98c78072a04456215932b613e8fb9ea71ec520c0500d71e6ab0bc5847 +SIZE (KDE/plasma/6.0.3/plasma-systemmonitor-6.0.3.tar.xz) = 181280 diff --git a/sysutils/plasma6-polkit-kde-agent-1/distinfo b/sysutils/plasma6-polkit-kde-agent-1/distinfo index 8a84274383b1..f866adaa7f8d 100644 --- a/sysutils/plasma6-polkit-kde-agent-1/distinfo +++ b/sysutils/plasma6-polkit-kde-agent-1/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1710959348 -SHA256 (KDE/plasma/6.0.2/polkit-kde-agent-1-6.0.2.tar.xz) = 3e2dec7f7f2f4342c7cf8cdc64972be573509a83564ffc1af7e0d91bf57462bd -SIZE (KDE/plasma/6.0.2/polkit-kde-agent-1-6.0.2.tar.xz) = 56292 +TIMESTAMP = 1712731780 +SHA256 (KDE/plasma/6.0.3/polkit-kde-agent-1-6.0.3.tar.xz) = 3dbc5f47eec7092ccf1f4295a349fe69ae84ce800bea90925a096b638dd0cbfd +SIZE (KDE/plasma/6.0.3/polkit-kde-agent-1-6.0.3.tar.xz) = 56256 diff --git a/sysutils/plasma6-powerdevil/distinfo b/sysutils/plasma6-powerdevil/distinfo index 19711e673b8d..76f39e4d1edf 100644 --- a/sysutils/plasma6-powerdevil/distinfo +++ b/sysutils/plasma6-powerdevil/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1710959349 -SHA256 (KDE/plasma/6.0.2/powerdevil-6.0.2.tar.xz) = 3188d3c8cadddf68955efc96e9e4e1292eb3d167e4da59029adc993e2151f548 -SIZE (KDE/plasma/6.0.2/powerdevil-6.0.2.tar.xz) = 793748 +TIMESTAMP = 1712731780 +SHA256 (KDE/plasma/6.0.3/powerdevil-6.0.3.tar.xz) = 1c9b90e30cb2222e0f5cd2aaf0a8f8908c9e7ec1151ad40dcd7cf7540ea1ed92 +SIZE (KDE/plasma/6.0.3/powerdevil-6.0.3.tar.xz) = 794492 diff --git a/sysutils/plasma6-powerdevil/pkg-plist b/sysutils/plasma6-powerdevil/pkg-plist index d624a2fd1a01..4ddbc240829f 100644 --- a/sysutils/plasma6-powerdevil/pkg-plist +++ b/sysutils/plasma6-powerdevil/pkg-plist @@ -1,277 +1,288 @@ etc/xdg/autostart/powerdevil.desktop lib/libexec/kf6/kauth/backlighthelper lib/libexec/kf6/kauth/chargethresholdhelper lib/libexec/kf6/kauth/discretegpuhelper lib/libexec/org_kde_powerdevil lib/libexec/power_profile_osd_service lib/libpowerdevilconfigcommonprivate.so lib/libpowerdevilconfigcommonprivate.so.6 lib/libpowerdevilconfigcommonprivate.so.%%KDE_PLASMA_VERSION%% lib/libpowerdevilcore.so lib/libpowerdevilcore.so.2 lib/libpowerdevilcore.so.%%KDE_PLASMA_VERSION%% %%QT_PLUGINDIR%%/kf6/powerdevil/powerdevilupowerbackend.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_powerdevilprofilesconfig.so %%QT_PLUGINDIR%%/powerdevil/action/powerdevil_brightnesscontrolaction.so %%QT_PLUGINDIR%%/powerdevil/action/powerdevil_dimdisplayaction.so %%QT_PLUGINDIR%%/powerdevil/action/powerdevil_dpmsaction.so %%QT_PLUGINDIR%%/powerdevil/action/powerdevil_handlebuttoneventsaction.so %%QT_PLUGINDIR%%/powerdevil/action/powerdevil_keyboardbrightnesscontrolaction.so %%QT_PLUGINDIR%%/powerdevil/action/powerdevil_powerprofileaction.so %%QT_PLUGINDIR%%/powerdevil/action/powerdevil_runscriptaction.so %%QT_PLUGINDIR%%/powerdevil/action/powerdevil_suspendsessionaction.so lib/systemd/user/plasma-powerdevil.service lib/systemd/user/plasma-powerprofile-osd.service share/applications/kcm_powerdevilprofilesconfig.desktop share/dbus-1/services/org.kde.powerdevil.powerProfileOsdService.service share/dbus-1/system-services/org.kde.powerdevil.backlighthelper.service share/dbus-1/system-services/org.kde.powerdevil.chargethresholdhelper.service share/dbus-1/system-services/org.kde.powerdevil.discretegpuhelper.service share/dbus-1/system.d/org.kde.powerdevil.backlighthelper.conf share/dbus-1/system.d/org.kde.powerdevil.chargethresholdhelper.conf share/dbus-1/system.d/org.kde.powerdevil.discretegpuhelper.conf share/doc/HTML/ca/kcontrol/powerdevil/index.cache.bz2 share/doc/HTML/ca/kcontrol/powerdevil/index.docbook share/doc/HTML/de/kcontrol/powerdevil/index.cache.bz2 share/doc/HTML/de/kcontrol/powerdevil/index.docbook share/doc/HTML/en/kcontrol/powerdevil/activity.png share/doc/HTML/en/kcontrol/powerdevil/advanced.png share/doc/HTML/en/kcontrol/powerdevil/energy.png share/doc/HTML/en/kcontrol/powerdevil/index.cache.bz2 share/doc/HTML/en/kcontrol/powerdevil/index.docbook share/doc/HTML/es/kcontrol/powerdevil/index.cache.bz2 share/doc/HTML/es/kcontrol/powerdevil/index.docbook share/doc/HTML/et/kcontrol/powerdevil/index.cache.bz2 share/doc/HTML/et/kcontrol/powerdevil/index.docbook share/doc/HTML/fr/kcontrol/powerdevil/index.cache.bz2 share/doc/HTML/fr/kcontrol/powerdevil/index.docbook share/doc/HTML/id/kcontrol/powerdevil/index.cache.bz2 share/doc/HTML/id/kcontrol/powerdevil/index.docbook share/doc/HTML/it/kcontrol/powerdevil/index.cache.bz2 share/doc/HTML/it/kcontrol/powerdevil/index.docbook share/doc/HTML/nl/kcontrol/powerdevil/index.cache.bz2 share/doc/HTML/nl/kcontrol/powerdevil/index.docbook share/doc/HTML/pt/kcontrol/powerdevil/index.cache.bz2 share/doc/HTML/pt/kcontrol/powerdevil/index.docbook share/doc/HTML/pt_BR/kcontrol/powerdevil/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/powerdevil/index.docbook share/doc/HTML/ru/kcontrol/powerdevil/activity.png share/doc/HTML/ru/kcontrol/powerdevil/advanced.png share/doc/HTML/ru/kcontrol/powerdevil/energy.png share/doc/HTML/ru/kcontrol/powerdevil/index.cache.bz2 share/doc/HTML/ru/kcontrol/powerdevil/index.docbook share/doc/HTML/sv/kcontrol/powerdevil/index.cache.bz2 share/doc/HTML/sv/kcontrol/powerdevil/index.docbook share/doc/HTML/tr/kcontrol/powerdevil/index.cache.bz2 share/doc/HTML/tr/kcontrol/powerdevil/index.docbook share/doc/HTML/uk/kcontrol/powerdevil/activity.png share/doc/HTML/uk/kcontrol/powerdevil/advanced.png share/doc/HTML/uk/kcontrol/powerdevil/energy.png share/doc/HTML/uk/kcontrol/powerdevil/index.cache.bz2 share/doc/HTML/uk/kcontrol/powerdevil/index.docbook share/knotifications6/powerdevil.notifyrc share/locale/ar/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo share/locale/ar/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/ar/LC_MESSAGES/powerdevil.mo share/locale/as/LC_MESSAGES/powerdevil.mo share/locale/ast/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo share/locale/ast/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/ast/LC_MESSAGES/powerdevil.mo share/locale/az/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo share/locale/az/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/az/LC_MESSAGES/powerdevil.mo share/locale/be/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo share/locale/be/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/be/LC_MESSAGES/powerdevil.mo share/locale/be@latin/LC_MESSAGES/powerdevil.mo share/locale/bg/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo share/locale/bg/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/bg/LC_MESSAGES/powerdevil.mo +share/locale/bg/LC_MESSAGES/powerdevil_osd.mo share/locale/bn/LC_MESSAGES/powerdevil.mo share/locale/bn_IN/LC_MESSAGES/powerdevil.mo share/locale/bs/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo share/locale/bs/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/bs/LC_MESSAGES/powerdevil.mo share/locale/ca/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo share/locale/ca/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/ca/LC_MESSAGES/powerdevil.mo share/locale/ca/LC_MESSAGES/powerdevil_osd.mo share/locale/ca@valencia/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo share/locale/ca@valencia/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/ca@valencia/LC_MESSAGES/powerdevil.mo +share/locale/ca@valencia/LC_MESSAGES/powerdevil_osd.mo share/locale/cs/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo share/locale/cs/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/cs/LC_MESSAGES/powerdevil.mo share/locale/da/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo share/locale/da/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/da/LC_MESSAGES/powerdevil.mo share/locale/de/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo share/locale/de/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/de/LC_MESSAGES/powerdevil.mo +share/locale/de/LC_MESSAGES/powerdevil_osd.mo share/locale/el/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo share/locale/el/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/el/LC_MESSAGES/powerdevil.mo share/locale/en_GB/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo share/locale/en_GB/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/en_GB/LC_MESSAGES/powerdevil.mo share/locale/eo/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo share/locale/eo/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/eo/LC_MESSAGES/powerdevil.mo share/locale/es/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo share/locale/es/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/es/LC_MESSAGES/powerdevil.mo share/locale/es/LC_MESSAGES/powerdevil_osd.mo share/locale/et/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo share/locale/et/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/et/LC_MESSAGES/powerdevil.mo share/locale/eu/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo share/locale/eu/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/eu/LC_MESSAGES/powerdevil.mo +share/locale/eu/LC_MESSAGES/powerdevil_osd.mo share/locale/fi/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo share/locale/fi/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/fi/LC_MESSAGES/powerdevil.mo share/locale/fr/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo share/locale/fr/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/fr/LC_MESSAGES/powerdevil.mo +share/locale/fr/LC_MESSAGES/powerdevil_osd.mo share/locale/fy/LC_MESSAGES/powerdevil.mo share/locale/ga/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo share/locale/ga/LC_MESSAGES/powerdevil.mo share/locale/gl/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo share/locale/gl/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/gl/LC_MESSAGES/powerdevil.mo share/locale/gu/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo share/locale/gu/LC_MESSAGES/powerdevil.mo share/locale/he/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo share/locale/he/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/he/LC_MESSAGES/powerdevil.mo share/locale/hi/LC_MESSAGES/powerdevil.mo share/locale/hr/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo share/locale/hr/LC_MESSAGES/powerdevil.mo share/locale/hsb/LC_MESSAGES/powerdevil.mo share/locale/hu/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo share/locale/hu/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/hu/LC_MESSAGES/powerdevil.mo share/locale/hu/LC_MESSAGES/powerdevil_osd.mo share/locale/ia/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo share/locale/ia/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/ia/LC_MESSAGES/powerdevil.mo share/locale/ia/LC_MESSAGES/powerdevil_osd.mo share/locale/id/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo share/locale/id/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/id/LC_MESSAGES/powerdevil.mo share/locale/is/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo share/locale/is/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/is/LC_MESSAGES/powerdevil.mo share/locale/it/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo share/locale/it/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/it/LC_MESSAGES/powerdevil.mo +share/locale/it/LC_MESSAGES/powerdevil_osd.mo share/locale/ja/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo share/locale/ja/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/ja/LC_MESSAGES/powerdevil.mo share/locale/ka/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo share/locale/ka/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/ka/LC_MESSAGES/powerdevil.mo +share/locale/ka/LC_MESSAGES/powerdevil_osd.mo share/locale/kk/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo share/locale/kk/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/kk/LC_MESSAGES/powerdevil.mo share/locale/km/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo share/locale/km/LC_MESSAGES/powerdevil.mo share/locale/ko/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo share/locale/ko/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/ko/LC_MESSAGES/powerdevil.mo share/locale/ku/LC_MESSAGES/powerdevil.mo share/locale/lt/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo share/locale/lt/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/lt/LC_MESSAGES/powerdevil.mo share/locale/lv/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo share/locale/lv/LC_MESSAGES/powerdevil.mo share/locale/mai/LC_MESSAGES/powerdevil.mo share/locale/ml/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo share/locale/ml/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/ml/LC_MESSAGES/powerdevil.mo share/locale/mr/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo share/locale/mr/LC_MESSAGES/powerdevil.mo share/locale/ms/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo share/locale/ms/LC_MESSAGES/powerdevil.mo share/locale/nb/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo share/locale/nb/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/nb/LC_MESSAGES/powerdevil.mo share/locale/nds/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo share/locale/nds/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/nds/LC_MESSAGES/powerdevil.mo share/locale/nl/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo share/locale/nl/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/nl/LC_MESSAGES/powerdevil.mo share/locale/nn/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo share/locale/nn/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/nn/LC_MESSAGES/powerdevil.mo share/locale/or/LC_MESSAGES/powerdevil.mo share/locale/pa/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo share/locale/pa/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/pa/LC_MESSAGES/powerdevil.mo share/locale/pl/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo share/locale/pl/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/pl/LC_MESSAGES/powerdevil.mo +share/locale/pl/LC_MESSAGES/powerdevil_osd.mo share/locale/pt/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo share/locale/pt/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/pt/LC_MESSAGES/powerdevil.mo share/locale/pt_BR/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo share/locale/pt_BR/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/pt_BR/LC_MESSAGES/powerdevil.mo +share/locale/pt_BR/LC_MESSAGES/powerdevil_osd.mo share/locale/ro/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo share/locale/ro/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/ro/LC_MESSAGES/powerdevil.mo share/locale/ru/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo share/locale/ru/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/ru/LC_MESSAGES/powerdevil.mo share/locale/si/LC_MESSAGES/powerdevil.mo share/locale/sk/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo share/locale/sk/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/sk/LC_MESSAGES/powerdevil.mo share/locale/sl/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo share/locale/sl/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/sl/LC_MESSAGES/powerdevil.mo +share/locale/sl/LC_MESSAGES/powerdevil_osd.mo share/locale/sq/LC_MESSAGES/powerdevil.mo share/locale/sr/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo share/locale/sr/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/sr/LC_MESSAGES/powerdevil.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo share/locale/sr@ijekavian/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/sr@ijekavian/LC_MESSAGES/powerdevil.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/powerdevil.mo share/locale/sr@latin/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo share/locale/sr@latin/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/sr@latin/LC_MESSAGES/powerdevil.mo share/locale/sv/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo share/locale/sv/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/sv/LC_MESSAGES/powerdevil.mo share/locale/ta/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo share/locale/ta/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/ta/LC_MESSAGES/powerdevil.mo share/locale/te/LC_MESSAGES/powerdevil.mo share/locale/tg/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo share/locale/tg/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/tg/LC_MESSAGES/powerdevil.mo share/locale/th/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo share/locale/th/LC_MESSAGES/powerdevil.mo share/locale/tr/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo share/locale/tr/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/tr/LC_MESSAGES/powerdevil.mo share/locale/tr/LC_MESSAGES/powerdevil_osd.mo share/locale/ug/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo share/locale/ug/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/ug/LC_MESSAGES/powerdevil.mo share/locale/uk/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo share/locale/uk/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/uk/LC_MESSAGES/powerdevil.mo share/locale/wa/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo share/locale/wa/LC_MESSAGES/powerdevil.mo share/locale/zh_CN/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo share/locale/zh_CN/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/zh_CN/LC_MESSAGES/powerdevil.mo share/locale/zh_TW/LC_MESSAGES/kcm_powerdevilprofilesconfig.mo share/locale/zh_TW/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/zh_TW/LC_MESSAGES/powerdevil.mo +share/locale/zh_TW/LC_MESSAGES/powerdevil_osd.mo share/qlogging-categories6/powerdevil.categories diff --git a/sysutils/plasma6-systemsettings/distinfo b/sysutils/plasma6-systemsettings/distinfo index 5b7366c06992..d39c8f2c038b 100644 --- a/sysutils/plasma6-systemsettings/distinfo +++ b/sysutils/plasma6-systemsettings/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1710959349 -SHA256 (KDE/plasma/6.0.2/systemsettings-6.0.2.tar.xz) = de5950beef63444984fa61e3874c6013a4ffeebfce6d819cf7bab7c82402b606 -SIZE (KDE/plasma/6.0.2/systemsettings-6.0.2.tar.xz) = 219584 +TIMESTAMP = 1712731781 +SHA256 (KDE/plasma/6.0.3/systemsettings-6.0.3.tar.xz) = 1c74d8928bbd0cbd58f01fd5eda9db8cd325e17e63b7436c0f19d3208f51c5ac +SIZE (KDE/plasma/6.0.3/systemsettings-6.0.3.tar.xz) = 218568 diff --git a/www/plasma6-plasma-browser-integration/distinfo b/www/plasma6-plasma-browser-integration/distinfo index 6ce9b977b9cb..f271e512df79 100644 --- a/www/plasma6-plasma-browser-integration/distinfo +++ b/www/plasma6-plasma-browser-integration/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1710959350 -SHA256 (KDE/plasma/6.0.2/plasma-browser-integration-6.0.2.tar.xz) = 6c0efa5a5d5c4faef8db3129d345752a6affe5b4a1c1109e73f9802a54dfbf32 -SIZE (KDE/plasma/6.0.2/plasma-browser-integration-6.0.2.tar.xz) = 219584 +TIMESTAMP = 1712731782 +SHA256 (KDE/plasma/6.0.3/plasma-browser-integration-6.0.3.tar.xz) = 86a72e3a48107faa08296751f56d520564525c40356cf4a5af126a2548ddc5f1 +SIZE (KDE/plasma/6.0.3/plasma-browser-integration-6.0.3.tar.xz) = 219412 diff --git a/x11-themes/plasma6-breeze-gtk/distinfo b/x11-themes/plasma6-breeze-gtk/distinfo index c5c8c3033e38..f10066ce4220 100644 --- a/x11-themes/plasma6-breeze-gtk/distinfo +++ b/x11-themes/plasma6-breeze-gtk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1710959352 -SHA256 (KDE/plasma/6.0.2/breeze-gtk-6.0.2.tar.xz) = a612990937e0c0c6ce386c20f33bf7b6a59c321b6b6f9d2a705163ffdeae7dda -SIZE (KDE/plasma/6.0.2/breeze-gtk-6.0.2.tar.xz) = 40668 +TIMESTAMP = 1712731793 +SHA256 (KDE/plasma/6.0.3/breeze-gtk-6.0.3.tar.xz) = b7c130dc6b2743aad3908d54b0baf2a7b7fe717d5265f7605041eb37d410ea36 +SIZE (KDE/plasma/6.0.3/breeze-gtk-6.0.3.tar.xz) = 40708 diff --git a/x11-themes/plasma6-breeze/distinfo b/x11-themes/plasma6-breeze/distinfo index 535f13deb434..1afa3612ab3a 100644 --- a/x11-themes/plasma6-breeze/distinfo +++ b/x11-themes/plasma6-breeze/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1710959351 -SHA256 (KDE/plasma/6.0.2/breeze-6.0.2.tar.xz) = 4c67f5a59a9a37c96754552c7a5076d29ea7864ac50fa9766719764ed94fb4cc -SIZE (KDE/plasma/6.0.2/breeze-6.0.2.tar.xz) = 58033280 +TIMESTAMP = 1712731792 +SHA256 (KDE/plasma/6.0.3/breeze-6.0.3.tar.xz) = 597c46097040ae79a4b47086c5cca121bf2b4479bcd0993026e9ccd260b4b1f9 +SIZE (KDE/plasma/6.0.3/breeze-6.0.3.tar.xz) = 58037516 diff --git a/x11-themes/plasma6-kde-gtk-config/distinfo b/x11-themes/plasma6-kde-gtk-config/distinfo index c53f89854412..198d7b28a8d7 100644 --- a/x11-themes/plasma6-kde-gtk-config/distinfo +++ b/x11-themes/plasma6-kde-gtk-config/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1710959353 -SHA256 (KDE/plasma/6.0.2/kde-gtk-config-6.0.2.tar.xz) = 884570500ced842f1e1c545edf6fdd5036673f83a7188644f8b9f761e2682f7e -SIZE (KDE/plasma/6.0.2/kde-gtk-config-6.0.2.tar.xz) = 78244 +TIMESTAMP = 1712731793 +SHA256 (KDE/plasma/6.0.3/kde-gtk-config-6.0.3.tar.xz) = 36d4cf4fe4acdec5d917c8ff3ff15748e6fcb356dcd3a4488c9e087e79b564c2 +SIZE (KDE/plasma/6.0.3/kde-gtk-config-6.0.3.tar.xz) = 78184 diff --git a/x11-themes/plasma6-oxygen/distinfo b/x11-themes/plasma6-oxygen/distinfo index 6cced91477a4..92bdb2dfe645 100644 --- a/x11-themes/plasma6-oxygen/distinfo +++ b/x11-themes/plasma6-oxygen/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1710959353 -SHA256 (KDE/plasma/6.0.2/oxygen-6.0.2.tar.xz) = 661aa9dc10cd1b33ce8f56a02450f461485384ac9ec7dbdac7c7c684f92220e3 -SIZE (KDE/plasma/6.0.2/oxygen-6.0.2.tar.xz) = 2791156 +TIMESTAMP = 1712731794 +SHA256 (KDE/plasma/6.0.3/oxygen-6.0.3.tar.xz) = 737d5dba2d8a6229d7c3d654b5900aa3c0a2a3a8e36cb5c87d8ed7a738233c84 +SIZE (KDE/plasma/6.0.3/oxygen-6.0.3.tar.xz) = 2796708 diff --git a/x11-themes/plasma6-plasma-workspace-wallpapers/distinfo b/x11-themes/plasma6-plasma-workspace-wallpapers/distinfo index 61fff12cacae..14efa3bf271f 100644 --- a/x11-themes/plasma6-plasma-workspace-wallpapers/distinfo +++ b/x11-themes/plasma6-plasma-workspace-wallpapers/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1710959358 -SHA256 (KDE/plasma/6.0.2/plasma-workspace-wallpapers-6.0.2.tar.xz) = d330ef6f17a896dbddfe387b4121aec057372c029c3cc1d2d2248842bbb4bf00 -SIZE (KDE/plasma/6.0.2/plasma-workspace-wallpapers-6.0.2.tar.xz) = 110084016 +TIMESTAMP = 1712731796 +SHA256 (KDE/plasma/6.0.3/plasma-workspace-wallpapers-6.0.3.tar.xz) = 66ecbd25db634aeb52be05fc3dcc4a71b1cffdee12ab645147ae5f2ec4237bdb +SIZE (KDE/plasma/6.0.3/plasma-workspace-wallpapers-6.0.3.tar.xz) = 110082120 diff --git a/x11-themes/plasma6-qqc2-breeze-style/distinfo b/x11-themes/plasma6-qqc2-breeze-style/distinfo index 86f738975b19..d32d1c362ed8 100644 --- a/x11-themes/plasma6-qqc2-breeze-style/distinfo +++ b/x11-themes/plasma6-qqc2-breeze-style/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1710959359 -SHA256 (KDE/plasma/6.0.2/qqc2-breeze-style-6.0.2.tar.xz) = 904e6398aee2ad31291c027ab096a197c942eb4a73eef7f4de4282cbca6b325d -SIZE (KDE/plasma/6.0.2/qqc2-breeze-style-6.0.2.tar.xz) = 66152 +TIMESTAMP = 1712731797 +SHA256 (KDE/plasma/6.0.3/qqc2-breeze-style-6.0.3.tar.xz) = 401844f87e1be48e15f167af641ab311a20376c48a9b3ee21c76ee25e8a3dbd9 +SIZE (KDE/plasma/6.0.3/qqc2-breeze-style-6.0.3.tar.xz) = 65912 diff --git a/x11-toolkits/plasma6-kdeplasma-addons/distinfo b/x11-toolkits/plasma6-kdeplasma-addons/distinfo index c767e2e140b0..4a6102b7e982 100644 --- a/x11-toolkits/plasma6-kdeplasma-addons/distinfo +++ b/x11-toolkits/plasma6-kdeplasma-addons/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1710959359 -SHA256 (KDE/plasma/6.0.2/kdeplasma-addons-6.0.2.tar.xz) = 5a5e0bfcfb40d57a5ebb9fed5d238c642d18e7ed2d6ddbb1240b61c598bb0200 -SIZE (KDE/plasma/6.0.2/kdeplasma-addons-6.0.2.tar.xz) = 866104 +TIMESTAMP = 1712731798 +SHA256 (KDE/plasma/6.0.3/kdeplasma-addons-6.0.3.tar.xz) = 2dec1e005e2e87f3c8d383a0678b1bf98d488507d3de94a7df8cd93e3bb967c1 +SIZE (KDE/plasma/6.0.3/kdeplasma-addons-6.0.3.tar.xz) = 862500 diff --git a/x11-toolkits/plasma6-kdeplasma-addons/pkg-plist b/x11-toolkits/plasma6-kdeplasma-addons/pkg-plist index 94772f424399..60ccc5f77aff 100644 --- a/x11-toolkits/plasma6-kdeplasma-addons/pkg-plist +++ b/x11-toolkits/plasma6-kdeplasma-addons/pkg-plist @@ -1,2036 +1,2037 @@ include/plasma/potdprovider/plasma_potd_export.h include/plasma/potdprovider/potdprovider.h lib/cmake/PlasmaPotdProvider/PlasmaPotdProviderConfig.cmake lib/cmake/PlasmaPotdProvider/PlasmaPotdProviderConfigVersion.cmake lib/cmake/PlasmaPotdProvider/PlasmaPotdProviderTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/PlasmaPotdProvider/PlasmaPotdProviderTargets.cmake lib/libplasmapotdprovidercore.so lib/libplasmapotdprovidercore.so.2 lib/libplasmapotdprovidercore.so.2.0.0 %%QT_PLUGINDIR%%/kf6/krunner/kcms/kcm_krunner_charrunner.so %%QT_PLUGINDIR%%/kf6/krunner/kcms/kcm_krunner_dictionary.so %%QT_PLUGINDIR%%/kf6/krunner/kcms/kcm_krunner_spellcheck.so %%QT_PLUGINDIR%%/kf6/krunner/krunner_charrunner.so %%QT_PLUGINDIR%%/kf6/krunner/krunner_dictionary.so %%QT_PLUGINDIR%%/kf6/krunner/krunner_katesessions.so %%QT_PLUGINDIR%%/kf6/krunner/krunner_konsoleprofiles.so %%QT_PLUGINDIR%%/kf6/krunner/krunner_spellcheck.so %%QT_PLUGINDIR%%/kf6/krunner/org.kde.datetime.so %%QT_PLUGINDIR%%/kf6/krunner/unitconverter.so %%QT_PLUGINDIR%%/kf6/packagestructure/plasma_comic.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_cube_config.so %%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.comic.so %%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.grouping.so %%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.private.grouping.so %%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.weather.so %%QT_PLUGINDIR%%/plasmacalendarplugins/alternatecalendar.so %%QT_PLUGINDIR%%/plasmacalendarplugins/alternatecalendar/AlternateCalendarConfig.qml %%QT_PLUGINDIR%%/plasmacalendarplugins/astronomicalevents.so %%QT_PLUGINDIR%%/plasmacalendarplugins/astronomicalevents/AstronomicalEventsConfig.qml %%QT_PLUGINDIR%%/potd/plasma_potd_apodprovider.so %%QT_PLUGINDIR%%/potd/plasma_potd_bingprovider.so %%QT_PLUGINDIR%%/potd/plasma_potd_epodprovider.so %%QT_PLUGINDIR%%/potd/plasma_potd_flickrprovider.so %%QT_PLUGINDIR%%/potd/plasma_potd_natgeoprovider.so %%QT_PLUGINDIR%%/potd/plasma_potd_noaaprovider.so %%QT_PLUGINDIR%%/potd/plasma_potd_simonstalenhagprovider.so %%QT_PLUGINDIR%%/potd/plasma_potd_wcpotdprovider.so %%QT_QMLDIR%%/org/kde/plasma/private/colorpicker/colorpickerplugin.qmltypes %%QT_QMLDIR%%/org/kde/plasma/private/colorpicker/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/plasma/private/colorpicker/libcolorpickerplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/colorpicker/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/dict/dictplugin.qmltypes %%QT_QMLDIR%%/org/kde/plasma/private/dict/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/plasma/private/dict/libdictplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/dict/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/diskquota/diskquotaplugin.qmltypes %%QT_QMLDIR%%/org/kde/plasma/private/diskquota/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/plasma/private/diskquota/libdiskquotaplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/diskquota/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/fifteenpuzzle/fifteenpuzzleplugin.qmltypes %%QT_QMLDIR%%/org/kde/plasma/private/fifteenpuzzle/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/plasma/private/fifteenpuzzle/libfifteenpuzzleplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/fifteenpuzzle/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/mediaframe/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/plasma/private/mediaframe/libmediaframeplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/mediaframe/mediaframeplugin.qmltypes %%QT_QMLDIR%%/org/kde/plasma/private/mediaframe/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/notes/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/plasma/private/notes/libnotesplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/notes/notesplugin.qmltypes %%QT_QMLDIR%%/org/kde/plasma/private/notes/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/profiles/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/plasma/private/profiles/libprofiles_qml_plugin.so %%QT_QMLDIR%%/org/kde/plasma/private/profiles/profiles_qml_plugin.qmltypes %%QT_QMLDIR%%/org/kde/plasma/private/profiles/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/quicklaunch/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/plasma/private/quicklaunch/libquicklaunchplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/quicklaunch/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/quicklaunch/quicklaunchplugin.qmltypes %%QT_QMLDIR%%/org/kde/plasma/private/timer/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/plasma/private/timer/libtimerplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/timer/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/timer/timerplugin.qmltypes %%QT_QMLDIR%%/org/kde/plasma/private/weather/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/plasma/private/weather/libweatherplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/weather/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/weather/weatherplugin.qmltypes %%QT_QMLDIR%%/org/kde/plasma/wallpapers/potd/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/plasma/wallpapers/potd/libplasma_wallpaper_potdplugin.so %%QT_QMLDIR%%/org/kde/plasma/wallpapers/potd/plasma_wallpaper_potdplugin.qmltypes %%QT_QMLDIR%%/org/kde/plasma/wallpapers/potd/qmldir %%QT_QMLDIR%%/org/kde/plasmacalendar/alternatecalendarconfig/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/plasmacalendar/alternatecalendarconfig/libplasmacalendaralternatecalendarconfig.so %%QT_QMLDIR%%/org/kde/plasmacalendar/alternatecalendarconfig/plasmacalendaralternatecalendarconfig.qmltypes %%QT_QMLDIR%%/org/kde/plasmacalendar/alternatecalendarconfig/qmldir %%QT_QMLDIR%%/org/kde/plasmacalendar/astronomicaleventsconfig/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/plasmacalendar/astronomicaleventsconfig/libplasmacalendarastronomicaleventsconfig.so %%QT_QMLDIR%%/org/kde/plasmacalendar/astronomicaleventsconfig/plasmacalendarastronomicaleventsconfig.qmltypes %%QT_QMLDIR%%/org/kde/plasmacalendar/astronomicaleventsconfig/qmldir share/icons/hicolor/scalable/apps/accessories-dictionary.svgz share/icons/hicolor/scalable/apps/fifteenpuzzle.svgz share/kdevappwizard/templates/plasmapotdprovider.tar.bz2 share/knotifications6/plasma_applet_timer.notifyrc share/knsrcfiles/comic.knsrc share/kwin/effects/cube/contents/config/main.xml share/kwin/effects/cube/contents/ui/Cube.qml share/kwin/effects/cube/contents/ui/CubeCameraController.qml share/kwin/effects/cube/contents/ui/CubeFace.qml share/kwin/effects/cube/contents/ui/DesktopView.qml share/kwin/effects/cube/contents/ui/ScreenView.qml share/kwin/effects/cube/contents/ui/constants.js share/kwin/effects/cube/contents/ui/main.qml share/kwin/effects/cube/metadata.json share/kwin/tabbox/big_icons/contents/ui/main.qml share/kwin/tabbox/big_icons/metadata.json share/kwin/tabbox/compact/contents/ui/main.qml share/kwin/tabbox/compact/metadata.json share/kwin/tabbox/coverswitch/contents/ui/main.qml share/kwin/tabbox/coverswitch/metadata.json share/kwin/tabbox/flipswitch/contents/ui/main.qml share/kwin/tabbox/flipswitch/metadata.json share/kwin/tabbox/sidebar/contents/ui/main.qml share/kwin/tabbox/sidebar/metadata.json share/locale/ar/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/ar/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/ar/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/ar/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/ar/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/ar/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/ar/LC_MESSAGES/plasma_runner_datetime.mo share/locale/ar/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/ar/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/ar/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/ar/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/ar/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/ast/LC_MESSAGES/kwin_effect_cube.mo share/locale/ast/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/ast/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/ast/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/ast/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/ast/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/ast/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/ast/LC_MESSAGES/plasma_runner_datetime.mo share/locale/ast/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/ast/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/ast/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/ast/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/ast/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/az/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/az/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/az/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/az/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/az/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/az/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/az/LC_MESSAGES/plasma_runner_datetime.mo share/locale/az/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/az/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/az/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/az/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/az/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/be/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/be/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/bg/LC_MESSAGES/kwin_effect_cube.mo share/locale/bg/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/bg/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/bg/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/bg/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/bg/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/bg/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/bg/LC_MESSAGES/plasma_runner_datetime.mo share/locale/bg/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/bg/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/bg/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/bg/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/bg/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/bs/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/bs/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/bs/LC_MESSAGES/plasma_runner_datetime.mo share/locale/bs/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/bs/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/bs/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/ca/LC_MESSAGES/kwin_effect_cube.mo share/locale/ca/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/ca/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/ca/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/ca/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/ca/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/ca/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/ca/LC_MESSAGES/plasma_runner_datetime.mo share/locale/ca/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/ca/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/ca/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/ca/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/ca/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/ca@valencia/LC_MESSAGES/kwin_effect_cube.mo share/locale/ca@valencia/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/ca@valencia/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/ca@valencia/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/ca@valencia/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_datetime.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/ca@valencia/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/cs/LC_MESSAGES/kwin_effect_cube.mo share/locale/cs/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/cs/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/cs/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/cs/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/cs/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/cs/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/cs/LC_MESSAGES/plasma_runner_datetime.mo share/locale/cs/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/cs/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/cs/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/cs/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/cs/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/csb/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/csb/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/csb/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/csb/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/da/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/da/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/da/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/da/LC_MESSAGES/plasma_runner_datetime.mo share/locale/da/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/da/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/da/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/da/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/da/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/de/LC_MESSAGES/kwin_effect_cube.mo share/locale/de/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/de/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/de/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/de/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/de/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/de/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/de/LC_MESSAGES/plasma_runner_datetime.mo share/locale/de/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/de/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/de/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/de/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/de/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/el/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/el/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/el/LC_MESSAGES/plasma_runner_datetime.mo share/locale/el/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/el/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/el/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/en_GB/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/en_GB/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/en_GB/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/en_GB/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_datetime.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/en_GB/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/eo/LC_MESSAGES/kwin_effect_cube.mo share/locale/eo/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/eo/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/eo/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/eo/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/eo/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/eo/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/eo/LC_MESSAGES/plasma_runner_datetime.mo share/locale/eo/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/eo/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/eo/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/eo/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/eo/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/es/LC_MESSAGES/kwin_effect_cube.mo share/locale/es/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/es/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/es/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/es/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/es/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/es/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/es/LC_MESSAGES/plasma_runner_datetime.mo share/locale/es/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/es/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/es/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/es/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/es/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/et/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/et/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/et/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/et/LC_MESSAGES/plasma_runner_datetime.mo share/locale/et/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/et/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/et/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/et/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/et/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/eu/LC_MESSAGES/kwin_effect_cube.mo share/locale/eu/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/eu/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/eu/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/eu/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/eu/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/eu/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/eu/LC_MESSAGES/plasma_runner_datetime.mo share/locale/eu/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/eu/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/eu/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/eu/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/eu/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/fi/LC_MESSAGES/kwin_effect_cube.mo share/locale/fi/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/fi/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/fi/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/fi/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/fi/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/fi/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/fi/LC_MESSAGES/plasma_runner_datetime.mo share/locale/fi/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/fi/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/fi/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/fi/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/fi/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/fr/LC_MESSAGES/kwin_effect_cube.mo share/locale/fr/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/fr/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/fr/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/fr/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/fr/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/fr/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/fr/LC_MESSAGES/plasma_runner_datetime.mo share/locale/fr/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/fr/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/fr/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/fr/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/fr/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/ga/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/ga/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/ga/LC_MESSAGES/plasma_runner_datetime.mo share/locale/ga/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/ga/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/ga/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/gl/LC_MESSAGES/kwin_effect_cube.mo share/locale/gl/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/gl/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/gl/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/gl/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/gl/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/gl/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/gl/LC_MESSAGES/plasma_runner_datetime.mo share/locale/gl/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/gl/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/gl/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/gl/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/gl/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/he/LC_MESSAGES/kwin_effect_cube.mo share/locale/he/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/he/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/he/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/he/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/he/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/he/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/he/LC_MESSAGES/plasma_runner_datetime.mo share/locale/he/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/he/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/he/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/he/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/he/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/hi/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/hi/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/hr/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/hr/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/hr/LC_MESSAGES/plasma_runner_datetime.mo share/locale/hr/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/hr/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/hu/LC_MESSAGES/kwin_effect_cube.mo share/locale/hu/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/hu/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/hu/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/hu/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/hu/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/hu/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/hu/LC_MESSAGES/plasma_runner_datetime.mo share/locale/hu/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/hu/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/hu/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/hu/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/hu/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/ia/LC_MESSAGES/kwin_effect_cube.mo share/locale/ia/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/ia/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/ia/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/ia/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/ia/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/ia/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/ia/LC_MESSAGES/plasma_runner_datetime.mo share/locale/ia/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/ia/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/ia/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/ia/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/ia/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/id/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/id/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/id/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/id/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/id/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/id/LC_MESSAGES/plasma_runner_datetime.mo share/locale/id/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/id/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/id/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/id/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/id/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/is/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/is/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/is/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/is/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/is/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/is/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/is/LC_MESSAGES/plasma_runner_datetime.mo share/locale/is/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/is/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/is/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/is/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/is/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/it/LC_MESSAGES/kwin_effect_cube.mo share/locale/it/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/it/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/it/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/it/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/it/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/it/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/it/LC_MESSAGES/plasma_runner_datetime.mo share/locale/it/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/it/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/it/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/it/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/it/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/ja/LC_MESSAGES/kwin_effect_cube.mo share/locale/ja/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/ja/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/ja/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/ja/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/ja/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/ja/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/ja/LC_MESSAGES/plasma_runner_datetime.mo share/locale/ja/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/ja/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/ja/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/ja/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/ja/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/ka/LC_MESSAGES/kwin_effect_cube.mo share/locale/ka/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/ka/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/ka/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/ka/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/ka/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/ka/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/ka/LC_MESSAGES/plasma_runner_datetime.mo share/locale/ka/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/ka/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/ka/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/ka/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/ka/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/kk/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/kk/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/kk/LC_MESSAGES/plasma_runner_datetime.mo share/locale/kk/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/kk/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/kk/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/km/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/km/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/km/LC_MESSAGES/plasma_runner_datetime.mo share/locale/km/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/km/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/km/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/ko/LC_MESSAGES/kwin_effect_cube.mo share/locale/ko/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/ko/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/ko/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/ko/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/ko/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/ko/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/ko/LC_MESSAGES/plasma_runner_datetime.mo share/locale/ko/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/ko/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/ko/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/ko/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/ko/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/ku/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/ku/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/ku/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/lt/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/lt/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/lt/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/lt/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/lt/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/lt/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/lt/LC_MESSAGES/plasma_runner_datetime.mo share/locale/lt/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/lt/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/lt/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/lt/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/lt/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/lv/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/lv/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/lv/LC_MESSAGES/plasma_runner_datetime.mo share/locale/lv/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/lv/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/ml/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/ml/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/ml/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/ml/LC_MESSAGES/plasma_runner_datetime.mo share/locale/ml/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/ml/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/ml/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/ml/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/mr/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/mr/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/mr/LC_MESSAGES/plasma_runner_datetime.mo share/locale/mr/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/mr/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/mr/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/my/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/nb/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/nb/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/nb/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/nb/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/nb/LC_MESSAGES/plasma_runner_datetime.mo share/locale/nb/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/nb/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/nb/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/nb/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/nds/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/nds/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/nds/LC_MESSAGES/plasma_runner_datetime.mo share/locale/nds/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/nds/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/nds/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/nl/LC_MESSAGES/kwin_effect_cube.mo share/locale/nl/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/nl/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/nl/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/nl/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/nl/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/nl/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/nl/LC_MESSAGES/plasma_runner_datetime.mo share/locale/nl/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/nl/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/nl/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/nl/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/nl/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo +share/locale/nn/LC_MESSAGES/kwin_effect_cube.mo share/locale/nn/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/nn/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/nn/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/nn/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/nn/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/nn/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/nn/LC_MESSAGES/plasma_runner_datetime.mo share/locale/nn/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/nn/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/nn/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/nn/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/nn/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/pa/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/pa/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/pa/LC_MESSAGES/plasma_runner_datetime.mo share/locale/pa/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/pa/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/pa/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/pl/LC_MESSAGES/kwin_effect_cube.mo share/locale/pl/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/pl/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/pl/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/pl/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/pl/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/pl/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/pl/LC_MESSAGES/plasma_runner_datetime.mo share/locale/pl/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/pl/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/pl/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/pl/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/pl/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/pt/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/pt/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/pt/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/pt/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/pt/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/pt/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/pt/LC_MESSAGES/plasma_runner_datetime.mo share/locale/pt/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/pt/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/pt/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/pt/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/pt/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/pt_BR/LC_MESSAGES/kwin_effect_cube.mo share/locale/pt_BR/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/pt_BR/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/pt_BR/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/pt_BR/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_datetime.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/pt_BR/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/ro/LC_MESSAGES/kwin_effect_cube.mo share/locale/ro/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/ro/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/ro/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/ro/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/ro/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/ro/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/ro/LC_MESSAGES/plasma_runner_datetime.mo share/locale/ro/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/ro/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/ro/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/ro/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/ro/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/ru/LC_MESSAGES/kwin_effect_cube.mo share/locale/ru/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/ru/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/ru/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/ru/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/ru/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/ru/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/ru/LC_MESSAGES/plasma_runner_datetime.mo share/locale/ru/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/ru/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/ru/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/ru/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/ru/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/sk/LC_MESSAGES/kwin_effect_cube.mo share/locale/sk/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/sk/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/sk/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/sk/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/sk/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/sk/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/sk/LC_MESSAGES/plasma_runner_datetime.mo share/locale/sk/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/sk/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/sk/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/sk/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/sk/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/sl/LC_MESSAGES/kwin_effect_cube.mo share/locale/sl/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/sl/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/sl/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/sl/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/sl/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/sl/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/sl/LC_MESSAGES/plasma_runner_datetime.mo share/locale/sl/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/sl/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/sl/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/sl/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/sl/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/sq/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/sq/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/sq/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/sr/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/sr/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/sr/LC_MESSAGES/plasma_runner_datetime.mo share/locale/sr/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/sr/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/sr/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_datetime.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_datetime.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_datetime.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/sv/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/sv/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/sv/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/sv/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/sv/LC_MESSAGES/plasma_runner_datetime.mo share/locale/sv/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/sv/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/sv/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/sv/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/sv/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/ta/LC_MESSAGES/kwin_effect_cube.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/ta/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/ta/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/ta/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/ta/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/ta/LC_MESSAGES/plasma_runner_datetime.mo share/locale/ta/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/ta/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/ta/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/tg/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/tg/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/tg/LC_MESSAGES/plasma_runner_datetime.mo share/locale/tg/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/tg/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/tg/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/tg/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/th/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/th/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/th/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/tr/LC_MESSAGES/kwin_effect_cube.mo share/locale/tr/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/tr/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/tr/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/tr/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/tr/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/tr/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/tr/LC_MESSAGES/plasma_runner_datetime.mo share/locale/tr/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/tr/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/tr/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/tr/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/tr/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/ug/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/ug/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/ug/LC_MESSAGES/plasma_runner_datetime.mo share/locale/ug/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/ug/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/ug/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/uk/LC_MESSAGES/kwin_effect_cube.mo share/locale/uk/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/uk/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/uk/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/uk/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/uk/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/uk/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/uk/LC_MESSAGES/plasma_runner_datetime.mo share/locale/uk/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/uk/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/uk/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/uk/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/uk/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/vi/LC_MESSAGES/kwin_effect_cube.mo share/locale/vi/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/vi/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/vi/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/vi/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/vi/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/vi/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/vi/LC_MESSAGES/plasma_runner_datetime.mo share/locale/vi/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/vi/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/vi/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/vi/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/vi/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/wa/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/wa/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/wa/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/zh_CN/LC_MESSAGES/kwin_effect_cube.mo share/locale/zh_CN/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/zh_CN/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/zh_CN/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/zh_CN/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_datetime.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/zh_CN/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/zh_TW/LC_MESSAGES/kwin_effect_cube.mo share/locale/zh_TW/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/zh_TW/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/zh_TW/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/zh_TW/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_datetime.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/zh_TW/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/metainfo/org.kde.haenau.appdata.xml share/metainfo/org.kde.hunyango.appdata.xml share/metainfo/org.kde.plasma.addons.katesessions.appdata.xml share/metainfo/org.kde.plasma.binaryclock.appdata.xml share/metainfo/org.kde.plasma.calculator.appdata.xml share/metainfo/org.kde.plasma.colorpicker.appdata.xml share/metainfo/org.kde.plasma.comic.appdata.xml share/metainfo/org.kde.plasma.diskquota.appdata.xml share/metainfo/org.kde.plasma.fifteenpuzzle.appdata.xml share/metainfo/org.kde.plasma.fuzzyclock.appdata.xml share/metainfo/org.kde.plasma.grouping.appdata.xml share/metainfo/org.kde.plasma.keyboardindicator.appdata.xml share/metainfo/org.kde.plasma.kickerdash.appdata.xml share/metainfo/org.kde.plasma.konsoleprofiles.appdata.xml share/metainfo/org.kde.plasma.mediaframe.appdata.xml share/metainfo/org.kde.plasma.notes.appdata.xml share/metainfo/org.kde.plasma.quicklaunch.appdata.xml share/metainfo/org.kde.plasma.timer.appdata.xml share/metainfo/org.kde.plasma.userswitcher.appdata.xml share/metainfo/org.kde.plasma.weather.appdata.xml share/metainfo/org.kde.plasma.webbrowser.appdata.xml share/metainfo/org.kde.plasma_applet_dict.appdata.xml share/metainfo/org.kde.potd.appdata.xml share/plasma/desktoptheme/default/weather/wind-arrows.svgz share/plasma/desktoptheme/default/widgets/timer.svgz share/plasma/plasmoids/org.kde.plasma.addons.katesessions/contents/ui/KateSessionsItemDelegate.qml share/plasma/plasmoids/org.kde.plasma.addons.katesessions/contents/ui/Menu.qml share/plasma/plasmoids/org.kde.plasma.addons.katesessions/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.addons.katesessions/metadata.json share/plasma/plasmoids/org.kde.plasma.binaryclock/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.binaryclock/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.binaryclock/contents/ui/BinaryClock.qml share/plasma/plasmoids/org.kde.plasma.binaryclock/contents/ui/configGeneral.qml share/plasma/plasmoids/org.kde.plasma.binaryclock/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.binaryclock/metadata.json share/plasma/plasmoids/org.kde.plasma.calculator/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.calculator/metadata.json share/plasma/plasmoids/org.kde.plasma.colorpicker/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.colorpicker/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.colorpicker/contents/ui/ColorCircle.qml share/plasma/plasmoids/org.kde.plasma.colorpicker/contents/ui/ColorContextMenu.qml share/plasma/plasmoids/org.kde.plasma.colorpicker/contents/ui/CompactRepresentation.qml share/plasma/plasmoids/org.kde.plasma.colorpicker/contents/ui/ImageColors.qml share/plasma/plasmoids/org.kde.plasma.colorpicker/contents/ui/LoadingIndicator.qml share/plasma/plasmoids/org.kde.plasma.colorpicker/contents/ui/configGeneral.qml share/plasma/plasmoids/org.kde.plasma.colorpicker/contents/ui/logic.js share/plasma/plasmoids/org.kde.plasma.colorpicker/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.colorpicker/metadata.json share/plasma/plasmoids/org.kde.plasma.comic/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.comic/contents/ui/ButtonBar.qml share/plasma/plasmoids/org.kde.plasma.comic/contents/ui/ComicBottomInfo.qml share/plasma/plasmoids/org.kde.plasma.comic/contents/ui/ComicCentralView.qml share/plasma/plasmoids/org.kde.plasma.comic/contents/ui/FullViewWidget.qml share/plasma/plasmoids/org.kde.plasma.comic/contents/ui/ImageWidget.qml share/plasma/plasmoids/org.kde.plasma.comic/contents/ui/configAdvanced.qml share/plasma/plasmoids/org.kde.plasma.comic/contents/ui/configAppearance.qml share/plasma/plasmoids/org.kde.plasma.comic/contents/ui/configGeneral.qml share/plasma/plasmoids/org.kde.plasma.comic/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.comic/metadata.json share/plasma/plasmoids/org.kde.plasma.diskquota/contents/ui/ListDelegateItem.qml share/plasma/plasmoids/org.kde.plasma.diskquota/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.diskquota/metadata.json share/plasma/plasmoids/org.kde.plasma.fifteenpuzzle/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.fifteenpuzzle/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.fifteenpuzzle/contents/ui/FifteenPuzzle.qml share/plasma/plasmoids/org.kde.plasma.fifteenpuzzle/contents/ui/Piece.qml share/plasma/plasmoids/org.kde.plasma.fifteenpuzzle/contents/ui/blanksquare.svg share/plasma/plasmoids/org.kde.plasma.fifteenpuzzle/contents/ui/configAppearance.qml share/plasma/plasmoids/org.kde.plasma.fifteenpuzzle/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.fifteenpuzzle/metadata.json share/plasma/plasmoids/org.kde.plasma.fuzzyclock/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.fuzzyclock/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.fuzzyclock/contents/ui/FuzzyClock.qml share/plasma/plasmoids/org.kde.plasma.fuzzyclock/contents/ui/configAppearance.qml share/plasma/plasmoids/org.kde.plasma.fuzzyclock/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.fuzzyclock/metadata.json share/plasma/plasmoids/org.kde.plasma.grouping/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.grouping/metadata.json share/plasma/plasmoids/org.kde.plasma.keyboardindicator/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.keyboardindicator/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.keyboardindicator/contents/ui/configAppearance.qml share/plasma/plasmoids/org.kde.plasma.keyboardindicator/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.keyboardindicator/metadata.json share/plasma/plasmoids/org.kde.plasma.kickerdash/metadata.json share/plasma/plasmoids/org.kde.plasma.konsoleprofiles/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.konsoleprofiles/metadata.json share/plasma/plasmoids/org.kde.plasma.mediaframe/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.mediaframe/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.mediaframe/contents/ui/ConfigGeneral.qml share/plasma/plasmoids/org.kde.plasma.mediaframe/contents/ui/ConfigPaths.qml share/plasma/plasmoids/org.kde.plasma.mediaframe/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.mediaframe/metadata.json share/plasma/plasmoids/org.kde.plasma.notes/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.notes/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.notes/contents/ui/ShortcutMenuItem.qml share/plasma/plasmoids/org.kde.plasma.notes/contents/ui/configAppearance.qml share/plasma/plasmoids/org.kde.plasma.notes/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.notes/metadata.json share/plasma/plasmoids/org.kde.plasma.private.grouping/contents/applet/CompactApplet.qml share/plasma/plasmoids/org.kde.plasma.private.grouping/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.private.grouping/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.private.grouping/contents/ui/items/AbstractItem.qml share/plasma/plasmoids/org.kde.plasma.private.grouping/contents/ui/items/PlasmoidItem.qml share/plasma/plasmoids/org.kde.plasma.private.grouping/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.private.grouping/metadata.json share/plasma/plasmoids/org.kde.plasma.quicklaunch/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.quicklaunch/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.quicklaunch/contents/ui/ConfigGeneral.qml share/plasma/plasmoids/org.kde.plasma.quicklaunch/contents/ui/IconItem.qml share/plasma/plasmoids/org.kde.plasma.quicklaunch/contents/ui/Popup.qml share/plasma/plasmoids/org.kde.plasma.quicklaunch/contents/ui/UrlModel.qml share/plasma/plasmoids/org.kde.plasma.quicklaunch/contents/ui/layout.js share/plasma/plasmoids/org.kde.plasma.quicklaunch/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.quicklaunch/metadata.json share/plasma/plasmoids/org.kde.plasma.timer/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.timer/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.timer/contents/ui/CompactRepresentation.qml share/plasma/plasmoids/org.kde.plasma.timer/contents/ui/TimerEdit.qml share/plasma/plasmoids/org.kde.plasma.timer/contents/ui/TimerView.qml share/plasma/plasmoids/org.kde.plasma.timer/contents/ui/configAdvanced.qml share/plasma/plasmoids/org.kde.plasma.timer/contents/ui/configAppearance.qml share/plasma/plasmoids/org.kde.plasma.timer/contents/ui/configTimes.qml share/plasma/plasmoids/org.kde.plasma.timer/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.timer/metadata.json share/plasma/plasmoids/org.kde.plasma.userswitcher/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.userswitcher/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.userswitcher/contents/ui/ActionListDelegate.qml share/plasma/plasmoids/org.kde.plasma.userswitcher/contents/ui/ListDelegate.qml share/plasma/plasmoids/org.kde.plasma.userswitcher/contents/ui/UserListDelegate.qml share/plasma/plasmoids/org.kde.plasma.userswitcher/contents/ui/configGeneral.qml share/plasma/plasmoids/org.kde.plasma.userswitcher/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.userswitcher/metadata.json share/plasma/plasmoids/org.kde.plasma.weather/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.weather/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.weather/contents/ui/CompactRepresentation.qml share/plasma/plasmoids/org.kde.plasma.weather/contents/ui/DetailsView.qml share/plasma/plasmoids/org.kde.plasma.weather/contents/ui/ForecastView.qml share/plasma/plasmoids/org.kde.plasma.weather/contents/ui/FullRepresentation.qml share/plasma/plasmoids/org.kde.plasma.weather/contents/ui/IconAndTextItem.qml share/plasma/plasmoids/org.kde.plasma.weather/contents/ui/NoticesView.qml share/plasma/plasmoids/org.kde.plasma.weather/contents/ui/SwitchPanel.qml share/plasma/plasmoids/org.kde.plasma.weather/contents/ui/TopPanel.qml share/plasma/plasmoids/org.kde.plasma.weather/contents/ui/config/ConfigAppearance.qml share/plasma/plasmoids/org.kde.plasma.weather/contents/ui/config/ConfigUnits.qml share/plasma/plasmoids/org.kde.plasma.weather/contents/ui/config/ConfigWeatherStation.qml share/plasma/plasmoids/org.kde.plasma.weather/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.weather/metadata.json share/plasma/plasmoids/org.kde.plasma.webbrowser/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.webbrowser/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.webbrowser/contents/ui/ConfigAppearance.qml share/plasma/plasmoids/org.kde.plasma.webbrowser/contents/ui/ConfigGeneral.qml share/plasma/plasmoids/org.kde.plasma.webbrowser/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.webbrowser/metadata.json share/plasma/plasmoids/org.kde.plasma_applet_dict/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma_applet_dict/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma_applet_dict/contents/ui/AvailableDictSheet.qml share/plasma/plasmoids/org.kde.plasma_applet_dict/contents/ui/ConfigDictionaries.qml share/plasma/plasmoids/org.kde.plasma_applet_dict/contents/ui/DictItemDelegate.qml share/plasma/plasmoids/org.kde.plasma_applet_dict/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma_applet_dict/metadata.json share/plasma/wallpapers/org.kde.haenau/contents/ui/BackgroundElement.qml share/plasma/wallpapers/org.kde.haenau/contents/ui/BottomBackgroundElement.qml share/plasma/wallpapers/org.kde.haenau/contents/ui/RightBackgroundElement.qml share/plasma/wallpapers/org.kde.haenau/contents/ui/main.qml share/plasma/wallpapers/org.kde.haenau/contents/ui/wallpaper.svgz share/plasma/wallpapers/org.kde.haenau/metadata.json share/plasma/wallpapers/org.kde.hunyango/contents/ui/ColorProvider.qml share/plasma/wallpapers/org.kde.hunyango/contents/ui/main.qml share/plasma/wallpapers/org.kde.hunyango/contents/ui/qmldir share/plasma/wallpapers/org.kde.hunyango/contents/ui/wallpaper.svgz share/plasma/wallpapers/org.kde.hunyango/metadata.json share/plasma/wallpapers/org.kde.potd/contents/config/main.xml share/plasma/wallpapers/org.kde.potd/contents/ui/ActionContextMenu.qml share/plasma/wallpapers/org.kde.potd/contents/ui/WallpaperDelegate.qml share/plasma/wallpapers/org.kde.potd/contents/ui/WallpaperPreview.qml share/plasma/wallpapers/org.kde.potd/contents/ui/config.qml share/plasma/wallpapers/org.kde.potd/contents/ui/main.qml share/plasma/wallpapers/org.kde.potd/metadata.json share/qlogging-categories6/kdeplasma-addons.categories diff --git a/x11-wm/plasma6-kdecoration/distinfo b/x11-wm/plasma6-kdecoration/distinfo index 928e8403e0a5..261d80ab95bc 100644 --- a/x11-wm/plasma6-kdecoration/distinfo +++ b/x11-wm/plasma6-kdecoration/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1710959360 -SHA256 (KDE/plasma/6.0.2/kdecoration-6.0.2.tar.xz) = b993616cc5d78fce787b2dbd04aafe540e929c2ecccde14bce0c61903514bec2 -SIZE (KDE/plasma/6.0.2/kdecoration-6.0.2.tar.xz) = 54552 +TIMESTAMP = 1712731798 +SHA256 (KDE/plasma/6.0.3/kdecoration-6.0.3.tar.xz) = 3c91f65a9b1ea08cf203e79ec4edfea688c463d7d218c95296c0376bdf5956f9 +SIZE (KDE/plasma/6.0.3/kdecoration-6.0.3.tar.xz) = 54512 diff --git a/x11-wm/plasma6-kwin/distinfo b/x11-wm/plasma6-kwin/distinfo index a9053c4c2368..e854cb1d2920 100644 --- a/x11-wm/plasma6-kwin/distinfo +++ b/x11-wm/plasma6-kwin/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1710959361 -SHA256 (KDE/plasma/6.0.2/kwin-6.0.2.tar.xz) = 65340620154fede598daa76cc624739a9824685aa1aa94224efdd5f1b9b076bb -SIZE (KDE/plasma/6.0.2/kwin-6.0.2.tar.xz) = 8833720 +TIMESTAMP = 1712731799 +SHA256 (KDE/plasma/6.0.3/kwin-6.0.3.tar.xz) = 0f46e776cd508374c552c0a5a55a45bf28f9cccc8870089009854a1134d72a79 +SIZE (KDE/plasma/6.0.3/kwin-6.0.3.tar.xz) = 8830572 diff --git a/x11/plasma6-kactivitymanagerd/distinfo b/x11/plasma6-kactivitymanagerd/distinfo index 95e2a82a4b7f..6f4213998a02 100644 --- a/x11/plasma6-kactivitymanagerd/distinfo +++ b/x11/plasma6-kactivitymanagerd/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1710959362 -SHA256 (KDE/plasma/6.0.2/kactivitymanagerd-6.0.2.tar.xz) = e95ea29f8b6fb882bec51d9464912a74354ef5396bb3eab78830dae34aa4dfb0 -SIZE (KDE/plasma/6.0.2/kactivitymanagerd-6.0.2.tar.xz) = 109872 +TIMESTAMP = 1712731800 +SHA256 (KDE/plasma/6.0.3/kactivitymanagerd-6.0.3.tar.xz) = 4f92314fc2117dc26ff671c3334e0076d5f2b7feca434f4e138bfdf574b67ce5 +SIZE (KDE/plasma/6.0.3/kactivitymanagerd-6.0.3.tar.xz) = 110064 diff --git a/x11/plasma6-kgamma/distinfo b/x11/plasma6-kgamma/distinfo index c539d91a478d..0c5330fe1df6 100644 --- a/x11/plasma6-kgamma/distinfo +++ b/x11/plasma6-kgamma/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1710959362 -SHA256 (KDE/plasma/6.0.2/kgamma-6.0.2.tar.xz) = f80db1a6e89504040d51c6b14fa8ba06ac6787dc37c05bc41ec6cbcdb4639990 -SIZE (KDE/plasma/6.0.2/kgamma-6.0.2.tar.xz) = 86508 +TIMESTAMP = 1712731800 +SHA256 (KDE/plasma/6.0.3/kgamma-6.0.3.tar.xz) = 816e79b0992fa2ae6d4f6dd6b277f508562df84e0061d9c060955753b84224d3 +SIZE (KDE/plasma/6.0.3/kgamma-6.0.3.tar.xz) = 87688 diff --git a/x11/plasma6-kgamma/pkg-plist b/x11/plasma6-kgamma/pkg-plist index 5e7148259e63..212ad2a123a3 100644 --- a/x11/plasma6-kgamma/pkg-plist +++ b/x11/plasma6-kgamma/pkg-plist @@ -1,120 +1,122 @@ %%QT_PLUGINDIR%%/plasma/kcminit/kcm_kgamma_init.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_kgamma.so share/applications/kcm_kgamma.desktop share/doc/HTML/ca/kcontrol/kgamma/index.cache.bz2 share/doc/HTML/ca/kcontrol/kgamma/index.docbook share/doc/HTML/cs/kcontrol/kgamma/index.cache.bz2 share/doc/HTML/cs/kcontrol/kgamma/index.docbook share/doc/HTML/de/kcontrol/kgamma/index.cache.bz2 share/doc/HTML/de/kcontrol/kgamma/index.docbook share/doc/HTML/en/kcontrol/kgamma/index.cache.bz2 share/doc/HTML/en/kcontrol/kgamma/index.docbook share/doc/HTML/es/kcontrol/kgamma/index.cache.bz2 share/doc/HTML/es/kcontrol/kgamma/index.docbook share/doc/HTML/et/kcontrol/kgamma/index.cache.bz2 share/doc/HTML/et/kcontrol/kgamma/index.docbook share/doc/HTML/fr/kcontrol/kgamma/index.cache.bz2 share/doc/HTML/fr/kcontrol/kgamma/index.docbook share/doc/HTML/id/kcontrol/kgamma/index.cache.bz2 share/doc/HTML/id/kcontrol/kgamma/index.docbook share/doc/HTML/it/kcontrol/kgamma/index.cache.bz2 share/doc/HTML/it/kcontrol/kgamma/index.docbook share/doc/HTML/nl/kcontrol/kgamma/index.cache.bz2 share/doc/HTML/nl/kcontrol/kgamma/index.docbook share/doc/HTML/pt/kcontrol/kgamma/index.cache.bz2 share/doc/HTML/pt/kcontrol/kgamma/index.docbook share/doc/HTML/pt_BR/kcontrol/kgamma/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/kgamma/index.docbook share/doc/HTML/ru/kcontrol/kgamma/index.cache.bz2 share/doc/HTML/ru/kcontrol/kgamma/index.docbook +share/doc/HTML/sl/kcontrol/kgamma/index.cache.bz2 +share/doc/HTML/sl/kcontrol/kgamma/index.docbook share/doc/HTML/sv/kcontrol/kgamma/index.cache.bz2 share/doc/HTML/sv/kcontrol/kgamma/index.docbook share/doc/HTML/tr/kcontrol/kgamma/index.cache.bz2 share/doc/HTML/tr/kcontrol/kgamma/index.docbook share/doc/HTML/uk/kcontrol/kgamma/index.cache.bz2 share/doc/HTML/uk/kcontrol/kgamma/index.docbook share/kgamma/pics/background.png share/kgamma/pics/cmyscale.png share/kgamma/pics/darkgrey.png share/kgamma/pics/greyscale.png share/kgamma/pics/lightgrey.png share/kgamma/pics/midgrey.png share/kgamma/pics/rgbscale.png share/locale/ar/LC_MESSAGES/kcmkgamma.mo share/locale/ast/LC_MESSAGES/kcmkgamma.mo share/locale/az/LC_MESSAGES/kcmkgamma.mo share/locale/be/LC_MESSAGES/kcmkgamma.mo share/locale/bg/LC_MESSAGES/kcmkgamma.mo share/locale/br/LC_MESSAGES/kcmkgamma.mo share/locale/bs/LC_MESSAGES/kcmkgamma.mo share/locale/ca/LC_MESSAGES/kcmkgamma.mo share/locale/ca@valencia/LC_MESSAGES/kcmkgamma.mo share/locale/cs/LC_MESSAGES/kcmkgamma.mo share/locale/cy/LC_MESSAGES/kcmkgamma.mo share/locale/da/LC_MESSAGES/kcmkgamma.mo share/locale/de/LC_MESSAGES/kcmkgamma.mo share/locale/el/LC_MESSAGES/kcmkgamma.mo share/locale/en_GB/LC_MESSAGES/kcmkgamma.mo share/locale/eo/LC_MESSAGES/kcmkgamma.mo share/locale/es/LC_MESSAGES/kcmkgamma.mo share/locale/et/LC_MESSAGES/kcmkgamma.mo share/locale/eu/LC_MESSAGES/kcmkgamma.mo share/locale/fa/LC_MESSAGES/kcmkgamma.mo share/locale/fi/LC_MESSAGES/kcmkgamma.mo share/locale/fr/LC_MESSAGES/kcmkgamma.mo share/locale/fy/LC_MESSAGES/kcmkgamma.mo share/locale/ga/LC_MESSAGES/kcmkgamma.mo share/locale/gl/LC_MESSAGES/kcmkgamma.mo share/locale/he/LC_MESSAGES/kcmkgamma.mo share/locale/hi/LC_MESSAGES/kcmkgamma.mo share/locale/hne/LC_MESSAGES/kcmkgamma.mo share/locale/hr/LC_MESSAGES/kcmkgamma.mo share/locale/hu/LC_MESSAGES/kcmkgamma.mo share/locale/ia/LC_MESSAGES/kcmkgamma.mo share/locale/id/LC_MESSAGES/kcmkgamma.mo share/locale/is/LC_MESSAGES/kcmkgamma.mo share/locale/it/LC_MESSAGES/kcmkgamma.mo share/locale/ja/LC_MESSAGES/kcmkgamma.mo share/locale/ka/LC_MESSAGES/kcmkgamma.mo share/locale/kk/LC_MESSAGES/kcmkgamma.mo share/locale/km/LC_MESSAGES/kcmkgamma.mo share/locale/ko/LC_MESSAGES/kcmkgamma.mo share/locale/lt/LC_MESSAGES/kcmkgamma.mo share/locale/lv/LC_MESSAGES/kcmkgamma.mo share/locale/mk/LC_MESSAGES/kcmkgamma.mo share/locale/ml/LC_MESSAGES/kcmkgamma.mo share/locale/mr/LC_MESSAGES/kcmkgamma.mo share/locale/ms/LC_MESSAGES/kcmkgamma.mo share/locale/nb/LC_MESSAGES/kcmkgamma.mo share/locale/nds/LC_MESSAGES/kcmkgamma.mo share/locale/ne/LC_MESSAGES/kcmkgamma.mo share/locale/nl/LC_MESSAGES/kcmkgamma.mo share/locale/nn/LC_MESSAGES/kcmkgamma.mo share/locale/oc/LC_MESSAGES/kcmkgamma.mo share/locale/pa/LC_MESSAGES/kcmkgamma.mo share/locale/pl/LC_MESSAGES/kcmkgamma.mo share/locale/pt/LC_MESSAGES/kcmkgamma.mo share/locale/pt_BR/LC_MESSAGES/kcmkgamma.mo share/locale/ro/LC_MESSAGES/kcmkgamma.mo share/locale/ru/LC_MESSAGES/kcmkgamma.mo share/locale/sa/LC_MESSAGES/kcmkgamma.mo share/locale/se/LC_MESSAGES/kcmkgamma.mo share/locale/si/LC_MESSAGES/kcmkgamma.mo share/locale/sk/LC_MESSAGES/kcmkgamma.mo share/locale/sl/LC_MESSAGES/kcmkgamma.mo share/locale/sq/LC_MESSAGES/kcmkgamma.mo share/locale/sr/LC_MESSAGES/kcmkgamma.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmkgamma.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmkgamma.mo share/locale/sr@latin/LC_MESSAGES/kcmkgamma.mo share/locale/sv/LC_MESSAGES/kcmkgamma.mo share/locale/ta/LC_MESSAGES/kcmkgamma.mo share/locale/tg/LC_MESSAGES/kcmkgamma.mo share/locale/th/LC_MESSAGES/kcmkgamma.mo share/locale/tr/LC_MESSAGES/kcmkgamma.mo share/locale/ug/LC_MESSAGES/kcmkgamma.mo share/locale/uk/LC_MESSAGES/kcmkgamma.mo share/locale/vi/LC_MESSAGES/kcmkgamma.mo share/locale/zh_CN/LC_MESSAGES/kcmkgamma.mo share/locale/zh_HK/LC_MESSAGES/kcmkgamma.mo share/locale/zh_TW/LC_MESSAGES/kcmkgamma.mo diff --git a/x11/plasma6-kglobalacceld/distinfo b/x11/plasma6-kglobalacceld/distinfo index ff62adcff396..b4f816a0dec5 100644 --- a/x11/plasma6-kglobalacceld/distinfo +++ b/x11/plasma6-kglobalacceld/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1710959363 -SHA256 (KDE/plasma/6.0.2/kglobalacceld-6.0.2.tar.xz) = a4f3c6d8c08636e8c0238c5b9455a0c975d57225c66127326d1dd4dda1a3268b -SIZE (KDE/plasma/6.0.2/kglobalacceld-6.0.2.tar.xz) = 52832 +TIMESTAMP = 1712731801 +SHA256 (KDE/plasma/6.0.3/kglobalacceld-6.0.3.tar.xz) = 12a137ee5052fdbf76c54c4efc07d550edca5a25a7b434d522c1418e3e35b2cc +SIZE (KDE/plasma/6.0.3/kglobalacceld-6.0.3.tar.xz) = 53196 diff --git a/x11/plasma6-kscreen/distinfo b/x11/plasma6-kscreen/distinfo index 1f339de779cf..3fd404981f6c 100644 --- a/x11/plasma6-kscreen/distinfo +++ b/x11/plasma6-kscreen/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1710959363 -SHA256 (KDE/plasma/6.0.2/kscreen-6.0.2.tar.xz) = f1f56e3e5c70e5db75a5fc01b4f081edc811cbb368022bb70c4afabe255a0285 -SIZE (KDE/plasma/6.0.2/kscreen-6.0.2.tar.xz) = 202248 +TIMESTAMP = 1712731801 +SHA256 (KDE/plasma/6.0.3/kscreen-6.0.3.tar.xz) = 5916e086c2260040a54dda00fe32fa768540daba78915f2d76ba5df79d799a9e +SIZE (KDE/plasma/6.0.3/kscreen-6.0.3.tar.xz) = 202268 diff --git a/x11/plasma6-kwayland/distinfo b/x11/plasma6-kwayland/distinfo index e5f9e4ab84e8..e873dd828bb7 100644 --- a/x11/plasma6-kwayland/distinfo +++ b/x11/plasma6-kwayland/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1710959364 -SHA256 (KDE/plasma/6.0.2/kwayland-6.0.2.tar.xz) = bdc2e78f575ab5a8d5a2bd3108a3cc30467a334958b3cffdac04839db835d833 -SIZE (KDE/plasma/6.0.2/kwayland-6.0.2.tar.xz) = 133708 +TIMESTAMP = 1712731802 +SHA256 (KDE/plasma/6.0.3/kwayland-6.0.3.tar.xz) = fbb129acfba82bb0aa3a98790b5562bf3fca867ef41f4823c6f13c6605036698 +SIZE (KDE/plasma/6.0.3/kwayland-6.0.3.tar.xz) = 133708 diff --git a/x11/plasma6-layer-shell-qt/distinfo b/x11/plasma6-layer-shell-qt/distinfo index a6808ce27021..bbfc3118233b 100644 --- a/x11/plasma6-layer-shell-qt/distinfo +++ b/x11/plasma6-layer-shell-qt/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1710959364 -SHA256 (KDE/plasma/6.0.2/layer-shell-qt-6.0.2.tar.xz) = aad682c13062868b94970cb60de4001fa8d1a4bdd827c63756e215d0453de550 -SIZE (KDE/plasma/6.0.2/layer-shell-qt-6.0.2.tar.xz) = 20972 +TIMESTAMP = 1712731802 +SHA256 (KDE/plasma/6.0.3/layer-shell-qt-6.0.3.tar.xz) = 3443c57a8f8be26efa40b3f2f748d130ac64d613f894e798d6fa52e29b59b517 +SIZE (KDE/plasma/6.0.3/layer-shell-qt-6.0.3.tar.xz) = 20996 diff --git a/x11/plasma6-libkscreen/distinfo b/x11/plasma6-libkscreen/distinfo index 71b7a83acc2c..04fa130fa586 100644 --- a/x11/plasma6-libkscreen/distinfo +++ b/x11/plasma6-libkscreen/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1710959365 -SHA256 (KDE/plasma/6.0.2/libkscreen-6.0.2.tar.xz) = 2f865c9589b60ae7395b18a531b1e6fbfea8e2ce5c147811b0ef1f8c05e30537 -SIZE (KDE/plasma/6.0.2/libkscreen-6.0.2.tar.xz) = 117840 +TIMESTAMP = 1712731804 +SHA256 (KDE/plasma/6.0.3/libkscreen-6.0.3.tar.xz) = 4785fc3e2a5e6db3a62cc58f1682dd75134ec88c9d966b9d8fb22e870aa33483 +SIZE (KDE/plasma/6.0.3/libkscreen-6.0.3.tar.xz) = 118044 diff --git a/x11/plasma6-libplasma/distinfo b/x11/plasma6-libplasma/distinfo index 50e60089a120..b0482437aa7d 100644 --- a/x11/plasma6-libplasma/distinfo +++ b/x11/plasma6-libplasma/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1710959366 -SHA256 (KDE/plasma/6.0.2/libplasma-6.0.2.tar.xz) = 35a02104bdc7dc1347113219768a65366503a7df5faf98bf00d01ab6034d11bd -SIZE (KDE/plasma/6.0.2/libplasma-6.0.2.tar.xz) = 2115996 +TIMESTAMP = 1712731804 +SHA256 (KDE/plasma/6.0.3/libplasma-6.0.3.tar.xz) = 1ca020026deda38a46cb34cd71d7c49c3b18b9bef26caf1cef765abf49fdf71d +SIZE (KDE/plasma/6.0.3/libplasma-6.0.3.tar.xz) = 2115476 diff --git a/x11/plasma6-plasma-activities-stats/distinfo b/x11/plasma6-plasma-activities-stats/distinfo index bfbe43d39ab0..36a0c2fe6ed9 100644 --- a/x11/plasma6-plasma-activities-stats/distinfo +++ b/x11/plasma6-plasma-activities-stats/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1710959368 -SHA256 (KDE/plasma/6.0.2/plasma-activities-stats-6.0.2.tar.xz) = d7e492d07c957b5ea6c4530b1f19d38a2abdec66bca5346e08e7efc9ae15906c -SIZE (KDE/plasma/6.0.2/plasma-activities-stats-6.0.2.tar.xz) = 83256 +TIMESTAMP = 1712731807 +SHA256 (KDE/plasma/6.0.3/plasma-activities-stats-6.0.3.tar.xz) = 5dd98cc027a637fdb6efd2de0dd5e67edbb4fb046118d1fe49c3e95f6d441a3d +SIZE (KDE/plasma/6.0.3/plasma-activities-stats-6.0.3.tar.xz) = 83200 diff --git a/x11/plasma6-plasma-activities/distinfo b/x11/plasma6-plasma-activities/distinfo index 0951fdcc4ce7..a1969bca714b 100644 --- a/x11/plasma6-plasma-activities/distinfo +++ b/x11/plasma6-plasma-activities/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1710959367 -SHA256 (KDE/plasma/6.0.2/plasma-activities-6.0.2.tar.xz) = 0a877d0b6715fb1e5848e402e102bd06ebb891ed851cbad7eff8faf164ef31a9 -SIZE (KDE/plasma/6.0.2/plasma-activities-6.0.2.tar.xz) = 71024 +TIMESTAMP = 1712731806 +SHA256 (KDE/plasma/6.0.3/plasma-activities-6.0.3.tar.xz) = c61595e9f47eefaf47e3baf400dcfd0ba012aae48c69342d8fa0e3a1e12570ff +SIZE (KDE/plasma/6.0.3/plasma-activities-6.0.3.tar.xz) = 71044 diff --git a/x11/plasma6-plasma-desktop/distinfo b/x11/plasma6-plasma-desktop/distinfo index a37b34b6f926..37653d76394c 100644 --- a/x11/plasma6-plasma-desktop/distinfo +++ b/x11/plasma6-plasma-desktop/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1710959369 -SHA256 (KDE/plasma/6.0.2/plasma-desktop-6.0.2.tar.xz) = 0410e575e0f17caaaf16132aa3fccbba6431dd61ba746f3e2e202d294f54360a -SIZE (KDE/plasma/6.0.2/plasma-desktop-6.0.2.tar.xz) = 15627316 +TIMESTAMP = 1712731808 +SHA256 (KDE/plasma/6.0.3/plasma-desktop-6.0.3.tar.xz) = 019b10bb8d04a8069d82a59113c021a1e5a24d379dea5be3097017aae11bd9d0 +SIZE (KDE/plasma/6.0.3/plasma-desktop-6.0.3.tar.xz) = 15635760 diff --git a/x11/plasma6-plasma-desktop/pkg-plist b/x11/plasma6-plasma-desktop/pkg-plist index a2867b95a608..524b05c65b14 100644 --- a/x11/plasma6-plasma-desktop/pkg-plist +++ b/x11/plasma6-plasma-desktop/pkg-plist @@ -1,4133 +1,4147 @@ bin/kaccess bin/kapplymousetheme bin/kcm-touchpad-list-devices bin/knetattach bin/krunner-plugininstaller bin/plasma-emojier bin/solid-action-desktop-gen bin/tastenbrett etc/xdg/autostart/kaccess.desktop lib/libexec/kf6/kauth/kcmdatetimehelper %%QT_PLUGINDIR%%/kf6/kded/device_automounter.so %%QT_PLUGINDIR%%/kf6/kded/kded_touchpad.so %%QT_PLUGINDIR%%/kf6/kded/keyboard.so %%QT_PLUGINDIR%%/kf6/krunner/krunner_kwin.so %%QT_PLUGINDIR%%/kf6/krunner/krunner_plasma-desktop.so %%QT_PLUGINDIR%%/plasma/kcminit/kcm_mouse_init.so %%QT_PLUGINDIR%%/plasma/kcminit/kcm_touchpad_init.so %%QT_PLUGINDIR%%/plasma/kcms/desktop/kcm_krunnersettings.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_access.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_activities.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_baloofile.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_componentchooser.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_desktoppaths.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_kded.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_keyboard.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_keys.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_landingpage.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_mouse.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_plasmasearch.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_smserver.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_splashscreen.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_tablet.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_touchpad.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_touchscreen.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_workspace.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_clock.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_device_automounter.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_qtquicksettings.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_recentFiles.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_solid_actions.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcmspellchecking.so %%QT_QMLDIR%%/org/kde/plasma/activityswitcher/activityswitcherextensionplugin.qmltypes %%QT_QMLDIR%%/org/kde/plasma/activityswitcher/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/plasma/activityswitcher/libactivityswitcherextensionplugin.so %%QT_QMLDIR%%/org/kde/plasma/activityswitcher/qmldir %%QT_QMLDIR%%/org/kde/plasma/emoji/EmojierDeclarativePlugin.qmltypes %%QT_QMLDIR%%/org/kde/plasma/emoji/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/plasma/emoji/libEmojierDeclarativePlugin.so %%QT_QMLDIR%%/org/kde/plasma/emoji/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/kcm_keyboard/libkcm_keyboard_declarative.so %%QT_QMLDIR%%/org/kde/plasma/private/kcm_keyboard/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/kimpanel/libkimpanelplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/kimpanel/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/pager/libpagerplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/pager/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/showdesktop/libshowdesktopplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/showdesktop/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/taskmanager/libtaskmanagerplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/taskmanager/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/trash/libtrashplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/trash/qmldir %%QT_QMLDIR%%/org/kde/private/desktopcontainment/desktop/libdesktopplugin.so %%QT_QMLDIR%%/org/kde/private/desktopcontainment/desktop/qmldir %%QT_QMLDIR%%/org/kde/private/desktopcontainment/folder/libfolderplugin.so %%QT_QMLDIR%%/org/kde/private/desktopcontainment/folder/qmldir share/applications/kaccess.desktop share/applications/kcm_access.desktop share/applications/kcm_activities.desktop share/applications/kcm_baloofile.desktop share/applications/kcm_clock.desktop share/applications/kcm_componentchooser.desktop share/applications/kcm_desktoppaths.desktop share/applications/kcm_kded.desktop share/applications/kcm_keyboard.desktop share/applications/kcm_keys.desktop share/applications/kcm_krunnersettings.desktop share/applications/kcm_landingpage.desktop share/applications/kcm_mouse.desktop share/applications/kcm_plasmasearch.desktop share/applications/kcm_qtquicksettings.desktop share/applications/kcm_recentFiles.desktop share/applications/kcm_smserver.desktop share/applications/kcm_solid_actions.desktop share/applications/kcm_splashscreen.desktop share/applications/kcm_tablet.desktop share/applications/kcm_touchpad.desktop share/applications/kcm_touchscreen.desktop share/applications/kcm_workspace.desktop share/applications/kcmspellchecking.desktop share/applications/kde-mimeapps.list share/applications/org.kde.knetattach.desktop share/applications/org.kde.plasma.emojier.desktop share/config.kcfg/kactivitymanagerd_plugins_settings.kcfg share/config.kcfg/kactivitymanagerd_settings.kcfg share/config.kcfg/kcmaccessibilitybell.kcfg share/config.kcfg/kcmaccessibilitykeyboard.kcfg share/config.kcfg/kcmaccessibilitymouse.kcfg share/config.kcfg/kcmaccessibilityscreenreader.kcfg share/config.kcfg/krunnersettingsbase.kcfg share/config.kcfg/landingpage_kdeglobalssettings.kcfg share/config.kcfg/splashscreensettings.kcfg share/config.kcfg/workspaceoptions_kdeglobalssettings.kcfg share/config.kcfg/workspaceoptions_kwinsettings.kcfg share/config.kcfg/workspaceoptions_plasmasettings.kcfg share/dbus-1/interfaces/org.kde.touchpad.xml share/dbus-1/system-services/org.kde.kcontrol.kcmclock.service share/dbus-1/system.d/org.kde.kcontrol.kcmclock.conf share/doc/HTML/ca/kcontrol/baloo/index.cache.bz2 share/doc/HTML/ca/kcontrol/baloo/index.docbook share/doc/HTML/ca/kcontrol/clock/index.cache.bz2 share/doc/HTML/ca/kcontrol/clock/index.docbook share/doc/HTML/ca/kcontrol/componentchooser/index.cache.bz2 share/doc/HTML/ca/kcontrol/componentchooser/index.docbook share/doc/HTML/ca/kcontrol/joystick/index.cache.bz2 share/doc/HTML/ca/kcontrol/joystick/index.docbook share/doc/HTML/ca/kcontrol/kcm_recentFiles/index.cache.bz2 share/doc/HTML/ca/kcontrol/kcm_recentFiles/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/kcm_recentFiles/index.cache.bz2 share/doc/HTML/en/kcontrol/kcm_recentFiles/index.docbook 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/kcm_recentFiles/index.cache.bz2 share/doc/HTML/es/kcontrol/kcm_recentFiles/index.docbook share/doc/HTML/es/kcontrol/kcmaccess/index.cache.bz2 share/doc/HTML/es/kcontrol/kcmaccess/index.docbook share/doc/HTML/es/kcontrol/kcmactivities/index.cache.bz2 share/doc/HTML/es/kcontrol/kcmactivities/index.docbook share/doc/HTML/es/kcontrol/kcmlaunchfeedback/index.cache.bz2 share/doc/HTML/es/kcontrol/kcmlaunchfeedback/index.docbook share/doc/HTML/es/kcontrol/kcmsmserver/index.cache.bz2 share/doc/HTML/es/kcontrol/kcmsmserver/index.docbook share/doc/HTML/es/kcontrol/kded/index.cache.bz2 share/doc/HTML/es/kcontrol/kded/index.docbook share/doc/HTML/es/kcontrol/keyboard/index.cache.bz2 share/doc/HTML/es/kcontrol/keyboard/index.docbook share/doc/HTML/es/kcontrol/keys/index.cache.bz2 share/doc/HTML/es/kcontrol/keys/index.docbook share/doc/HTML/es/kcontrol/mouse/index.cache.bz2 share/doc/HTML/es/kcontrol/mouse/index.docbook share/doc/HTML/es/kcontrol/paths/index.cache.bz2 share/doc/HTML/es/kcontrol/paths/index.docbook share/doc/HTML/es/kcontrol/solid-actions/index.cache.bz2 share/doc/HTML/es/kcontrol/solid-actions/index.docbook share/doc/HTML/es/kcontrol/solid-device-automounter/index.cache.bz2 share/doc/HTML/es/kcontrol/solid-device-automounter/index.docbook share/doc/HTML/es/kcontrol/spellchecking/index.cache.bz2 share/doc/HTML/es/kcontrol/spellchecking/index.docbook share/doc/HTML/es/kcontrol/splashscreen/index.cache.bz2 share/doc/HTML/es/kcontrol/splashscreen/index.docbook share/doc/HTML/es/kcontrol/workspaceoptions/index.cache.bz2 share/doc/HTML/es/kcontrol/workspaceoptions/index.docbook share/doc/HTML/es/kfontview/index.cache.bz2 share/doc/HTML/es/kfontview/index.docbook share/doc/HTML/es/knetattach/index.cache.bz2 share/doc/HTML/es/knetattach/index.docbook share/doc/HTML/es/plasma-desktop/index.cache.bz2 share/doc/HTML/es/plasma-desktop/index.docbook share/doc/HTML/et/kcontrol/clock/index.cache.bz2 share/doc/HTML/et/kcontrol/clock/index.docbook share/doc/HTML/et/kcontrol/solid-actions/index.cache.bz2 share/doc/HTML/et/kcontrol/solid-actions/index.docbook share/doc/HTML/et/kcontrol/solid-device-automounter/index.cache.bz2 share/doc/HTML/et/kcontrol/solid-device-automounter/index.docbook +share/doc/HTML/fr/kcontrol/clock/index.cache.bz2 +share/doc/HTML/fr/kcontrol/clock/index.docbook +share/doc/HTML/fr/kcontrol/componentchooser/index.cache.bz2 +share/doc/HTML/fr/kcontrol/componentchooser/index.docbook share/doc/HTML/fr/kcontrol/kded/index.cache.bz2 share/doc/HTML/fr/kcontrol/kded/index.docbook +share/doc/HTML/fr/kcontrol/paths/index.cache.bz2 +share/doc/HTML/fr/kcontrol/paths/index.docbook +share/doc/HTML/fr/kcontrol/solid-actions/index.cache.bz2 +share/doc/HTML/fr/kcontrol/solid-actions/index.docbook +share/doc/HTML/fr/kcontrol/spellchecking/index.cache.bz2 +share/doc/HTML/fr/kcontrol/spellchecking/index.docbook +share/doc/HTML/fr/kcontrol/splashscreen/index.cache.bz2 +share/doc/HTML/fr/kcontrol/splashscreen/index.docbook +share/doc/HTML/fr/knetattach/index.cache.bz2 +share/doc/HTML/fr/knetattach/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/kcm_recentFiles/index.cache.bz2 share/doc/HTML/it/kcontrol/kcm_recentFiles/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/kcm_recentFiles/index.cache.bz2 share/doc/HTML/nl/kcontrol/kcm_recentFiles/index.docbook share/doc/HTML/nl/kcontrol/kcmaccess/index.cache.bz2 share/doc/HTML/nl/kcontrol/kcmaccess/index.docbook share/doc/HTML/nl/kcontrol/kcmactivities/index.cache.bz2 share/doc/HTML/nl/kcontrol/kcmactivities/index.docbook share/doc/HTML/nl/kcontrol/kcmlaunchfeedback/index.cache.bz2 share/doc/HTML/nl/kcontrol/kcmlaunchfeedback/index.docbook share/doc/HTML/nl/kcontrol/kcmsmserver/index.cache.bz2 share/doc/HTML/nl/kcontrol/kcmsmserver/index.docbook share/doc/HTML/nl/kcontrol/kded/index.cache.bz2 share/doc/HTML/nl/kcontrol/kded/index.docbook share/doc/HTML/nl/kcontrol/keyboard/index.cache.bz2 share/doc/HTML/nl/kcontrol/keyboard/index.docbook share/doc/HTML/nl/kcontrol/keys/index.cache.bz2 share/doc/HTML/nl/kcontrol/keys/index.docbook share/doc/HTML/nl/kcontrol/mouse/index.cache.bz2 share/doc/HTML/nl/kcontrol/mouse/index.docbook share/doc/HTML/nl/kcontrol/paths/index.cache.bz2 share/doc/HTML/nl/kcontrol/paths/index.docbook share/doc/HTML/nl/kcontrol/solid-actions/index.cache.bz2 share/doc/HTML/nl/kcontrol/solid-actions/index.docbook share/doc/HTML/nl/kcontrol/solid-device-automounter/index.cache.bz2 share/doc/HTML/nl/kcontrol/solid-device-automounter/index.docbook share/doc/HTML/nl/kcontrol/spellchecking/index.cache.bz2 share/doc/HTML/nl/kcontrol/spellchecking/index.docbook share/doc/HTML/nl/kcontrol/splashscreen/index.cache.bz2 share/doc/HTML/nl/kcontrol/splashscreen/index.docbook share/doc/HTML/nl/kcontrol/workspaceoptions/index.cache.bz2 share/doc/HTML/nl/kcontrol/workspaceoptions/index.docbook share/doc/HTML/nl/kfontview/index.cache.bz2 share/doc/HTML/nl/kfontview/index.docbook share/doc/HTML/nl/knetattach/index.cache.bz2 share/doc/HTML/nl/knetattach/index.docbook share/doc/HTML/nl/plasma-desktop/index.cache.bz2 share/doc/HTML/nl/plasma-desktop/index.docbook share/doc/HTML/pt/kcontrol/baloo/index.cache.bz2 share/doc/HTML/pt/kcontrol/baloo/index.docbook share/doc/HTML/pt/kcontrol/clock/index.cache.bz2 share/doc/HTML/pt/kcontrol/clock/index.docbook share/doc/HTML/pt/kcontrol/componentchooser/index.cache.bz2 share/doc/HTML/pt/kcontrol/componentchooser/index.docbook share/doc/HTML/pt/kcontrol/joystick/index.cache.bz2 share/doc/HTML/pt/kcontrol/joystick/index.docbook share/doc/HTML/pt/kcontrol/kcmaccess/index.cache.bz2 share/doc/HTML/pt/kcontrol/kcmaccess/index.docbook share/doc/HTML/pt/kcontrol/kcmlaunchfeedback/index.cache.bz2 share/doc/HTML/pt/kcontrol/kcmlaunchfeedback/index.docbook share/doc/HTML/pt/kcontrol/kded/index.cache.bz2 share/doc/HTML/pt/kcontrol/kded/index.docbook share/doc/HTML/pt/kcontrol/keyboard/index.cache.bz2 share/doc/HTML/pt/kcontrol/keyboard/index.docbook share/doc/HTML/pt/kcontrol/keys/index.cache.bz2 share/doc/HTML/pt/kcontrol/keys/index.docbook share/doc/HTML/pt/kcontrol/mouse/index.cache.bz2 share/doc/HTML/pt/kcontrol/mouse/index.docbook share/doc/HTML/pt/kcontrol/paths/index.cache.bz2 share/doc/HTML/pt/kcontrol/paths/index.docbook share/doc/HTML/pt/kcontrol/solid-actions/index.cache.bz2 share/doc/HTML/pt/kcontrol/solid-actions/index.docbook share/doc/HTML/pt/kcontrol/solid-device-automounter/index.cache.bz2 share/doc/HTML/pt/kcontrol/solid-device-automounter/index.docbook share/doc/HTML/pt/kcontrol/spellchecking/index.cache.bz2 share/doc/HTML/pt/kcontrol/spellchecking/index.docbook share/doc/HTML/pt/kcontrol/splashscreen/index.cache.bz2 share/doc/HTML/pt/kcontrol/splashscreen/index.docbook share/doc/HTML/pt/kfontview/index.cache.bz2 share/doc/HTML/pt/kfontview/index.docbook share/doc/HTML/pt/knetattach/index.cache.bz2 share/doc/HTML/pt/knetattach/index.docbook share/doc/HTML/pt/plasma-desktop/index.cache.bz2 share/doc/HTML/pt/plasma-desktop/index.docbook share/doc/HTML/pt_BR/kcontrol/baloo/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/baloo/index.docbook share/doc/HTML/pt_BR/kcontrol/clock/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/clock/index.docbook share/doc/HTML/pt_BR/kcontrol/componentchooser/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/componentchooser/index.docbook share/doc/HTML/pt_BR/kcontrol/joystick/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/joystick/index.docbook share/doc/HTML/pt_BR/kcontrol/kcmaccess/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/kcmaccess/index.docbook share/doc/HTML/pt_BR/kcontrol/kcmlaunchfeedback/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/kcmlaunchfeedback/index.docbook share/doc/HTML/pt_BR/kcontrol/kcmsmserver/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/kcmsmserver/index.docbook share/doc/HTML/pt_BR/kcontrol/kded/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/kded/index.docbook share/doc/HTML/pt_BR/kcontrol/keyboard/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/keyboard/index.docbook share/doc/HTML/pt_BR/kcontrol/keys/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/keys/index.docbook share/doc/HTML/pt_BR/kcontrol/mouse/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/mouse/index.docbook share/doc/HTML/pt_BR/kcontrol/paths/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/paths/index.docbook share/doc/HTML/pt_BR/kcontrol/solid-actions/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/solid-actions/index.docbook share/doc/HTML/pt_BR/kcontrol/solid-device-automounter/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/solid-device-automounter/index.docbook share/doc/HTML/pt_BR/kcontrol/spellchecking/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/spellchecking/index.docbook share/doc/HTML/pt_BR/kcontrol/splashscreen/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/splashscreen/index.docbook share/doc/HTML/pt_BR/kcontrol/splashscreen/splash-main.png share/doc/HTML/pt_BR/kfontview/index.cache.bz2 share/doc/HTML/pt_BR/kfontview/index.docbook share/doc/HTML/pt_BR/knetattach/index.cache.bz2 share/doc/HTML/pt_BR/knetattach/index.docbook share/doc/HTML/pt_BR/knetattach/screenshot.png share/doc/HTML/pt_BR/knetattach/screenshot1.png share/doc/HTML/pt_BR/knetattach/screenshot2.png share/doc/HTML/pt_BR/knetattach/screenshot3.png share/doc/HTML/pt_BR/knetattach/screenshot4.png share/doc/HTML/pt_BR/plasma-desktop/add-widgets.png share/doc/HTML/pt_BR/plasma-desktop/desktop-settings.png share/doc/HTML/pt_BR/plasma-desktop/index.cache.bz2 share/doc/HTML/pt_BR/plasma-desktop/index.docbook share/doc/HTML/pt_BR/plasma-desktop/krunner-configure.png share/doc/HTML/pt_BR/plasma-desktop/krunner.png share/doc/HTML/pt_BR/plasma-desktop/panel-settings.png share/doc/HTML/pt_BR/plasma-desktop/system-tray-settings.png share/doc/HTML/pt_BR/plasma-desktop/system-tray-up-arrow.png share/doc/HTML/pt_BR/plasma-desktop/taskbar-settings.png share/doc/HTML/ru/kcontrol/baloo/index.cache.bz2 share/doc/HTML/ru/kcontrol/baloo/index.docbook share/doc/HTML/ru/kcontrol/clock/index.cache.bz2 share/doc/HTML/ru/kcontrol/clock/index.docbook share/doc/HTML/ru/kcontrol/componentchooser/index.cache.bz2 share/doc/HTML/ru/kcontrol/componentchooser/index.docbook share/doc/HTML/ru/kcontrol/joystick/index.cache.bz2 share/doc/HTML/ru/kcontrol/joystick/index.docbook share/doc/HTML/ru/kcontrol/joystick/joystick-calibration.png share/doc/HTML/ru/kcontrol/joystick/joystick-main.png share/doc/HTML/ru/kcontrol/kcmaccess/index.cache.bz2 share/doc/HTML/ru/kcontrol/kcmaccess/index.docbook share/doc/HTML/ru/kcontrol/kcmactivities/index.cache.bz2 share/doc/HTML/ru/kcontrol/kcmactivities/index.docbook share/doc/HTML/ru/kcontrol/kcmlaunchfeedback/index.cache.bz2 share/doc/HTML/ru/kcontrol/kcmlaunchfeedback/index.docbook share/doc/HTML/ru/kcontrol/kcmsmserver/index.cache.bz2 share/doc/HTML/ru/kcontrol/kcmsmserver/index.docbook share/doc/HTML/ru/kcontrol/kded/index.cache.bz2 share/doc/HTML/ru/kcontrol/kded/index.docbook share/doc/HTML/ru/kcontrol/keyboard/index.cache.bz2 share/doc/HTML/ru/kcontrol/keyboard/index.docbook share/doc/HTML/ru/kcontrol/keys/index.cache.bz2 share/doc/HTML/ru/kcontrol/keys/index.docbook share/doc/HTML/ru/kcontrol/mouse/index.cache.bz2 share/doc/HTML/ru/kcontrol/mouse/index.docbook share/doc/HTML/ru/kcontrol/paths/index.cache.bz2 share/doc/HTML/ru/kcontrol/paths/index.docbook share/doc/HTML/ru/kcontrol/paths/paths.png share/doc/HTML/ru/kcontrol/solid-actions/add-action.png share/doc/HTML/ru/kcontrol/solid-actions/edit-action.png share/doc/HTML/ru/kcontrol/solid-actions/index.cache.bz2 share/doc/HTML/ru/kcontrol/solid-actions/index.docbook share/doc/HTML/ru/kcontrol/solid-actions/main.png share/doc/HTML/ru/kcontrol/solid-device-automounter/index.cache.bz2 share/doc/HTML/ru/kcontrol/solid-device-automounter/index.docbook share/doc/HTML/ru/kcontrol/spellchecking/index.cache.bz2 share/doc/HTML/ru/kcontrol/spellchecking/index.docbook share/doc/HTML/ru/kcontrol/splashscreen/get-new-theme.png share/doc/HTML/ru/kcontrol/splashscreen/index.cache.bz2 share/doc/HTML/ru/kcontrol/splashscreen/index.docbook share/doc/HTML/ru/kcontrol/splashscreen/splash-main.png share/doc/HTML/ru/kcontrol/workspaceoptions/index.cache.bz2 share/doc/HTML/ru/kcontrol/workspaceoptions/index.docbook share/doc/HTML/ru/kfontview/index.cache.bz2 share/doc/HTML/ru/kfontview/index.docbook share/doc/HTML/ru/knetattach/index.cache.bz2 share/doc/HTML/ru/knetattach/index.docbook share/doc/HTML/ru/plasma-desktop/index.cache.bz2 share/doc/HTML/ru/plasma-desktop/index.docbook share/doc/HTML/sr/kcontrol/clock/index.cache.bz2 share/doc/HTML/sr/kcontrol/clock/index.docbook share/doc/HTML/sr/kcontrol/kcmlaunchfeedback/index.cache.bz2 share/doc/HTML/sr/kcontrol/kcmlaunchfeedback/index.docbook share/doc/HTML/sr/kcontrol/paths/index.cache.bz2 share/doc/HTML/sr/kcontrol/paths/index.docbook share/doc/HTML/sr/kcontrol/spellchecking/index.cache.bz2 share/doc/HTML/sr/kcontrol/spellchecking/index.docbook share/doc/HTML/sr/knetattach/index.cache.bz2 share/doc/HTML/sr/knetattach/index.docbook share/doc/HTML/sr@latin/kcontrol/clock/index.cache.bz2 share/doc/HTML/sr@latin/kcontrol/clock/index.docbook share/doc/HTML/sr@latin/kcontrol/kcmlaunchfeedback/index.cache.bz2 share/doc/HTML/sr@latin/kcontrol/kcmlaunchfeedback/index.docbook share/doc/HTML/sr@latin/kcontrol/paths/index.cache.bz2 share/doc/HTML/sr@latin/kcontrol/paths/index.docbook share/doc/HTML/sr@latin/kcontrol/spellchecking/index.cache.bz2 share/doc/HTML/sr@latin/kcontrol/spellchecking/index.docbook share/doc/HTML/sr@latin/knetattach/index.cache.bz2 share/doc/HTML/sr@latin/knetattach/index.docbook share/doc/HTML/sv/kcontrol/baloo/index.cache.bz2 share/doc/HTML/sv/kcontrol/baloo/index.docbook share/doc/HTML/sv/kcontrol/clock/index.cache.bz2 share/doc/HTML/sv/kcontrol/clock/index.docbook share/doc/HTML/sv/kcontrol/componentchooser/index.cache.bz2 share/doc/HTML/sv/kcontrol/componentchooser/index.docbook share/doc/HTML/sv/kcontrol/joystick/index.cache.bz2 share/doc/HTML/sv/kcontrol/joystick/index.docbook share/doc/HTML/sv/kcontrol/kcmaccess/index.cache.bz2 share/doc/HTML/sv/kcontrol/kcmaccess/index.docbook share/doc/HTML/sv/kcontrol/kcmactivities/index.cache.bz2 share/doc/HTML/sv/kcontrol/kcmactivities/index.docbook share/doc/HTML/sv/kcontrol/kcmlaunchfeedback/index.cache.bz2 share/doc/HTML/sv/kcontrol/kcmlaunchfeedback/index.docbook share/doc/HTML/sv/kcontrol/kcmsmserver/index.cache.bz2 share/doc/HTML/sv/kcontrol/kcmsmserver/index.docbook share/doc/HTML/sv/kcontrol/kded/index.cache.bz2 share/doc/HTML/sv/kcontrol/kded/index.docbook share/doc/HTML/sv/kcontrol/keyboard/index.cache.bz2 share/doc/HTML/sv/kcontrol/keyboard/index.docbook share/doc/HTML/sv/kcontrol/keys/index.cache.bz2 share/doc/HTML/sv/kcontrol/keys/index.docbook share/doc/HTML/sv/kcontrol/mouse/index.cache.bz2 share/doc/HTML/sv/kcontrol/mouse/index.docbook share/doc/HTML/sv/kcontrol/paths/index.cache.bz2 share/doc/HTML/sv/kcontrol/paths/index.docbook share/doc/HTML/sv/kcontrol/solid-actions/index.cache.bz2 share/doc/HTML/sv/kcontrol/solid-actions/index.docbook share/doc/HTML/sv/kcontrol/solid-device-automounter/index.cache.bz2 share/doc/HTML/sv/kcontrol/solid-device-automounter/index.docbook share/doc/HTML/sv/kcontrol/spellchecking/index.cache.bz2 share/doc/HTML/sv/kcontrol/spellchecking/index.docbook share/doc/HTML/sv/kcontrol/splashscreen/index.cache.bz2 share/doc/HTML/sv/kcontrol/splashscreen/index.docbook share/doc/HTML/sv/kcontrol/workspaceoptions/index.cache.bz2 share/doc/HTML/sv/kcontrol/workspaceoptions/index.docbook share/doc/HTML/sv/kfontview/index.cache.bz2 share/doc/HTML/sv/kfontview/index.docbook share/doc/HTML/sv/knetattach/index.cache.bz2 share/doc/HTML/sv/knetattach/index.docbook share/doc/HTML/sv/plasma-desktop/index.cache.bz2 share/doc/HTML/sv/plasma-desktop/index.docbook share/doc/HTML/tr/kcontrol/baloo/index.cache.bz2 share/doc/HTML/tr/kcontrol/baloo/index.docbook share/doc/HTML/tr/kcontrol/clock/index.cache.bz2 share/doc/HTML/tr/kcontrol/clock/index.docbook share/doc/HTML/tr/kcontrol/componentchooser/index.cache.bz2 share/doc/HTML/tr/kcontrol/componentchooser/index.docbook share/doc/HTML/tr/kcontrol/joystick/index.cache.bz2 share/doc/HTML/tr/kcontrol/joystick/index.docbook share/doc/HTML/tr/kcontrol/kcm_recentFiles/index.cache.bz2 share/doc/HTML/tr/kcontrol/kcm_recentFiles/index.docbook share/doc/HTML/tr/kcontrol/kcmaccess/index.cache.bz2 share/doc/HTML/tr/kcontrol/kcmaccess/index.docbook share/doc/HTML/tr/kcontrol/kcmactivities/index.cache.bz2 share/doc/HTML/tr/kcontrol/kcmactivities/index.docbook share/doc/HTML/tr/kcontrol/kcmsmserver/index.cache.bz2 share/doc/HTML/tr/kcontrol/kcmsmserver/index.docbook share/doc/HTML/tr/kcontrol/kded/index.cache.bz2 share/doc/HTML/tr/kcontrol/kded/index.docbook share/doc/HTML/tr/kcontrol/keyboard/index.cache.bz2 share/doc/HTML/tr/kcontrol/keyboard/index.docbook share/doc/HTML/tr/kcontrol/keys/index.cache.bz2 share/doc/HTML/tr/kcontrol/keys/index.docbook share/doc/HTML/tr/kcontrol/mouse/index.cache.bz2 share/doc/HTML/tr/kcontrol/mouse/index.docbook share/doc/HTML/tr/kcontrol/paths/index.cache.bz2 share/doc/HTML/tr/kcontrol/paths/index.docbook share/doc/HTML/tr/kcontrol/solid-actions/index.cache.bz2 share/doc/HTML/tr/kcontrol/solid-actions/index.docbook share/doc/HTML/tr/kcontrol/solid-device-automounter/index.cache.bz2 share/doc/HTML/tr/kcontrol/solid-device-automounter/index.docbook share/doc/HTML/tr/kcontrol/spellchecking/index.cache.bz2 share/doc/HTML/tr/kcontrol/spellchecking/index.docbook share/doc/HTML/tr/kcontrol/splashscreen/index.cache.bz2 share/doc/HTML/tr/kcontrol/splashscreen/index.docbook share/doc/HTML/tr/kcontrol/workspaceoptions/index.cache.bz2 share/doc/HTML/tr/kcontrol/workspaceoptions/index.docbook share/doc/HTML/tr/kfontview/index.cache.bz2 share/doc/HTML/tr/kfontview/index.docbook share/doc/HTML/tr/knetattach/index.cache.bz2 share/doc/HTML/tr/knetattach/index.docbook share/doc/HTML/tr/plasma-desktop/index.cache.bz2 share/doc/HTML/tr/plasma-desktop/index.docbook share/doc/HTML/uk/kcontrol/baloo/index.cache.bz2 share/doc/HTML/uk/kcontrol/baloo/index.docbook share/doc/HTML/uk/kcontrol/clock/index.cache.bz2 share/doc/HTML/uk/kcontrol/clock/index.docbook share/doc/HTML/uk/kcontrol/componentchooser/index.cache.bz2 share/doc/HTML/uk/kcontrol/componentchooser/index.docbook share/doc/HTML/uk/kcontrol/joystick/index.cache.bz2 share/doc/HTML/uk/kcontrol/joystick/index.docbook share/doc/HTML/uk/kcontrol/kcm_recentFiles/index.cache.bz2 share/doc/HTML/uk/kcontrol/kcm_recentFiles/index.docbook share/doc/HTML/uk/kcontrol/kcmaccess/index.cache.bz2 share/doc/HTML/uk/kcontrol/kcmaccess/index.docbook share/doc/HTML/uk/kcontrol/kcmactivities/index.cache.bz2 share/doc/HTML/uk/kcontrol/kcmactivities/index.docbook share/doc/HTML/uk/kcontrol/kcmlaunchfeedback/index.cache.bz2 share/doc/HTML/uk/kcontrol/kcmlaunchfeedback/index.docbook share/doc/HTML/uk/kcontrol/kcmsmserver/index.cache.bz2 share/doc/HTML/uk/kcontrol/kcmsmserver/index.docbook share/doc/HTML/uk/kcontrol/kded/index.cache.bz2 share/doc/HTML/uk/kcontrol/kded/index.docbook share/doc/HTML/uk/kcontrol/keyboard/index.cache.bz2 share/doc/HTML/uk/kcontrol/keyboard/index.docbook share/doc/HTML/uk/kcontrol/keys/index.cache.bz2 share/doc/HTML/uk/kcontrol/keys/index.docbook share/doc/HTML/uk/kcontrol/mouse/index.cache.bz2 share/doc/HTML/uk/kcontrol/mouse/index.docbook share/doc/HTML/uk/kcontrol/paths/index.cache.bz2 share/doc/HTML/uk/kcontrol/paths/index.docbook share/doc/HTML/uk/kcontrol/paths/paths.png share/doc/HTML/uk/kcontrol/solid-actions/add-action.png share/doc/HTML/uk/kcontrol/solid-actions/edit-action.png share/doc/HTML/uk/kcontrol/solid-actions/index.cache.bz2 share/doc/HTML/uk/kcontrol/solid-actions/index.docbook share/doc/HTML/uk/kcontrol/solid-actions/main.png share/doc/HTML/uk/kcontrol/solid-device-automounter/index.cache.bz2 share/doc/HTML/uk/kcontrol/solid-device-automounter/index.docbook share/doc/HTML/uk/kcontrol/spellchecking/index.cache.bz2 share/doc/HTML/uk/kcontrol/spellchecking/index.docbook share/doc/HTML/uk/kcontrol/splashscreen/get-new-theme.png share/doc/HTML/uk/kcontrol/splashscreen/index.cache.bz2 share/doc/HTML/uk/kcontrol/splashscreen/index.docbook share/doc/HTML/uk/kcontrol/splashscreen/splash-main.png share/doc/HTML/uk/kcontrol/workspaceoptions/index.cache.bz2 share/doc/HTML/uk/kcontrol/workspaceoptions/index.docbook share/doc/HTML/uk/kfontview/index.cache.bz2 share/doc/HTML/uk/kfontview/index.docbook share/doc/HTML/uk/kfontview/kfontview.png share/doc/HTML/uk/knetattach/index.cache.bz2 share/doc/HTML/uk/knetattach/index.docbook share/doc/HTML/uk/plasma-desktop/application-launcher-settings.png share/doc/HTML/uk/plasma-desktop/index.cache.bz2 share/doc/HTML/uk/plasma-desktop/index.docbook share/icons/hicolor/128x128/devices/input-touchpad.png share/icons/hicolor/16x16/devices/input-touchpad.png share/icons/hicolor/22x22/devices/input-touchpad.png share/icons/hicolor/24x24/devices/input-touchpad.png share/icons/hicolor/256x256/devices/input-touchpad.png share/icons/hicolor/32x32/devices/input-touchpad.png share/icons/hicolor/48x48/devices/input-touchpad.png share/icons/hicolor/64x64/devices/input-touchpad.png share/icons/hicolor/96x96/devices/input-touchpad.png share/icons/hicolor/scalable/devices/input-touchpad.svgz share/kcm_recentFiles/workspace/settings/qml/recentFiles/BlacklistApplicationView.qml share/kcmkeys/kde3.kksrc share/kcmkeys/kde4.kksrc share/kcmkeys/mac4.kksrc share/kcmkeys/unix3.kksrc share/kcmkeys/win3.kksrc share/kcmkeys/win4.kksrc share/kcmkeys/wm3.kksrc share/kcmmouse/cursor_large_black.pcf.gz share/kcmmouse/cursor_large_white.pcf.gz share/kcmmouse/cursor_small_white.pcf.gz share/kcmmouse/pics/mouse_lh.png share/kcmmouse/pics/mouse_rh.png share/kcmsolidactions/solid-action-template.desktop share/kglobalaccel/org.kde.plasma.emojier.desktop share/knotifications6/kaccess.notifyrc share/knotifications6/kcm_touchpad.notifyrc share/knsrcfiles/krunner.knsrc share/knsrcfiles/ksplash.knsrc share/locale/af/LC_MESSAGES/kaccess.mo share/locale/af/LC_MESSAGES/kcm_access.mo share/locale/af/LC_MESSAGES/kcm_componentchooser.mo share/locale/af/LC_MESSAGES/kcm_desktoppaths.mo share/locale/af/LC_MESSAGES/kcm_kded.mo share/locale/af/LC_MESSAGES/kcm_smserver.mo share/locale/af/LC_MESSAGES/kcmkclock.mo share/locale/af/LC_MESSAGES/kcmkeyboard.mo share/locale/af/LC_MESSAGES/kcmmouse.mo share/locale/af/LC_MESSAGES/knetattach.mo share/locale/af/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ar/LC_MESSAGES/kaccess.mo share/locale/ar/LC_MESSAGES/kcm_access.mo share/locale/ar/LC_MESSAGES/kcm_activities.mo share/locale/ar/LC_MESSAGES/kcm_baloofile.mo share/locale/ar/LC_MESSAGES/kcm_componentchooser.mo share/locale/ar/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ar/LC_MESSAGES/kcm_device_automounter.mo share/locale/ar/LC_MESSAGES/kcm_kded.mo share/locale/ar/LC_MESSAGES/kcm_keys.mo share/locale/ar/LC_MESSAGES/kcm_krunnersettings.mo share/locale/ar/LC_MESSAGES/kcm_landingpage.mo share/locale/ar/LC_MESSAGES/kcm_plasmasearch.mo share/locale/ar/LC_MESSAGES/kcm_recentFiles.mo share/locale/ar/LC_MESSAGES/kcm_smserver.mo share/locale/ar/LC_MESSAGES/kcm_solid_actions.mo share/locale/ar/LC_MESSAGES/kcm_splashscreen.mo share/locale/ar/LC_MESSAGES/kcm_tablet.mo share/locale/ar/LC_MESSAGES/kcm_touchpad.mo share/locale/ar/LC_MESSAGES/kcm_touchscreen.mo share/locale/ar/LC_MESSAGES/kcm_workspace.mo share/locale/ar/LC_MESSAGES/kcmkclock.mo share/locale/ar/LC_MESSAGES/kcmkeyboard.mo share/locale/ar/LC_MESSAGES/kcmmouse.mo share/locale/ar/LC_MESSAGES/kcmqtquicksettings.mo share/locale/ar/LC_MESSAGES/knetattach.mo share/locale/ar/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/ar/LC_MESSAGES/plasma_runner_kwin.mo share/locale/ar/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/ar/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/ar/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/ar/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/ar/LC_MESSAGES/plasmaactivitymanager.mo share/locale/as/LC_MESSAGES/kcm_access.mo share/locale/ast/LC_MESSAGES/kaccess.mo share/locale/ast/LC_MESSAGES/kcm_access.mo share/locale/ast/LC_MESSAGES/kcm_activities.mo share/locale/ast/LC_MESSAGES/kcm_baloofile.mo share/locale/ast/LC_MESSAGES/kcm_componentchooser.mo share/locale/ast/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ast/LC_MESSAGES/kcm_device_automounter.mo share/locale/ast/LC_MESSAGES/kcm_gamecontroller.mo share/locale/ast/LC_MESSAGES/kcm_kded.mo share/locale/ast/LC_MESSAGES/kcm_keys.mo share/locale/ast/LC_MESSAGES/kcm_krunnersettings.mo share/locale/ast/LC_MESSAGES/kcm_landingpage.mo share/locale/ast/LC_MESSAGES/kcm_plasmasearch.mo share/locale/ast/LC_MESSAGES/kcm_recentFiles.mo share/locale/ast/LC_MESSAGES/kcm_smserver.mo share/locale/ast/LC_MESSAGES/kcm_solid_actions.mo share/locale/ast/LC_MESSAGES/kcm_splashscreen.mo share/locale/ast/LC_MESSAGES/kcm_tablet.mo share/locale/ast/LC_MESSAGES/kcm_touchpad.mo share/locale/ast/LC_MESSAGES/kcm_touchscreen.mo share/locale/ast/LC_MESSAGES/kcm_workspace.mo share/locale/ast/LC_MESSAGES/kcmkclock.mo share/locale/ast/LC_MESSAGES/kcmkeyboard.mo share/locale/ast/LC_MESSAGES/kcmmouse.mo share/locale/ast/LC_MESSAGES/kcmqtquicksettings.mo share/locale/ast/LC_MESSAGES/knetattach.mo share/locale/ast/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/ast/LC_MESSAGES/plasma_runner_kwin.mo share/locale/ast/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/ast/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/ast/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/ast/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/ast/LC_MESSAGES/plasmaactivitymanager.mo share/locale/az/LC_MESSAGES/kaccess.mo share/locale/az/LC_MESSAGES/kcm_access.mo share/locale/az/LC_MESSAGES/kcm_activities.mo share/locale/az/LC_MESSAGES/kcm_baloofile.mo share/locale/az/LC_MESSAGES/kcm_componentchooser.mo share/locale/az/LC_MESSAGES/kcm_desktoppaths.mo share/locale/az/LC_MESSAGES/kcm_device_automounter.mo share/locale/az/LC_MESSAGES/kcm_kded.mo share/locale/az/LC_MESSAGES/kcm_keys.mo share/locale/az/LC_MESSAGES/kcm_krunnersettings.mo share/locale/az/LC_MESSAGES/kcm_landingpage.mo share/locale/az/LC_MESSAGES/kcm_plasmasearch.mo share/locale/az/LC_MESSAGES/kcm_recentFiles.mo share/locale/az/LC_MESSAGES/kcm_smserver.mo share/locale/az/LC_MESSAGES/kcm_solid_actions.mo share/locale/az/LC_MESSAGES/kcm_splashscreen.mo share/locale/az/LC_MESSAGES/kcm_tablet.mo share/locale/az/LC_MESSAGES/kcm_touchpad.mo share/locale/az/LC_MESSAGES/kcm_touchscreen.mo share/locale/az/LC_MESSAGES/kcm_workspace.mo share/locale/az/LC_MESSAGES/kcmkclock.mo share/locale/az/LC_MESSAGES/kcmkeyboard.mo share/locale/az/LC_MESSAGES/kcmmouse.mo share/locale/az/LC_MESSAGES/kcmqtquicksettings.mo share/locale/az/LC_MESSAGES/knetattach.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/kcm_access.mo share/locale/be/LC_MESSAGES/kcm_activities.mo share/locale/be/LC_MESSAGES/kcm_baloofile.mo share/locale/be/LC_MESSAGES/kcm_componentchooser.mo share/locale/be/LC_MESSAGES/kcm_desktoppaths.mo share/locale/be/LC_MESSAGES/kcm_device_automounter.mo share/locale/be/LC_MESSAGES/kcm_kded.mo share/locale/be/LC_MESSAGES/kcm_keys.mo share/locale/be/LC_MESSAGES/kcm_krunnersettings.mo share/locale/be/LC_MESSAGES/kcm_landingpage.mo share/locale/be/LC_MESSAGES/kcm_plasmasearch.mo share/locale/be/LC_MESSAGES/kcm_recentFiles.mo share/locale/be/LC_MESSAGES/kcm_smserver.mo share/locale/be/LC_MESSAGES/kcm_solid_actions.mo share/locale/be/LC_MESSAGES/kcm_splashscreen.mo share/locale/be/LC_MESSAGES/kcm_tablet.mo share/locale/be/LC_MESSAGES/kcm_touchpad.mo share/locale/be/LC_MESSAGES/kcm_touchscreen.mo share/locale/be/LC_MESSAGES/kcm_workspace.mo share/locale/be/LC_MESSAGES/kcmkclock.mo share/locale/be/LC_MESSAGES/kcmkeyboard.mo share/locale/be/LC_MESSAGES/kcmmouse.mo share/locale/be/LC_MESSAGES/kcmqtquicksettings.mo share/locale/be/LC_MESSAGES/knetattach.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/kcm_access.mo share/locale/bg/LC_MESSAGES/kcm_activities.mo share/locale/bg/LC_MESSAGES/kcm_baloofile.mo share/locale/bg/LC_MESSAGES/kcm_componentchooser.mo share/locale/bg/LC_MESSAGES/kcm_desktoppaths.mo share/locale/bg/LC_MESSAGES/kcm_device_automounter.mo share/locale/bg/LC_MESSAGES/kcm_gamecontroller.mo share/locale/bg/LC_MESSAGES/kcm_kded.mo share/locale/bg/LC_MESSAGES/kcm_keys.mo share/locale/bg/LC_MESSAGES/kcm_krunnersettings.mo share/locale/bg/LC_MESSAGES/kcm_landingpage.mo share/locale/bg/LC_MESSAGES/kcm_plasmasearch.mo share/locale/bg/LC_MESSAGES/kcm_recentFiles.mo share/locale/bg/LC_MESSAGES/kcm_smserver.mo share/locale/bg/LC_MESSAGES/kcm_solid_actions.mo share/locale/bg/LC_MESSAGES/kcm_splashscreen.mo share/locale/bg/LC_MESSAGES/kcm_tablet.mo share/locale/bg/LC_MESSAGES/kcm_touchpad.mo share/locale/bg/LC_MESSAGES/kcm_touchscreen.mo share/locale/bg/LC_MESSAGES/kcm_workspace.mo share/locale/bg/LC_MESSAGES/kcmkclock.mo share/locale/bg/LC_MESSAGES/kcmkeyboard.mo share/locale/bg/LC_MESSAGES/kcmmouse.mo share/locale/bg/LC_MESSAGES/kcmqtquicksettings.mo share/locale/bg/LC_MESSAGES/knetattach.mo share/locale/bg/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/bg/LC_MESSAGES/plasma_runner_kwin.mo share/locale/bg/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/bg/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/bg/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/bg/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/bg/LC_MESSAGES/plasmaactivitymanager.mo share/locale/bn/LC_MESSAGES/kaccess.mo share/locale/bn/LC_MESSAGES/kcm_access.mo share/locale/bn/LC_MESSAGES/kcm_componentchooser.mo share/locale/bn/LC_MESSAGES/kcm_desktoppaths.mo share/locale/bn/LC_MESSAGES/kcm_kded.mo share/locale/bn/LC_MESSAGES/kcm_smserver.mo share/locale/bn/LC_MESSAGES/kcmkclock.mo share/locale/bn/LC_MESSAGES/kcmkeyboard.mo share/locale/bn/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/bn_IN/LC_MESSAGES/kaccess.mo share/locale/bn_IN/LC_MESSAGES/kcm_access.mo share/locale/bn_IN/LC_MESSAGES/kcm_desktoppaths.mo share/locale/bn_IN/LC_MESSAGES/kcm_kded.mo share/locale/bn_IN/LC_MESSAGES/kcm_smserver.mo share/locale/bn_IN/LC_MESSAGES/kcmkclock.mo share/locale/bn_IN/LC_MESSAGES/kcmkeyboard.mo share/locale/bn_IN/LC_MESSAGES/knetattach.mo share/locale/bn_IN/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/bn_IN/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/bn_IN/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/bn_IN/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/br/LC_MESSAGES/kaccess.mo share/locale/br/LC_MESSAGES/kcm_access.mo share/locale/br/LC_MESSAGES/kcm_componentchooser.mo share/locale/br/LC_MESSAGES/kcm_desktoppaths.mo share/locale/br/LC_MESSAGES/kcm_kded.mo share/locale/br/LC_MESSAGES/kcm_smserver.mo share/locale/br/LC_MESSAGES/kcmkclock.mo share/locale/br/LC_MESSAGES/kcmkeyboard.mo share/locale/br/LC_MESSAGES/kcmmouse.mo share/locale/br/LC_MESSAGES/knetattach.mo share/locale/br/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/bs/LC_MESSAGES/kaccess.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_device_automounter.mo share/locale/bs/LC_MESSAGES/kcm_kded.mo share/locale/bs/LC_MESSAGES/kcm_krunnersettings.mo share/locale/bs/LC_MESSAGES/kcm_plasmasearch.mo share/locale/bs/LC_MESSAGES/kcm_smserver.mo share/locale/bs/LC_MESSAGES/kcm_solid_actions.mo share/locale/bs/LC_MESSAGES/kcm_splashscreen.mo share/locale/bs/LC_MESSAGES/kcm_touchpad.mo share/locale/bs/LC_MESSAGES/kcm_workspace.mo share/locale/bs/LC_MESSAGES/kcmkclock.mo share/locale/bs/LC_MESSAGES/kcmkeyboard.mo share/locale/bs/LC_MESSAGES/kcmmouse.mo share/locale/bs/LC_MESSAGES/knetattach.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/kcm_access.mo share/locale/ca/LC_MESSAGES/kcm_activities.mo share/locale/ca/LC_MESSAGES/kcm_baloofile.mo share/locale/ca/LC_MESSAGES/kcm_componentchooser.mo share/locale/ca/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ca/LC_MESSAGES/kcm_device_automounter.mo share/locale/ca/LC_MESSAGES/kcm_gamecontroller.mo share/locale/ca/LC_MESSAGES/kcm_kded.mo share/locale/ca/LC_MESSAGES/kcm_keys.mo share/locale/ca/LC_MESSAGES/kcm_krunnersettings.mo share/locale/ca/LC_MESSAGES/kcm_landingpage.mo share/locale/ca/LC_MESSAGES/kcm_plasmasearch.mo share/locale/ca/LC_MESSAGES/kcm_recentFiles.mo share/locale/ca/LC_MESSAGES/kcm_smserver.mo share/locale/ca/LC_MESSAGES/kcm_solid_actions.mo share/locale/ca/LC_MESSAGES/kcm_splashscreen.mo share/locale/ca/LC_MESSAGES/kcm_tablet.mo share/locale/ca/LC_MESSAGES/kcm_touchpad.mo share/locale/ca/LC_MESSAGES/kcm_touchscreen.mo share/locale/ca/LC_MESSAGES/kcm_workspace.mo share/locale/ca/LC_MESSAGES/kcmkclock.mo share/locale/ca/LC_MESSAGES/kcmkeyboard.mo share/locale/ca/LC_MESSAGES/kcmmouse.mo share/locale/ca/LC_MESSAGES/kcmqtquicksettings.mo share/locale/ca/LC_MESSAGES/knetattach.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/kcm_access.mo share/locale/ca@valencia/LC_MESSAGES/kcm_activities.mo share/locale/ca@valencia/LC_MESSAGES/kcm_baloofile.mo share/locale/ca@valencia/LC_MESSAGES/kcm_componentchooser.mo share/locale/ca@valencia/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ca@valencia/LC_MESSAGES/kcm_device_automounter.mo share/locale/ca@valencia/LC_MESSAGES/kcm_gamecontroller.mo share/locale/ca@valencia/LC_MESSAGES/kcm_kded.mo share/locale/ca@valencia/LC_MESSAGES/kcm_keys.mo share/locale/ca@valencia/LC_MESSAGES/kcm_krunnersettings.mo share/locale/ca@valencia/LC_MESSAGES/kcm_landingpage.mo share/locale/ca@valencia/LC_MESSAGES/kcm_plasmasearch.mo share/locale/ca@valencia/LC_MESSAGES/kcm_recentFiles.mo share/locale/ca@valencia/LC_MESSAGES/kcm_smserver.mo share/locale/ca@valencia/LC_MESSAGES/kcm_solid_actions.mo share/locale/ca@valencia/LC_MESSAGES/kcm_splashscreen.mo share/locale/ca@valencia/LC_MESSAGES/kcm_tablet.mo share/locale/ca@valencia/LC_MESSAGES/kcm_touchpad.mo share/locale/ca@valencia/LC_MESSAGES/kcm_touchscreen.mo share/locale/ca@valencia/LC_MESSAGES/kcm_workspace.mo share/locale/ca@valencia/LC_MESSAGES/kcmkclock.mo share/locale/ca@valencia/LC_MESSAGES/kcmkeyboard.mo share/locale/ca@valencia/LC_MESSAGES/kcmmouse.mo share/locale/ca@valencia/LC_MESSAGES/kcmqtquicksettings.mo share/locale/ca@valencia/LC_MESSAGES/knetattach.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/kcm_access.mo share/locale/cs/LC_MESSAGES/kcm_activities.mo share/locale/cs/LC_MESSAGES/kcm_baloofile.mo share/locale/cs/LC_MESSAGES/kcm_componentchooser.mo share/locale/cs/LC_MESSAGES/kcm_desktoppaths.mo share/locale/cs/LC_MESSAGES/kcm_device_automounter.mo share/locale/cs/LC_MESSAGES/kcm_gamecontroller.mo share/locale/cs/LC_MESSAGES/kcm_kded.mo share/locale/cs/LC_MESSAGES/kcm_keys.mo share/locale/cs/LC_MESSAGES/kcm_krunnersettings.mo share/locale/cs/LC_MESSAGES/kcm_landingpage.mo share/locale/cs/LC_MESSAGES/kcm_plasmasearch.mo share/locale/cs/LC_MESSAGES/kcm_recentFiles.mo share/locale/cs/LC_MESSAGES/kcm_smserver.mo share/locale/cs/LC_MESSAGES/kcm_solid_actions.mo share/locale/cs/LC_MESSAGES/kcm_splashscreen.mo share/locale/cs/LC_MESSAGES/kcm_tablet.mo share/locale/cs/LC_MESSAGES/kcm_touchpad.mo share/locale/cs/LC_MESSAGES/kcm_touchscreen.mo share/locale/cs/LC_MESSAGES/kcm_workspace.mo share/locale/cs/LC_MESSAGES/kcmkclock.mo share/locale/cs/LC_MESSAGES/kcmkeyboard.mo share/locale/cs/LC_MESSAGES/kcmmouse.mo share/locale/cs/LC_MESSAGES/kcmqtquicksettings.mo share/locale/cs/LC_MESSAGES/knetattach.mo share/locale/cs/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/cs/LC_MESSAGES/plasma_runner_kwin.mo share/locale/cs/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/cs/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/cs/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/cs/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/cs/LC_MESSAGES/plasmaactivitymanager.mo share/locale/csb/LC_MESSAGES/kaccess.mo share/locale/csb/LC_MESSAGES/kcm_access.mo share/locale/csb/LC_MESSAGES/kcm_componentchooser.mo share/locale/csb/LC_MESSAGES/kcm_kded.mo share/locale/csb/LC_MESSAGES/kcm_smserver.mo share/locale/csb/LC_MESSAGES/kcmkclock.mo share/locale/csb/LC_MESSAGES/kcmkeyboard.mo share/locale/csb/LC_MESSAGES/knetattach.mo share/locale/csb/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/csb/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/csb/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/csb/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/csb/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/cy/LC_MESSAGES/kaccess.mo share/locale/cy/LC_MESSAGES/kcm_access.mo share/locale/cy/LC_MESSAGES/kcm_componentchooser.mo share/locale/cy/LC_MESSAGES/kcm_desktoppaths.mo share/locale/cy/LC_MESSAGES/kcm_kded.mo share/locale/cy/LC_MESSAGES/kcm_smserver.mo share/locale/cy/LC_MESSAGES/kcmkclock.mo share/locale/cy/LC_MESSAGES/kcmkeyboard.mo share/locale/cy/LC_MESSAGES/kcmmouse.mo share/locale/cy/LC_MESSAGES/knetattach.mo share/locale/cy/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/da/LC_MESSAGES/kaccess.mo share/locale/da/LC_MESSAGES/kcm_access.mo share/locale/da/LC_MESSAGES/kcm_activities.mo share/locale/da/LC_MESSAGES/kcm_baloofile.mo share/locale/da/LC_MESSAGES/kcm_componentchooser.mo share/locale/da/LC_MESSAGES/kcm_desktoppaths.mo share/locale/da/LC_MESSAGES/kcm_device_automounter.mo share/locale/da/LC_MESSAGES/kcm_kded.mo share/locale/da/LC_MESSAGES/kcm_keys.mo share/locale/da/LC_MESSAGES/kcm_krunnersettings.mo share/locale/da/LC_MESSAGES/kcm_plasmasearch.mo share/locale/da/LC_MESSAGES/kcm_smserver.mo share/locale/da/LC_MESSAGES/kcm_solid_actions.mo share/locale/da/LC_MESSAGES/kcm_splashscreen.mo share/locale/da/LC_MESSAGES/kcm_touchpad.mo share/locale/da/LC_MESSAGES/kcm_workspace.mo share/locale/da/LC_MESSAGES/kcmkclock.mo share/locale/da/LC_MESSAGES/kcmkeyboard.mo share/locale/da/LC_MESSAGES/kcmmouse.mo share/locale/da/LC_MESSAGES/kcmqtquicksettings.mo share/locale/da/LC_MESSAGES/knetattach.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/kcm_access.mo share/locale/de/LC_MESSAGES/kcm_activities.mo share/locale/de/LC_MESSAGES/kcm_baloofile.mo share/locale/de/LC_MESSAGES/kcm_componentchooser.mo share/locale/de/LC_MESSAGES/kcm_desktoppaths.mo share/locale/de/LC_MESSAGES/kcm_device_automounter.mo share/locale/de/LC_MESSAGES/kcm_gamecontroller.mo share/locale/de/LC_MESSAGES/kcm_kded.mo share/locale/de/LC_MESSAGES/kcm_keys.mo share/locale/de/LC_MESSAGES/kcm_krunnersettings.mo share/locale/de/LC_MESSAGES/kcm_landingpage.mo share/locale/de/LC_MESSAGES/kcm_plasmasearch.mo share/locale/de/LC_MESSAGES/kcm_recentFiles.mo share/locale/de/LC_MESSAGES/kcm_smserver.mo share/locale/de/LC_MESSAGES/kcm_solid_actions.mo share/locale/de/LC_MESSAGES/kcm_splashscreen.mo share/locale/de/LC_MESSAGES/kcm_tablet.mo share/locale/de/LC_MESSAGES/kcm_touchpad.mo share/locale/de/LC_MESSAGES/kcm_touchscreen.mo share/locale/de/LC_MESSAGES/kcm_workspace.mo share/locale/de/LC_MESSAGES/kcmkclock.mo share/locale/de/LC_MESSAGES/kcmkeyboard.mo share/locale/de/LC_MESSAGES/kcmmouse.mo share/locale/de/LC_MESSAGES/kcmqtquicksettings.mo share/locale/de/LC_MESSAGES/knetattach.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/kcm_access.mo share/locale/el/LC_MESSAGES/kcm_activities.mo share/locale/el/LC_MESSAGES/kcm_baloofile.mo share/locale/el/LC_MESSAGES/kcm_componentchooser.mo share/locale/el/LC_MESSAGES/kcm_desktoppaths.mo share/locale/el/LC_MESSAGES/kcm_device_automounter.mo share/locale/el/LC_MESSAGES/kcm_kded.mo share/locale/el/LC_MESSAGES/kcm_krunnersettings.mo share/locale/el/LC_MESSAGES/kcm_plasmasearch.mo share/locale/el/LC_MESSAGES/kcm_smserver.mo share/locale/el/LC_MESSAGES/kcm_solid_actions.mo share/locale/el/LC_MESSAGES/kcm_splashscreen.mo share/locale/el/LC_MESSAGES/kcm_touchpad.mo share/locale/el/LC_MESSAGES/kcm_workspace.mo share/locale/el/LC_MESSAGES/kcmkclock.mo share/locale/el/LC_MESSAGES/kcmkeyboard.mo share/locale/el/LC_MESSAGES/kcmmouse.mo share/locale/el/LC_MESSAGES/knetattach.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/kcm_access.mo share/locale/en_GB/LC_MESSAGES/kcm_activities.mo share/locale/en_GB/LC_MESSAGES/kcm_baloofile.mo share/locale/en_GB/LC_MESSAGES/kcm_componentchooser.mo share/locale/en_GB/LC_MESSAGES/kcm_desktoppaths.mo share/locale/en_GB/LC_MESSAGES/kcm_device_automounter.mo share/locale/en_GB/LC_MESSAGES/kcm_kded.mo share/locale/en_GB/LC_MESSAGES/kcm_keys.mo share/locale/en_GB/LC_MESSAGES/kcm_krunnersettings.mo share/locale/en_GB/LC_MESSAGES/kcm_landingpage.mo share/locale/en_GB/LC_MESSAGES/kcm_plasmasearch.mo share/locale/en_GB/LC_MESSAGES/kcm_recentFiles.mo share/locale/en_GB/LC_MESSAGES/kcm_smserver.mo share/locale/en_GB/LC_MESSAGES/kcm_solid_actions.mo share/locale/en_GB/LC_MESSAGES/kcm_splashscreen.mo share/locale/en_GB/LC_MESSAGES/kcm_tablet.mo share/locale/en_GB/LC_MESSAGES/kcm_touchpad.mo share/locale/en_GB/LC_MESSAGES/kcm_touchscreen.mo share/locale/en_GB/LC_MESSAGES/kcm_workspace.mo share/locale/en_GB/LC_MESSAGES/kcmkclock.mo share/locale/en_GB/LC_MESSAGES/kcmkeyboard.mo share/locale/en_GB/LC_MESSAGES/kcmmouse.mo share/locale/en_GB/LC_MESSAGES/kcmqtquicksettings.mo share/locale/en_GB/LC_MESSAGES/knetattach.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/kcm_access.mo share/locale/eo/LC_MESSAGES/kcm_activities.mo share/locale/eo/LC_MESSAGES/kcm_baloofile.mo share/locale/eo/LC_MESSAGES/kcm_componentchooser.mo share/locale/eo/LC_MESSAGES/kcm_desktoppaths.mo share/locale/eo/LC_MESSAGES/kcm_device_automounter.mo share/locale/eo/LC_MESSAGES/kcm_gamecontroller.mo share/locale/eo/LC_MESSAGES/kcm_kded.mo share/locale/eo/LC_MESSAGES/kcm_keys.mo share/locale/eo/LC_MESSAGES/kcm_krunnersettings.mo share/locale/eo/LC_MESSAGES/kcm_landingpage.mo share/locale/eo/LC_MESSAGES/kcm_plasmasearch.mo share/locale/eo/LC_MESSAGES/kcm_recentFiles.mo share/locale/eo/LC_MESSAGES/kcm_smserver.mo share/locale/eo/LC_MESSAGES/kcm_solid_actions.mo share/locale/eo/LC_MESSAGES/kcm_splashscreen.mo share/locale/eo/LC_MESSAGES/kcm_tablet.mo share/locale/eo/LC_MESSAGES/kcm_touchpad.mo share/locale/eo/LC_MESSAGES/kcm_touchscreen.mo share/locale/eo/LC_MESSAGES/kcm_workspace.mo share/locale/eo/LC_MESSAGES/kcmkclock.mo share/locale/eo/LC_MESSAGES/kcmkeyboard.mo share/locale/eo/LC_MESSAGES/kcmmouse.mo share/locale/eo/LC_MESSAGES/kcmqtquicksettings.mo share/locale/eo/LC_MESSAGES/knetattach.mo share/locale/eo/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/eo/LC_MESSAGES/plasma_runner_kwin.mo share/locale/eo/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/eo/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/eo/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/eo/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/eo/LC_MESSAGES/plasmaactivitymanager.mo share/locale/es/LC_MESSAGES/kaccess.mo share/locale/es/LC_MESSAGES/kcm_access.mo share/locale/es/LC_MESSAGES/kcm_activities.mo share/locale/es/LC_MESSAGES/kcm_baloofile.mo share/locale/es/LC_MESSAGES/kcm_componentchooser.mo share/locale/es/LC_MESSAGES/kcm_desktoppaths.mo share/locale/es/LC_MESSAGES/kcm_device_automounter.mo share/locale/es/LC_MESSAGES/kcm_gamecontroller.mo share/locale/es/LC_MESSAGES/kcm_kded.mo share/locale/es/LC_MESSAGES/kcm_keys.mo share/locale/es/LC_MESSAGES/kcm_krunnersettings.mo share/locale/es/LC_MESSAGES/kcm_landingpage.mo share/locale/es/LC_MESSAGES/kcm_plasmasearch.mo share/locale/es/LC_MESSAGES/kcm_recentFiles.mo share/locale/es/LC_MESSAGES/kcm_smserver.mo share/locale/es/LC_MESSAGES/kcm_solid_actions.mo share/locale/es/LC_MESSAGES/kcm_splashscreen.mo share/locale/es/LC_MESSAGES/kcm_tablet.mo share/locale/es/LC_MESSAGES/kcm_touchpad.mo share/locale/es/LC_MESSAGES/kcm_touchscreen.mo share/locale/es/LC_MESSAGES/kcm_workspace.mo share/locale/es/LC_MESSAGES/kcmkclock.mo share/locale/es/LC_MESSAGES/kcmkeyboard.mo share/locale/es/LC_MESSAGES/kcmmouse.mo share/locale/es/LC_MESSAGES/kcmqtquicksettings.mo share/locale/es/LC_MESSAGES/knetattach.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/kcm_access.mo share/locale/et/LC_MESSAGES/kcm_activities.mo share/locale/et/LC_MESSAGES/kcm_baloofile.mo share/locale/et/LC_MESSAGES/kcm_componentchooser.mo share/locale/et/LC_MESSAGES/kcm_desktoppaths.mo share/locale/et/LC_MESSAGES/kcm_device_automounter.mo share/locale/et/LC_MESSAGES/kcm_kded.mo share/locale/et/LC_MESSAGES/kcm_keys.mo share/locale/et/LC_MESSAGES/kcm_krunnersettings.mo share/locale/et/LC_MESSAGES/kcm_landingpage.mo share/locale/et/LC_MESSAGES/kcm_plasmasearch.mo share/locale/et/LC_MESSAGES/kcm_recentFiles.mo share/locale/et/LC_MESSAGES/kcm_smserver.mo share/locale/et/LC_MESSAGES/kcm_solid_actions.mo share/locale/et/LC_MESSAGES/kcm_splashscreen.mo share/locale/et/LC_MESSAGES/kcm_touchpad.mo share/locale/et/LC_MESSAGES/kcm_workspace.mo share/locale/et/LC_MESSAGES/kcmkclock.mo share/locale/et/LC_MESSAGES/kcmkeyboard.mo share/locale/et/LC_MESSAGES/kcmmouse.mo share/locale/et/LC_MESSAGES/kcmqtquicksettings.mo share/locale/et/LC_MESSAGES/knetattach.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/kcm_access.mo share/locale/eu/LC_MESSAGES/kcm_activities.mo share/locale/eu/LC_MESSAGES/kcm_baloofile.mo share/locale/eu/LC_MESSAGES/kcm_componentchooser.mo share/locale/eu/LC_MESSAGES/kcm_desktoppaths.mo share/locale/eu/LC_MESSAGES/kcm_device_automounter.mo share/locale/eu/LC_MESSAGES/kcm_gamecontroller.mo share/locale/eu/LC_MESSAGES/kcm_kded.mo share/locale/eu/LC_MESSAGES/kcm_keys.mo share/locale/eu/LC_MESSAGES/kcm_krunnersettings.mo share/locale/eu/LC_MESSAGES/kcm_landingpage.mo share/locale/eu/LC_MESSAGES/kcm_plasmasearch.mo share/locale/eu/LC_MESSAGES/kcm_recentFiles.mo share/locale/eu/LC_MESSAGES/kcm_smserver.mo share/locale/eu/LC_MESSAGES/kcm_solid_actions.mo share/locale/eu/LC_MESSAGES/kcm_splashscreen.mo share/locale/eu/LC_MESSAGES/kcm_tablet.mo share/locale/eu/LC_MESSAGES/kcm_touchpad.mo share/locale/eu/LC_MESSAGES/kcm_touchscreen.mo share/locale/eu/LC_MESSAGES/kcm_workspace.mo share/locale/eu/LC_MESSAGES/kcmkclock.mo share/locale/eu/LC_MESSAGES/kcmkeyboard.mo share/locale/eu/LC_MESSAGES/kcmmouse.mo share/locale/eu/LC_MESSAGES/kcmqtquicksettings.mo share/locale/eu/LC_MESSAGES/knetattach.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/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_device_automounter.mo share/locale/fa/LC_MESSAGES/kcm_kded.mo share/locale/fa/LC_MESSAGES/kcm_smserver.mo share/locale/fa/LC_MESSAGES/kcm_solid_actions.mo share/locale/fa/LC_MESSAGES/kcmkclock.mo share/locale/fa/LC_MESSAGES/kcmkeyboard.mo share/locale/fa/LC_MESSAGES/kcmmouse.mo share/locale/fa/LC_MESSAGES/knetattach.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/kcm_access.mo share/locale/fi/LC_MESSAGES/kcm_activities.mo share/locale/fi/LC_MESSAGES/kcm_baloofile.mo share/locale/fi/LC_MESSAGES/kcm_componentchooser.mo share/locale/fi/LC_MESSAGES/kcm_desktoppaths.mo share/locale/fi/LC_MESSAGES/kcm_device_automounter.mo share/locale/fi/LC_MESSAGES/kcm_gamecontroller.mo share/locale/fi/LC_MESSAGES/kcm_kded.mo share/locale/fi/LC_MESSAGES/kcm_keys.mo share/locale/fi/LC_MESSAGES/kcm_krunnersettings.mo share/locale/fi/LC_MESSAGES/kcm_landingpage.mo share/locale/fi/LC_MESSAGES/kcm_plasmasearch.mo share/locale/fi/LC_MESSAGES/kcm_recentFiles.mo share/locale/fi/LC_MESSAGES/kcm_smserver.mo share/locale/fi/LC_MESSAGES/kcm_solid_actions.mo share/locale/fi/LC_MESSAGES/kcm_splashscreen.mo share/locale/fi/LC_MESSAGES/kcm_tablet.mo share/locale/fi/LC_MESSAGES/kcm_touchpad.mo share/locale/fi/LC_MESSAGES/kcm_touchscreen.mo share/locale/fi/LC_MESSAGES/kcm_workspace.mo share/locale/fi/LC_MESSAGES/kcmkclock.mo share/locale/fi/LC_MESSAGES/kcmkeyboard.mo share/locale/fi/LC_MESSAGES/kcmmouse.mo share/locale/fi/LC_MESSAGES/kcmqtquicksettings.mo share/locale/fi/LC_MESSAGES/knetattach.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/kcm_access.mo share/locale/fr/LC_MESSAGES/kcm_activities.mo share/locale/fr/LC_MESSAGES/kcm_baloofile.mo share/locale/fr/LC_MESSAGES/kcm_componentchooser.mo share/locale/fr/LC_MESSAGES/kcm_desktoppaths.mo share/locale/fr/LC_MESSAGES/kcm_device_automounter.mo share/locale/fr/LC_MESSAGES/kcm_gamecontroller.mo share/locale/fr/LC_MESSAGES/kcm_kded.mo share/locale/fr/LC_MESSAGES/kcm_keys.mo share/locale/fr/LC_MESSAGES/kcm_krunnersettings.mo share/locale/fr/LC_MESSAGES/kcm_landingpage.mo share/locale/fr/LC_MESSAGES/kcm_plasmasearch.mo share/locale/fr/LC_MESSAGES/kcm_recentFiles.mo share/locale/fr/LC_MESSAGES/kcm_smserver.mo share/locale/fr/LC_MESSAGES/kcm_solid_actions.mo share/locale/fr/LC_MESSAGES/kcm_splashscreen.mo share/locale/fr/LC_MESSAGES/kcm_tablet.mo share/locale/fr/LC_MESSAGES/kcm_touchpad.mo share/locale/fr/LC_MESSAGES/kcm_touchscreen.mo share/locale/fr/LC_MESSAGES/kcm_workspace.mo share/locale/fr/LC_MESSAGES/kcmkclock.mo share/locale/fr/LC_MESSAGES/kcmkeyboard.mo share/locale/fr/LC_MESSAGES/kcmmouse.mo share/locale/fr/LC_MESSAGES/kcmqtquicksettings.mo share/locale/fr/LC_MESSAGES/knetattach.mo share/locale/fr/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/fr/LC_MESSAGES/plasma_runner_kwin.mo share/locale/fr/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/fr/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/fr/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/fr/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/fr/LC_MESSAGES/plasmaactivitymanager.mo share/locale/fy/LC_MESSAGES/kaccess.mo share/locale/fy/LC_MESSAGES/kcm_access.mo share/locale/fy/LC_MESSAGES/kcm_componentchooser.mo share/locale/fy/LC_MESSAGES/kcm_desktoppaths.mo share/locale/fy/LC_MESSAGES/kcm_kded.mo share/locale/fy/LC_MESSAGES/kcm_smserver.mo share/locale/fy/LC_MESSAGES/kcm_solid_actions.mo share/locale/fy/LC_MESSAGES/kcmkclock.mo share/locale/fy/LC_MESSAGES/kcmkeyboard.mo share/locale/fy/LC_MESSAGES/kcmmouse.mo share/locale/fy/LC_MESSAGES/knetattach.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/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_device_automounter.mo share/locale/ga/LC_MESSAGES/kcm_kded.mo share/locale/ga/LC_MESSAGES/kcm_smserver.mo share/locale/ga/LC_MESSAGES/kcm_solid_actions.mo share/locale/ga/LC_MESSAGES/kcmkclock.mo share/locale/ga/LC_MESSAGES/kcmkeyboard.mo share/locale/ga/LC_MESSAGES/kcmmouse.mo share/locale/ga/LC_MESSAGES/knetattach.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/kcm_access.mo share/locale/gl/LC_MESSAGES/kcm_activities.mo share/locale/gl/LC_MESSAGES/kcm_baloofile.mo share/locale/gl/LC_MESSAGES/kcm_componentchooser.mo share/locale/gl/LC_MESSAGES/kcm_desktoppaths.mo share/locale/gl/LC_MESSAGES/kcm_device_automounter.mo share/locale/gl/LC_MESSAGES/kcm_gamecontroller.mo share/locale/gl/LC_MESSAGES/kcm_kded.mo share/locale/gl/LC_MESSAGES/kcm_krunnersettings.mo share/locale/gl/LC_MESSAGES/kcm_landingpage.mo share/locale/gl/LC_MESSAGES/kcm_plasmasearch.mo share/locale/gl/LC_MESSAGES/kcm_recentFiles.mo share/locale/gl/LC_MESSAGES/kcm_smserver.mo share/locale/gl/LC_MESSAGES/kcm_solid_actions.mo share/locale/gl/LC_MESSAGES/kcm_splashscreen.mo share/locale/gl/LC_MESSAGES/kcm_tablet.mo share/locale/gl/LC_MESSAGES/kcm_touchpad.mo share/locale/gl/LC_MESSAGES/kcm_touchscreen.mo share/locale/gl/LC_MESSAGES/kcm_workspace.mo share/locale/gl/LC_MESSAGES/kcmkclock.mo share/locale/gl/LC_MESSAGES/kcmkeyboard.mo share/locale/gl/LC_MESSAGES/kcmmouse.mo share/locale/gl/LC_MESSAGES/kcmqtquicksettings.mo share/locale/gl/LC_MESSAGES/knetattach.mo share/locale/gl/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/gl/LC_MESSAGES/plasma_runner_kwin.mo share/locale/gl/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/gl/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/gl/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/gl/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/gl/LC_MESSAGES/plasmaactivitymanager.mo share/locale/gu/LC_MESSAGES/kaccess.mo share/locale/gu/LC_MESSAGES/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_device_automounter.mo share/locale/gu/LC_MESSAGES/kcm_kded.mo share/locale/gu/LC_MESSAGES/kcm_smserver.mo share/locale/gu/LC_MESSAGES/kcm_solid_actions.mo share/locale/gu/LC_MESSAGES/kcmkclock.mo share/locale/gu/LC_MESSAGES/kcmkeyboard.mo share/locale/gu/LC_MESSAGES/kcmmouse.mo share/locale/gu/LC_MESSAGES/knetattach.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/kcm_access.mo share/locale/he/LC_MESSAGES/kcm_activities.mo share/locale/he/LC_MESSAGES/kcm_baloofile.mo share/locale/he/LC_MESSAGES/kcm_componentchooser.mo share/locale/he/LC_MESSAGES/kcm_desktoppaths.mo share/locale/he/LC_MESSAGES/kcm_device_automounter.mo share/locale/he/LC_MESSAGES/kcm_gamecontroller.mo share/locale/he/LC_MESSAGES/kcm_kded.mo share/locale/he/LC_MESSAGES/kcm_keys.mo share/locale/he/LC_MESSAGES/kcm_krunnersettings.mo share/locale/he/LC_MESSAGES/kcm_landingpage.mo share/locale/he/LC_MESSAGES/kcm_plasmasearch.mo share/locale/he/LC_MESSAGES/kcm_recentFiles.mo share/locale/he/LC_MESSAGES/kcm_smserver.mo share/locale/he/LC_MESSAGES/kcm_solid_actions.mo share/locale/he/LC_MESSAGES/kcm_splashscreen.mo share/locale/he/LC_MESSAGES/kcm_tablet.mo share/locale/he/LC_MESSAGES/kcm_touchpad.mo share/locale/he/LC_MESSAGES/kcm_touchscreen.mo share/locale/he/LC_MESSAGES/kcm_workspace.mo share/locale/he/LC_MESSAGES/kcmkclock.mo share/locale/he/LC_MESSAGES/kcmkeyboard.mo share/locale/he/LC_MESSAGES/kcmmouse.mo share/locale/he/LC_MESSAGES/kcmqtquicksettings.mo share/locale/he/LC_MESSAGES/knetattach.mo share/locale/he/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/he/LC_MESSAGES/plasma_runner_kwin.mo share/locale/he/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/he/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/he/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/he/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/he/LC_MESSAGES/plasmaactivitymanager.mo share/locale/hi/LC_MESSAGES/kaccess.mo share/locale/hi/LC_MESSAGES/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_device_automounter.mo share/locale/hi/LC_MESSAGES/kcm_kded.mo share/locale/hi/LC_MESSAGES/kcm_krunnersettings.mo share/locale/hi/LC_MESSAGES/kcm_landingpage.mo share/locale/hi/LC_MESSAGES/kcm_plasmasearch.mo share/locale/hi/LC_MESSAGES/kcm_smserver.mo share/locale/hi/LC_MESSAGES/kcm_solid_actions.mo share/locale/hi/LC_MESSAGES/kcm_splashscreen.mo share/locale/hi/LC_MESSAGES/kcm_tablet.mo share/locale/hi/LC_MESSAGES/kcmkclock.mo share/locale/hi/LC_MESSAGES/kcmkeyboard.mo share/locale/hi/LC_MESSAGES/kcmmouse.mo share/locale/hi/LC_MESSAGES/kcmqtquicksettings.mo share/locale/hi/LC_MESSAGES/knetattach.mo share/locale/hi/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/hi/LC_MESSAGES/plasma_runner_kwin.mo share/locale/hi/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/hi/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/hi/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/hne/LC_MESSAGES/kaccess.mo share/locale/hne/LC_MESSAGES/kcm_access.mo share/locale/hne/LC_MESSAGES/kcm_componentchooser.mo share/locale/hne/LC_MESSAGES/kcm_desktoppaths.mo share/locale/hne/LC_MESSAGES/kcm_kded.mo share/locale/hne/LC_MESSAGES/kcm_smserver.mo share/locale/hne/LC_MESSAGES/kcmkclock.mo share/locale/hne/LC_MESSAGES/kcmkeyboard.mo share/locale/hne/LC_MESSAGES/kcmmouse.mo share/locale/hne/LC_MESSAGES/knetattach.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/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_device_automounter.mo share/locale/hr/LC_MESSAGES/kcm_kded.mo share/locale/hr/LC_MESSAGES/kcm_smserver.mo share/locale/hr/LC_MESSAGES/kcm_solid_actions.mo share/locale/hr/LC_MESSAGES/kcmkclock.mo share/locale/hr/LC_MESSAGES/kcmkeyboard.mo share/locale/hr/LC_MESSAGES/kcmmouse.mo share/locale/hr/LC_MESSAGES/knetattach.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/hr/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/hsb/LC_MESSAGES/kaccess.mo share/locale/hsb/LC_MESSAGES/kcm_access.mo share/locale/hsb/LC_MESSAGES/kcm_componentchooser.mo share/locale/hsb/LC_MESSAGES/kcm_desktoppaths.mo share/locale/hsb/LC_MESSAGES/kcm_kded.mo share/locale/hsb/LC_MESSAGES/kcm_smserver.mo share/locale/hsb/LC_MESSAGES/kcmkclock.mo share/locale/hsb/LC_MESSAGES/kcmkeyboard.mo share/locale/hsb/LC_MESSAGES/kcmmouse.mo share/locale/hsb/LC_MESSAGES/knetattach.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/kcm_access.mo share/locale/hu/LC_MESSAGES/kcm_activities.mo share/locale/hu/LC_MESSAGES/kcm_baloofile.mo share/locale/hu/LC_MESSAGES/kcm_componentchooser.mo share/locale/hu/LC_MESSAGES/kcm_desktoppaths.mo share/locale/hu/LC_MESSAGES/kcm_device_automounter.mo share/locale/hu/LC_MESSAGES/kcm_gamecontroller.mo share/locale/hu/LC_MESSAGES/kcm_kded.mo share/locale/hu/LC_MESSAGES/kcm_keys.mo share/locale/hu/LC_MESSAGES/kcm_krunnersettings.mo share/locale/hu/LC_MESSAGES/kcm_landingpage.mo share/locale/hu/LC_MESSAGES/kcm_plasmasearch.mo share/locale/hu/LC_MESSAGES/kcm_recentFiles.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_touchscreen.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/knetattach.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/kcm_access.mo share/locale/ia/LC_MESSAGES/kcm_activities.mo share/locale/ia/LC_MESSAGES/kcm_baloofile.mo share/locale/ia/LC_MESSAGES/kcm_componentchooser.mo share/locale/ia/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ia/LC_MESSAGES/kcm_device_automounter.mo share/locale/ia/LC_MESSAGES/kcm_gamecontroller.mo share/locale/ia/LC_MESSAGES/kcm_kded.mo share/locale/ia/LC_MESSAGES/kcm_keys.mo share/locale/ia/LC_MESSAGES/kcm_krunnersettings.mo share/locale/ia/LC_MESSAGES/kcm_landingpage.mo share/locale/ia/LC_MESSAGES/kcm_plasmasearch.mo share/locale/ia/LC_MESSAGES/kcm_recentFiles.mo share/locale/ia/LC_MESSAGES/kcm_smserver.mo share/locale/ia/LC_MESSAGES/kcm_solid_actions.mo share/locale/ia/LC_MESSAGES/kcm_splashscreen.mo share/locale/ia/LC_MESSAGES/kcm_tablet.mo share/locale/ia/LC_MESSAGES/kcm_touchpad.mo share/locale/ia/LC_MESSAGES/kcm_touchscreen.mo share/locale/ia/LC_MESSAGES/kcm_workspace.mo share/locale/ia/LC_MESSAGES/kcmkclock.mo share/locale/ia/LC_MESSAGES/kcmkeyboard.mo share/locale/ia/LC_MESSAGES/kcmmouse.mo share/locale/ia/LC_MESSAGES/kcmqtquicksettings.mo share/locale/ia/LC_MESSAGES/knetattach.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/kcm_access.mo share/locale/id/LC_MESSAGES/kcm_activities.mo share/locale/id/LC_MESSAGES/kcm_baloofile.mo share/locale/id/LC_MESSAGES/kcm_componentchooser.mo share/locale/id/LC_MESSAGES/kcm_desktoppaths.mo share/locale/id/LC_MESSAGES/kcm_device_automounter.mo share/locale/id/LC_MESSAGES/kcm_kded.mo share/locale/id/LC_MESSAGES/kcm_keys.mo share/locale/id/LC_MESSAGES/kcm_krunnersettings.mo share/locale/id/LC_MESSAGES/kcm_landingpage.mo share/locale/id/LC_MESSAGES/kcm_plasmasearch.mo share/locale/id/LC_MESSAGES/kcm_recentFiles.mo share/locale/id/LC_MESSAGES/kcm_smserver.mo share/locale/id/LC_MESSAGES/kcm_solid_actions.mo share/locale/id/LC_MESSAGES/kcm_splashscreen.mo share/locale/id/LC_MESSAGES/kcm_tablet.mo share/locale/id/LC_MESSAGES/kcm_touchpad.mo share/locale/id/LC_MESSAGES/kcm_workspace.mo share/locale/id/LC_MESSAGES/kcmkclock.mo share/locale/id/LC_MESSAGES/kcmkeyboard.mo share/locale/id/LC_MESSAGES/kcmmouse.mo share/locale/id/LC_MESSAGES/kcmqtquicksettings.mo share/locale/id/LC_MESSAGES/knetattach.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/kcm_access.mo share/locale/is/LC_MESSAGES/kcm_activities.mo share/locale/is/LC_MESSAGES/kcm_baloofile.mo share/locale/is/LC_MESSAGES/kcm_componentchooser.mo share/locale/is/LC_MESSAGES/kcm_desktoppaths.mo share/locale/is/LC_MESSAGES/kcm_device_automounter.mo share/locale/is/LC_MESSAGES/kcm_kded.mo share/locale/is/LC_MESSAGES/kcm_keys.mo share/locale/is/LC_MESSAGES/kcm_krunnersettings.mo share/locale/is/LC_MESSAGES/kcm_landingpage.mo share/locale/is/LC_MESSAGES/kcm_plasmasearch.mo share/locale/is/LC_MESSAGES/kcm_recentFiles.mo share/locale/is/LC_MESSAGES/kcm_smserver.mo share/locale/is/LC_MESSAGES/kcm_solid_actions.mo share/locale/is/LC_MESSAGES/kcm_splashscreen.mo share/locale/is/LC_MESSAGES/kcm_tablet.mo share/locale/is/LC_MESSAGES/kcm_touchpad.mo share/locale/is/LC_MESSAGES/kcm_touchscreen.mo share/locale/is/LC_MESSAGES/kcmkclock.mo share/locale/is/LC_MESSAGES/kcmkeyboard.mo share/locale/is/LC_MESSAGES/kcmmouse.mo share/locale/is/LC_MESSAGES/knetattach.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/kcm_access.mo share/locale/it/LC_MESSAGES/kcm_activities.mo share/locale/it/LC_MESSAGES/kcm_baloofile.mo share/locale/it/LC_MESSAGES/kcm_componentchooser.mo share/locale/it/LC_MESSAGES/kcm_desktoppaths.mo share/locale/it/LC_MESSAGES/kcm_device_automounter.mo share/locale/it/LC_MESSAGES/kcm_gamecontroller.mo share/locale/it/LC_MESSAGES/kcm_kded.mo share/locale/it/LC_MESSAGES/kcm_keys.mo share/locale/it/LC_MESSAGES/kcm_krunnersettings.mo share/locale/it/LC_MESSAGES/kcm_landingpage.mo share/locale/it/LC_MESSAGES/kcm_plasmasearch.mo share/locale/it/LC_MESSAGES/kcm_recentFiles.mo share/locale/it/LC_MESSAGES/kcm_smserver.mo share/locale/it/LC_MESSAGES/kcm_solid_actions.mo share/locale/it/LC_MESSAGES/kcm_splashscreen.mo share/locale/it/LC_MESSAGES/kcm_tablet.mo share/locale/it/LC_MESSAGES/kcm_touchpad.mo share/locale/it/LC_MESSAGES/kcm_touchscreen.mo share/locale/it/LC_MESSAGES/kcm_workspace.mo share/locale/it/LC_MESSAGES/kcmkclock.mo share/locale/it/LC_MESSAGES/kcmkeyboard.mo share/locale/it/LC_MESSAGES/kcmmouse.mo share/locale/it/LC_MESSAGES/kcmqtquicksettings.mo share/locale/it/LC_MESSAGES/knetattach.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/kcm_access.mo share/locale/ja/LC_MESSAGES/kcm_activities.mo share/locale/ja/LC_MESSAGES/kcm_baloofile.mo share/locale/ja/LC_MESSAGES/kcm_componentchooser.mo share/locale/ja/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ja/LC_MESSAGES/kcm_device_automounter.mo share/locale/ja/LC_MESSAGES/kcm_gamecontroller.mo share/locale/ja/LC_MESSAGES/kcm_kded.mo share/locale/ja/LC_MESSAGES/kcm_keys.mo share/locale/ja/LC_MESSAGES/kcm_krunnersettings.mo share/locale/ja/LC_MESSAGES/kcm_landingpage.mo share/locale/ja/LC_MESSAGES/kcm_plasmasearch.mo share/locale/ja/LC_MESSAGES/kcm_recentFiles.mo share/locale/ja/LC_MESSAGES/kcm_smserver.mo share/locale/ja/LC_MESSAGES/kcm_solid_actions.mo share/locale/ja/LC_MESSAGES/kcm_splashscreen.mo share/locale/ja/LC_MESSAGES/kcm_tablet.mo share/locale/ja/LC_MESSAGES/kcm_touchpad.mo share/locale/ja/LC_MESSAGES/kcm_touchscreen.mo share/locale/ja/LC_MESSAGES/kcm_workspace.mo share/locale/ja/LC_MESSAGES/kcmkclock.mo share/locale/ja/LC_MESSAGES/kcmkeyboard.mo share/locale/ja/LC_MESSAGES/kcmmouse.mo share/locale/ja/LC_MESSAGES/kcmqtquicksettings.mo share/locale/ja/LC_MESSAGES/knetattach.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/kcm_access.mo share/locale/ka/LC_MESSAGES/kcm_activities.mo share/locale/ka/LC_MESSAGES/kcm_baloofile.mo share/locale/ka/LC_MESSAGES/kcm_componentchooser.mo share/locale/ka/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ka/LC_MESSAGES/kcm_device_automounter.mo share/locale/ka/LC_MESSAGES/kcm_gamecontroller.mo share/locale/ka/LC_MESSAGES/kcm_kded.mo share/locale/ka/LC_MESSAGES/kcm_keys.mo share/locale/ka/LC_MESSAGES/kcm_krunnersettings.mo share/locale/ka/LC_MESSAGES/kcm_landingpage.mo share/locale/ka/LC_MESSAGES/kcm_plasmasearch.mo share/locale/ka/LC_MESSAGES/kcm_recentFiles.mo share/locale/ka/LC_MESSAGES/kcm_smserver.mo share/locale/ka/LC_MESSAGES/kcm_solid_actions.mo share/locale/ka/LC_MESSAGES/kcm_splashscreen.mo share/locale/ka/LC_MESSAGES/kcm_tablet.mo share/locale/ka/LC_MESSAGES/kcm_touchpad.mo share/locale/ka/LC_MESSAGES/kcm_touchscreen.mo share/locale/ka/LC_MESSAGES/kcm_workspace.mo share/locale/ka/LC_MESSAGES/kcmkclock.mo share/locale/ka/LC_MESSAGES/kcmkeyboard.mo share/locale/ka/LC_MESSAGES/kcmmouse.mo share/locale/ka/LC_MESSAGES/kcmqtquicksettings.mo share/locale/ka/LC_MESSAGES/knetattach.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/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_device_automounter.mo share/locale/kk/LC_MESSAGES/kcm_kded.mo share/locale/kk/LC_MESSAGES/kcm_smserver.mo share/locale/kk/LC_MESSAGES/kcm_solid_actions.mo share/locale/kk/LC_MESSAGES/kcmkclock.mo share/locale/kk/LC_MESSAGES/kcmkeyboard.mo share/locale/kk/LC_MESSAGES/kcmmouse.mo share/locale/kk/LC_MESSAGES/knetattach.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/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_device_automounter.mo share/locale/km/LC_MESSAGES/kcm_kded.mo share/locale/km/LC_MESSAGES/kcm_smserver.mo share/locale/km/LC_MESSAGES/kcm_solid_actions.mo share/locale/km/LC_MESSAGES/kcmkclock.mo share/locale/km/LC_MESSAGES/kcmkeyboard.mo share/locale/km/LC_MESSAGES/kcmmouse.mo share/locale/km/LC_MESSAGES/knetattach.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/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_device_automounter.mo share/locale/kn/LC_MESSAGES/kcm_kded.mo share/locale/kn/LC_MESSAGES/kcm_smserver.mo share/locale/kn/LC_MESSAGES/kcmkclock.mo share/locale/kn/LC_MESSAGES/kcmkeyboard.mo share/locale/kn/LC_MESSAGES/kcmmouse.mo share/locale/kn/LC_MESSAGES/knetattach.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/kcm_access.mo share/locale/ko/LC_MESSAGES/kcm_activities.mo share/locale/ko/LC_MESSAGES/kcm_baloofile.mo share/locale/ko/LC_MESSAGES/kcm_componentchooser.mo share/locale/ko/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ko/LC_MESSAGES/kcm_device_automounter.mo share/locale/ko/LC_MESSAGES/kcm_gamecontroller.mo share/locale/ko/LC_MESSAGES/kcm_kded.mo share/locale/ko/LC_MESSAGES/kcm_keys.mo share/locale/ko/LC_MESSAGES/kcm_krunnersettings.mo share/locale/ko/LC_MESSAGES/kcm_landingpage.mo share/locale/ko/LC_MESSAGES/kcm_plasmasearch.mo share/locale/ko/LC_MESSAGES/kcm_recentFiles.mo share/locale/ko/LC_MESSAGES/kcm_smserver.mo share/locale/ko/LC_MESSAGES/kcm_solid_actions.mo share/locale/ko/LC_MESSAGES/kcm_splashscreen.mo share/locale/ko/LC_MESSAGES/kcm_tablet.mo share/locale/ko/LC_MESSAGES/kcm_touchpad.mo share/locale/ko/LC_MESSAGES/kcm_touchscreen.mo share/locale/ko/LC_MESSAGES/kcm_workspace.mo share/locale/ko/LC_MESSAGES/kcmkclock.mo share/locale/ko/LC_MESSAGES/kcmkeyboard.mo share/locale/ko/LC_MESSAGES/kcmmouse.mo share/locale/ko/LC_MESSAGES/kcmqtquicksettings.mo share/locale/ko/LC_MESSAGES/knetattach.mo share/locale/ko/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/ko/LC_MESSAGES/plasma_runner_kwin.mo share/locale/ko/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/ko/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/ko/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/ko/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/ko/LC_MESSAGES/plasmaactivitymanager.mo share/locale/ku/LC_MESSAGES/kaccess.mo share/locale/ku/LC_MESSAGES/kcm_access.mo share/locale/ku/LC_MESSAGES/kcm_componentchooser.mo share/locale/ku/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ku/LC_MESSAGES/kcm_kded.mo share/locale/ku/LC_MESSAGES/kcm_smserver.mo share/locale/ku/LC_MESSAGES/kcmkclock.mo share/locale/ku/LC_MESSAGES/kcmkeyboard.mo share/locale/ku/LC_MESSAGES/kcmmouse.mo share/locale/ku/LC_MESSAGES/knetattach.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/kcm_access.mo share/locale/lt/LC_MESSAGES/kcm_activities.mo share/locale/lt/LC_MESSAGES/kcm_baloofile.mo share/locale/lt/LC_MESSAGES/kcm_componentchooser.mo share/locale/lt/LC_MESSAGES/kcm_desktoppaths.mo share/locale/lt/LC_MESSAGES/kcm_device_automounter.mo share/locale/lt/LC_MESSAGES/kcm_kded.mo share/locale/lt/LC_MESSAGES/kcm_keys.mo share/locale/lt/LC_MESSAGES/kcm_krunnersettings.mo share/locale/lt/LC_MESSAGES/kcm_landingpage.mo share/locale/lt/LC_MESSAGES/kcm_plasmasearch.mo share/locale/lt/LC_MESSAGES/kcm_recentFiles.mo share/locale/lt/LC_MESSAGES/kcm_smserver.mo share/locale/lt/LC_MESSAGES/kcm_solid_actions.mo share/locale/lt/LC_MESSAGES/kcm_splashscreen.mo share/locale/lt/LC_MESSAGES/kcm_tablet.mo share/locale/lt/LC_MESSAGES/kcm_touchpad.mo share/locale/lt/LC_MESSAGES/kcm_touchscreen.mo share/locale/lt/LC_MESSAGES/kcm_workspace.mo share/locale/lt/LC_MESSAGES/kcmkclock.mo share/locale/lt/LC_MESSAGES/kcmkeyboard.mo share/locale/lt/LC_MESSAGES/kcmmouse.mo share/locale/lt/LC_MESSAGES/kcmqtquicksettings.mo share/locale/lt/LC_MESSAGES/knetattach.mo share/locale/lt/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/lt/LC_MESSAGES/plasma_runner_kwin.mo share/locale/lt/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/lt/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/lt/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/lt/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/lt/LC_MESSAGES/plasmaactivitymanager.mo share/locale/lv/LC_MESSAGES/kaccess.mo share/locale/lv/LC_MESSAGES/kcm_access.mo share/locale/lv/LC_MESSAGES/kcm_activities.mo share/locale/lv/LC_MESSAGES/kcm_baloofile.mo share/locale/lv/LC_MESSAGES/kcm_componentchooser.mo share/locale/lv/LC_MESSAGES/kcm_desktoppaths.mo share/locale/lv/LC_MESSAGES/kcm_device_automounter.mo share/locale/lv/LC_MESSAGES/kcm_kded.mo share/locale/lv/LC_MESSAGES/kcm_keys.mo share/locale/lv/LC_MESSAGES/kcm_krunnersettings.mo share/locale/lv/LC_MESSAGES/kcm_landingpage.mo share/locale/lv/LC_MESSAGES/kcm_plasmasearch.mo share/locale/lv/LC_MESSAGES/kcm_recentFiles.mo share/locale/lv/LC_MESSAGES/kcm_smserver.mo share/locale/lv/LC_MESSAGES/kcm_solid_actions.mo share/locale/lv/LC_MESSAGES/kcm_splashscreen.mo share/locale/lv/LC_MESSAGES/kcm_tablet.mo share/locale/lv/LC_MESSAGES/kcm_touchpad.mo share/locale/lv/LC_MESSAGES/kcm_touchscreen.mo share/locale/lv/LC_MESSAGES/kcm_workspace.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/kcmqtquicksettings.mo share/locale/lv/LC_MESSAGES/knetattach.mo share/locale/lv/LC_MESSAGES/org.kde.plasma.emojier.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.keyboardlayout.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.showActivityManager.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_kwin.mo share/locale/lv/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/lv/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/lv/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/lv/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/lv/LC_MESSAGES/plasmaactivitymanager.mo share/locale/mai/LC_MESSAGES/kaccess.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_device_automounter.mo share/locale/mai/LC_MESSAGES/kcm_kded.mo share/locale/mai/LC_MESSAGES/kcm_smserver.mo share/locale/mai/LC_MESSAGES/kcm_solid_actions.mo share/locale/mai/LC_MESSAGES/kcmkclock.mo share/locale/mai/LC_MESSAGES/kcmkeyboard.mo share/locale/mai/LC_MESSAGES/kcmmouse.mo share/locale/mai/LC_MESSAGES/knetattach.mo share/locale/mai/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/mai/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/mai/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/mai/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/mai/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/mai/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/mk/LC_MESSAGES/kaccess.mo share/locale/mk/LC_MESSAGES/kcm_access.mo share/locale/mk/LC_MESSAGES/kcm_componentchooser.mo share/locale/mk/LC_MESSAGES/kcm_desktoppaths.mo share/locale/mk/LC_MESSAGES/kcm_kded.mo share/locale/mk/LC_MESSAGES/kcm_smserver.mo share/locale/mk/LC_MESSAGES/kcmkclock.mo share/locale/mk/LC_MESSAGES/kcmkeyboard.mo share/locale/mk/LC_MESSAGES/kcmmouse.mo share/locale/mk/LC_MESSAGES/knetattach.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/kcm_access.mo share/locale/ml/LC_MESSAGES/kcm_activities.mo share/locale/ml/LC_MESSAGES/kcm_baloofile.mo share/locale/ml/LC_MESSAGES/kcm_componentchooser.mo share/locale/ml/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ml/LC_MESSAGES/kcm_device_automounter.mo share/locale/ml/LC_MESSAGES/kcm_kded.mo share/locale/ml/LC_MESSAGES/kcm_krunnersettings.mo share/locale/ml/LC_MESSAGES/kcm_plasmasearch.mo share/locale/ml/LC_MESSAGES/kcm_smserver.mo share/locale/ml/LC_MESSAGES/kcm_solid_actions.mo share/locale/ml/LC_MESSAGES/kcm_splashscreen.mo share/locale/ml/LC_MESSAGES/kcm_touchpad.mo share/locale/ml/LC_MESSAGES/kcm_workspace.mo share/locale/ml/LC_MESSAGES/kcmkclock.mo share/locale/ml/LC_MESSAGES/kcmkeyboard.mo share/locale/ml/LC_MESSAGES/kcmmouse.mo share/locale/ml/LC_MESSAGES/kcmqtquicksettings.mo share/locale/ml/LC_MESSAGES/knetattach.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/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_device_automounter.mo share/locale/mr/LC_MESSAGES/kcm_kded.mo share/locale/mr/LC_MESSAGES/kcm_smserver.mo share/locale/mr/LC_MESSAGES/kcm_solid_actions.mo share/locale/mr/LC_MESSAGES/kcmkclock.mo share/locale/mr/LC_MESSAGES/kcmkeyboard.mo share/locale/mr/LC_MESSAGES/kcmmouse.mo share/locale/mr/LC_MESSAGES/knetattach.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/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_device_automounter.mo share/locale/ms/LC_MESSAGES/kcm_kded.mo share/locale/ms/LC_MESSAGES/kcm_smserver.mo share/locale/ms/LC_MESSAGES/kcm_solid_actions.mo share/locale/ms/LC_MESSAGES/kcmkclock.mo share/locale/ms/LC_MESSAGES/kcmkeyboard.mo share/locale/ms/LC_MESSAGES/kcmmouse.mo share/locale/ms/LC_MESSAGES/knetattach.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/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_device_automounter.mo share/locale/nb/LC_MESSAGES/kcm_kded.mo share/locale/nb/LC_MESSAGES/kcm_krunnersettings.mo share/locale/nb/LC_MESSAGES/kcm_plasmasearch.mo share/locale/nb/LC_MESSAGES/kcm_smserver.mo share/locale/nb/LC_MESSAGES/kcm_solid_actions.mo share/locale/nb/LC_MESSAGES/kcm_splashscreen.mo share/locale/nb/LC_MESSAGES/kcm_touchpad.mo share/locale/nb/LC_MESSAGES/kcm_workspace.mo share/locale/nb/LC_MESSAGES/kcmkclock.mo share/locale/nb/LC_MESSAGES/kcmkeyboard.mo share/locale/nb/LC_MESSAGES/kcmmouse.mo share/locale/nb/LC_MESSAGES/knetattach.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/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_device_automounter.mo share/locale/nds/LC_MESSAGES/kcm_kded.mo share/locale/nds/LC_MESSAGES/kcm_krunnersettings.mo share/locale/nds/LC_MESSAGES/kcm_plasmasearch.mo share/locale/nds/LC_MESSAGES/kcm_smserver.mo share/locale/nds/LC_MESSAGES/kcm_solid_actions.mo share/locale/nds/LC_MESSAGES/kcm_splashscreen.mo share/locale/nds/LC_MESSAGES/kcm_workspace.mo share/locale/nds/LC_MESSAGES/kcmkclock.mo share/locale/nds/LC_MESSAGES/kcmkeyboard.mo share/locale/nds/LC_MESSAGES/kcmmouse.mo share/locale/nds/LC_MESSAGES/knetattach.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/nds/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/nds/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/nds/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/ne/LC_MESSAGES/kaccess.mo share/locale/ne/LC_MESSAGES/kcm_access.mo share/locale/ne/LC_MESSAGES/kcm_componentchooser.mo share/locale/ne/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ne/LC_MESSAGES/kcm_kded.mo share/locale/ne/LC_MESSAGES/kcm_smserver.mo share/locale/ne/LC_MESSAGES/kcmkclock.mo share/locale/ne/LC_MESSAGES/kcmkeyboard.mo share/locale/ne/LC_MESSAGES/kcmmouse.mo share/locale/ne/LC_MESSAGES/knetattach.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/kcm_access.mo share/locale/nl/LC_MESSAGES/kcm_activities.mo share/locale/nl/LC_MESSAGES/kcm_baloofile.mo share/locale/nl/LC_MESSAGES/kcm_componentchooser.mo share/locale/nl/LC_MESSAGES/kcm_desktoppaths.mo share/locale/nl/LC_MESSAGES/kcm_device_automounter.mo share/locale/nl/LC_MESSAGES/kcm_gamecontroller.mo share/locale/nl/LC_MESSAGES/kcm_kded.mo share/locale/nl/LC_MESSAGES/kcm_keys.mo share/locale/nl/LC_MESSAGES/kcm_krunnersettings.mo share/locale/nl/LC_MESSAGES/kcm_landingpage.mo share/locale/nl/LC_MESSAGES/kcm_plasmasearch.mo share/locale/nl/LC_MESSAGES/kcm_recentFiles.mo share/locale/nl/LC_MESSAGES/kcm_smserver.mo share/locale/nl/LC_MESSAGES/kcm_solid_actions.mo share/locale/nl/LC_MESSAGES/kcm_splashscreen.mo share/locale/nl/LC_MESSAGES/kcm_tablet.mo share/locale/nl/LC_MESSAGES/kcm_touchpad.mo share/locale/nl/LC_MESSAGES/kcm_touchscreen.mo share/locale/nl/LC_MESSAGES/kcm_workspace.mo share/locale/nl/LC_MESSAGES/kcmkclock.mo share/locale/nl/LC_MESSAGES/kcmkeyboard.mo share/locale/nl/LC_MESSAGES/kcmmouse.mo share/locale/nl/LC_MESSAGES/kcmqtquicksettings.mo share/locale/nl/LC_MESSAGES/knetattach.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/kcm_access.mo share/locale/nn/LC_MESSAGES/kcm_activities.mo share/locale/nn/LC_MESSAGES/kcm_baloofile.mo share/locale/nn/LC_MESSAGES/kcm_componentchooser.mo share/locale/nn/LC_MESSAGES/kcm_desktoppaths.mo share/locale/nn/LC_MESSAGES/kcm_device_automounter.mo share/locale/nn/LC_MESSAGES/kcm_gamecontroller.mo share/locale/nn/LC_MESSAGES/kcm_kded.mo share/locale/nn/LC_MESSAGES/kcm_keys.mo share/locale/nn/LC_MESSAGES/kcm_krunnersettings.mo share/locale/nn/LC_MESSAGES/kcm_landingpage.mo share/locale/nn/LC_MESSAGES/kcm_plasmasearch.mo share/locale/nn/LC_MESSAGES/kcm_recentFiles.mo share/locale/nn/LC_MESSAGES/kcm_smserver.mo share/locale/nn/LC_MESSAGES/kcm_solid_actions.mo share/locale/nn/LC_MESSAGES/kcm_splashscreen.mo share/locale/nn/LC_MESSAGES/kcm_tablet.mo share/locale/nn/LC_MESSAGES/kcm_touchpad.mo share/locale/nn/LC_MESSAGES/kcm_touchscreen.mo share/locale/nn/LC_MESSAGES/kcm_workspace.mo share/locale/nn/LC_MESSAGES/kcmkclock.mo share/locale/nn/LC_MESSAGES/kcmkeyboard.mo share/locale/nn/LC_MESSAGES/kcmmouse.mo share/locale/nn/LC_MESSAGES/kcmqtquicksettings.mo share/locale/nn/LC_MESSAGES/knetattach.mo share/locale/nn/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/nn/LC_MESSAGES/plasma_runner_kwin.mo share/locale/nn/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/nn/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/nn/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/nn/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/nn/LC_MESSAGES/plasmaactivitymanager.mo share/locale/oc/LC_MESSAGES/kaccess.mo share/locale/oc/LC_MESSAGES/kcm_access.mo share/locale/oc/LC_MESSAGES/kcm_componentchooser.mo share/locale/oc/LC_MESSAGES/kcm_desktoppaths.mo share/locale/oc/LC_MESSAGES/kcm_kded.mo share/locale/oc/LC_MESSAGES/kcm_smserver.mo share/locale/oc/LC_MESSAGES/kcmkclock.mo share/locale/oc/LC_MESSAGES/kcmkeyboard.mo share/locale/oc/LC_MESSAGES/kcmmouse.mo share/locale/oc/LC_MESSAGES/knetattach.mo share/locale/oc/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/or/LC_MESSAGES/kaccess.mo share/locale/or/LC_MESSAGES/kcm_access.mo share/locale/or/LC_MESSAGES/kcm_componentchooser.mo share/locale/or/LC_MESSAGES/kcm_desktoppaths.mo share/locale/or/LC_MESSAGES/kcm_kded.mo share/locale/or/LC_MESSAGES/kcm_smserver.mo share/locale/or/LC_MESSAGES/kcmkclock.mo share/locale/or/LC_MESSAGES/kcmkeyboard.mo share/locale/or/LC_MESSAGES/kcmmouse.mo share/locale/or/LC_MESSAGES/knetattach.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/kcm_access.mo share/locale/pa/LC_MESSAGES/kcm_activities.mo share/locale/pa/LC_MESSAGES/kcm_baloofile.mo share/locale/pa/LC_MESSAGES/kcm_componentchooser.mo share/locale/pa/LC_MESSAGES/kcm_desktoppaths.mo share/locale/pa/LC_MESSAGES/kcm_device_automounter.mo share/locale/pa/LC_MESSAGES/kcm_kded.mo share/locale/pa/LC_MESSAGES/kcm_keys.mo share/locale/pa/LC_MESSAGES/kcm_krunnersettings.mo share/locale/pa/LC_MESSAGES/kcm_landingpage.mo share/locale/pa/LC_MESSAGES/kcm_plasmasearch.mo share/locale/pa/LC_MESSAGES/kcm_recentFiles.mo share/locale/pa/LC_MESSAGES/kcm_smserver.mo share/locale/pa/LC_MESSAGES/kcm_solid_actions.mo share/locale/pa/LC_MESSAGES/kcm_splashscreen.mo share/locale/pa/LC_MESSAGES/kcm_touchpad.mo share/locale/pa/LC_MESSAGES/kcm_touchscreen.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/knetattach.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/kcm_access.mo share/locale/pl/LC_MESSAGES/kcm_activities.mo share/locale/pl/LC_MESSAGES/kcm_baloofile.mo share/locale/pl/LC_MESSAGES/kcm_componentchooser.mo share/locale/pl/LC_MESSAGES/kcm_desktoppaths.mo share/locale/pl/LC_MESSAGES/kcm_device_automounter.mo share/locale/pl/LC_MESSAGES/kcm_gamecontroller.mo share/locale/pl/LC_MESSAGES/kcm_kded.mo share/locale/pl/LC_MESSAGES/kcm_keys.mo share/locale/pl/LC_MESSAGES/kcm_krunnersettings.mo share/locale/pl/LC_MESSAGES/kcm_landingpage.mo share/locale/pl/LC_MESSAGES/kcm_plasmasearch.mo share/locale/pl/LC_MESSAGES/kcm_recentFiles.mo share/locale/pl/LC_MESSAGES/kcm_smserver.mo share/locale/pl/LC_MESSAGES/kcm_solid_actions.mo share/locale/pl/LC_MESSAGES/kcm_splashscreen.mo share/locale/pl/LC_MESSAGES/kcm_tablet.mo share/locale/pl/LC_MESSAGES/kcm_touchpad.mo share/locale/pl/LC_MESSAGES/kcm_touchscreen.mo share/locale/pl/LC_MESSAGES/kcm_workspace.mo share/locale/pl/LC_MESSAGES/kcmkclock.mo share/locale/pl/LC_MESSAGES/kcmkeyboard.mo share/locale/pl/LC_MESSAGES/kcmmouse.mo share/locale/pl/LC_MESSAGES/kcmqtquicksettings.mo share/locale/pl/LC_MESSAGES/knetattach.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/kcm_access.mo share/locale/pt/LC_MESSAGES/kcm_activities.mo share/locale/pt/LC_MESSAGES/kcm_baloofile.mo share/locale/pt/LC_MESSAGES/kcm_componentchooser.mo share/locale/pt/LC_MESSAGES/kcm_desktoppaths.mo share/locale/pt/LC_MESSAGES/kcm_device_automounter.mo share/locale/pt/LC_MESSAGES/kcm_kded.mo share/locale/pt/LC_MESSAGES/kcm_keys.mo share/locale/pt/LC_MESSAGES/kcm_krunnersettings.mo share/locale/pt/LC_MESSAGES/kcm_landingpage.mo share/locale/pt/LC_MESSAGES/kcm_plasmasearch.mo share/locale/pt/LC_MESSAGES/kcm_recentFiles.mo share/locale/pt/LC_MESSAGES/kcm_smserver.mo share/locale/pt/LC_MESSAGES/kcm_solid_actions.mo share/locale/pt/LC_MESSAGES/kcm_splashscreen.mo share/locale/pt/LC_MESSAGES/kcm_tablet.mo share/locale/pt/LC_MESSAGES/kcm_touchpad.mo share/locale/pt/LC_MESSAGES/kcm_touchscreen.mo share/locale/pt/LC_MESSAGES/kcm_workspace.mo share/locale/pt/LC_MESSAGES/kcmkclock.mo share/locale/pt/LC_MESSAGES/kcmkeyboard.mo share/locale/pt/LC_MESSAGES/kcmmouse.mo share/locale/pt/LC_MESSAGES/kcmqtquicksettings.mo share/locale/pt/LC_MESSAGES/knetattach.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/kcm_access.mo share/locale/pt_BR/LC_MESSAGES/kcm_activities.mo share/locale/pt_BR/LC_MESSAGES/kcm_baloofile.mo share/locale/pt_BR/LC_MESSAGES/kcm_componentchooser.mo share/locale/pt_BR/LC_MESSAGES/kcm_desktoppaths.mo share/locale/pt_BR/LC_MESSAGES/kcm_device_automounter.mo share/locale/pt_BR/LC_MESSAGES/kcm_gamecontroller.mo share/locale/pt_BR/LC_MESSAGES/kcm_kded.mo share/locale/pt_BR/LC_MESSAGES/kcm_keys.mo share/locale/pt_BR/LC_MESSAGES/kcm_krunnersettings.mo share/locale/pt_BR/LC_MESSAGES/kcm_landingpage.mo share/locale/pt_BR/LC_MESSAGES/kcm_plasmasearch.mo share/locale/pt_BR/LC_MESSAGES/kcm_recentFiles.mo share/locale/pt_BR/LC_MESSAGES/kcm_smserver.mo share/locale/pt_BR/LC_MESSAGES/kcm_solid_actions.mo share/locale/pt_BR/LC_MESSAGES/kcm_splashscreen.mo share/locale/pt_BR/LC_MESSAGES/kcm_tablet.mo share/locale/pt_BR/LC_MESSAGES/kcm_touchpad.mo share/locale/pt_BR/LC_MESSAGES/kcm_touchscreen.mo share/locale/pt_BR/LC_MESSAGES/kcm_workspace.mo share/locale/pt_BR/LC_MESSAGES/kcmkclock.mo share/locale/pt_BR/LC_MESSAGES/kcmkeyboard.mo share/locale/pt_BR/LC_MESSAGES/kcmmouse.mo share/locale/pt_BR/LC_MESSAGES/kcmqtquicksettings.mo share/locale/pt_BR/LC_MESSAGES/knetattach.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/kcm_access.mo share/locale/ro/LC_MESSAGES/kcm_activities.mo share/locale/ro/LC_MESSAGES/kcm_baloofile.mo share/locale/ro/LC_MESSAGES/kcm_componentchooser.mo share/locale/ro/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ro/LC_MESSAGES/kcm_device_automounter.mo share/locale/ro/LC_MESSAGES/kcm_gamecontroller.mo share/locale/ro/LC_MESSAGES/kcm_kded.mo share/locale/ro/LC_MESSAGES/kcm_keys.mo share/locale/ro/LC_MESSAGES/kcm_krunnersettings.mo share/locale/ro/LC_MESSAGES/kcm_landingpage.mo share/locale/ro/LC_MESSAGES/kcm_plasmasearch.mo share/locale/ro/LC_MESSAGES/kcm_recentFiles.mo share/locale/ro/LC_MESSAGES/kcm_smserver.mo share/locale/ro/LC_MESSAGES/kcm_solid_actions.mo share/locale/ro/LC_MESSAGES/kcm_splashscreen.mo share/locale/ro/LC_MESSAGES/kcm_tablet.mo share/locale/ro/LC_MESSAGES/kcm_touchpad.mo share/locale/ro/LC_MESSAGES/kcm_touchscreen.mo share/locale/ro/LC_MESSAGES/kcm_workspace.mo share/locale/ro/LC_MESSAGES/kcmkclock.mo share/locale/ro/LC_MESSAGES/kcmkeyboard.mo share/locale/ro/LC_MESSAGES/kcmmouse.mo share/locale/ro/LC_MESSAGES/kcmqtquicksettings.mo share/locale/ro/LC_MESSAGES/knetattach.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/kcm_access.mo share/locale/ru/LC_MESSAGES/kcm_activities.mo share/locale/ru/LC_MESSAGES/kcm_baloofile.mo share/locale/ru/LC_MESSAGES/kcm_componentchooser.mo share/locale/ru/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ru/LC_MESSAGES/kcm_device_automounter.mo share/locale/ru/LC_MESSAGES/kcm_gamecontroller.mo share/locale/ru/LC_MESSAGES/kcm_kded.mo share/locale/ru/LC_MESSAGES/kcm_keys.mo share/locale/ru/LC_MESSAGES/kcm_krunnersettings.mo share/locale/ru/LC_MESSAGES/kcm_landingpage.mo share/locale/ru/LC_MESSAGES/kcm_plasmasearch.mo share/locale/ru/LC_MESSAGES/kcm_recentFiles.mo share/locale/ru/LC_MESSAGES/kcm_smserver.mo share/locale/ru/LC_MESSAGES/kcm_solid_actions.mo share/locale/ru/LC_MESSAGES/kcm_splashscreen.mo share/locale/ru/LC_MESSAGES/kcm_tablet.mo share/locale/ru/LC_MESSAGES/kcm_touchpad.mo share/locale/ru/LC_MESSAGES/kcm_touchscreen.mo share/locale/ru/LC_MESSAGES/kcm_workspace.mo share/locale/ru/LC_MESSAGES/kcmkclock.mo share/locale/ru/LC_MESSAGES/kcmkeyboard.mo share/locale/ru/LC_MESSAGES/kcmmouse.mo share/locale/ru/LC_MESSAGES/kcmqtquicksettings.mo share/locale/ru/LC_MESSAGES/knetattach.mo share/locale/ru/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/ru/LC_MESSAGES/plasma_runner_kwin.mo share/locale/ru/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/ru/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/ru/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/ru/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/ru/LC_MESSAGES/plasmaactivitymanager.mo share/locale/sa/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/se/LC_MESSAGES/kaccess.mo share/locale/se/LC_MESSAGES/kcm_access.mo share/locale/se/LC_MESSAGES/kcm_componentchooser.mo share/locale/se/LC_MESSAGES/kcm_desktoppaths.mo share/locale/se/LC_MESSAGES/kcm_kded.mo share/locale/se/LC_MESSAGES/kcm_smserver.mo share/locale/se/LC_MESSAGES/kcmkclock.mo share/locale/se/LC_MESSAGES/kcmkeyboard.mo share/locale/se/LC_MESSAGES/kcmmouse.mo share/locale/se/LC_MESSAGES/knetattach.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/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_device_automounter.mo share/locale/si/LC_MESSAGES/kcm_kded.mo share/locale/si/LC_MESSAGES/kcm_smserver.mo share/locale/si/LC_MESSAGES/kcm_solid_actions.mo share/locale/si/LC_MESSAGES/kcmkclock.mo share/locale/si/LC_MESSAGES/kcmkeyboard.mo share/locale/si/LC_MESSAGES/kcmmouse.mo share/locale/si/LC_MESSAGES/knetattach.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/kcm_access.mo share/locale/sk/LC_MESSAGES/kcm_activities.mo share/locale/sk/LC_MESSAGES/kcm_baloofile.mo share/locale/sk/LC_MESSAGES/kcm_componentchooser.mo share/locale/sk/LC_MESSAGES/kcm_desktoppaths.mo share/locale/sk/LC_MESSAGES/kcm_device_automounter.mo share/locale/sk/LC_MESSAGES/kcm_gamecontroller.mo share/locale/sk/LC_MESSAGES/kcm_kded.mo share/locale/sk/LC_MESSAGES/kcm_keys.mo share/locale/sk/LC_MESSAGES/kcm_krunnersettings.mo share/locale/sk/LC_MESSAGES/kcm_landingpage.mo share/locale/sk/LC_MESSAGES/kcm_plasmasearch.mo share/locale/sk/LC_MESSAGES/kcm_recentFiles.mo share/locale/sk/LC_MESSAGES/kcm_smserver.mo share/locale/sk/LC_MESSAGES/kcm_solid_actions.mo share/locale/sk/LC_MESSAGES/kcm_splashscreen.mo share/locale/sk/LC_MESSAGES/kcm_tablet.mo share/locale/sk/LC_MESSAGES/kcm_touchpad.mo share/locale/sk/LC_MESSAGES/kcm_touchscreen.mo share/locale/sk/LC_MESSAGES/kcm_workspace.mo share/locale/sk/LC_MESSAGES/kcmkclock.mo share/locale/sk/LC_MESSAGES/kcmkeyboard.mo share/locale/sk/LC_MESSAGES/kcmmouse.mo share/locale/sk/LC_MESSAGES/kcmqtquicksettings.mo share/locale/sk/LC_MESSAGES/knetattach.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/kcm_access.mo share/locale/sl/LC_MESSAGES/kcm_activities.mo share/locale/sl/LC_MESSAGES/kcm_baloofile.mo share/locale/sl/LC_MESSAGES/kcm_componentchooser.mo share/locale/sl/LC_MESSAGES/kcm_desktoppaths.mo share/locale/sl/LC_MESSAGES/kcm_device_automounter.mo share/locale/sl/LC_MESSAGES/kcm_gamecontroller.mo share/locale/sl/LC_MESSAGES/kcm_kded.mo share/locale/sl/LC_MESSAGES/kcm_keys.mo share/locale/sl/LC_MESSAGES/kcm_krunnersettings.mo share/locale/sl/LC_MESSAGES/kcm_landingpage.mo share/locale/sl/LC_MESSAGES/kcm_plasmasearch.mo share/locale/sl/LC_MESSAGES/kcm_recentFiles.mo share/locale/sl/LC_MESSAGES/kcm_smserver.mo share/locale/sl/LC_MESSAGES/kcm_solid_actions.mo share/locale/sl/LC_MESSAGES/kcm_splashscreen.mo share/locale/sl/LC_MESSAGES/kcm_tablet.mo share/locale/sl/LC_MESSAGES/kcm_touchpad.mo share/locale/sl/LC_MESSAGES/kcm_touchscreen.mo share/locale/sl/LC_MESSAGES/kcm_workspace.mo share/locale/sl/LC_MESSAGES/kcmkclock.mo share/locale/sl/LC_MESSAGES/kcmkeyboard.mo share/locale/sl/LC_MESSAGES/kcmmouse.mo share/locale/sl/LC_MESSAGES/kcmqtquicksettings.mo share/locale/sl/LC_MESSAGES/knetattach.mo share/locale/sl/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/sl/LC_MESSAGES/plasma_runner_kwin.mo share/locale/sl/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/sl/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/sl/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/sl/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/sl/LC_MESSAGES/plasmaactivitymanager.mo share/locale/sq/LC_MESSAGES/kaccess.mo share/locale/sq/LC_MESSAGES/kcm_access.mo share/locale/sq/LC_MESSAGES/kcm_componentchooser.mo share/locale/sq/LC_MESSAGES/kcm_kded.mo share/locale/sq/LC_MESSAGES/kcm_smserver.mo share/locale/sq/LC_MESSAGES/kcm_solid_actions.mo share/locale/sq/LC_MESSAGES/kcmkclock.mo share/locale/sq/LC_MESSAGES/kcmkeyboard.mo share/locale/sq/LC_MESSAGES/kcmmouse.mo share/locale/sq/LC_MESSAGES/knetattach.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/kcm_access.mo share/locale/sr/LC_MESSAGES/kcm_activities.mo share/locale/sr/LC_MESSAGES/kcm_baloofile.mo share/locale/sr/LC_MESSAGES/kcm_componentchooser.mo share/locale/sr/LC_MESSAGES/kcm_desktoppaths.mo share/locale/sr/LC_MESSAGES/kcm_device_automounter.mo share/locale/sr/LC_MESSAGES/kcm_kded.mo share/locale/sr/LC_MESSAGES/kcm_krunnersettings.mo share/locale/sr/LC_MESSAGES/kcm_plasmasearch.mo share/locale/sr/LC_MESSAGES/kcm_smserver.mo share/locale/sr/LC_MESSAGES/kcm_solid_actions.mo share/locale/sr/LC_MESSAGES/kcm_splashscreen.mo share/locale/sr/LC_MESSAGES/kcm_touchpad.mo share/locale/sr/LC_MESSAGES/kcm_workspace.mo share/locale/sr/LC_MESSAGES/kcmkclock.mo share/locale/sr/LC_MESSAGES/kcmkeyboard.mo share/locale/sr/LC_MESSAGES/kcmmouse.mo share/locale/sr/LC_MESSAGES/knetattach.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/kcm_access.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_activities.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_baloofile.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_componentchooser.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_desktoppaths.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_device_automounter.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_kded.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_krunnersettings.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_plasmasearch.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_smserver.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_solid_actions.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_splashscreen.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_touchpad.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_workspace.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmkclock.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmkeyboard.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmmouse.mo share/locale/sr@ijekavian/LC_MESSAGES/knetattach.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/kcm_access.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_activities.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_baloofile.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_componentchooser.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_desktoppaths.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_device_automounter.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_kded.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_krunnersettings.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_plasmasearch.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_smserver.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_solid_actions.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_splashscreen.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_touchpad.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_workspace.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmkclock.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmkeyboard.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmmouse.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/knetattach.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/kcm_access.mo share/locale/sr@latin/LC_MESSAGES/kcm_activities.mo share/locale/sr@latin/LC_MESSAGES/kcm_baloofile.mo share/locale/sr@latin/LC_MESSAGES/kcm_componentchooser.mo share/locale/sr@latin/LC_MESSAGES/kcm_desktoppaths.mo share/locale/sr@latin/LC_MESSAGES/kcm_device_automounter.mo share/locale/sr@latin/LC_MESSAGES/kcm_kded.mo share/locale/sr@latin/LC_MESSAGES/kcm_krunnersettings.mo share/locale/sr@latin/LC_MESSAGES/kcm_plasmasearch.mo share/locale/sr@latin/LC_MESSAGES/kcm_smserver.mo share/locale/sr@latin/LC_MESSAGES/kcm_solid_actions.mo share/locale/sr@latin/LC_MESSAGES/kcm_splashscreen.mo share/locale/sr@latin/LC_MESSAGES/kcm_touchpad.mo share/locale/sr@latin/LC_MESSAGES/kcm_workspace.mo share/locale/sr@latin/LC_MESSAGES/kcmkclock.mo share/locale/sr@latin/LC_MESSAGES/kcmkeyboard.mo share/locale/sr@latin/LC_MESSAGES/kcmmouse.mo share/locale/sr@latin/LC_MESSAGES/knetattach.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/kcm_access.mo share/locale/sv/LC_MESSAGES/kcm_activities.mo share/locale/sv/LC_MESSAGES/kcm_baloofile.mo share/locale/sv/LC_MESSAGES/kcm_componentchooser.mo share/locale/sv/LC_MESSAGES/kcm_desktoppaths.mo share/locale/sv/LC_MESSAGES/kcm_device_automounter.mo share/locale/sv/LC_MESSAGES/kcm_kded.mo share/locale/sv/LC_MESSAGES/kcm_keys.mo share/locale/sv/LC_MESSAGES/kcm_krunnersettings.mo share/locale/sv/LC_MESSAGES/kcm_landingpage.mo share/locale/sv/LC_MESSAGES/kcm_plasmasearch.mo share/locale/sv/LC_MESSAGES/kcm_recentFiles.mo share/locale/sv/LC_MESSAGES/kcm_smserver.mo share/locale/sv/LC_MESSAGES/kcm_solid_actions.mo share/locale/sv/LC_MESSAGES/kcm_splashscreen.mo share/locale/sv/LC_MESSAGES/kcm_tablet.mo share/locale/sv/LC_MESSAGES/kcm_touchpad.mo share/locale/sv/LC_MESSAGES/kcm_workspace.mo share/locale/sv/LC_MESSAGES/kcmkclock.mo share/locale/sv/LC_MESSAGES/kcmkeyboard.mo share/locale/sv/LC_MESSAGES/kcmmouse.mo share/locale/sv/LC_MESSAGES/kcmqtquicksettings.mo share/locale/sv/LC_MESSAGES/knetattach.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/kcm_access.mo share/locale/ta/LC_MESSAGES/kcm_activities.mo share/locale/ta/LC_MESSAGES/kcm_baloofile.mo share/locale/ta/LC_MESSAGES/kcm_componentchooser.mo share/locale/ta/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ta/LC_MESSAGES/kcm_device_automounter.mo share/locale/ta/LC_MESSAGES/kcm_kded.mo share/locale/ta/LC_MESSAGES/kcm_keys.mo share/locale/ta/LC_MESSAGES/kcm_krunnersettings.mo share/locale/ta/LC_MESSAGES/kcm_landingpage.mo share/locale/ta/LC_MESSAGES/kcm_plasmasearch.mo share/locale/ta/LC_MESSAGES/kcm_smserver.mo share/locale/ta/LC_MESSAGES/kcm_solid_actions.mo share/locale/ta/LC_MESSAGES/kcm_splashscreen.mo share/locale/ta/LC_MESSAGES/kcm_tablet.mo share/locale/ta/LC_MESSAGES/kcm_touchpad.mo share/locale/ta/LC_MESSAGES/kcm_workspace.mo share/locale/ta/LC_MESSAGES/kcmkclock.mo share/locale/ta/LC_MESSAGES/kcmkeyboard.mo share/locale/ta/LC_MESSAGES/kcmmouse.mo share/locale/ta/LC_MESSAGES/kcmqtquicksettings.mo share/locale/ta/LC_MESSAGES/knetattach.mo share/locale/ta/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/ta/LC_MESSAGES/plasma_runner_kwin.mo share/locale/ta/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/ta/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/ta/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/ta/LC_MESSAGES/plasmaactivitymanager.mo share/locale/te/LC_MESSAGES/kaccess.mo share/locale/te/LC_MESSAGES/kcm_access.mo share/locale/te/LC_MESSAGES/kcm_componentchooser.mo share/locale/te/LC_MESSAGES/kcm_desktoppaths.mo share/locale/te/LC_MESSAGES/kcm_kded.mo share/locale/te/LC_MESSAGES/kcm_smserver.mo share/locale/te/LC_MESSAGES/kcmkclock.mo share/locale/te/LC_MESSAGES/kcmkeyboard.mo share/locale/te/LC_MESSAGES/kcmmouse.mo share/locale/te/LC_MESSAGES/knetattach.mo share/locale/te/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/te/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/te/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/te/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/tg/LC_MESSAGES/kaccess.mo share/locale/tg/LC_MESSAGES/kcm_access.mo share/locale/tg/LC_MESSAGES/kcm_activities.mo share/locale/tg/LC_MESSAGES/kcm_baloofile.mo share/locale/tg/LC_MESSAGES/kcm_componentchooser.mo share/locale/tg/LC_MESSAGES/kcm_desktoppaths.mo share/locale/tg/LC_MESSAGES/kcm_kded.mo share/locale/tg/LC_MESSAGES/kcm_krunnersettings.mo share/locale/tg/LC_MESSAGES/kcm_plasmasearch.mo share/locale/tg/LC_MESSAGES/kcm_smserver.mo share/locale/tg/LC_MESSAGES/kcm_splashscreen.mo share/locale/tg/LC_MESSAGES/kcmkclock.mo share/locale/tg/LC_MESSAGES/kcmkeyboard.mo share/locale/tg/LC_MESSAGES/kcmmouse.mo share/locale/tg/LC_MESSAGES/knetattach.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/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_device_automounter.mo share/locale/th/LC_MESSAGES/kcm_kded.mo share/locale/th/LC_MESSAGES/kcm_smserver.mo share/locale/th/LC_MESSAGES/kcm_solid_actions.mo share/locale/th/LC_MESSAGES/kcmkclock.mo share/locale/th/LC_MESSAGES/kcmkeyboard.mo share/locale/th/LC_MESSAGES/kcmmouse.mo share/locale/th/LC_MESSAGES/knetattach.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/kcm_access.mo share/locale/tr/LC_MESSAGES/kcm_activities.mo share/locale/tr/LC_MESSAGES/kcm_baloofile.mo share/locale/tr/LC_MESSAGES/kcm_componentchooser.mo share/locale/tr/LC_MESSAGES/kcm_desktoppaths.mo share/locale/tr/LC_MESSAGES/kcm_device_automounter.mo share/locale/tr/LC_MESSAGES/kcm_gamecontroller.mo share/locale/tr/LC_MESSAGES/kcm_kded.mo share/locale/tr/LC_MESSAGES/kcm_keys.mo share/locale/tr/LC_MESSAGES/kcm_krunnersettings.mo share/locale/tr/LC_MESSAGES/kcm_landingpage.mo share/locale/tr/LC_MESSAGES/kcm_plasmasearch.mo share/locale/tr/LC_MESSAGES/kcm_recentFiles.mo share/locale/tr/LC_MESSAGES/kcm_smserver.mo share/locale/tr/LC_MESSAGES/kcm_solid_actions.mo share/locale/tr/LC_MESSAGES/kcm_splashscreen.mo share/locale/tr/LC_MESSAGES/kcm_tablet.mo share/locale/tr/LC_MESSAGES/kcm_touchpad.mo share/locale/tr/LC_MESSAGES/kcm_touchscreen.mo share/locale/tr/LC_MESSAGES/kcm_workspace.mo share/locale/tr/LC_MESSAGES/kcmkclock.mo share/locale/tr/LC_MESSAGES/kcmkeyboard.mo share/locale/tr/LC_MESSAGES/kcmmouse.mo share/locale/tr/LC_MESSAGES/kcmqtquicksettings.mo share/locale/tr/LC_MESSAGES/knetattach.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/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_device_automounter.mo share/locale/ug/LC_MESSAGES/kcm_kded.mo share/locale/ug/LC_MESSAGES/kcm_smserver.mo share/locale/ug/LC_MESSAGES/kcm_solid_actions.mo share/locale/ug/LC_MESSAGES/kcmkclock.mo share/locale/ug/LC_MESSAGES/kcmkeyboard.mo share/locale/ug/LC_MESSAGES/kcmmouse.mo share/locale/ug/LC_MESSAGES/knetattach.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/kcm_access.mo share/locale/uk/LC_MESSAGES/kcm_activities.mo share/locale/uk/LC_MESSAGES/kcm_baloofile.mo share/locale/uk/LC_MESSAGES/kcm_componentchooser.mo share/locale/uk/LC_MESSAGES/kcm_desktoppaths.mo share/locale/uk/LC_MESSAGES/kcm_device_automounter.mo share/locale/uk/LC_MESSAGES/kcm_gamecontroller.mo share/locale/uk/LC_MESSAGES/kcm_kded.mo share/locale/uk/LC_MESSAGES/kcm_keys.mo share/locale/uk/LC_MESSAGES/kcm_krunnersettings.mo share/locale/uk/LC_MESSAGES/kcm_landingpage.mo share/locale/uk/LC_MESSAGES/kcm_plasmasearch.mo share/locale/uk/LC_MESSAGES/kcm_recentFiles.mo share/locale/uk/LC_MESSAGES/kcm_smserver.mo share/locale/uk/LC_MESSAGES/kcm_solid_actions.mo share/locale/uk/LC_MESSAGES/kcm_splashscreen.mo share/locale/uk/LC_MESSAGES/kcm_tablet.mo share/locale/uk/LC_MESSAGES/kcm_touchpad.mo share/locale/uk/LC_MESSAGES/kcm_touchscreen.mo share/locale/uk/LC_MESSAGES/kcm_workspace.mo share/locale/uk/LC_MESSAGES/kcmkclock.mo share/locale/uk/LC_MESSAGES/kcmkeyboard.mo share/locale/uk/LC_MESSAGES/kcmmouse.mo share/locale/uk/LC_MESSAGES/kcmqtquicksettings.mo share/locale/uk/LC_MESSAGES/knetattach.mo share/locale/uk/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/uk/LC_MESSAGES/plasma_runner_kwin.mo share/locale/uk/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/uk/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/uk/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/uk/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/uk/LC_MESSAGES/plasmaactivitymanager.mo share/locale/uz/LC_MESSAGES/kaccess.mo share/locale/uz/LC_MESSAGES/kcm_access.mo share/locale/uz/LC_MESSAGES/kcm_componentchooser.mo share/locale/uz/LC_MESSAGES/kcm_desktoppaths.mo share/locale/uz/LC_MESSAGES/kcm_kded.mo share/locale/uz/LC_MESSAGES/kcm_smserver.mo share/locale/uz/LC_MESSAGES/kcmkclock.mo share/locale/uz/LC_MESSAGES/kcmkeyboard.mo share/locale/uz/LC_MESSAGES/kcmmouse.mo share/locale/uz/LC_MESSAGES/knetattach.mo share/locale/uz/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/uz@cyrillic/LC_MESSAGES/kaccess.mo share/locale/uz@cyrillic/LC_MESSAGES/kcm_access.mo share/locale/uz@cyrillic/LC_MESSAGES/kcm_componentchooser.mo share/locale/uz@cyrillic/LC_MESSAGES/kcm_desktoppaths.mo share/locale/uz@cyrillic/LC_MESSAGES/kcm_kded.mo share/locale/uz@cyrillic/LC_MESSAGES/kcm_smserver.mo share/locale/uz@cyrillic/LC_MESSAGES/kcmkclock.mo share/locale/uz@cyrillic/LC_MESSAGES/kcmkeyboard.mo share/locale/uz@cyrillic/LC_MESSAGES/kcmmouse.mo share/locale/uz@cyrillic/LC_MESSAGES/knetattach.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/kcm_access.mo share/locale/vi/LC_MESSAGES/kcm_activities.mo share/locale/vi/LC_MESSAGES/kcm_baloofile.mo share/locale/vi/LC_MESSAGES/kcm_componentchooser.mo share/locale/vi/LC_MESSAGES/kcm_desktoppaths.mo share/locale/vi/LC_MESSAGES/kcm_device_automounter.mo share/locale/vi/LC_MESSAGES/kcm_kded.mo share/locale/vi/LC_MESSAGES/kcm_keys.mo share/locale/vi/LC_MESSAGES/kcm_krunnersettings.mo share/locale/vi/LC_MESSAGES/kcm_landingpage.mo share/locale/vi/LC_MESSAGES/kcm_plasmasearch.mo share/locale/vi/LC_MESSAGES/kcm_recentFiles.mo share/locale/vi/LC_MESSAGES/kcm_smserver.mo share/locale/vi/LC_MESSAGES/kcm_solid_actions.mo share/locale/vi/LC_MESSAGES/kcm_splashscreen.mo share/locale/vi/LC_MESSAGES/kcm_tablet.mo share/locale/vi/LC_MESSAGES/kcm_touchpad.mo share/locale/vi/LC_MESSAGES/kcm_touchscreen.mo share/locale/vi/LC_MESSAGES/kcm_workspace.mo share/locale/vi/LC_MESSAGES/kcmkclock.mo share/locale/vi/LC_MESSAGES/kcmkeyboard.mo share/locale/vi/LC_MESSAGES/kcmmouse.mo share/locale/vi/LC_MESSAGES/kcmqtquicksettings.mo share/locale/vi/LC_MESSAGES/knetattach.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/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_device_automounter.mo share/locale/wa/LC_MESSAGES/kcm_kded.mo share/locale/wa/LC_MESSAGES/kcm_smserver.mo share/locale/wa/LC_MESSAGES/kcm_solid_actions.mo share/locale/wa/LC_MESSAGES/kcmkclock.mo share/locale/wa/LC_MESSAGES/kcmkeyboard.mo share/locale/wa/LC_MESSAGES/kcmmouse.mo share/locale/wa/LC_MESSAGES/knetattach.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/wa/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/xh/LC_MESSAGES/kaccess.mo share/locale/xh/LC_MESSAGES/kcm_access.mo share/locale/xh/LC_MESSAGES/kcm_componentchooser.mo share/locale/xh/LC_MESSAGES/kcm_desktoppaths.mo share/locale/xh/LC_MESSAGES/kcm_kded.mo share/locale/xh/LC_MESSAGES/kcm_smserver.mo share/locale/xh/LC_MESSAGES/kcmkclock.mo share/locale/xh/LC_MESSAGES/kcmkeyboard.mo share/locale/xh/LC_MESSAGES/kcmmouse.mo share/locale/xh/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/zh_CN/LC_MESSAGES/kaccess.mo share/locale/zh_CN/LC_MESSAGES/kcm_access.mo share/locale/zh_CN/LC_MESSAGES/kcm_activities.mo share/locale/zh_CN/LC_MESSAGES/kcm_baloofile.mo share/locale/zh_CN/LC_MESSAGES/kcm_componentchooser.mo share/locale/zh_CN/LC_MESSAGES/kcm_desktoppaths.mo share/locale/zh_CN/LC_MESSAGES/kcm_device_automounter.mo share/locale/zh_CN/LC_MESSAGES/kcm_gamecontroller.mo share/locale/zh_CN/LC_MESSAGES/kcm_kded.mo share/locale/zh_CN/LC_MESSAGES/kcm_keys.mo share/locale/zh_CN/LC_MESSAGES/kcm_krunnersettings.mo share/locale/zh_CN/LC_MESSAGES/kcm_landingpage.mo share/locale/zh_CN/LC_MESSAGES/kcm_plasmasearch.mo share/locale/zh_CN/LC_MESSAGES/kcm_recentFiles.mo share/locale/zh_CN/LC_MESSAGES/kcm_smserver.mo share/locale/zh_CN/LC_MESSAGES/kcm_solid_actions.mo share/locale/zh_CN/LC_MESSAGES/kcm_splashscreen.mo share/locale/zh_CN/LC_MESSAGES/kcm_tablet.mo share/locale/zh_CN/LC_MESSAGES/kcm_touchpad.mo share/locale/zh_CN/LC_MESSAGES/kcm_touchscreen.mo share/locale/zh_CN/LC_MESSAGES/kcm_workspace.mo share/locale/zh_CN/LC_MESSAGES/kcmkclock.mo share/locale/zh_CN/LC_MESSAGES/kcmkeyboard.mo share/locale/zh_CN/LC_MESSAGES/kcmmouse.mo share/locale/zh_CN/LC_MESSAGES/kcmqtquicksettings.mo share/locale/zh_CN/LC_MESSAGES/knetattach.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/kcm_access.mo share/locale/zh_TW/LC_MESSAGES/kcm_activities.mo share/locale/zh_TW/LC_MESSAGES/kcm_baloofile.mo share/locale/zh_TW/LC_MESSAGES/kcm_componentchooser.mo share/locale/zh_TW/LC_MESSAGES/kcm_desktoppaths.mo share/locale/zh_TW/LC_MESSAGES/kcm_device_automounter.mo share/locale/zh_TW/LC_MESSAGES/kcm_gamecontroller.mo share/locale/zh_TW/LC_MESSAGES/kcm_kded.mo share/locale/zh_TW/LC_MESSAGES/kcm_keys.mo share/locale/zh_TW/LC_MESSAGES/kcm_krunnersettings.mo share/locale/zh_TW/LC_MESSAGES/kcm_landingpage.mo share/locale/zh_TW/LC_MESSAGES/kcm_plasmasearch.mo share/locale/zh_TW/LC_MESSAGES/kcm_recentFiles.mo share/locale/zh_TW/LC_MESSAGES/kcm_smserver.mo share/locale/zh_TW/LC_MESSAGES/kcm_solid_actions.mo share/locale/zh_TW/LC_MESSAGES/kcm_splashscreen.mo share/locale/zh_TW/LC_MESSAGES/kcm_tablet.mo share/locale/zh_TW/LC_MESSAGES/kcm_touchpad.mo share/locale/zh_TW/LC_MESSAGES/kcm_touchscreen.mo share/locale/zh_TW/LC_MESSAGES/kcm_workspace.mo share/locale/zh_TW/LC_MESSAGES/kcmkclock.mo share/locale/zh_TW/LC_MESSAGES/kcmkeyboard.mo share/locale/zh_TW/LC_MESSAGES/kcmmouse.mo share/locale/zh_TW/LC_MESSAGES/kcmqtquicksettings.mo share/locale/zh_TW/LC_MESSAGES/knetattach.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/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/bew.dict share/plasma/emoji/bg.dict share/plasma/emoji/bgn.dict share/plasma/emoji/bn.dict share/plasma/emoji/br.dict share/plasma/emoji/bs.dict share/plasma/emoji/ca.dict share/plasma/emoji/ccp.dict share/plasma/emoji/ceb.dict share/plasma/emoji/chr.dict share/plasma/emoji/ckb.dict share/plasma/emoji/cs.dict share/plasma/emoji/cv.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/en_IN.dict share/plasma/emoji/es.dict share/plasma/emoji/es_419.dict share/plasma/emoji/es_MX.dict share/plasma/emoji/es_US.dict share/plasma/emoji/et.dict share/plasma/emoji/eu.dict share/plasma/emoji/fa.dict share/plasma/emoji/ff_Adlm.dict share/plasma/emoji/fi.dict share/plasma/emoji/fil.dict share/plasma/emoji/fo.dict share/plasma/emoji/fr.dict share/plasma/emoji/fr_CA.dict share/plasma/emoji/ga.dict share/plasma/emoji/gd.dict share/plasma/emoji/gl.dict share/plasma/emoji/gu.dict share/plasma/emoji/ha.dict share/plasma/emoji/he.dict share/plasma/emoji/hi.dict share/plasma/emoji/hi_Latn.dict share/plasma/emoji/hr.dict share/plasma/emoji/hsb.dict share/plasma/emoji/hu.dict share/plasma/emoji/hy.dict share/plasma/emoji/ia.dict share/plasma/emoji/id.dict share/plasma/emoji/ig.dict share/plasma/emoji/is.dict share/plasma/emoji/it.dict share/plasma/emoji/ja.dict share/plasma/emoji/jv.dict share/plasma/emoji/ka.dict share/plasma/emoji/kab.dict share/plasma/emoji/kk.dict share/plasma/emoji/kl.dict share/plasma/emoji/km.dict share/plasma/emoji/kn.dict share/plasma/emoji/ko.dict share/plasma/emoji/kok.dict share/plasma/emoji/ku.dict share/plasma/emoji/ky.dict share/plasma/emoji/lb.dict share/plasma/emoji/lij.dict share/plasma/emoji/lo.dict share/plasma/emoji/lt.dict share/plasma/emoji/lv.dict share/plasma/emoji/mi.dict share/plasma/emoji/mk.dict share/plasma/emoji/ml.dict share/plasma/emoji/mn.dict share/plasma/emoji/mni.dict share/plasma/emoji/mr.dict share/plasma/emoji/ms.dict share/plasma/emoji/mt.dict share/plasma/emoji/my.dict share/plasma/emoji/ne.dict share/plasma/emoji/nl.dict share/plasma/emoji/nn.dict share/plasma/emoji/no.dict share/plasma/emoji/nso.dict share/plasma/emoji/oc.dict share/plasma/emoji/or.dict share/plasma/emoji/pa.dict share/plasma/emoji/pa_Arab.dict share/plasma/emoji/pcm.dict share/plasma/emoji/pl.dict share/plasma/emoji/ps.dict share/plasma/emoji/pt.dict share/plasma/emoji/pt_PT.dict share/plasma/emoji/qu.dict share/plasma/emoji/quc.dict share/plasma/emoji/rhg.dict share/plasma/emoji/rm.dict share/plasma/emoji/ro.dict share/plasma/emoji/ru.dict share/plasma/emoji/rw.dict share/plasma/emoji/sat.dict share/plasma/emoji/sc.dict share/plasma/emoji/sd.dict share/plasma/emoji/si.dict share/plasma/emoji/sk.dict share/plasma/emoji/sl.dict share/plasma/emoji/so.dict share/plasma/emoji/sq.dict share/plasma/emoji/sr.dict share/plasma/emoji/sr_Cyrl_BA.dict share/plasma/emoji/sr_Latn.dict share/plasma/emoji/sr_Latn_BA.dict share/plasma/emoji/sv.dict share/plasma/emoji/sw.dict share/plasma/emoji/sw_KE.dict share/plasma/emoji/ta.dict share/plasma/emoji/te.dict share/plasma/emoji/tg.dict share/plasma/emoji/th.dict share/plasma/emoji/ti.dict share/plasma/emoji/tk.dict share/plasma/emoji/tn.dict share/plasma/emoji/to.dict share/plasma/emoji/tr.dict share/plasma/emoji/ug.dict share/plasma/emoji/uk.dict share/plasma/emoji/ur.dict share/plasma/emoji/uz.dict share/plasma/emoji/vi.dict share/plasma/emoji/wo.dict share/plasma/emoji/xh.dict share/plasma/emoji/yo.dict share/plasma/emoji/yo_BJ.dict share/plasma/emoji/yue.dict share/plasma/emoji/yue_Hans.dict share/plasma/emoji/zh.dict share/plasma/emoji/zh_Hant.dict share/plasma/emoji/zh_Hant_HK.dict share/plasma/emoji/zu.dict share/plasma/layout-templates/org.kde.plasma.desktop.appmenubar/contents/layout.js share/plasma/layout-templates/org.kde.plasma.desktop.appmenubar/metadata.json share/plasma/layout-templates/org.kde.plasma.desktop.defaultPanel/contents/layout.js share/plasma/layout-templates/org.kde.plasma.desktop.defaultPanel/metadata.json share/plasma/layout-templates/org.kde.plasma.desktop.emptyPanel/contents/layout.js share/plasma/layout-templates/org.kde.plasma.desktop.emptyPanel/metadata.json share/plasma/packages/org.kde.desktoptoolbox/contents/config/main.xml share/plasma/packages/org.kde.desktoptoolbox/contents/ui/ToolBoxContent.qml share/plasma/packages/org.kde.desktoptoolbox/contents/ui/main.qml share/plasma/packages/org.kde.desktoptoolbox/metadata.json share/plasma/packages/org.kde.paneltoolbox/contents/ui/main.qml share/plasma/packages/org.kde.paneltoolbox/metadata.json share/plasma/plasmoids/org.kde.desktopcontainment/contents/config/config.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/config/main.xml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/ActionButton.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/BackButtonItem.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/CompactRepresentation.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/ConfigFilter.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/ConfigIcons.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/ConfigLocation.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/ConfigOverlay.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/FolderItemActionButton.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/FolderItemDelegate.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/FolderItemPreviewPluginsDialog.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/FolderView.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/FolderViewDialog.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/FolderViewDropArea.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/FolderViewLayer.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/RenameEditor.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/code/FolderTools.js share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/main.qml share/plasma/plasmoids/org.kde.desktopcontainment/metadata.json share/plasma/plasmoids/org.kde.panel/contents/config/main.xml share/plasma/plasmoids/org.kde.panel/contents/ui/ConfigOverlay.qml share/plasma/plasmoids/org.kde.panel/contents/ui/LayoutManager.js share/plasma/plasmoids/org.kde.panel/contents/ui/main.qml share/plasma/plasmoids/org.kde.panel/metadata.json share/plasma/plasmoids/org.kde.plasma.activitypager/metadata.json share/plasma/plasmoids/org.kde.plasma.folder/metadata.json share/plasma/plasmoids/org.kde.plasma.icontasks/metadata.json share/plasma/plasmoids/org.kde.plasma.keyboardlayout/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.keyboardlayout/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.keyboardlayout/contents/ui/configGeneral.qml share/plasma/plasmoids/org.kde.plasma.keyboardlayout/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.keyboardlayout/metadata.json share/plasma/plasmoids/org.kde.plasma.kicker/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/ActionMenu.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/CompactRepresentation.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/ConfigGeneral.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/DashboardRepresentation.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/ItemGridDelegate.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/ItemGridView.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/ItemListDelegate.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/ItemListDialog.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/ItemListView.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/ItemMultiGridView.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/MenuRepresentation.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/RunnerResultsList.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/SideBarItem.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/SideBarSection.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/code/tools.js share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.kicker/metadata.json share/plasma/plasmoids/org.kde.plasma.kickoff/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/AbstractKickoffItemDelegate.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/ActionMenu.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/ApplicationsPage.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/BasePage.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/ConfigGeneral.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/DropAreaGridView.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/DropAreaListView.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/EmptyPage.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/Footer.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/FullRepresentation.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/Header.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/HorizontalStackView.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/KickoffDropArea.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/KickoffGridDelegate.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/KickoffGridView.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/KickoffListDelegate.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/KickoffListView.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/KickoffSingleton.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/LeaveButtons.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/ListOfGridsView.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/ListOfGridsViewDelegate.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/NormalPage.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/PlacesPage.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/SectionView.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/VerticalStackView.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/code/tools.js share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/qmldir share/plasma/plasmoids/org.kde.plasma.kickoff/metadata.json share/plasma/plasmoids/org.kde.plasma.kimpanel/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.kimpanel/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.kimpanel/contents/ui/ActionMenu.qml share/plasma/plasmoids/org.kde.plasma.kimpanel/contents/ui/CandidateHighlight.qml share/plasma/plasmoids/org.kde.plasma.kimpanel/contents/ui/ConfigAppearance.qml share/plasma/plasmoids/org.kde.plasma.kimpanel/contents/ui/ContextMenu.qml share/plasma/plasmoids/org.kde.plasma.kimpanel/contents/ui/InputPanel.qml share/plasma/plasmoids/org.kde.plasma.kimpanel/contents/ui/StatusIcon.qml share/plasma/plasmoids/org.kde.plasma.kimpanel/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.kimpanel/metadata.json share/plasma/plasmoids/org.kde.plasma.marginsseparator/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.marginsseparator/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.marginsseparator/metadata.json share/plasma/plasmoids/org.kde.plasma.minimizeall/metadata.json share/plasma/plasmoids/org.kde.plasma.pager/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.pager/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.pager/contents/ui/configGeneral.qml share/plasma/plasmoids/org.kde.plasma.pager/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.pager/metadata.json share/plasma/plasmoids/org.kde.plasma.showActivityManager/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.showActivityManager/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.showActivityManager/contents/ui/ConfigAppearance.qml share/plasma/plasmoids/org.kde.plasma.showActivityManager/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.showActivityManager/metadata.json share/plasma/plasmoids/org.kde.plasma.showdesktop/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.showdesktop/contents/ui/Controller.qml share/plasma/plasmoids/org.kde.plasma.showdesktop/contents/ui/MinimizeAllController.qml share/plasma/plasmoids/org.kde.plasma.showdesktop/contents/ui/PeekController.qml share/plasma/plasmoids/org.kde.plasma.showdesktop/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.showdesktop/metadata.json share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/AudioStream.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/Badge.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/ConfigAppearance.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/ConfigBehavior.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/ContextMenu.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/GroupDialog.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/GroupExpanderOverlay.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/MouseHandler.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/PipeWireThumbnail.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/PlayerController.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/PulseAudio.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/ScrollableTextWrapper.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/Task.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/TaskBadgeOverlay.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/TaskList.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/TaskProgressOverlay.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/ToolTipDelegate.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/ToolTipInstance.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/ToolTipWindowMouseArea.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/code/layout.js share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/code/tools.js share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/metadata.json share/plasma/plasmoids/org.kde.plasma.trash/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.trash/metadata.json share/plasma/plasmoids/org.kde.plasma.windowlist/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.windowlist/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.windowlist/contents/ui/ConfigGeneral.qml share/plasma/plasmoids/org.kde.plasma.windowlist/contents/ui/MenuButton.qml share/plasma/plasmoids/org.kde.plasma.windowlist/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.windowlist/metadata.json share/plasma/shells/org.kde.plasma.desktop/contents/InteractiveConsole.qml share/plasma/shells/org.kde.plasma.desktop/contents/activitymanager/ActivityItem.qml share/plasma/shells/org.kde.plasma.desktop/contents/activitymanager/ActivityList.qml share/plasma/shells/org.kde.plasma.desktop/contents/activitymanager/ActivityManager.qml share/plasma/shells/org.kde.plasma.desktop/contents/activitymanager/Heading.qml share/plasma/shells/org.kde.plasma.desktop/contents/activitymanager/StoppedActivityItem.qml share/plasma/shells/org.kde.plasma.desktop/contents/activitymanager/TaskDropArea.qml share/plasma/shells/org.kde.plasma.desktop/contents/activitymanager/WindowPreview.qml share/plasma/shells/org.kde.plasma.desktop/contents/activitymanager/static.js share/plasma/shells/org.kde.plasma.desktop/contents/applet/AppletError.qml share/plasma/shells/org.kde.plasma.desktop/contents/applet/CompactApplet.qml share/plasma/shells/org.kde.plasma.desktop/contents/applet/DefaultCompactRepresentation.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/AboutPlugin.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/AppletConfiguration.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/ConfigCategoryDelegate.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/ConfigurationAppletPage.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/ConfigurationContainmentActions.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/ConfigurationContainmentAppearance.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/ConfigurationKcmPage.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/ConfigurationShortcuts.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/ContainmentConfiguration.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/MouseEventInputButton.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/PanelConfiguration.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/ShellContainmentConfiguration.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/panelconfiguration/PanelRepresentation.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/panelconfiguration/Ruler.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/panelconfiguration/SliderHandle.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/shellcontainmentconfiguration/Delegate.qml share/plasma/shells/org.kde.plasma.desktop/contents/defaults share/plasma/shells/org.kde.plasma.desktop/contents/explorer/AppletAlternatives.qml share/plasma/shells/org.kde.plasma.desktop/contents/explorer/AppletDelegate.qml share/plasma/shells/org.kde.plasma.desktop/contents/explorer/Tooltip.qml share/plasma/shells/org.kde.plasma.desktop/contents/explorer/WidgetExplorer.qml share/plasma/shells/org.kde.plasma.desktop/contents/main.js share/plasma/shells/org.kde.plasma.desktop/contents/updates/containmentactions_middlebutton.js share/plasma/shells/org.kde.plasma.desktop/contents/updates/digitalclock_migrate_font_settings.js share/plasma/shells/org.kde.plasma.desktop/contents/updates/digitalclock_migrate_showseconds_setting.js share/plasma/shells/org.kde.plasma.desktop/contents/updates/digitalclock_rename_timezonedisplay_key.js share/plasma/shells/org.kde.plasma.desktop/contents/updates/folderview_fix_recursive_screenmapping.js share/plasma/shells/org.kde.plasma.desktop/contents/updates/keyboardlayout_migrateiconsetting.js share/plasma/shells/org.kde.plasma.desktop/contents/updates/keyboardlayout_remove_shortcut.js share/plasma/shells/org.kde.plasma.desktop/contents/updates/klipper_clear_config.js share/plasma/shells/org.kde.plasma.desktop/contents/updates/maintain_existing_desktop_icon_sizes.js share/plasma/shells/org.kde.plasma.desktop/contents/updates/mediaframe_migrate_useBackground_setting.js share/plasma/shells/org.kde.plasma.desktop/contents/updates/migrate_font_weights.js share/plasma/shells/org.kde.plasma.desktop/contents/updates/move_desktop_layout_config.js share/plasma/shells/org.kde.plasma.desktop/contents/updates/no_middle_click_paste_on_panels.js share/plasma/shells/org.kde.plasma.desktop/contents/updates/systemloadviewer_systemmonitor.js share/plasma/shells/org.kde.plasma.desktop/contents/updates/unlock_widgets.js share/plasma/shells/org.kde.plasma.desktop/contents/views/Desktop.qml share/plasma/shells/org.kde.plasma.desktop/contents/views/Panel.qml share/plasma/shells/org.kde.plasma.desktop/contents/views/PreviewBanner.qml share/plasma/shells/org.kde.plasma.desktop/metadata.json share/qlogging-categories6/kcm_kded.categories share/qlogging-categories6/kcm_keyboard.categories share/qlogging-categories6/kcm_mouse.categories share/qlogging-categories6/kcm_tablet.categories share/qlogging-categories6/kcm_touchscreen.categories share/qlogging-categories6/kcmkeys.categories share/solid/devices/solid-device-Battery.desktop share/solid/devices/solid-device-Block.desktop share/solid/devices/solid-device-Camera.desktop share/solid/devices/solid-device-OpticalDisc.desktop share/solid/devices/solid-device-OpticalDrive.desktop share/solid/devices/solid-device-PortableMediaPlayer.desktop share/solid/devices/solid-device-Processor.desktop share/solid/devices/solid-device-StorageAccess.desktop share/solid/devices/solid-device-StorageDrive.desktop share/solid/devices/solid-device-StorageVolume.desktop diff --git a/x11/plasma6-plasma-integration/distinfo b/x11/plasma6-plasma-integration/distinfo index 03368c91adbe..07a3bd8c1152 100644 --- a/x11/plasma6-plasma-integration/distinfo +++ b/x11/plasma6-plasma-integration/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1710959370 -SHA256 (KDE/plasma/6.0.2/plasma-integration-6.0.2.tar.xz) = 26a7db6b0eb7548b400ebfacb4d53fe1bbbc3c0c7b3e0ebf76e5552bcc02a0fc -SIZE (KDE/plasma/6.0.2/plasma-integration-6.0.2.tar.xz) = 92848 +TIMESTAMP = 1712731809 +SHA256 (KDE/plasma/6.0.3/plasma-integration-6.0.3.tar.xz) = 5beb7784d124d9ea108f008043a93c837c07573f5bc8afcf9216eeb4644afd8a +SIZE (KDE/plasma/6.0.3/plasma-integration-6.0.3.tar.xz) = 92996 diff --git a/x11/plasma6-plasma-workspace/distinfo b/x11/plasma6-plasma-workspace/distinfo index 80a04f2e158d..0ad3a1189f8d 100644 --- a/x11/plasma6-plasma-workspace/distinfo +++ b/x11/plasma6-plasma-workspace/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1710959371 -SHA256 (KDE/plasma/6.0.2/plasma-workspace-6.0.2.tar.xz) = 9cceb4e2bce045970fc177bf2847ffae58bd397806b8ccf44da5820a3bd600ce -SIZE (KDE/plasma/6.0.2/plasma-workspace-6.0.2.tar.xz) = 19949364 +TIMESTAMP = 1712731810 +SHA256 (KDE/plasma/6.0.3/plasma-workspace-6.0.3.tar.xz) = e43ea8003a8753279df4580ebed17eea352e9694b54dba4507406025a41f69c3 +SIZE (KDE/plasma/6.0.3/plasma-workspace-6.0.3.tar.xz) = 19942864 diff --git a/x11/plasma6-plasma-workspace/pkg-plist b/x11/plasma6-plasma-workspace/pkg-plist index afdd96a24f88..a7dadfb25695 100644 --- a/x11/plasma6-plasma-workspace/pkg-plist +++ b/x11/plasma6-plasma-workspace/pkg-plist @@ -1,6551 +1,6569 @@ bin/gmenudbusmenuproxy bin/kcminit bin/kcminit_startup bin/kcolorschemeeditor bin/kfontinst bin/kfontview bin/krunner bin/ksmserver bin/ksplashqml bin/lookandfeeltool bin/plasma-apply-colorscheme bin/plasma-apply-cursortheme bin/plasma-apply-desktoptheme bin/plasma-apply-lookandfeel bin/plasma-apply-wallpaperimage bin/plasma-interactiveconsole bin/plasma-shutdown bin/plasma_session bin/plasma_waitforname bin/plasmashell bin/plasmawindowed bin/startplasma-wayland bin/startplasma-x11 bin/xembedsniproxy etc/xdg/autostart/gmenudbusmenuproxy.desktop etc/xdg/autostart/org.kde.plasmashell.desktop etc/xdg/autostart/xembedsniproxy.desktop etc/xdg/menus/plasma-applications.menu etc/xdg/plasmanotifyrc etc/xdg/taskmanagerrulesrc include/colorcorrect/colorcorrect_export.h include/colorcorrect/colorcorrectconstants.h include/colorcorrect/compositorcoloradaptor.h include/colorcorrect/geolocator.h include/krdb/krdb.h include/krdb/krdb_export.h include/kworkspace6/autostartscriptdesktopfile.h include/kworkspace6/config-libkworkspace.h include/kworkspace6/kdisplaymanager.h include/kworkspace6/kworkspace.h include/kworkspace6/kworkspace_export.h include/kworkspace6/outputorderwatcher.h include/kworkspace6/sessionmanagement.h include/notificationmanager/badgesettings.h include/notificationmanager/behaviorsettings.h include/notificationmanager/donotdisturbsettings.h include/notificationmanager/job.h include/notificationmanager/jobsettings.h include/notificationmanager/jobsmodel.h include/notificationmanager/notification.h include/notificationmanager/notificationmanager_export.h include/notificationmanager/notifications.h include/notificationmanager/notificationsettings.h include/notificationmanager/server.h include/notificationmanager/settings.h include/plasma5support/weather/ion.h include/plasma5support/weather/ion_export.h include/taskmanager/abstracttasksmodel.h include/taskmanager/abstracttasksmodeliface.h include/taskmanager/abstracttasksproxymodeliface.h include/taskmanager/abstractwindowtasksmodel.h include/taskmanager/activityinfo.h include/taskmanager/concatenatetasksproxymodel.h include/taskmanager/flattentaskgroupsproxymodel.h include/taskmanager/launchertasksmodel.h include/taskmanager/regionfiltermode.h include/taskmanager/startuptasksmodel.h include/taskmanager/taskfilterproxymodel.h include/taskmanager/taskgroupingproxymodel.h include/taskmanager/taskmanager_export.h include/taskmanager/tasksmodel.h include/taskmanager/tasktools.h include/taskmanager/virtualdesktopinfo.h include/taskmanager/waylandstartuptasksmodel.h include/taskmanager/waylandtasksmodel.h include/taskmanager/windowtasksmodel.h include/taskmanager/xstartuptasksmodel.h include/taskmanager/xwindowtasksmodel.h lib/cmake/KRunnerAppDBusInterface/KRunnerAppDBusInterfaceConfig.cmake lib/cmake/KSMServerDBusInterface/KSMServerDBusInterfaceConfig.cmake lib/cmake/LibColorCorrect/LibColorCorrectConfig.cmake lib/cmake/LibColorCorrect/LibColorCorrectConfigVersion.cmake lib/cmake/LibColorCorrect/LibColorCorrectLibraryTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/LibColorCorrect/LibColorCorrectLibraryTargets.cmake lib/cmake/LibKWorkspace/LibKWorkspaceConfig.cmake lib/cmake/LibKWorkspace/LibKWorkspaceConfigVersion.cmake lib/cmake/LibKWorkspace/LibKWorkspaceLibraryTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/LibKWorkspace/LibKWorkspaceLibraryTargets.cmake lib/cmake/LibNotificationManager/LibNotificationManagerConfig.cmake lib/cmake/LibNotificationManager/LibNotificationManagerConfigVersion.cmake lib/cmake/LibNotificationManager/LibNotificationManagerLibraryTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/LibNotificationManager/LibNotificationManagerLibraryTargets.cmake lib/cmake/LibTaskManager/LibTaskManagerConfig.cmake lib/cmake/LibTaskManager/LibTaskManagerConfigVersion.cmake lib/cmake/LibTaskManager/LibTaskManagerLibraryTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/LibTaskManager/LibTaskManagerLibraryTargets.cmake lib/kconf_update_bin/plasma6.0-remove-dpi-settings lib/kconf_update_bin/plasma6.0-remove-old-shortcuts lib/kconf_update_bin/plasmashell-6.0-keep-custom-position-of-panels lib/kconf_update_bin/plasmashell-6.0-keep-default-floating-setting-for-plasma-5-panels lib/libcolorcorrect.so lib/libcolorcorrect.so.6 lib/libcolorcorrect.so.%%KDE_PLASMA_VERSION%% lib/libexec/baloorunner lib/libexec/kf6/kauth/fontinst lib/libexec/kf6/kauth/fontinst_helper lib/libexec/kf6/kauth/fontinst_x11 lib/libexec/kfontprint lib/libexec/ksmserver-logout-greeter lib/libexec/plasma-changeicons lib/libexec/plasma-dbus-run-session-if-needed lib/libexec/plasma-sourceenv.sh lib/libkfontinst.so lib/libkfontinst.so.6 lib/libkfontinst.so.%%KDE_PLASMA_VERSION%% lib/libkfontinstui.so lib/libkfontinstui.so.6 lib/libkfontinstui.so.%%KDE_PLASMA_VERSION%% lib/libkmpris.so lib/libkmpris.so.6 lib/libkmpris.so.%%KDE_PLASMA_VERSION%% lib/libkrdb.so lib/libkworkspace6.so lib/libkworkspace6.so.6 lib/libkworkspace6.so.%%KDE_PLASMA_VERSION%% lib/libnotificationmanager.so lib/libnotificationmanager.so.1 lib/libnotificationmanager.so.%%KDE_PLASMA_VERSION%% lib/libtaskmanager.so lib/libtaskmanager.so.6 lib/libtaskmanager.so.%%KDE_PLASMA_VERSION%% lib/libweather_ion.so lib/libweather_ion.so.7 lib/libweather_ion.so.7.0.0 %%QT_PLUGINDIR%%/kf6/kded/appmenu.so %%QT_PLUGINDIR%%/kf6/kded/colorcorrectlocationupdater.so %%QT_PLUGINDIR%%/kf6/kded/desktopnotifier.so %%QT_PLUGINDIR%%/kf6/kded/devicenotifications.so %%QT_PLUGINDIR%%/kf6/kded/freespacenotifier.so %%QT_PLUGINDIR%%/kf6/kded/ktimezoned.so %%QT_PLUGINDIR%%/kf6/kded/mprisservice.so %%QT_PLUGINDIR%%/kf6/kded/plasma-session-shortcuts.so %%QT_PLUGINDIR%%/kf6/kded/plasma_accentcolor_service.so %%QT_PLUGINDIR%%/kf6/kded/solidautoeject.so %%QT_PLUGINDIR%%/kf6/kded/soliduiserver.so %%QT_PLUGINDIR%%/kf6/kded/statusnotifierwatcher.so %%QT_PLUGINDIR%%/kf6/kfileitemaction/wallpaperfileitemaction.so %%QT_PLUGINDIR%%/kf6/kio/applications.so %%QT_PLUGINDIR%%/kf6/kio/desktop.so %%QT_PLUGINDIR%%/kf6/kio/kio_fonts.so %%QT_PLUGINDIR%%/kf6/krunner/calculator.so %%QT_PLUGINDIR%%/kf6/krunner/helprunner.so %%QT_PLUGINDIR%%/kf6/krunner/kcms/kcm_krunner_kill.so %%QT_PLUGINDIR%%/kf6/krunner/krunner_bookmarksrunner.so %%QT_PLUGINDIR%%/kf6/krunner/krunner_kill.so %%QT_PLUGINDIR%%/kf6/krunner/krunner_placesrunner.so %%QT_PLUGINDIR%%/kf6/krunner/krunner_powerdevil.so %%QT_PLUGINDIR%%/kf6/krunner/krunner_recentdocuments.so %%QT_PLUGINDIR%%/kf6/krunner/krunner_services.so %%QT_PLUGINDIR%%/kf6/krunner/krunner_sessions.so %%QT_PLUGINDIR%%/kf6/krunner/krunner_shell.so %%QT_PLUGINDIR%%/kf6/krunner/krunner_webshortcuts.so %%QT_PLUGINDIR%%/kf6/krunner/locations.so %%QT_PLUGINDIR%%/kf6/packagestructure/plasma_layouttemplate.so %%QT_PLUGINDIR%%/kf6/packagestructure/plasma_lookandfeel.so %%QT_PLUGINDIR%%/kf6/packagestructure/wallpaper_images.so %%QT_PLUGINDIR%%/kf6/parts/kfontviewpart.so %%QT_PLUGINDIR%%/kf6/thumbcreator/fontthumbnail.so %%QT_PLUGINDIR%%/phonon_platform/kde.so %%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.appmenu.so %%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.calendar.so %%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.icon.so %%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.notifications.so %%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.panelspacer.so %%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.private.systemtray.so %%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.systemmonitor.so %%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.systemtray.so %%QT_PLUGINDIR%%/plasma/containmentactions/org.kde.applauncher.so %%QT_PLUGINDIR%%/plasma/containmentactions/org.kde.contextmenu.so %%QT_PLUGINDIR%%/plasma/containmentactions/org.kde.paste.so %%QT_PLUGINDIR%%/plasma/containmentactions/org.kde.switchdesktop.so %%QT_PLUGINDIR%%/plasma/containmentactions/switchactivity.so %%QT_PLUGINDIR%%/plasma/containmentactions/switchwindow.so %%QT_PLUGINDIR%%/plasma/kcminit/kcm_fonts_init.so %%QT_PLUGINDIR%%/plasma/kcminit/kcm_style_init.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_autostart.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_colors.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_cursortheme.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_desktoptheme.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_feedback.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_fonts.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_icons.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_lookandfeel.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_nightcolor.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_notifications.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_regionandlang.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_soundtheme.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_style.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_users.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_wallpaper.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_fontinst.so %%QT_PLUGINDIR%%/plasma5support/dataengine/plasma_engine_activities.so %%QT_PLUGINDIR%%/plasma5support/dataengine/plasma_engine_applicationjobs.so %%QT_PLUGINDIR%%/plasma5support/dataengine/plasma_engine_apps.so %%QT_PLUGINDIR%%/plasma5support/dataengine/plasma_engine_bbcukmet.so %%QT_PLUGINDIR%%/plasma5support/dataengine/plasma_engine_clipboard.so %%QT_PLUGINDIR%%/plasma5support/dataengine/plasma_engine_devicenotifications.so %%QT_PLUGINDIR%%/plasma5support/dataengine/plasma_engine_dict.so %%QT_PLUGINDIR%%/plasma5support/dataengine/plasma_engine_dwd.so %%QT_PLUGINDIR%%/plasma5support/dataengine/plasma_engine_envcan.so %%QT_PLUGINDIR%%/plasma5support/dataengine/plasma_engine_executable.so %%QT_PLUGINDIR%%/plasma5support/dataengine/plasma_engine_favicons.so %%QT_PLUGINDIR%%/plasma5support/dataengine/plasma_engine_filebrowser.so %%QT_PLUGINDIR%%/plasma5support/dataengine/plasma_engine_hotplug.so %%QT_PLUGINDIR%%/plasma5support/dataengine/plasma_engine_keystate.so %%QT_PLUGINDIR%%/plasma5support/dataengine/plasma_engine_mouse.so %%QT_PLUGINDIR%%/plasma5support/dataengine/plasma_engine_noaa.so %%QT_PLUGINDIR%%/plasma5support/dataengine/plasma_engine_notifications.so %%QT_PLUGINDIR%%/plasma5support/dataengine/plasma_engine_packagekit.so %%QT_PLUGINDIR%%/plasma5support/dataengine/plasma_engine_places.so %%QT_PLUGINDIR%%/plasma5support/dataengine/plasma_engine_powermanagement.so %%QT_PLUGINDIR%%/plasma5support/dataengine/plasma_engine_soliddevice.so %%QT_PLUGINDIR%%/plasma5support/dataengine/plasma_engine_statusnotifieritem.so %%QT_PLUGINDIR%%/plasma5support/dataengine/plasma_engine_time.so %%QT_PLUGINDIR%%/plasma5support/dataengine/plasma_engine_weather.so %%QT_PLUGINDIR%%/plasma5support/dataengine/plasma_engine_wettercom.so %%QT_PLUGINDIR%%/plasmacalendarplugins/holidays/HolidaysConfig.qml %%QT_PLUGINDIR%%/plasmacalendarplugins/holidaysevents.so %%QT_QMLDIR%%/org/kde/breeze/components/ActionButton.qml %%QT_QMLDIR%%/org/kde/breeze/components/Battery.qml %%QT_QMLDIR%%/org/kde/breeze/components/Clock.qml %%QT_QMLDIR%%/org/kde/breeze/components/RejectPasswordAnimation.qml %%QT_QMLDIR%%/org/kde/breeze/components/RejectPasswordPathAnimation.qml %%QT_QMLDIR%%/org/kde/breeze/components/SessionManagementScreen.qml %%QT_QMLDIR%%/org/kde/breeze/components/UserDelegate.qml %%QT_QMLDIR%%/org/kde/breeze/components/UserList.qml %%QT_QMLDIR%%/org/kde/breeze/components/VirtualKeyboard.qml %%QT_QMLDIR%%/org/kde/breeze/components/VirtualKeyboardLoader.qml %%QT_QMLDIR%%/org/kde/breeze/components/VirtualKeyboard_wayland.qml %%QT_QMLDIR%%/org/kde/breeze/components/WallpaperFader.qml %%QT_QMLDIR%%/org/kde/breeze/components/components.qmltypes %%QT_QMLDIR%%/org/kde/breeze/components/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/breeze/components/libcomponents.so %%QT_QMLDIR%%/org/kde/breeze/components/qmldir %%QT_QMLDIR%%/org/kde/colorcorrect/colorcorrect.qmltypes %%QT_QMLDIR%%/org/kde/colorcorrect/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/colorcorrect/libcolorcorrectplugin.so %%QT_QMLDIR%%/org/kde/colorcorrect/qmldir %%QT_QMLDIR%%/org/kde/holidayeventshelperplugin/libholidayeventshelperplugin.so %%QT_QMLDIR%%/org/kde/holidayeventshelperplugin/qmldir %%QT_QMLDIR%%/org/kde/notificationmanager/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/notificationmanager/libnotificationmanagerplugin.so %%QT_QMLDIR%%/org/kde/notificationmanager/notificationmanager.qmltypes %%QT_QMLDIR%%/org/kde/notificationmanager/qmldir %%QT_QMLDIR%%/org/kde/plasma/lookandfeel/liblookandfeelqmlplugin.so %%QT_QMLDIR%%/org/kde/plasma/lookandfeel/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/appmenu/libappmenuplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/appmenu/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/brightnesscontrolplugin/brightnesscontrolplugin.qmltypes %%QT_QMLDIR%%/org/kde/plasma/private/brightnesscontrolplugin/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/plasma/private/brightnesscontrolplugin/libbrightnesscontrolplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/brightnesscontrolplugin/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/containmentlayoutmanager/BasicAppletContainer.qml %%QT_QMLDIR%%/org/kde/plasma/private/containmentlayoutmanager/ConfigOverlayWithHandles.qml %%QT_QMLDIR%%/org/kde/plasma/private/containmentlayoutmanager/PlaceHolder.qml %%QT_QMLDIR%%/org/kde/plasma/private/containmentlayoutmanager/libcontainmentlayoutmanagerplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/containmentlayoutmanager/private/BasicResizeHandle.qml %%QT_QMLDIR%%/org/kde/plasma/private/containmentlayoutmanager/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/digitalclock/libdigitalclockplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/digitalclock/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/kicker/libkickerplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/kicker/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/mediacontroller/libmediacontrollerplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/mediacontroller/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/mpris/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/plasma/private/mpris/kmpris.qmltypes %%QT_QMLDIR%%/org/kde/plasma/private/mpris/libkmprisplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/mpris/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/sessions/libsessionsprivateplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/sessions/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/shell/libplasmashellprivateplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/shell/qmldir %%QT_QMLDIR%%/org/kde/plasma/wallpapers/image/libplasma_wallpaper_imageplugin.so %%QT_QMLDIR%%/org/kde/plasma/wallpapers/image/qmldir %%QT_QMLDIR%%/org/kde/plasma/workspace/calendar/DayDelegate.qml %%QT_QMLDIR%%/org/kde/plasma/workspace/calendar/DaysCalendar.qml %%QT_QMLDIR%%/org/kde/plasma/workspace/calendar/InfiniteList.qml %%QT_QMLDIR%%/org/kde/plasma/workspace/calendar/MonthMenu.qml %%QT_QMLDIR%%/org/kde/plasma/workspace/calendar/MonthView.qml %%QT_QMLDIR%%/org/kde/plasma/workspace/calendar/MonthViewHeader.qml %%QT_QMLDIR%%/org/kde/plasma/workspace/calendar/libcalendarplugin.so %%QT_QMLDIR%%/org/kde/plasma/workspace/calendar/qmldir %%QT_QMLDIR%%/org/kde/plasma/workspace/components/BadgeOverlay.qml %%QT_QMLDIR%%/org/kde/plasma/workspace/components/BatteryIcon.qml %%QT_QMLDIR%%/org/kde/plasma/workspace/components/KeyboardLayoutSwitcher.qml %%QT_QMLDIR%%/org/kde/plasma/workspace/components/qmldir %%QT_QMLDIR%%/org/kde/plasma/workspace/dialogs/SystemDialog.qml %%QT_QMLDIR%%/org/kde/plasma/workspace/dialogs/examples/test.qml %%QT_QMLDIR%%/org/kde/plasma/workspace/dialogs/qmldir %%QT_QMLDIR%%/org/kde/plasma/workspace/keyboardlayout/libkeyboardlayoutplugin.so %%QT_QMLDIR%%/org/kde/plasma/workspace/keyboardlayout/qmldir %%QT_QMLDIR%%/org/kde/plasma/workspace/trianglemousefilter/libtrianglemousefilterplugin.so %%QT_QMLDIR%%/org/kde/plasma/workspace/trianglemousefilter/qmldir %%QT_QMLDIR%%/org/kde/taskmanager/libtaskmanagerplugin.so %%QT_QMLDIR%%/org/kde/taskmanager/qmldir lib/systemd/user/plasma-baloorunner.service lib/systemd/user/plasma-gmenudbusmenuproxy.service lib/systemd/user/plasma-kcminit-phase1.service lib/systemd/user/plasma-kcminit.service lib/systemd/user/plasma-krunner.service lib/systemd/user/plasma-ksmserver.service lib/systemd/user/plasma-ksplash.service lib/systemd/user/plasma-plasmashell.service lib/systemd/user/plasma-restoresession.service lib/systemd/user/plasma-xembedsniproxy.service share/applications/kcm_autostart.desktop share/applications/kcm_colors.desktop share/applications/kcm_cursortheme.desktop share/applications/kcm_desktoptheme.desktop share/applications/kcm_feedback.desktop share/applications/kcm_fontinst.desktop share/applications/kcm_fonts.desktop share/applications/kcm_icons.desktop share/applications/kcm_lookandfeel.desktop share/applications/kcm_nightcolor.desktop share/applications/kcm_notifications.desktop share/applications/kcm_regionandlang.desktop share/applications/kcm_soundtheme.desktop share/applications/kcm_style.desktop share/applications/kcm_users.desktop share/applications/kcm_wallpaper.desktop share/applications/org.kde.kcolorschemeeditor.desktop share/applications/org.kde.kfontview.desktop share/applications/org.kde.plasmashell.desktop share/applications/org.kde.plasmawindowed.desktop share/config.kcfg/colorssettings.kcfg share/config.kcfg/cursorthemesettings.kcfg share/config.kcfg/feedbacksettings.kcfg share/config.kcfg/fontssettings.kcfg share/config.kcfg/freespacenotifier.kcfg share/config.kcfg/iconssettingsbase.kcfg share/config.kcfg/launchfeedbacksettings.kcfg share/config.kcfg/lookandfeelsettings.kcfg share/config.kcfg/stylesettings.kcfg share/dbus-1/interfaces/com.canonical.AppMenu.Registrar.xml share/dbus-1/interfaces/org.kde.KSMServerInterface.xml share/dbus-1/interfaces/org.kde.KSplash.xml share/dbus-1/interfaces/org.kde.PlasmaShell.xml share/dbus-1/interfaces/org.kde.kappmenu.xml share/dbus-1/interfaces/org.kde.krunner.App.xml share/dbus-1/services/org.kde.KSplash.service share/dbus-1/services/org.kde.LogoutPrompt.service share/dbus-1/services/org.kde.Shutdown.service share/dbus-1/services/org.kde.fontinst.service share/dbus-1/services/org.kde.krunner.service share/dbus-1/services/org.kde.plasma.Notifications.service share/dbus-1/services/org.kde.runners.baloo.service share/dbus-1/system-services/org.kde.fontinst.service share/dbus-1/system.d/org.kde.fontinst.conf share/desktop-directories/kf5-development-translation.directory share/desktop-directories/kf5-development-webdevelopment.directory share/desktop-directories/kf5-development.directory share/desktop-directories/kf5-editors.directory share/desktop-directories/kf5-edu-languages.directory share/desktop-directories/kf5-edu-mathematics.directory share/desktop-directories/kf5-edu-miscellaneous.directory share/desktop-directories/kf5-edu-science.directory share/desktop-directories/kf5-edu-tools.directory share/desktop-directories/kf5-education.directory share/desktop-directories/kf5-games-arcade.directory share/desktop-directories/kf5-games-board.directory share/desktop-directories/kf5-games-card.directory share/desktop-directories/kf5-games-kids.directory share/desktop-directories/kf5-games-logic.directory share/desktop-directories/kf5-games-roguelikes.directory share/desktop-directories/kf5-games-strategy.directory share/desktop-directories/kf5-games.directory share/desktop-directories/kf5-graphics.directory share/desktop-directories/kf5-internet-terminal.directory share/desktop-directories/kf5-internet.directory share/desktop-directories/kf5-main.directory share/desktop-directories/kf5-more.directory share/desktop-directories/kf5-multimedia.directory share/desktop-directories/kf5-network.directory share/desktop-directories/kf5-office.directory share/desktop-directories/kf5-science.directory share/desktop-directories/kf5-settingsmenu.directory share/desktop-directories/kf5-system-terminal.directory share/desktop-directories/kf5-system.directory share/desktop-directories/kf5-toys.directory share/desktop-directories/kf5-unknown.directory share/desktop-directories/kf5-utilities-accessibility.directory share/desktop-directories/kf5-utilities-desktop.directory share/desktop-directories/kf5-utilities-file.directory share/desktop-directories/kf5-utilities-peripherals.directory share/desktop-directories/kf5-utilities-pim.directory share/desktop-directories/kf5-utilities-xutils.directory share/desktop-directories/kf5-utilities.directory share/doc/HTML/ca/kcontrol/autostart/index.cache.bz2 share/doc/HTML/ca/kcontrol/autostart/index.docbook share/doc/HTML/ca/kcontrol/colors/index.cache.bz2 share/doc/HTML/ca/kcontrol/colors/index.docbook share/doc/HTML/ca/kcontrol/cursortheme/index.cache.bz2 share/doc/HTML/ca/kcontrol/cursortheme/index.docbook share/doc/HTML/ca/kcontrol/desktopthemedetails/get-new-theme.png share/doc/HTML/ca/kcontrol/desktopthemedetails/index.cache.bz2 share/doc/HTML/ca/kcontrol/desktopthemedetails/index.docbook share/doc/HTML/ca/kcontrol/desktopthemedetails/main.png share/doc/HTML/ca/kcontrol/fontinst/index.cache.bz2 share/doc/HTML/ca/kcontrol/fontinst/index.docbook share/doc/HTML/ca/kcontrol/fonts/adjust-all.png share/doc/HTML/ca/kcontrol/fonts/index.cache.bz2 share/doc/HTML/ca/kcontrol/fonts/index.docbook share/doc/HTML/ca/kcontrol/fonts/main.png share/doc/HTML/ca/kcontrol/formats/index.cache.bz2 share/doc/HTML/ca/kcontrol/formats/index.docbook share/doc/HTML/ca/kcontrol/icons/get-new-theme.png share/doc/HTML/ca/kcontrol/icons/index.cache.bz2 share/doc/HTML/ca/kcontrol/icons/index.docbook share/doc/HTML/ca/kcontrol/icons/main.png share/doc/HTML/ca/kcontrol/icons/use-of-icons.png share/doc/HTML/ca/kcontrol/kcmstyle/index.cache.bz2 share/doc/HTML/ca/kcontrol/kcmstyle/index.docbook share/doc/HTML/ca/kcontrol/lookandfeel/index.cache.bz2 share/doc/HTML/ca/kcontrol/lookandfeel/index.docbook share/doc/HTML/ca/kcontrol/notifications/index.cache.bz2 share/doc/HTML/ca/kcontrol/notifications/index.docbook share/doc/HTML/ca/kcontrol/region_language/index.cache.bz2 share/doc/HTML/ca/kcontrol/region_language/index.docbook share/doc/HTML/ca/kcontrol/screenlocker/index.cache.bz2 share/doc/HTML/ca/kcontrol/screenlocker/index.docbook share/doc/HTML/ca/klipper/index.cache.bz2 share/doc/HTML/ca/klipper/index.docbook share/doc/HTML/ca/klipper/klipper-widget.png share/doc/HTML/ca/klipper/screenshot.png share/doc/HTML/de/kcontrol/autostart/index.cache.bz2 share/doc/HTML/de/kcontrol/autostart/index.docbook share/doc/HTML/de/kcontrol/colors/index.cache.bz2 share/doc/HTML/de/kcontrol/colors/index.docbook share/doc/HTML/de/kcontrol/cursortheme/index.cache.bz2 share/doc/HTML/de/kcontrol/cursortheme/index.docbook share/doc/HTML/de/kcontrol/desktopthemedetails/index.cache.bz2 share/doc/HTML/de/kcontrol/desktopthemedetails/index.docbook share/doc/HTML/de/kcontrol/fontinst/index.cache.bz2 share/doc/HTML/de/kcontrol/fontinst/index.docbook share/doc/HTML/de/kcontrol/fonts/index.cache.bz2 share/doc/HTML/de/kcontrol/fonts/index.docbook share/doc/HTML/de/kcontrol/formats/index.cache.bz2 share/doc/HTML/de/kcontrol/formats/index.docbook share/doc/HTML/de/kcontrol/icons/index.cache.bz2 share/doc/HTML/de/kcontrol/icons/index.docbook share/doc/HTML/de/kcontrol/kcmstyle/index.cache.bz2 share/doc/HTML/de/kcontrol/kcmstyle/index.docbook share/doc/HTML/de/kcontrol/notifications/index.cache.bz2 share/doc/HTML/de/kcontrol/notifications/index.docbook share/doc/HTML/de/kcontrol/region_language/index.cache.bz2 share/doc/HTML/de/kcontrol/region_language/index.docbook share/doc/HTML/de/kcontrol/screenlocker/index.cache.bz2 share/doc/HTML/de/kcontrol/screenlocker/index.docbook share/doc/HTML/de/klipper/index.cache.bz2 share/doc/HTML/de/klipper/index.docbook share/doc/HTML/en/PolicyKit-kde/authdialog_1.png share/doc/HTML/en/PolicyKit-kde/authdialog_2.png share/doc/HTML/en/PolicyKit-kde/authdialog_3.png share/doc/HTML/en/PolicyKit-kde/authdialog_4.png share/doc/HTML/en/PolicyKit-kde/authdialog_5.png share/doc/HTML/en/PolicyKit-kde/authdialog_6.png share/doc/HTML/en/PolicyKit-kde/authorization.docbook share/doc/HTML/en/PolicyKit-kde/authorization_1.png share/doc/HTML/en/PolicyKit-kde/authorization_2.png share/doc/HTML/en/PolicyKit-kde/authorizationagent.docbook share/doc/HTML/en/PolicyKit-kde/howitworks.docbook share/doc/HTML/en/PolicyKit-kde/index.cache.bz2 share/doc/HTML/en/PolicyKit-kde/index.docbook share/doc/HTML/en/PolicyKit-kde/introduction.docbook share/doc/HTML/en/kcontrol/autostart/index.cache.bz2 share/doc/HTML/en/kcontrol/autostart/index.docbook share/doc/HTML/en/kcontrol/colors/index.cache.bz2 share/doc/HTML/en/kcontrol/colors/index.docbook share/doc/HTML/en/kcontrol/cursortheme/cursor-size.png share/doc/HTML/en/kcontrol/cursortheme/get-new-stuff.png share/doc/HTML/en/kcontrol/cursortheme/index.cache.bz2 share/doc/HTML/en/kcontrol/cursortheme/index.docbook share/doc/HTML/en/kcontrol/cursortheme/launch-feedback.png share/doc/HTML/en/kcontrol/cursortheme/main.png share/doc/HTML/en/kcontrol/desktopthemedetails/edit-delete.png share/doc/HTML/en/kcontrol/desktopthemedetails/edit-undo.png share/doc/HTML/en/kcontrol/desktopthemedetails/get-new-theme.png share/doc/HTML/en/kcontrol/desktopthemedetails/index.cache.bz2 share/doc/HTML/en/kcontrol/desktopthemedetails/index.docbook share/doc/HTML/en/kcontrol/desktopthemedetails/main.png share/doc/HTML/en/kcontrol/fontinst/edit-delete.png share/doc/HTML/en/kcontrol/fontinst/index.cache.bz2 share/doc/HTML/en/kcontrol/fontinst/index.docbook share/doc/HTML/en/kcontrol/fonts/adjust-all.png share/doc/HTML/en/kcontrol/fonts/index.cache.bz2 share/doc/HTML/en/kcontrol/fonts/index.docbook share/doc/HTML/en/kcontrol/fonts/main.png share/doc/HTML/en/kcontrol/icons/edit-delete.png share/doc/HTML/en/kcontrol/icons/edit-undo.png share/doc/HTML/en/kcontrol/icons/get-new-theme.png share/doc/HTML/en/kcontrol/icons/index.cache.bz2 share/doc/HTML/en/kcontrol/icons/index.docbook share/doc/HTML/en/kcontrol/icons/main.png share/doc/HTML/en/kcontrol/icons/use-of-icons.png share/doc/HTML/en/kcontrol/kcmstyle/index.cache.bz2 share/doc/HTML/en/kcontrol/kcmstyle/index.docbook share/doc/HTML/en/kcontrol/lookandfeel/component-chooser_1.png share/doc/HTML/en/kcontrol/lookandfeel/component-chooser_2.png share/doc/HTML/en/kcontrol/lookandfeel/get-new-stuff.png share/doc/HTML/en/kcontrol/lookandfeel/index.cache.bz2 share/doc/HTML/en/kcontrol/lookandfeel/index.docbook share/doc/HTML/en/kcontrol/lookandfeel/main.png share/doc/HTML/en/kcontrol/notifications/index.cache.bz2 share/doc/HTML/en/kcontrol/notifications/index.docbook share/doc/HTML/en/kcontrol/screenlocker/index.cache.bz2 share/doc/HTML/en/kcontrol/screenlocker/index.docbook share/doc/HTML/en/klipper/index.cache.bz2 share/doc/HTML/en/klipper/index.docbook share/doc/HTML/en/klipper/klipper-widget.png share/doc/HTML/en/klipper/screenshot.png share/doc/HTML/es/kcontrol/autostart/index.cache.bz2 share/doc/HTML/es/kcontrol/autostart/index.docbook share/doc/HTML/es/kcontrol/colors/index.cache.bz2 share/doc/HTML/es/kcontrol/colors/index.docbook share/doc/HTML/es/kcontrol/cursortheme/index.cache.bz2 share/doc/HTML/es/kcontrol/cursortheme/index.docbook share/doc/HTML/es/kcontrol/desktopthemedetails/index.cache.bz2 share/doc/HTML/es/kcontrol/desktopthemedetails/index.docbook share/doc/HTML/es/kcontrol/fontinst/index.cache.bz2 share/doc/HTML/es/kcontrol/fontinst/index.docbook share/doc/HTML/es/kcontrol/fonts/index.cache.bz2 share/doc/HTML/es/kcontrol/fonts/index.docbook share/doc/HTML/es/kcontrol/icons/index.cache.bz2 share/doc/HTML/es/kcontrol/icons/index.docbook share/doc/HTML/es/kcontrol/kcmstyle/index.cache.bz2 share/doc/HTML/es/kcontrol/kcmstyle/index.docbook share/doc/HTML/es/kcontrol/lookandfeel/index.cache.bz2 share/doc/HTML/es/kcontrol/lookandfeel/index.docbook share/doc/HTML/es/kcontrol/notifications/index.cache.bz2 share/doc/HTML/es/kcontrol/notifications/index.docbook share/doc/HTML/es/kcontrol/region_language/index.cache.bz2 share/doc/HTML/es/kcontrol/region_language/index.docbook share/doc/HTML/es/kcontrol/screenlocker/index.cache.bz2 share/doc/HTML/es/kcontrol/screenlocker/index.docbook share/doc/HTML/es/klipper/index.cache.bz2 share/doc/HTML/es/klipper/index.docbook share/doc/HTML/fr/kcontrol/fontinst/index.cache.bz2 share/doc/HTML/fr/kcontrol/fontinst/index.docbook share/doc/HTML/id/kcontrol/autostart/index.cache.bz2 share/doc/HTML/id/kcontrol/autostart/index.docbook share/doc/HTML/id/kcontrol/colors/index.cache.bz2 share/doc/HTML/id/kcontrol/colors/index.docbook share/doc/HTML/id/kcontrol/cursortheme/index.cache.bz2 share/doc/HTML/id/kcontrol/cursortheme/index.docbook share/doc/HTML/id/kcontrol/desktopthemedetails/index.cache.bz2 share/doc/HTML/id/kcontrol/desktopthemedetails/index.docbook share/doc/HTML/id/kcontrol/fontinst/index.cache.bz2 share/doc/HTML/id/kcontrol/fontinst/index.docbook share/doc/HTML/id/kcontrol/fonts/index.cache.bz2 share/doc/HTML/id/kcontrol/fonts/index.docbook share/doc/HTML/id/kcontrol/formats/index.cache.bz2 share/doc/HTML/id/kcontrol/formats/index.docbook share/doc/HTML/id/kcontrol/icons/index.cache.bz2 share/doc/HTML/id/kcontrol/icons/index.docbook share/doc/HTML/id/kcontrol/kcmstyle/index.cache.bz2 share/doc/HTML/id/kcontrol/kcmstyle/index.docbook share/doc/HTML/id/kcontrol/region_language/index.cache.bz2 share/doc/HTML/id/kcontrol/region_language/index.docbook share/doc/HTML/id/kcontrol/screenlocker/index.cache.bz2 share/doc/HTML/id/kcontrol/screenlocker/index.docbook share/doc/HTML/id/klipper/index.cache.bz2 share/doc/HTML/id/klipper/index.docbook share/doc/HTML/it/kcontrol/autostart/index.cache.bz2 share/doc/HTML/it/kcontrol/autostart/index.docbook share/doc/HTML/it/kcontrol/colors/index.cache.bz2 share/doc/HTML/it/kcontrol/colors/index.docbook share/doc/HTML/it/kcontrol/cursortheme/index.cache.bz2 share/doc/HTML/it/kcontrol/cursortheme/index.docbook share/doc/HTML/it/kcontrol/desktopthemedetails/index.cache.bz2 share/doc/HTML/it/kcontrol/desktopthemedetails/index.docbook share/doc/HTML/it/kcontrol/fontinst/index.cache.bz2 share/doc/HTML/it/kcontrol/fontinst/index.docbook share/doc/HTML/it/kcontrol/fonts/index.cache.bz2 share/doc/HTML/it/kcontrol/fonts/index.docbook share/doc/HTML/it/kcontrol/formats/index.cache.bz2 share/doc/HTML/it/kcontrol/formats/index.docbook share/doc/HTML/it/kcontrol/icons/index.cache.bz2 share/doc/HTML/it/kcontrol/icons/index.docbook share/doc/HTML/it/kcontrol/kcmstyle/index.cache.bz2 share/doc/HTML/it/kcontrol/kcmstyle/index.docbook share/doc/HTML/it/kcontrol/lookandfeel/index.cache.bz2 share/doc/HTML/it/kcontrol/lookandfeel/index.docbook share/doc/HTML/it/kcontrol/notifications/index.cache.bz2 share/doc/HTML/it/kcontrol/notifications/index.docbook share/doc/HTML/it/kcontrol/region_language/index.cache.bz2 share/doc/HTML/it/kcontrol/region_language/index.docbook share/doc/HTML/it/kcontrol/screenlocker/index.cache.bz2 share/doc/HTML/it/kcontrol/screenlocker/index.docbook share/doc/HTML/it/klipper/index.cache.bz2 share/doc/HTML/it/klipper/index.docbook share/doc/HTML/it/klipper/klipper-widget.png share/doc/HTML/it/klipper/screenshot.png share/doc/HTML/ko/kcontrol/fonts/index.cache.bz2 share/doc/HTML/ko/kcontrol/fonts/index.docbook share/doc/HTML/ko/kcontrol/screenlocker/index.cache.bz2 share/doc/HTML/ko/kcontrol/screenlocker/index.docbook share/doc/HTML/nl/kcontrol/autostart/index.cache.bz2 share/doc/HTML/nl/kcontrol/autostart/index.docbook share/doc/HTML/nl/kcontrol/colors/index.cache.bz2 share/doc/HTML/nl/kcontrol/colors/index.docbook share/doc/HTML/nl/kcontrol/cursortheme/index.cache.bz2 share/doc/HTML/nl/kcontrol/cursortheme/index.docbook share/doc/HTML/nl/kcontrol/desktopthemedetails/index.cache.bz2 share/doc/HTML/nl/kcontrol/desktopthemedetails/index.docbook share/doc/HTML/nl/kcontrol/fontinst/index.cache.bz2 share/doc/HTML/nl/kcontrol/fontinst/index.docbook share/doc/HTML/nl/kcontrol/fonts/index.cache.bz2 share/doc/HTML/nl/kcontrol/fonts/index.docbook share/doc/HTML/nl/kcontrol/formats/index.cache.bz2 share/doc/HTML/nl/kcontrol/formats/index.docbook share/doc/HTML/nl/kcontrol/icons/index.cache.bz2 share/doc/HTML/nl/kcontrol/icons/index.docbook share/doc/HTML/nl/kcontrol/kcmstyle/index.cache.bz2 share/doc/HTML/nl/kcontrol/kcmstyle/index.docbook share/doc/HTML/nl/kcontrol/lookandfeel/index.cache.bz2 share/doc/HTML/nl/kcontrol/lookandfeel/index.docbook share/doc/HTML/nl/kcontrol/notifications/index.cache.bz2 share/doc/HTML/nl/kcontrol/notifications/index.docbook share/doc/HTML/nl/kcontrol/region_language/index.cache.bz2 share/doc/HTML/nl/kcontrol/region_language/index.docbook share/doc/HTML/nl/kcontrol/screenlocker/index.cache.bz2 share/doc/HTML/nl/kcontrol/screenlocker/index.docbook share/doc/HTML/nl/klipper/index.cache.bz2 share/doc/HTML/nl/klipper/index.docbook share/doc/HTML/pt/kcontrol/autostart/index.cache.bz2 share/doc/HTML/pt/kcontrol/autostart/index.docbook share/doc/HTML/pt/kcontrol/colors/index.cache.bz2 share/doc/HTML/pt/kcontrol/colors/index.docbook share/doc/HTML/pt/kcontrol/cursortheme/index.cache.bz2 share/doc/HTML/pt/kcontrol/cursortheme/index.docbook share/doc/HTML/pt/kcontrol/desktopthemedetails/index.cache.bz2 share/doc/HTML/pt/kcontrol/desktopthemedetails/index.docbook share/doc/HTML/pt/kcontrol/fontinst/index.cache.bz2 share/doc/HTML/pt/kcontrol/fontinst/index.docbook share/doc/HTML/pt/kcontrol/fonts/index.cache.bz2 share/doc/HTML/pt/kcontrol/fonts/index.docbook share/doc/HTML/pt/kcontrol/formats/index.cache.bz2 share/doc/HTML/pt/kcontrol/formats/index.docbook share/doc/HTML/pt/kcontrol/kcmstyle/index.cache.bz2 share/doc/HTML/pt/kcontrol/kcmstyle/index.docbook share/doc/HTML/pt/kcontrol/region_language/index.cache.bz2 share/doc/HTML/pt/kcontrol/region_language/index.docbook share/doc/HTML/pt/kcontrol/screenlocker/index.cache.bz2 share/doc/HTML/pt/kcontrol/screenlocker/index.docbook share/doc/HTML/pt/klipper/index.cache.bz2 share/doc/HTML/pt/klipper/index.docbook share/doc/HTML/pt_BR/kcontrol/autostart/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/autostart/index.docbook share/doc/HTML/pt_BR/kcontrol/colors/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/colors/index.docbook share/doc/HTML/pt_BR/kcontrol/cursortheme/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/cursortheme/index.docbook share/doc/HTML/pt_BR/kcontrol/desktopthemedetails/customizing.png share/doc/HTML/pt_BR/kcontrol/desktopthemedetails/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/desktopthemedetails/index.docbook share/doc/HTML/pt_BR/kcontrol/fontinst/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/fontinst/index.docbook share/doc/HTML/pt_BR/kcontrol/fonts/adjust-all.png share/doc/HTML/pt_BR/kcontrol/fonts/anti-aliasing.png share/doc/HTML/pt_BR/kcontrol/fonts/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/fonts/index.docbook share/doc/HTML/pt_BR/kcontrol/fonts/main.png share/doc/HTML/pt_BR/kcontrol/formats/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/formats/index.docbook share/doc/HTML/pt_BR/kcontrol/icons/effects.png share/doc/HTML/pt_BR/kcontrol/icons/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/icons/index.docbook share/doc/HTML/pt_BR/kcontrol/icons/install-theme.png share/doc/HTML/pt_BR/kcontrol/icons/main.png share/doc/HTML/pt_BR/kcontrol/icons/use-of-icons.png share/doc/HTML/pt_BR/kcontrol/kcmstyle/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/kcmstyle/index.docbook share/doc/HTML/pt_BR/kcontrol/region_language/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/region_language/index.docbook share/doc/HTML/pt_BR/kcontrol/screenlocker/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/screenlocker/index.docbook share/doc/HTML/pt_BR/klipper/index.cache.bz2 share/doc/HTML/pt_BR/klipper/index.docbook share/doc/HTML/pt_BR/klipper/klipper-application.png share/doc/HTML/pt_BR/klipper/klipper-widget.png share/doc/HTML/pt_BR/klipper/screenshot.png share/doc/HTML/ru/kcontrol/autostart/index.cache.bz2 share/doc/HTML/ru/kcontrol/autostart/index.docbook share/doc/HTML/ru/kcontrol/colors/index.cache.bz2 share/doc/HTML/ru/kcontrol/colors/index.docbook share/doc/HTML/ru/kcontrol/cursortheme/index.cache.bz2 share/doc/HTML/ru/kcontrol/cursortheme/index.docbook share/doc/HTML/ru/kcontrol/desktopthemedetails/index.cache.bz2 share/doc/HTML/ru/kcontrol/desktopthemedetails/index.docbook share/doc/HTML/ru/kcontrol/fontinst/index.cache.bz2 share/doc/HTML/ru/kcontrol/fontinst/index.docbook share/doc/HTML/ru/kcontrol/fonts/adjust-all.png share/doc/HTML/ru/kcontrol/fonts/anti-aliasing.png share/doc/HTML/ru/kcontrol/fonts/index.cache.bz2 share/doc/HTML/ru/kcontrol/fonts/index.docbook share/doc/HTML/ru/kcontrol/fonts/main.png share/doc/HTML/ru/kcontrol/formats/index.cache.bz2 share/doc/HTML/ru/kcontrol/formats/index.docbook share/doc/HTML/ru/kcontrol/icons/delete-theme.png share/doc/HTML/ru/kcontrol/icons/effects.png share/doc/HTML/ru/kcontrol/icons/get-new-theme.png share/doc/HTML/ru/kcontrol/icons/index.cache.bz2 share/doc/HTML/ru/kcontrol/icons/index.docbook share/doc/HTML/ru/kcontrol/icons/install-theme.png share/doc/HTML/ru/kcontrol/icons/main.png share/doc/HTML/ru/kcontrol/icons/size.png share/doc/HTML/ru/kcontrol/icons/use-of-icons.png share/doc/HTML/ru/kcontrol/kcmstyle/index.cache.bz2 share/doc/HTML/ru/kcontrol/kcmstyle/index.docbook share/doc/HTML/ru/kcontrol/notifications/index.cache.bz2 share/doc/HTML/ru/kcontrol/notifications/index.docbook share/doc/HTML/ru/kcontrol/region_language/index.cache.bz2 share/doc/HTML/ru/kcontrol/region_language/index.docbook share/doc/HTML/ru/kcontrol/screenlocker/index.cache.bz2 share/doc/HTML/ru/kcontrol/screenlocker/index.docbook share/doc/HTML/ru/klipper/index.cache.bz2 share/doc/HTML/ru/klipper/index.docbook share/doc/HTML/sr/kcontrol/autostart/index.cache.bz2 share/doc/HTML/sr/kcontrol/autostart/index.docbook share/doc/HTML/sr/kcontrol/icons/index.cache.bz2 share/doc/HTML/sr/kcontrol/icons/index.docbook share/doc/HTML/sr@latin/kcontrol/autostart/index.cache.bz2 share/doc/HTML/sr@latin/kcontrol/autostart/index.docbook share/doc/HTML/sr@latin/kcontrol/icons/index.cache.bz2 share/doc/HTML/sr@latin/kcontrol/icons/index.docbook share/doc/HTML/sv/kcontrol/autostart/index.cache.bz2 share/doc/HTML/sv/kcontrol/autostart/index.docbook share/doc/HTML/sv/kcontrol/colors/index.cache.bz2 share/doc/HTML/sv/kcontrol/colors/index.docbook share/doc/HTML/sv/kcontrol/cursortheme/index.cache.bz2 share/doc/HTML/sv/kcontrol/cursortheme/index.docbook share/doc/HTML/sv/kcontrol/desktopthemedetails/index.cache.bz2 share/doc/HTML/sv/kcontrol/desktopthemedetails/index.docbook share/doc/HTML/sv/kcontrol/fontinst/index.cache.bz2 share/doc/HTML/sv/kcontrol/fontinst/index.docbook share/doc/HTML/sv/kcontrol/fonts/index.cache.bz2 share/doc/HTML/sv/kcontrol/fonts/index.docbook share/doc/HTML/sv/kcontrol/formats/index.cache.bz2 share/doc/HTML/sv/kcontrol/formats/index.docbook share/doc/HTML/sv/kcontrol/icons/index.cache.bz2 share/doc/HTML/sv/kcontrol/icons/index.docbook share/doc/HTML/sv/kcontrol/kcmstyle/index.cache.bz2 share/doc/HTML/sv/kcontrol/kcmstyle/index.docbook share/doc/HTML/sv/kcontrol/notifications/index.cache.bz2 share/doc/HTML/sv/kcontrol/notifications/index.docbook share/doc/HTML/sv/kcontrol/region_language/index.cache.bz2 share/doc/HTML/sv/kcontrol/region_language/index.docbook share/doc/HTML/sv/kcontrol/screenlocker/index.cache.bz2 share/doc/HTML/sv/kcontrol/screenlocker/index.docbook share/doc/HTML/sv/klipper/index.cache.bz2 share/doc/HTML/sv/klipper/index.docbook share/doc/HTML/tr/kcontrol/autostart/index.cache.bz2 share/doc/HTML/tr/kcontrol/autostart/index.docbook share/doc/HTML/tr/kcontrol/colors/index.cache.bz2 share/doc/HTML/tr/kcontrol/colors/index.docbook share/doc/HTML/tr/kcontrol/cursortheme/index.cache.bz2 share/doc/HTML/tr/kcontrol/cursortheme/index.docbook share/doc/HTML/tr/kcontrol/desktopthemedetails/index.cache.bz2 share/doc/HTML/tr/kcontrol/desktopthemedetails/index.docbook share/doc/HTML/tr/kcontrol/fontinst/index.cache.bz2 share/doc/HTML/tr/kcontrol/fontinst/index.docbook share/doc/HTML/tr/kcontrol/fonts/index.cache.bz2 share/doc/HTML/tr/kcontrol/fonts/index.docbook share/doc/HTML/tr/kcontrol/icons/index.cache.bz2 share/doc/HTML/tr/kcontrol/icons/index.docbook share/doc/HTML/tr/kcontrol/kcmstyle/index.cache.bz2 share/doc/HTML/tr/kcontrol/kcmstyle/index.docbook share/doc/HTML/tr/kcontrol/lookandfeel/index.cache.bz2 share/doc/HTML/tr/kcontrol/lookandfeel/index.docbook share/doc/HTML/tr/kcontrol/notifications/index.cache.bz2 share/doc/HTML/tr/kcontrol/notifications/index.docbook share/doc/HTML/tr/kcontrol/region_language/index.cache.bz2 share/doc/HTML/tr/kcontrol/region_language/index.docbook share/doc/HTML/tr/kcontrol/screenlocker/index.cache.bz2 share/doc/HTML/tr/kcontrol/screenlocker/index.docbook share/doc/HTML/tr/klipper/index.cache.bz2 share/doc/HTML/tr/klipper/index.docbook share/doc/HTML/uk/kcontrol/autostart/index.cache.bz2 share/doc/HTML/uk/kcontrol/autostart/index.docbook share/doc/HTML/uk/kcontrol/colors/index.cache.bz2 share/doc/HTML/uk/kcontrol/colors/index.docbook share/doc/HTML/uk/kcontrol/cursortheme/index.cache.bz2 share/doc/HTML/uk/kcontrol/cursortheme/index.docbook share/doc/HTML/uk/kcontrol/desktopthemedetails/index.cache.bz2 share/doc/HTML/uk/kcontrol/desktopthemedetails/index.docbook share/doc/HTML/uk/kcontrol/fontinst/index.cache.bz2 share/doc/HTML/uk/kcontrol/fontinst/index.docbook share/doc/HTML/uk/kcontrol/fonts/adjust-all.png share/doc/HTML/uk/kcontrol/fonts/index.cache.bz2 share/doc/HTML/uk/kcontrol/fonts/index.docbook share/doc/HTML/uk/kcontrol/formats/index.cache.bz2 share/doc/HTML/uk/kcontrol/formats/index.docbook share/doc/HTML/uk/kcontrol/icons/get-new-theme.png share/doc/HTML/uk/kcontrol/icons/index.cache.bz2 share/doc/HTML/uk/kcontrol/icons/index.docbook share/doc/HTML/uk/kcontrol/icons/main.png share/doc/HTML/uk/kcontrol/icons/use-of-icons.png share/doc/HTML/uk/kcontrol/kcmstyle/index.cache.bz2 share/doc/HTML/uk/kcontrol/kcmstyle/index.docbook share/doc/HTML/uk/kcontrol/lookandfeel/index.cache.bz2 share/doc/HTML/uk/kcontrol/lookandfeel/index.docbook share/doc/HTML/uk/kcontrol/notifications/index.cache.bz2 share/doc/HTML/uk/kcontrol/notifications/index.docbook share/doc/HTML/uk/kcontrol/region_language/index.cache.bz2 share/doc/HTML/uk/kcontrol/region_language/index.docbook share/doc/HTML/uk/kcontrol/screenlocker/index.cache.bz2 share/doc/HTML/uk/kcontrol/screenlocker/index.docbook share/doc/HTML/uk/klipper/index.cache.bz2 share/doc/HTML/uk/klipper/index.docbook share/doc/HTML/uk/klipper/klipper-widget.png share/doc/HTML/uk/klipper/screenshot.png share/icons/hicolor/128x128/mimetypes/fonts-package.png share/icons/hicolor/16x16/apps/kfontview.png share/icons/hicolor/16x16/mimetypes/fonts-package.png share/icons/hicolor/22x22/apps/kfontview.png share/icons/hicolor/22x22/mimetypes/fonts-package.png share/icons/hicolor/32x32/apps/kfontview.png share/icons/hicolor/32x32/mimetypes/fonts-package.png share/icons/hicolor/48x48/apps/kfontview.png share/icons/hicolor/48x48/mimetypes/fonts-package.png share/icons/hicolor/64x64/apps/kfontview.png share/icons/hicolor/64x64/mimetypes/fonts-package.png share/icons/hicolor/scalable/apps/preferences-desktop-font-installer.svgz share/kconf_update/migrate-calendar-to-plugin-id.py share/kconf_update/migrate-calendar-to-plugin-id.upd share/kconf_update/plasma6.0-remove-dpi-settings.upd share/kconf_update/plasma6.0-remove-old-shortcuts.upd share/kconf_update/plasmashell-6.0-keep-custom-position-of-panels.upd share/kconf_update/plasmashell-6.0-keep-default-floating-setting-for-plasma-5-panels.upd share/kfontinst/icons/hicolor/16x16/actions/addfont.png share/kfontinst/icons/hicolor/16x16/actions/font-disable.png share/kfontinst/icons/hicolor/16x16/actions/font-enable.png share/kfontinst/icons/hicolor/16x16/actions/fontstatus.png share/kfontinst/icons/hicolor/22x22/actions/addfont.png share/kfontinst/icons/hicolor/22x22/actions/font-disable.png share/kfontinst/icons/hicolor/22x22/actions/font-enable.png share/kfontinst/icons/hicolor/22x22/actions/fontstatus.png share/kglobalaccel/org.kde.krunner.desktop share/kio/servicemenus/installfont.desktop share/kio_desktop/directory.desktop share/kio_desktop/directory.trash share/knotifications6/devicenotifications.notifyrc share/knotifications6/freespacenotifier.notifyrc share/knotifications6/phonon.notifyrc share/knsrcfiles/colorschemes.knsrc share/knsrcfiles/gtk_themes.knsrc share/knsrcfiles/icons.knsrc share/knsrcfiles/kfontinst.knsrc share/knsrcfiles/lookandfeel.knsrc share/knsrcfiles/plasma-themes.knsrc share/knsrcfiles/plasmoids.knsrc share/knsrcfiles/wallpaper-mobile.knsrc share/knsrcfiles/wallpaper.knsrc share/knsrcfiles/wallpaperplugin.knsrc share/knsrcfiles/xcursor.knsrc share/konqsidebartng/virtual_folders/services/fonts.desktop share/krunner/dbusplugins/plasma-runner-baloosearch.desktop share/kstyle/themes/qtcde.themerc share/kstyle/themes/qtcleanlooks.themerc share/kstyle/themes/qtgtk.themerc share/kstyle/themes/qtmotif.themerc share/kstyle/themes/qtplastique.themerc share/kstyle/themes/qtwindows.themerc share/kxmlgui5/kfontview/kfontviewpart.rc share/kxmlgui5/kfontview/kfontviewui.rc share/locale/af/LC_MESSAGES/kcm_colors.mo share/locale/af/LC_MESSAGES/kcm_cursortheme.mo share/locale/af/LC_MESSAGES/kcm_fonts.mo share/locale/af/LC_MESSAGES/kcm_icons.mo share/locale/af/LC_MESSAGES/kcm_style.mo share/locale/af/LC_MESSAGES/kfontinst.mo share/locale/af/LC_MESSAGES/kio_applications.mo share/locale/af/LC_MESSAGES/klipper.mo share/locale/af/LC_MESSAGES/krdb.mo share/locale/af/LC_MESSAGES/ksmserver.mo share/locale/ar/LC_MESSAGES/freespacenotifier.mo share/locale/ar/LC_MESSAGES/kcm_autostart.mo share/locale/ar/LC_MESSAGES/kcm_colors.mo share/locale/ar/LC_MESSAGES/kcm_cursortheme.mo share/locale/ar/LC_MESSAGES/kcm_desktoptheme.mo share/locale/ar/LC_MESSAGES/kcm_feedback.mo share/locale/ar/LC_MESSAGES/kcm_fonts.mo share/locale/ar/LC_MESSAGES/kcm_icons.mo share/locale/ar/LC_MESSAGES/kcm_lookandfeel.mo share/locale/ar/LC_MESSAGES/kcm_nightcolor.mo share/locale/ar/LC_MESSAGES/kcm_notifications.mo share/locale/ar/LC_MESSAGES/kcm_regionandlang.mo share/locale/ar/LC_MESSAGES/kcm_style.mo share/locale/ar/LC_MESSAGES/kcm_users.mo share/locale/ar/LC_MESSAGES/kcminit.mo share/locale/ar/LC_MESSAGES/kfontinst.mo share/locale/ar/LC_MESSAGES/kio_applications.mo share/locale/ar/LC_MESSAGES/kio_desktop.mo share/locale/ar/LC_MESSAGES/klipper.mo share/locale/ar/LC_MESSAGES/krdb.mo share/locale/ar/LC_MESSAGES/krunner.mo share/locale/ar/LC_MESSAGES/ksmserver.mo share/locale/ar/LC_MESSAGES/libkicker.mo share/locale/ar/LC_MESSAGES/libkworkspace.mo share/locale/ar/LC_MESSAGES/libnotificationmanager.mo share/locale/ar/LC_MESSAGES/phonon_kde_plugin.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/ar/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/ar/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/ar/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/ar/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/ar/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/ar/LC_MESSAGES/plasma_engine_dict.mo share/locale/ar/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/ar/LC_MESSAGES/plasma_engine_keystate.mo share/locale/ar/LC_MESSAGES/plasma_engine_notifications.mo share/locale/ar/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/ar/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/ar/LC_MESSAGES/plasma_engine_time.mo share/locale/ar/LC_MESSAGES/plasma_engine_weather.mo share/locale/ar/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/ar/LC_MESSAGES/plasma_runner_appstream.mo share/locale/ar/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/ar/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/ar/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/ar/LC_MESSAGES/plasma_runner_kill.mo share/locale/ar/LC_MESSAGES/plasma_runner_locations.mo share/locale/ar/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/ar/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/ar/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/ar/LC_MESSAGES/plasma_runner_services.mo share/locale/ar/LC_MESSAGES/plasma_runner_sessions.mo share/locale/ar/LC_MESSAGES/plasma_runner_shell.mo share/locale/ar/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/ar/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/ar/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/ar/LC_MESSAGES/plasmashell.mo share/locale/ar/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/ar/LC_MESSAGES/soliduiserver.mo share/locale/ast/LC_MESSAGES/freespacenotifier.mo share/locale/ast/LC_MESSAGES/kcm_autostart.mo share/locale/ast/LC_MESSAGES/kcm_colors.mo share/locale/ast/LC_MESSAGES/kcm_cursortheme.mo share/locale/ast/LC_MESSAGES/kcm_desktoptheme.mo share/locale/ast/LC_MESSAGES/kcm_feedback.mo share/locale/ast/LC_MESSAGES/kcm_fonts.mo share/locale/ast/LC_MESSAGES/kcm_icons.mo share/locale/ast/LC_MESSAGES/kcm_lookandfeel.mo share/locale/ast/LC_MESSAGES/kcm_nightcolor.mo share/locale/ast/LC_MESSAGES/kcm_notifications.mo share/locale/ast/LC_MESSAGES/kcm_regionandlang.mo share/locale/ast/LC_MESSAGES/kcm_soundtheme.mo share/locale/ast/LC_MESSAGES/kcm_style.mo share/locale/ast/LC_MESSAGES/kcm_users.mo share/locale/ast/LC_MESSAGES/kcminit.mo share/locale/ast/LC_MESSAGES/kded_devicenotifications.mo share/locale/ast/LC_MESSAGES/kfontinst.mo share/locale/ast/LC_MESSAGES/kio_applications.mo share/locale/ast/LC_MESSAGES/kio_desktop.mo share/locale/ast/LC_MESSAGES/klipper.mo share/locale/ast/LC_MESSAGES/krdb.mo share/locale/ast/LC_MESSAGES/krunner.mo share/locale/ast/LC_MESSAGES/ksmserver.mo share/locale/ast/LC_MESSAGES/libkicker.mo share/locale/ast/LC_MESSAGES/libkmpris.mo share/locale/ast/LC_MESSAGES/libkworkspace.mo share/locale/ast/LC_MESSAGES/libnotificationmanager.mo share/locale/ast/LC_MESSAGES/phonon_kde_plugin.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/ast/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/ast/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/ast/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/ast/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/ast/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/ast/LC_MESSAGES/plasma_engine_dict.mo share/locale/ast/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/ast/LC_MESSAGES/plasma_engine_keystate.mo share/locale/ast/LC_MESSAGES/plasma_engine_notifications.mo share/locale/ast/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/ast/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/ast/LC_MESSAGES/plasma_engine_time.mo share/locale/ast/LC_MESSAGES/plasma_engine_weather.mo share/locale/ast/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/ast/LC_MESSAGES/plasma_runner_appstream.mo share/locale/ast/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/ast/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/ast/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/ast/LC_MESSAGES/plasma_runner_kill.mo share/locale/ast/LC_MESSAGES/plasma_runner_locations.mo share/locale/ast/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/ast/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/ast/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/ast/LC_MESSAGES/plasma_runner_services.mo share/locale/ast/LC_MESSAGES/plasma_runner_sessions.mo share/locale/ast/LC_MESSAGES/plasma_runner_shell.mo share/locale/ast/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/ast/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/ast/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/ast/LC_MESSAGES/plasmashell.mo share/locale/ast/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/ast/LC_MESSAGES/plasmawindowed.mo share/locale/ast/LC_MESSAGES/soliduiserver.mo share/locale/az/LC_MESSAGES/freespacenotifier.mo share/locale/az/LC_MESSAGES/kcm_autostart.mo share/locale/az/LC_MESSAGES/kcm_colors.mo share/locale/az/LC_MESSAGES/kcm_cursortheme.mo share/locale/az/LC_MESSAGES/kcm_desktoptheme.mo share/locale/az/LC_MESSAGES/kcm_feedback.mo share/locale/az/LC_MESSAGES/kcm_fonts.mo share/locale/az/LC_MESSAGES/kcm_icons.mo share/locale/az/LC_MESSAGES/kcm_lookandfeel.mo share/locale/az/LC_MESSAGES/kcm_nightcolor.mo share/locale/az/LC_MESSAGES/kcm_notifications.mo share/locale/az/LC_MESSAGES/kcm_regionandlang.mo share/locale/az/LC_MESSAGES/kcm_style.mo share/locale/az/LC_MESSAGES/kcm_users.mo share/locale/az/LC_MESSAGES/kcminit.mo share/locale/az/LC_MESSAGES/kfontinst.mo share/locale/az/LC_MESSAGES/kio_applications.mo share/locale/az/LC_MESSAGES/kio_desktop.mo share/locale/az/LC_MESSAGES/klipper.mo share/locale/az/LC_MESSAGES/krdb.mo share/locale/az/LC_MESSAGES/krunner.mo share/locale/az/LC_MESSAGES/ksmserver.mo share/locale/az/LC_MESSAGES/libkicker.mo share/locale/az/LC_MESSAGES/libkworkspace.mo share/locale/az/LC_MESSAGES/libnotificationmanager.mo share/locale/az/LC_MESSAGES/phonon_kde_plugin.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/az/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/az/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/az/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/az/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/az/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/az/LC_MESSAGES/plasma_engine_dict.mo share/locale/az/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/az/LC_MESSAGES/plasma_engine_keystate.mo share/locale/az/LC_MESSAGES/plasma_engine_notifications.mo share/locale/az/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/az/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/az/LC_MESSAGES/plasma_engine_time.mo share/locale/az/LC_MESSAGES/plasma_engine_weather.mo share/locale/az/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/az/LC_MESSAGES/plasma_runner_appstream.mo share/locale/az/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/az/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/az/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/az/LC_MESSAGES/plasma_runner_kill.mo share/locale/az/LC_MESSAGES/plasma_runner_locations.mo share/locale/az/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/az/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/az/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/az/LC_MESSAGES/plasma_runner_services.mo share/locale/az/LC_MESSAGES/plasma_runner_sessions.mo share/locale/az/LC_MESSAGES/plasma_runner_shell.mo share/locale/az/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/az/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/az/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/az/LC_MESSAGES/plasmashell.mo share/locale/az/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/az/LC_MESSAGES/soliduiserver.mo share/locale/be/LC_MESSAGES/freespacenotifier.mo share/locale/be/LC_MESSAGES/kcm_autostart.mo share/locale/be/LC_MESSAGES/kcm_colors.mo share/locale/be/LC_MESSAGES/kcm_cursortheme.mo share/locale/be/LC_MESSAGES/kcm_desktoptheme.mo share/locale/be/LC_MESSAGES/kcm_feedback.mo share/locale/be/LC_MESSAGES/kcm_fonts.mo share/locale/be/LC_MESSAGES/kcm_icons.mo share/locale/be/LC_MESSAGES/kcm_lookandfeel.mo share/locale/be/LC_MESSAGES/kcm_nightcolor.mo share/locale/be/LC_MESSAGES/kcm_notifications.mo share/locale/be/LC_MESSAGES/kcm_regionandlang.mo share/locale/be/LC_MESSAGES/kcm_style.mo share/locale/be/LC_MESSAGES/kcm_users.mo share/locale/be/LC_MESSAGES/kcminit.mo share/locale/be/LC_MESSAGES/kfontinst.mo share/locale/be/LC_MESSAGES/kio_applications.mo share/locale/be/LC_MESSAGES/kio_desktop.mo share/locale/be/LC_MESSAGES/klipper.mo share/locale/be/LC_MESSAGES/krdb.mo share/locale/be/LC_MESSAGES/krunner.mo share/locale/be/LC_MESSAGES/ksmserver.mo share/locale/be/LC_MESSAGES/libkicker.mo share/locale/be/LC_MESSAGES/libkworkspace.mo share/locale/be/LC_MESSAGES/libnotificationmanager.mo share/locale/be/LC_MESSAGES/phonon_kde_plugin.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/be/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/be/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/be/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/be/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/be/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/be/LC_MESSAGES/plasma_engine_dict.mo share/locale/be/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/be/LC_MESSAGES/plasma_engine_keystate.mo share/locale/be/LC_MESSAGES/plasma_engine_notifications.mo share/locale/be/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/be/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/be/LC_MESSAGES/plasma_engine_time.mo share/locale/be/LC_MESSAGES/plasma_engine_weather.mo share/locale/be/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/be/LC_MESSAGES/plasma_runner_appstream.mo share/locale/be/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/be/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/be/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/be/LC_MESSAGES/plasma_runner_kill.mo share/locale/be/LC_MESSAGES/plasma_runner_locations.mo share/locale/be/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/be/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/be/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/be/LC_MESSAGES/plasma_runner_services.mo share/locale/be/LC_MESSAGES/plasma_runner_sessions.mo share/locale/be/LC_MESSAGES/plasma_runner_shell.mo share/locale/be/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/be/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/be/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/be/LC_MESSAGES/plasmashell.mo share/locale/be/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/be/LC_MESSAGES/soliduiserver.mo share/locale/be@latin/LC_MESSAGES/kcm_autostart.mo share/locale/be@latin/LC_MESSAGES/kcm_colors.mo share/locale/be@latin/LC_MESSAGES/kcm_icons.mo share/locale/be@latin/LC_MESSAGES/kcminit.mo share/locale/be@latin/LC_MESSAGES/kio_applications.mo share/locale/be@latin/LC_MESSAGES/klipper.mo share/locale/be@latin/LC_MESSAGES/krdb.mo share/locale/be@latin/LC_MESSAGES/libkworkspace.mo share/locale/be@latin/LC_MESSAGES/phonon_kde_plugin.mo share/locale/be@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/be@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/be@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/be@latin/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/be@latin/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/be@latin/LC_MESSAGES/soliduiserver.mo share/locale/bg/LC_MESSAGES/freespacenotifier.mo share/locale/bg/LC_MESSAGES/kcm_autostart.mo share/locale/bg/LC_MESSAGES/kcm_colors.mo share/locale/bg/LC_MESSAGES/kcm_cursortheme.mo share/locale/bg/LC_MESSAGES/kcm_desktoptheme.mo share/locale/bg/LC_MESSAGES/kcm_feedback.mo share/locale/bg/LC_MESSAGES/kcm_fonts.mo share/locale/bg/LC_MESSAGES/kcm_icons.mo share/locale/bg/LC_MESSAGES/kcm_lookandfeel.mo share/locale/bg/LC_MESSAGES/kcm_nightcolor.mo share/locale/bg/LC_MESSAGES/kcm_notifications.mo share/locale/bg/LC_MESSAGES/kcm_regionandlang.mo share/locale/bg/LC_MESSAGES/kcm_soundtheme.mo share/locale/bg/LC_MESSAGES/kcm_style.mo share/locale/bg/LC_MESSAGES/kcm_users.mo share/locale/bg/LC_MESSAGES/kcminit.mo share/locale/bg/LC_MESSAGES/kded_devicenotifications.mo share/locale/bg/LC_MESSAGES/kfontinst.mo share/locale/bg/LC_MESSAGES/kio_applications.mo share/locale/bg/LC_MESSAGES/kio_desktop.mo share/locale/bg/LC_MESSAGES/klipper.mo share/locale/bg/LC_MESSAGES/krdb.mo share/locale/bg/LC_MESSAGES/krunner.mo share/locale/bg/LC_MESSAGES/ksmserver.mo share/locale/bg/LC_MESSAGES/libkicker.mo share/locale/bg/LC_MESSAGES/libkmpris.mo share/locale/bg/LC_MESSAGES/libkworkspace.mo share/locale/bg/LC_MESSAGES/libnotificationmanager.mo share/locale/bg/LC_MESSAGES/phonon_kde_plugin.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.brightness.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/bg/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/bg/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/bg/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/bg/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/bg/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/bg/LC_MESSAGES/plasma_engine_dict.mo share/locale/bg/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/bg/LC_MESSAGES/plasma_engine_keystate.mo share/locale/bg/LC_MESSAGES/plasma_engine_notifications.mo share/locale/bg/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/bg/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/bg/LC_MESSAGES/plasma_engine_time.mo share/locale/bg/LC_MESSAGES/plasma_engine_weather.mo +share/locale/bg/LC_MESSAGES/plasma_interactiveconsole.mo share/locale/bg/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/bg/LC_MESSAGES/plasma_runner_appstream.mo share/locale/bg/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/bg/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/bg/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/bg/LC_MESSAGES/plasma_runner_kill.mo share/locale/bg/LC_MESSAGES/plasma_runner_locations.mo share/locale/bg/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/bg/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/bg/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/bg/LC_MESSAGES/plasma_runner_services.mo share/locale/bg/LC_MESSAGES/plasma_runner_sessions.mo share/locale/bg/LC_MESSAGES/plasma_runner_shell.mo share/locale/bg/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/bg/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/bg/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/bg/LC_MESSAGES/plasmashell.mo share/locale/bg/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/bg/LC_MESSAGES/plasmawindowed.mo share/locale/bg/LC_MESSAGES/session-shortcuts-kded.mo share/locale/bg/LC_MESSAGES/soliduiserver.mo share/locale/bn/LC_MESSAGES/kcm_fonts.mo share/locale/bn/LC_MESSAGES/kcm_icons.mo share/locale/bn/LC_MESSAGES/kcm_style.mo share/locale/bn/LC_MESSAGES/kfontinst.mo share/locale/bn/LC_MESSAGES/klipper.mo share/locale/bn/LC_MESSAGES/ksmserver.mo share/locale/bn/LC_MESSAGES/plasma_engine_weather.mo share/locale/bn_IN/LC_MESSAGES/kcm_autostart.mo share/locale/bn_IN/LC_MESSAGES/kcm_colors.mo share/locale/bn_IN/LC_MESSAGES/kcm_desktoptheme.mo share/locale/bn_IN/LC_MESSAGES/kcm_icons.mo share/locale/bn_IN/LC_MESSAGES/kcm_style.mo share/locale/bn_IN/LC_MESSAGES/kcminit.mo share/locale/bn_IN/LC_MESSAGES/kfontinst.mo share/locale/bn_IN/LC_MESSAGES/kio_applications.mo share/locale/bn_IN/LC_MESSAGES/klipper.mo share/locale/bn_IN/LC_MESSAGES/krdb.mo share/locale/bn_IN/LC_MESSAGES/ksmserver.mo share/locale/bn_IN/LC_MESSAGES/libkworkspace.mo share/locale/bn_IN/LC_MESSAGES/phonon_kde_plugin.mo share/locale/bn_IN/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/bn_IN/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/bn_IN/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/bn_IN/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/bn_IN/LC_MESSAGES/plasma_engine_weather.mo share/locale/bn_IN/LC_MESSAGES/plasma_runner_locations.mo share/locale/bn_IN/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/bn_IN/LC_MESSAGES/plasma_runner_sessions.mo share/locale/bn_IN/LC_MESSAGES/plasma_runner_shell.mo share/locale/bn_IN/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/bn_IN/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/bn_IN/LC_MESSAGES/soliduiserver.mo share/locale/br/LC_MESSAGES/kcm_colors.mo share/locale/br/LC_MESSAGES/kcm_cursortheme.mo share/locale/br/LC_MESSAGES/kcm_fonts.mo share/locale/br/LC_MESSAGES/kcm_icons.mo share/locale/br/LC_MESSAGES/kcm_style.mo share/locale/br/LC_MESSAGES/kfontinst.mo share/locale/br/LC_MESSAGES/kio_applications.mo share/locale/br/LC_MESSAGES/klipper.mo share/locale/br/LC_MESSAGES/ksmserver.mo share/locale/bs/LC_MESSAGES/freespacenotifier.mo share/locale/bs/LC_MESSAGES/kcm_autostart.mo share/locale/bs/LC_MESSAGES/kcm_colors.mo share/locale/bs/LC_MESSAGES/kcm_cursortheme.mo share/locale/bs/LC_MESSAGES/kcm_desktoptheme.mo share/locale/bs/LC_MESSAGES/kcm_fonts.mo share/locale/bs/LC_MESSAGES/kcm_icons.mo share/locale/bs/LC_MESSAGES/kcm_lookandfeel.mo share/locale/bs/LC_MESSAGES/kcm_style.mo share/locale/bs/LC_MESSAGES/kcminit.mo share/locale/bs/LC_MESSAGES/kfontinst.mo share/locale/bs/LC_MESSAGES/kio_applications.mo share/locale/bs/LC_MESSAGES/klipper.mo share/locale/bs/LC_MESSAGES/krdb.mo share/locale/bs/LC_MESSAGES/krunner.mo share/locale/bs/LC_MESSAGES/ksmserver.mo share/locale/bs/LC_MESSAGES/libkicker.mo share/locale/bs/LC_MESSAGES/libkworkspace.mo share/locale/bs/LC_MESSAGES/phonon_kde_plugin.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/bs/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/bs/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/bs/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/bs/LC_MESSAGES/plasma_engine_keystate.mo share/locale/bs/LC_MESSAGES/plasma_engine_notifications.mo share/locale/bs/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/bs/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/bs/LC_MESSAGES/plasma_engine_time.mo share/locale/bs/LC_MESSAGES/plasma_engine_weather.mo share/locale/bs/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/bs/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/bs/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/bs/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/bs/LC_MESSAGES/plasma_runner_kill.mo share/locale/bs/LC_MESSAGES/plasma_runner_locations.mo share/locale/bs/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/bs/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/bs/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/bs/LC_MESSAGES/plasma_runner_services.mo share/locale/bs/LC_MESSAGES/plasma_runner_sessions.mo share/locale/bs/LC_MESSAGES/plasma_runner_shell.mo share/locale/bs/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/bs/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/bs/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/bs/LC_MESSAGES/plasmashell.mo share/locale/bs/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/bs/LC_MESSAGES/soliduiserver.mo share/locale/ca/LC_MESSAGES/freespacenotifier.mo share/locale/ca/LC_MESSAGES/kcm_autostart.mo share/locale/ca/LC_MESSAGES/kcm_colors.mo share/locale/ca/LC_MESSAGES/kcm_cursortheme.mo share/locale/ca/LC_MESSAGES/kcm_desktoptheme.mo share/locale/ca/LC_MESSAGES/kcm_feedback.mo share/locale/ca/LC_MESSAGES/kcm_fonts.mo share/locale/ca/LC_MESSAGES/kcm_icons.mo share/locale/ca/LC_MESSAGES/kcm_lookandfeel.mo share/locale/ca/LC_MESSAGES/kcm_nightcolor.mo share/locale/ca/LC_MESSAGES/kcm_notifications.mo share/locale/ca/LC_MESSAGES/kcm_regionandlang.mo share/locale/ca/LC_MESSAGES/kcm_soundtheme.mo share/locale/ca/LC_MESSAGES/kcm_style.mo share/locale/ca/LC_MESSAGES/kcm_users.mo share/locale/ca/LC_MESSAGES/kcminit.mo share/locale/ca/LC_MESSAGES/kded_devicenotifications.mo share/locale/ca/LC_MESSAGES/kfontinst.mo share/locale/ca/LC_MESSAGES/kio_applications.mo share/locale/ca/LC_MESSAGES/kio_desktop.mo share/locale/ca/LC_MESSAGES/klipper.mo share/locale/ca/LC_MESSAGES/krdb.mo share/locale/ca/LC_MESSAGES/krunner.mo share/locale/ca/LC_MESSAGES/ksmserver.mo share/locale/ca/LC_MESSAGES/libkicker.mo share/locale/ca/LC_MESSAGES/libkmpris.mo share/locale/ca/LC_MESSAGES/libkworkspace.mo share/locale/ca/LC_MESSAGES/libnotificationmanager.mo share/locale/ca/LC_MESSAGES/phonon_kde_plugin.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.brightness.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/ca/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/ca/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/ca/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/ca/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/ca/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/ca/LC_MESSAGES/plasma_engine_dict.mo share/locale/ca/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/ca/LC_MESSAGES/plasma_engine_keystate.mo share/locale/ca/LC_MESSAGES/plasma_engine_notifications.mo share/locale/ca/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/ca/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/ca/LC_MESSAGES/plasma_engine_time.mo share/locale/ca/LC_MESSAGES/plasma_engine_weather.mo +share/locale/ca/LC_MESSAGES/plasma_interactiveconsole.mo share/locale/ca/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/ca/LC_MESSAGES/plasma_runner_appstream.mo share/locale/ca/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/ca/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/ca/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/ca/LC_MESSAGES/plasma_runner_kill.mo share/locale/ca/LC_MESSAGES/plasma_runner_locations.mo share/locale/ca/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/ca/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/ca/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/ca/LC_MESSAGES/plasma_runner_services.mo share/locale/ca/LC_MESSAGES/plasma_runner_sessions.mo share/locale/ca/LC_MESSAGES/plasma_runner_shell.mo share/locale/ca/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/ca/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/ca/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/ca/LC_MESSAGES/plasmashell.mo share/locale/ca/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/ca/LC_MESSAGES/plasmawindowed.mo share/locale/ca/LC_MESSAGES/session-shortcuts-kded.mo share/locale/ca/LC_MESSAGES/soliduiserver.mo share/locale/ca@valencia/LC_MESSAGES/freespacenotifier.mo share/locale/ca@valencia/LC_MESSAGES/kcm_autostart.mo share/locale/ca@valencia/LC_MESSAGES/kcm_colors.mo share/locale/ca@valencia/LC_MESSAGES/kcm_cursortheme.mo share/locale/ca@valencia/LC_MESSAGES/kcm_desktoptheme.mo share/locale/ca@valencia/LC_MESSAGES/kcm_feedback.mo share/locale/ca@valencia/LC_MESSAGES/kcm_fonts.mo share/locale/ca@valencia/LC_MESSAGES/kcm_icons.mo share/locale/ca@valencia/LC_MESSAGES/kcm_lookandfeel.mo share/locale/ca@valencia/LC_MESSAGES/kcm_nightcolor.mo share/locale/ca@valencia/LC_MESSAGES/kcm_notifications.mo share/locale/ca@valencia/LC_MESSAGES/kcm_regionandlang.mo share/locale/ca@valencia/LC_MESSAGES/kcm_soundtheme.mo share/locale/ca@valencia/LC_MESSAGES/kcm_style.mo share/locale/ca@valencia/LC_MESSAGES/kcm_users.mo share/locale/ca@valencia/LC_MESSAGES/kcminit.mo share/locale/ca@valencia/LC_MESSAGES/kded_devicenotifications.mo share/locale/ca@valencia/LC_MESSAGES/kfontinst.mo share/locale/ca@valencia/LC_MESSAGES/kio_applications.mo share/locale/ca@valencia/LC_MESSAGES/kio_desktop.mo share/locale/ca@valencia/LC_MESSAGES/klipper.mo share/locale/ca@valencia/LC_MESSAGES/krdb.mo share/locale/ca@valencia/LC_MESSAGES/krunner.mo share/locale/ca@valencia/LC_MESSAGES/ksmserver.mo share/locale/ca@valencia/LC_MESSAGES/libkicker.mo share/locale/ca@valencia/LC_MESSAGES/libkmpris.mo share/locale/ca@valencia/LC_MESSAGES/libkworkspace.mo share/locale/ca@valencia/LC_MESSAGES/libnotificationmanager.mo share/locale/ca@valencia/LC_MESSAGES/phonon_kde_plugin.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.brightness.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/ca@valencia/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/ca@valencia/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/ca@valencia/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/ca@valencia/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/ca@valencia/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/ca@valencia/LC_MESSAGES/plasma_engine_dict.mo share/locale/ca@valencia/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/ca@valencia/LC_MESSAGES/plasma_engine_keystate.mo share/locale/ca@valencia/LC_MESSAGES/plasma_engine_notifications.mo share/locale/ca@valencia/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/ca@valencia/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/ca@valencia/LC_MESSAGES/plasma_engine_time.mo share/locale/ca@valencia/LC_MESSAGES/plasma_engine_weather.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_interactiveconsole.mo share/locale/ca@valencia/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_appstream.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_kill.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_locations.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_services.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_sessions.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_shell.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/ca@valencia/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/ca@valencia/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/ca@valencia/LC_MESSAGES/plasmashell.mo share/locale/ca@valencia/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/ca@valencia/LC_MESSAGES/plasmawindowed.mo share/locale/ca@valencia/LC_MESSAGES/session-shortcuts-kded.mo share/locale/ca@valencia/LC_MESSAGES/soliduiserver.mo share/locale/cs/LC_MESSAGES/freespacenotifier.mo share/locale/cs/LC_MESSAGES/kcm_autostart.mo share/locale/cs/LC_MESSAGES/kcm_colors.mo share/locale/cs/LC_MESSAGES/kcm_cursortheme.mo share/locale/cs/LC_MESSAGES/kcm_desktoptheme.mo share/locale/cs/LC_MESSAGES/kcm_feedback.mo share/locale/cs/LC_MESSAGES/kcm_fonts.mo share/locale/cs/LC_MESSAGES/kcm_icons.mo share/locale/cs/LC_MESSAGES/kcm_lookandfeel.mo share/locale/cs/LC_MESSAGES/kcm_nightcolor.mo share/locale/cs/LC_MESSAGES/kcm_notifications.mo share/locale/cs/LC_MESSAGES/kcm_regionandlang.mo share/locale/cs/LC_MESSAGES/kcm_soundtheme.mo share/locale/cs/LC_MESSAGES/kcm_style.mo share/locale/cs/LC_MESSAGES/kcm_users.mo share/locale/cs/LC_MESSAGES/kcminit.mo share/locale/cs/LC_MESSAGES/kded_devicenotifications.mo share/locale/cs/LC_MESSAGES/kfontinst.mo share/locale/cs/LC_MESSAGES/kio_applications.mo share/locale/cs/LC_MESSAGES/kio_desktop.mo share/locale/cs/LC_MESSAGES/klipper.mo share/locale/cs/LC_MESSAGES/krdb.mo share/locale/cs/LC_MESSAGES/krunner.mo share/locale/cs/LC_MESSAGES/ksmserver.mo share/locale/cs/LC_MESSAGES/libkicker.mo share/locale/cs/LC_MESSAGES/libkmpris.mo share/locale/cs/LC_MESSAGES/libkworkspace.mo share/locale/cs/LC_MESSAGES/libnotificationmanager.mo share/locale/cs/LC_MESSAGES/phonon_kde_plugin.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.brightness.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/cs/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/cs/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/cs/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/cs/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/cs/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/cs/LC_MESSAGES/plasma_engine_dict.mo share/locale/cs/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/cs/LC_MESSAGES/plasma_engine_keystate.mo share/locale/cs/LC_MESSAGES/plasma_engine_notifications.mo share/locale/cs/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/cs/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/cs/LC_MESSAGES/plasma_engine_time.mo share/locale/cs/LC_MESSAGES/plasma_engine_weather.mo share/locale/cs/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/cs/LC_MESSAGES/plasma_runner_appstream.mo share/locale/cs/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/cs/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/cs/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/cs/LC_MESSAGES/plasma_runner_kill.mo share/locale/cs/LC_MESSAGES/plasma_runner_locations.mo share/locale/cs/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/cs/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/cs/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/cs/LC_MESSAGES/plasma_runner_services.mo share/locale/cs/LC_MESSAGES/plasma_runner_sessions.mo share/locale/cs/LC_MESSAGES/plasma_runner_shell.mo share/locale/cs/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/cs/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/cs/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/cs/LC_MESSAGES/plasmashell.mo share/locale/cs/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/cs/LC_MESSAGES/plasmawindowed.mo share/locale/cs/LC_MESSAGES/session-shortcuts-kded.mo share/locale/cs/LC_MESSAGES/soliduiserver.mo share/locale/csb/LC_MESSAGES/kcm_colors.mo share/locale/csb/LC_MESSAGES/kcm_fonts.mo share/locale/csb/LC_MESSAGES/kcm_icons.mo share/locale/csb/LC_MESSAGES/kcm_style.mo share/locale/csb/LC_MESSAGES/kcminit.mo share/locale/csb/LC_MESSAGES/kfontinst.mo share/locale/csb/LC_MESSAGES/kio_applications.mo share/locale/csb/LC_MESSAGES/klipper.mo share/locale/csb/LC_MESSAGES/krdb.mo share/locale/csb/LC_MESSAGES/ksmserver.mo share/locale/csb/LC_MESSAGES/libkworkspace.mo share/locale/csb/LC_MESSAGES/phonon_kde_plugin.mo share/locale/csb/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/csb/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/csb/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/csb/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/csb/LC_MESSAGES/plasma_engine_notifications.mo share/locale/csb/LC_MESSAGES/plasma_engine_weather.mo share/locale/csb/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/csb/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/csb/LC_MESSAGES/plasma_runner_locations.mo share/locale/csb/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/csb/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/csb/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/csb/LC_MESSAGES/plasma_runner_services.mo share/locale/csb/LC_MESSAGES/plasma_runner_sessions.mo share/locale/csb/LC_MESSAGES/plasma_runner_shell.mo share/locale/csb/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/csb/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/csb/LC_MESSAGES/soliduiserver.mo share/locale/cy/LC_MESSAGES/kcm_colors.mo share/locale/cy/LC_MESSAGES/kcm_cursortheme.mo share/locale/cy/LC_MESSAGES/kcm_fonts.mo share/locale/cy/LC_MESSAGES/kcm_icons.mo share/locale/cy/LC_MESSAGES/kcm_style.mo share/locale/cy/LC_MESSAGES/kfontinst.mo share/locale/cy/LC_MESSAGES/kio_applications.mo share/locale/cy/LC_MESSAGES/klipper.mo share/locale/cy/LC_MESSAGES/krdb.mo share/locale/cy/LC_MESSAGES/ksmserver.mo share/locale/da/LC_MESSAGES/freespacenotifier.mo share/locale/da/LC_MESSAGES/kcm_autostart.mo share/locale/da/LC_MESSAGES/kcm_colors.mo share/locale/da/LC_MESSAGES/kcm_cursortheme.mo share/locale/da/LC_MESSAGES/kcm_desktoptheme.mo share/locale/da/LC_MESSAGES/kcm_feedback.mo share/locale/da/LC_MESSAGES/kcm_fonts.mo share/locale/da/LC_MESSAGES/kcm_icons.mo share/locale/da/LC_MESSAGES/kcm_lookandfeel.mo share/locale/da/LC_MESSAGES/kcm_nightcolor.mo share/locale/da/LC_MESSAGES/kcm_notifications.mo share/locale/da/LC_MESSAGES/kcm_style.mo share/locale/da/LC_MESSAGES/kcm_users.mo share/locale/da/LC_MESSAGES/kcminit.mo share/locale/da/LC_MESSAGES/kfontinst.mo share/locale/da/LC_MESSAGES/kio_applications.mo share/locale/da/LC_MESSAGES/kio_desktop.mo share/locale/da/LC_MESSAGES/klipper.mo share/locale/da/LC_MESSAGES/krdb.mo share/locale/da/LC_MESSAGES/krunner.mo share/locale/da/LC_MESSAGES/ksmserver.mo share/locale/da/LC_MESSAGES/libkicker.mo share/locale/da/LC_MESSAGES/libkworkspace.mo share/locale/da/LC_MESSAGES/libnotificationmanager.mo share/locale/da/LC_MESSAGES/phonon_kde_plugin.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/da/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/da/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/da/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/da/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/da/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/da/LC_MESSAGES/plasma_engine_dict.mo share/locale/da/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/da/LC_MESSAGES/plasma_engine_keystate.mo share/locale/da/LC_MESSAGES/plasma_engine_notifications.mo share/locale/da/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/da/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/da/LC_MESSAGES/plasma_engine_time.mo share/locale/da/LC_MESSAGES/plasma_engine_weather.mo share/locale/da/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/da/LC_MESSAGES/plasma_runner_appstream.mo share/locale/da/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/da/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/da/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/da/LC_MESSAGES/plasma_runner_kill.mo share/locale/da/LC_MESSAGES/plasma_runner_locations.mo share/locale/da/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/da/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/da/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/da/LC_MESSAGES/plasma_runner_services.mo share/locale/da/LC_MESSAGES/plasma_runner_sessions.mo share/locale/da/LC_MESSAGES/plasma_runner_shell.mo share/locale/da/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/da/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/da/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/da/LC_MESSAGES/plasmashell.mo share/locale/da/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/da/LC_MESSAGES/soliduiserver.mo share/locale/de/LC_MESSAGES/freespacenotifier.mo share/locale/de/LC_MESSAGES/kcm_autostart.mo share/locale/de/LC_MESSAGES/kcm_colors.mo share/locale/de/LC_MESSAGES/kcm_cursortheme.mo share/locale/de/LC_MESSAGES/kcm_desktoptheme.mo share/locale/de/LC_MESSAGES/kcm_feedback.mo share/locale/de/LC_MESSAGES/kcm_fonts.mo share/locale/de/LC_MESSAGES/kcm_icons.mo share/locale/de/LC_MESSAGES/kcm_lookandfeel.mo share/locale/de/LC_MESSAGES/kcm_nightcolor.mo share/locale/de/LC_MESSAGES/kcm_notifications.mo share/locale/de/LC_MESSAGES/kcm_regionandlang.mo share/locale/de/LC_MESSAGES/kcm_soundtheme.mo share/locale/de/LC_MESSAGES/kcm_style.mo share/locale/de/LC_MESSAGES/kcm_users.mo share/locale/de/LC_MESSAGES/kcminit.mo share/locale/de/LC_MESSAGES/kded_devicenotifications.mo share/locale/de/LC_MESSAGES/kfontinst.mo share/locale/de/LC_MESSAGES/kio_applications.mo share/locale/de/LC_MESSAGES/kio_desktop.mo share/locale/de/LC_MESSAGES/klipper.mo share/locale/de/LC_MESSAGES/krdb.mo share/locale/de/LC_MESSAGES/krunner.mo share/locale/de/LC_MESSAGES/ksmserver.mo share/locale/de/LC_MESSAGES/libkicker.mo share/locale/de/LC_MESSAGES/libkmpris.mo share/locale/de/LC_MESSAGES/libkworkspace.mo share/locale/de/LC_MESSAGES/libnotificationmanager.mo share/locale/de/LC_MESSAGES/phonon_kde_plugin.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.brightness.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/de/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/de/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/de/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/de/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/de/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/de/LC_MESSAGES/plasma_engine_dict.mo share/locale/de/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/de/LC_MESSAGES/plasma_engine_keystate.mo share/locale/de/LC_MESSAGES/plasma_engine_notifications.mo share/locale/de/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/de/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/de/LC_MESSAGES/plasma_engine_time.mo share/locale/de/LC_MESSAGES/plasma_engine_weather.mo +share/locale/de/LC_MESSAGES/plasma_interactiveconsole.mo share/locale/de/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/de/LC_MESSAGES/plasma_runner_appstream.mo share/locale/de/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/de/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/de/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/de/LC_MESSAGES/plasma_runner_kill.mo share/locale/de/LC_MESSAGES/plasma_runner_locations.mo share/locale/de/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/de/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/de/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/de/LC_MESSAGES/plasma_runner_services.mo share/locale/de/LC_MESSAGES/plasma_runner_sessions.mo share/locale/de/LC_MESSAGES/plasma_runner_shell.mo share/locale/de/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/de/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/de/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/de/LC_MESSAGES/plasmashell.mo share/locale/de/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/de/LC_MESSAGES/plasmawindowed.mo share/locale/de/LC_MESSAGES/session-shortcuts-kded.mo share/locale/de/LC_MESSAGES/soliduiserver.mo share/locale/el/LC_MESSAGES/freespacenotifier.mo share/locale/el/LC_MESSAGES/kcm_autostart.mo share/locale/el/LC_MESSAGES/kcm_colors.mo share/locale/el/LC_MESSAGES/kcm_cursortheme.mo share/locale/el/LC_MESSAGES/kcm_desktoptheme.mo share/locale/el/LC_MESSAGES/kcm_fonts.mo share/locale/el/LC_MESSAGES/kcm_icons.mo share/locale/el/LC_MESSAGES/kcm_lookandfeel.mo share/locale/el/LC_MESSAGES/kcm_style.mo share/locale/el/LC_MESSAGES/kcminit.mo share/locale/el/LC_MESSAGES/kfontinst.mo share/locale/el/LC_MESSAGES/kio_applications.mo share/locale/el/LC_MESSAGES/kio_desktop.mo share/locale/el/LC_MESSAGES/klipper.mo share/locale/el/LC_MESSAGES/krdb.mo share/locale/el/LC_MESSAGES/krunner.mo share/locale/el/LC_MESSAGES/ksmserver.mo share/locale/el/LC_MESSAGES/libkicker.mo share/locale/el/LC_MESSAGES/libkworkspace.mo share/locale/el/LC_MESSAGES/phonon_kde_plugin.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/el/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/el/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/el/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/el/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/el/LC_MESSAGES/plasma_engine_keystate.mo share/locale/el/LC_MESSAGES/plasma_engine_notifications.mo share/locale/el/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/el/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/el/LC_MESSAGES/plasma_engine_time.mo share/locale/el/LC_MESSAGES/plasma_engine_weather.mo share/locale/el/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/el/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/el/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/el/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/el/LC_MESSAGES/plasma_runner_kill.mo share/locale/el/LC_MESSAGES/plasma_runner_locations.mo share/locale/el/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/el/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/el/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/el/LC_MESSAGES/plasma_runner_services.mo share/locale/el/LC_MESSAGES/plasma_runner_sessions.mo share/locale/el/LC_MESSAGES/plasma_runner_shell.mo share/locale/el/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/el/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/el/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/el/LC_MESSAGES/plasmashell.mo share/locale/el/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/el/LC_MESSAGES/soliduiserver.mo share/locale/en_GB/LC_MESSAGES/freespacenotifier.mo share/locale/en_GB/LC_MESSAGES/kcm_autostart.mo share/locale/en_GB/LC_MESSAGES/kcm_colors.mo share/locale/en_GB/LC_MESSAGES/kcm_cursortheme.mo share/locale/en_GB/LC_MESSAGES/kcm_desktoptheme.mo share/locale/en_GB/LC_MESSAGES/kcm_feedback.mo share/locale/en_GB/LC_MESSAGES/kcm_fonts.mo share/locale/en_GB/LC_MESSAGES/kcm_icons.mo share/locale/en_GB/LC_MESSAGES/kcm_lookandfeel.mo share/locale/en_GB/LC_MESSAGES/kcm_nightcolor.mo share/locale/en_GB/LC_MESSAGES/kcm_notifications.mo share/locale/en_GB/LC_MESSAGES/kcm_regionandlang.mo share/locale/en_GB/LC_MESSAGES/kcm_style.mo share/locale/en_GB/LC_MESSAGES/kcm_users.mo share/locale/en_GB/LC_MESSAGES/kcminit.mo share/locale/en_GB/LC_MESSAGES/kfontinst.mo share/locale/en_GB/LC_MESSAGES/kio_applications.mo share/locale/en_GB/LC_MESSAGES/kio_desktop.mo share/locale/en_GB/LC_MESSAGES/klipper.mo share/locale/en_GB/LC_MESSAGES/krdb.mo share/locale/en_GB/LC_MESSAGES/krunner.mo share/locale/en_GB/LC_MESSAGES/ksmserver.mo share/locale/en_GB/LC_MESSAGES/libkicker.mo share/locale/en_GB/LC_MESSAGES/libkworkspace.mo share/locale/en_GB/LC_MESSAGES/libnotificationmanager.mo share/locale/en_GB/LC_MESSAGES/phonon_kde_plugin.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/en_GB/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/en_GB/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/en_GB/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/en_GB/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/en_GB/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/en_GB/LC_MESSAGES/plasma_engine_dict.mo share/locale/en_GB/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/en_GB/LC_MESSAGES/plasma_engine_keystate.mo share/locale/en_GB/LC_MESSAGES/plasma_engine_notifications.mo share/locale/en_GB/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/en_GB/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/en_GB/LC_MESSAGES/plasma_engine_time.mo share/locale/en_GB/LC_MESSAGES/plasma_engine_weather.mo share/locale/en_GB/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_appstream.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_kill.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_locations.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_services.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_sessions.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_shell.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/en_GB/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/en_GB/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/en_GB/LC_MESSAGES/plasmashell.mo share/locale/en_GB/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/en_GB/LC_MESSAGES/soliduiserver.mo share/locale/eo/LC_MESSAGES/freespacenotifier.mo share/locale/eo/LC_MESSAGES/kcm_autostart.mo share/locale/eo/LC_MESSAGES/kcm_colors.mo share/locale/eo/LC_MESSAGES/kcm_cursortheme.mo share/locale/eo/LC_MESSAGES/kcm_desktoptheme.mo share/locale/eo/LC_MESSAGES/kcm_feedback.mo share/locale/eo/LC_MESSAGES/kcm_fonts.mo share/locale/eo/LC_MESSAGES/kcm_icons.mo share/locale/eo/LC_MESSAGES/kcm_lookandfeel.mo share/locale/eo/LC_MESSAGES/kcm_nightcolor.mo share/locale/eo/LC_MESSAGES/kcm_notifications.mo share/locale/eo/LC_MESSAGES/kcm_regionandlang.mo share/locale/eo/LC_MESSAGES/kcm_soundtheme.mo share/locale/eo/LC_MESSAGES/kcm_style.mo share/locale/eo/LC_MESSAGES/kcm_users.mo share/locale/eo/LC_MESSAGES/kcminit.mo share/locale/eo/LC_MESSAGES/kded_devicenotifications.mo share/locale/eo/LC_MESSAGES/kfontinst.mo share/locale/eo/LC_MESSAGES/kio_applications.mo share/locale/eo/LC_MESSAGES/kio_desktop.mo share/locale/eo/LC_MESSAGES/klipper.mo share/locale/eo/LC_MESSAGES/krdb.mo share/locale/eo/LC_MESSAGES/krunner.mo share/locale/eo/LC_MESSAGES/ksmserver.mo share/locale/eo/LC_MESSAGES/libkicker.mo share/locale/eo/LC_MESSAGES/libkmpris.mo share/locale/eo/LC_MESSAGES/libkworkspace.mo share/locale/eo/LC_MESSAGES/libnotificationmanager.mo share/locale/eo/LC_MESSAGES/phonon_kde_plugin.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.brightness.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/eo/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/eo/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/eo/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/eo/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/eo/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/eo/LC_MESSAGES/plasma_engine_dict.mo share/locale/eo/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/eo/LC_MESSAGES/plasma_engine_keystate.mo share/locale/eo/LC_MESSAGES/plasma_engine_notifications.mo share/locale/eo/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/eo/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/eo/LC_MESSAGES/plasma_engine_time.mo share/locale/eo/LC_MESSAGES/plasma_engine_weather.mo share/locale/eo/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/eo/LC_MESSAGES/plasma_runner_appstream.mo share/locale/eo/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/eo/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/eo/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/eo/LC_MESSAGES/plasma_runner_kill.mo share/locale/eo/LC_MESSAGES/plasma_runner_locations.mo share/locale/eo/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/eo/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/eo/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/eo/LC_MESSAGES/plasma_runner_services.mo share/locale/eo/LC_MESSAGES/plasma_runner_sessions.mo share/locale/eo/LC_MESSAGES/plasma_runner_shell.mo share/locale/eo/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/eo/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/eo/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/eo/LC_MESSAGES/plasmashell.mo share/locale/eo/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/eo/LC_MESSAGES/plasmawindowed.mo share/locale/eo/LC_MESSAGES/session-shortcuts-kded.mo share/locale/eo/LC_MESSAGES/soliduiserver.mo share/locale/es/LC_MESSAGES/freespacenotifier.mo share/locale/es/LC_MESSAGES/kcm_autostart.mo share/locale/es/LC_MESSAGES/kcm_colors.mo share/locale/es/LC_MESSAGES/kcm_cursortheme.mo share/locale/es/LC_MESSAGES/kcm_desktoptheme.mo share/locale/es/LC_MESSAGES/kcm_feedback.mo share/locale/es/LC_MESSAGES/kcm_fonts.mo share/locale/es/LC_MESSAGES/kcm_icons.mo share/locale/es/LC_MESSAGES/kcm_lookandfeel.mo share/locale/es/LC_MESSAGES/kcm_nightcolor.mo share/locale/es/LC_MESSAGES/kcm_notifications.mo share/locale/es/LC_MESSAGES/kcm_regionandlang.mo share/locale/es/LC_MESSAGES/kcm_soundtheme.mo share/locale/es/LC_MESSAGES/kcm_style.mo share/locale/es/LC_MESSAGES/kcm_users.mo share/locale/es/LC_MESSAGES/kcminit.mo share/locale/es/LC_MESSAGES/kded_devicenotifications.mo share/locale/es/LC_MESSAGES/kfontinst.mo share/locale/es/LC_MESSAGES/kio_applications.mo share/locale/es/LC_MESSAGES/kio_desktop.mo share/locale/es/LC_MESSAGES/klipper.mo share/locale/es/LC_MESSAGES/krdb.mo share/locale/es/LC_MESSAGES/krunner.mo share/locale/es/LC_MESSAGES/ksmserver.mo share/locale/es/LC_MESSAGES/libkicker.mo share/locale/es/LC_MESSAGES/libkmpris.mo share/locale/es/LC_MESSAGES/libkworkspace.mo share/locale/es/LC_MESSAGES/libnotificationmanager.mo share/locale/es/LC_MESSAGES/phonon_kde_plugin.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.brightness.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/es/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/es/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/es/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/es/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/es/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/es/LC_MESSAGES/plasma_engine_dict.mo share/locale/es/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/es/LC_MESSAGES/plasma_engine_keystate.mo share/locale/es/LC_MESSAGES/plasma_engine_notifications.mo share/locale/es/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/es/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/es/LC_MESSAGES/plasma_engine_time.mo share/locale/es/LC_MESSAGES/plasma_engine_weather.mo +share/locale/es/LC_MESSAGES/plasma_interactiveconsole.mo share/locale/es/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/es/LC_MESSAGES/plasma_runner_appstream.mo share/locale/es/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/es/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/es/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/es/LC_MESSAGES/plasma_runner_kill.mo share/locale/es/LC_MESSAGES/plasma_runner_locations.mo share/locale/es/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/es/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/es/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/es/LC_MESSAGES/plasma_runner_services.mo share/locale/es/LC_MESSAGES/plasma_runner_sessions.mo share/locale/es/LC_MESSAGES/plasma_runner_shell.mo share/locale/es/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/es/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/es/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/es/LC_MESSAGES/plasmashell.mo share/locale/es/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/es/LC_MESSAGES/plasmawindowed.mo share/locale/es/LC_MESSAGES/session-shortcuts-kded.mo share/locale/es/LC_MESSAGES/soliduiserver.mo share/locale/et/LC_MESSAGES/freespacenotifier.mo share/locale/et/LC_MESSAGES/kcm_autostart.mo share/locale/et/LC_MESSAGES/kcm_colors.mo share/locale/et/LC_MESSAGES/kcm_cursortheme.mo share/locale/et/LC_MESSAGES/kcm_desktoptheme.mo share/locale/et/LC_MESSAGES/kcm_feedback.mo share/locale/et/LC_MESSAGES/kcm_fonts.mo share/locale/et/LC_MESSAGES/kcm_icons.mo share/locale/et/LC_MESSAGES/kcm_lookandfeel.mo share/locale/et/LC_MESSAGES/kcm_nightcolor.mo share/locale/et/LC_MESSAGES/kcm_notifications.mo share/locale/et/LC_MESSAGES/kcm_regionandlang.mo share/locale/et/LC_MESSAGES/kcm_style.mo share/locale/et/LC_MESSAGES/kcm_users.mo share/locale/et/LC_MESSAGES/kcminit.mo share/locale/et/LC_MESSAGES/kfontinst.mo share/locale/et/LC_MESSAGES/kio_applications.mo share/locale/et/LC_MESSAGES/kio_desktop.mo share/locale/et/LC_MESSAGES/klipper.mo share/locale/et/LC_MESSAGES/krdb.mo share/locale/et/LC_MESSAGES/krunner.mo share/locale/et/LC_MESSAGES/ksmserver.mo share/locale/et/LC_MESSAGES/libkicker.mo share/locale/et/LC_MESSAGES/libkworkspace.mo share/locale/et/LC_MESSAGES/libnotificationmanager.mo share/locale/et/LC_MESSAGES/phonon_kde_plugin.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/et/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/et/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/et/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/et/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/et/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/et/LC_MESSAGES/plasma_engine_dict.mo share/locale/et/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/et/LC_MESSAGES/plasma_engine_keystate.mo share/locale/et/LC_MESSAGES/plasma_engine_notifications.mo share/locale/et/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/et/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/et/LC_MESSAGES/plasma_engine_time.mo share/locale/et/LC_MESSAGES/plasma_engine_weather.mo share/locale/et/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/et/LC_MESSAGES/plasma_runner_appstream.mo share/locale/et/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/et/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/et/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/et/LC_MESSAGES/plasma_runner_kill.mo share/locale/et/LC_MESSAGES/plasma_runner_locations.mo share/locale/et/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/et/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/et/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/et/LC_MESSAGES/plasma_runner_services.mo share/locale/et/LC_MESSAGES/plasma_runner_sessions.mo share/locale/et/LC_MESSAGES/plasma_runner_shell.mo share/locale/et/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/et/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/et/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/et/LC_MESSAGES/plasmashell.mo share/locale/et/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/et/LC_MESSAGES/soliduiserver.mo share/locale/eu/LC_MESSAGES/freespacenotifier.mo share/locale/eu/LC_MESSAGES/kcm_autostart.mo share/locale/eu/LC_MESSAGES/kcm_colors.mo share/locale/eu/LC_MESSAGES/kcm_cursortheme.mo share/locale/eu/LC_MESSAGES/kcm_desktoptheme.mo share/locale/eu/LC_MESSAGES/kcm_feedback.mo share/locale/eu/LC_MESSAGES/kcm_fonts.mo share/locale/eu/LC_MESSAGES/kcm_icons.mo share/locale/eu/LC_MESSAGES/kcm_lookandfeel.mo share/locale/eu/LC_MESSAGES/kcm_nightcolor.mo share/locale/eu/LC_MESSAGES/kcm_notifications.mo share/locale/eu/LC_MESSAGES/kcm_regionandlang.mo share/locale/eu/LC_MESSAGES/kcm_soundtheme.mo share/locale/eu/LC_MESSAGES/kcm_style.mo share/locale/eu/LC_MESSAGES/kcm_users.mo share/locale/eu/LC_MESSAGES/kcminit.mo share/locale/eu/LC_MESSAGES/kded_devicenotifications.mo share/locale/eu/LC_MESSAGES/kfontinst.mo share/locale/eu/LC_MESSAGES/kio_applications.mo share/locale/eu/LC_MESSAGES/kio_desktop.mo share/locale/eu/LC_MESSAGES/klipper.mo share/locale/eu/LC_MESSAGES/krdb.mo share/locale/eu/LC_MESSAGES/krunner.mo share/locale/eu/LC_MESSAGES/ksmserver.mo share/locale/eu/LC_MESSAGES/libkicker.mo share/locale/eu/LC_MESSAGES/libkmpris.mo share/locale/eu/LC_MESSAGES/libkworkspace.mo share/locale/eu/LC_MESSAGES/libnotificationmanager.mo share/locale/eu/LC_MESSAGES/phonon_kde_plugin.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.brightness.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/eu/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/eu/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/eu/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/eu/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/eu/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/eu/LC_MESSAGES/plasma_engine_dict.mo share/locale/eu/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/eu/LC_MESSAGES/plasma_engine_keystate.mo share/locale/eu/LC_MESSAGES/plasma_engine_notifications.mo share/locale/eu/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/eu/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/eu/LC_MESSAGES/plasma_engine_time.mo share/locale/eu/LC_MESSAGES/plasma_engine_weather.mo +share/locale/eu/LC_MESSAGES/plasma_interactiveconsole.mo share/locale/eu/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/eu/LC_MESSAGES/plasma_runner_appstream.mo share/locale/eu/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/eu/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/eu/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/eu/LC_MESSAGES/plasma_runner_kill.mo share/locale/eu/LC_MESSAGES/plasma_runner_locations.mo share/locale/eu/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/eu/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/eu/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/eu/LC_MESSAGES/plasma_runner_services.mo share/locale/eu/LC_MESSAGES/plasma_runner_sessions.mo share/locale/eu/LC_MESSAGES/plasma_runner_shell.mo share/locale/eu/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/eu/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/eu/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/eu/LC_MESSAGES/plasmashell.mo share/locale/eu/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/eu/LC_MESSAGES/plasmawindowed.mo share/locale/eu/LC_MESSAGES/session-shortcuts-kded.mo share/locale/eu/LC_MESSAGES/soliduiserver.mo share/locale/fa/LC_MESSAGES/freespacenotifier.mo share/locale/fa/LC_MESSAGES/kcm_autostart.mo share/locale/fa/LC_MESSAGES/kcm_colors.mo share/locale/fa/LC_MESSAGES/kcm_cursortheme.mo share/locale/fa/LC_MESSAGES/kcm_desktoptheme.mo share/locale/fa/LC_MESSAGES/kcm_fonts.mo share/locale/fa/LC_MESSAGES/kcm_icons.mo share/locale/fa/LC_MESSAGES/kcm_style.mo share/locale/fa/LC_MESSAGES/kcminit.mo share/locale/fa/LC_MESSAGES/kfontinst.mo share/locale/fa/LC_MESSAGES/kio_applications.mo share/locale/fa/LC_MESSAGES/klipper.mo share/locale/fa/LC_MESSAGES/krdb.mo share/locale/fa/LC_MESSAGES/ksmserver.mo share/locale/fa/LC_MESSAGES/libkworkspace.mo share/locale/fa/LC_MESSAGES/phonon_kde_plugin.mo share/locale/fa/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/fa/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/fa/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/fa/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/fa/LC_MESSAGES/plasma_runner_locations.mo share/locale/fa/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/fa/LC_MESSAGES/plasmashell.mo share/locale/fa/LC_MESSAGES/soliduiserver.mo share/locale/fi/LC_MESSAGES/freespacenotifier.mo share/locale/fi/LC_MESSAGES/kcm_autostart.mo share/locale/fi/LC_MESSAGES/kcm_colors.mo share/locale/fi/LC_MESSAGES/kcm_cursortheme.mo share/locale/fi/LC_MESSAGES/kcm_desktoptheme.mo share/locale/fi/LC_MESSAGES/kcm_feedback.mo share/locale/fi/LC_MESSAGES/kcm_fonts.mo share/locale/fi/LC_MESSAGES/kcm_icons.mo share/locale/fi/LC_MESSAGES/kcm_lookandfeel.mo share/locale/fi/LC_MESSAGES/kcm_nightcolor.mo share/locale/fi/LC_MESSAGES/kcm_notifications.mo share/locale/fi/LC_MESSAGES/kcm_regionandlang.mo share/locale/fi/LC_MESSAGES/kcm_soundtheme.mo share/locale/fi/LC_MESSAGES/kcm_style.mo share/locale/fi/LC_MESSAGES/kcm_users.mo share/locale/fi/LC_MESSAGES/kcminit.mo share/locale/fi/LC_MESSAGES/kded_devicenotifications.mo share/locale/fi/LC_MESSAGES/kfontinst.mo share/locale/fi/LC_MESSAGES/kio_applications.mo share/locale/fi/LC_MESSAGES/kio_desktop.mo share/locale/fi/LC_MESSAGES/klipper.mo share/locale/fi/LC_MESSAGES/krdb.mo share/locale/fi/LC_MESSAGES/krunner.mo share/locale/fi/LC_MESSAGES/ksmserver.mo share/locale/fi/LC_MESSAGES/libkicker.mo share/locale/fi/LC_MESSAGES/libkmpris.mo share/locale/fi/LC_MESSAGES/libkworkspace.mo share/locale/fi/LC_MESSAGES/libnotificationmanager.mo share/locale/fi/LC_MESSAGES/phonon_kde_plugin.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.brightness.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/fi/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/fi/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/fi/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/fi/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/fi/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/fi/LC_MESSAGES/plasma_engine_dict.mo share/locale/fi/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/fi/LC_MESSAGES/plasma_engine_keystate.mo share/locale/fi/LC_MESSAGES/plasma_engine_notifications.mo share/locale/fi/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/fi/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/fi/LC_MESSAGES/plasma_engine_time.mo share/locale/fi/LC_MESSAGES/plasma_engine_weather.mo share/locale/fi/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/fi/LC_MESSAGES/plasma_runner_appstream.mo share/locale/fi/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/fi/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/fi/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/fi/LC_MESSAGES/plasma_runner_kill.mo share/locale/fi/LC_MESSAGES/plasma_runner_locations.mo share/locale/fi/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/fi/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/fi/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/fi/LC_MESSAGES/plasma_runner_services.mo share/locale/fi/LC_MESSAGES/plasma_runner_sessions.mo share/locale/fi/LC_MESSAGES/plasma_runner_shell.mo share/locale/fi/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/fi/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/fi/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/fi/LC_MESSAGES/plasmashell.mo share/locale/fi/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/fi/LC_MESSAGES/plasmawindowed.mo share/locale/fi/LC_MESSAGES/session-shortcuts-kded.mo share/locale/fi/LC_MESSAGES/soliduiserver.mo share/locale/fr/LC_MESSAGES/freespacenotifier.mo share/locale/fr/LC_MESSAGES/kcm_autostart.mo share/locale/fr/LC_MESSAGES/kcm_colors.mo share/locale/fr/LC_MESSAGES/kcm_cursortheme.mo share/locale/fr/LC_MESSAGES/kcm_desktoptheme.mo share/locale/fr/LC_MESSAGES/kcm_feedback.mo share/locale/fr/LC_MESSAGES/kcm_fonts.mo share/locale/fr/LC_MESSAGES/kcm_icons.mo share/locale/fr/LC_MESSAGES/kcm_lookandfeel.mo share/locale/fr/LC_MESSAGES/kcm_nightcolor.mo share/locale/fr/LC_MESSAGES/kcm_notifications.mo share/locale/fr/LC_MESSAGES/kcm_regionandlang.mo share/locale/fr/LC_MESSAGES/kcm_soundtheme.mo share/locale/fr/LC_MESSAGES/kcm_style.mo share/locale/fr/LC_MESSAGES/kcm_users.mo share/locale/fr/LC_MESSAGES/kcminit.mo share/locale/fr/LC_MESSAGES/kded_devicenotifications.mo share/locale/fr/LC_MESSAGES/kfontinst.mo share/locale/fr/LC_MESSAGES/kio_applications.mo share/locale/fr/LC_MESSAGES/kio_desktop.mo share/locale/fr/LC_MESSAGES/klipper.mo share/locale/fr/LC_MESSAGES/krdb.mo share/locale/fr/LC_MESSAGES/krunner.mo share/locale/fr/LC_MESSAGES/ksmserver.mo share/locale/fr/LC_MESSAGES/libkicker.mo share/locale/fr/LC_MESSAGES/libkmpris.mo share/locale/fr/LC_MESSAGES/libkworkspace.mo share/locale/fr/LC_MESSAGES/libnotificationmanager.mo share/locale/fr/LC_MESSAGES/phonon_kde_plugin.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.brightness.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/fr/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/fr/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/fr/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/fr/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/fr/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/fr/LC_MESSAGES/plasma_engine_dict.mo share/locale/fr/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/fr/LC_MESSAGES/plasma_engine_keystate.mo share/locale/fr/LC_MESSAGES/plasma_engine_notifications.mo share/locale/fr/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/fr/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/fr/LC_MESSAGES/plasma_engine_time.mo share/locale/fr/LC_MESSAGES/plasma_engine_weather.mo +share/locale/fr/LC_MESSAGES/plasma_interactiveconsole.mo share/locale/fr/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/fr/LC_MESSAGES/plasma_runner_appstream.mo share/locale/fr/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/fr/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/fr/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/fr/LC_MESSAGES/plasma_runner_kill.mo share/locale/fr/LC_MESSAGES/plasma_runner_locations.mo share/locale/fr/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/fr/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/fr/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/fr/LC_MESSAGES/plasma_runner_services.mo share/locale/fr/LC_MESSAGES/plasma_runner_sessions.mo share/locale/fr/LC_MESSAGES/plasma_runner_shell.mo share/locale/fr/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/fr/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/fr/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/fr/LC_MESSAGES/plasmashell.mo share/locale/fr/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/fr/LC_MESSAGES/plasmawindowed.mo share/locale/fr/LC_MESSAGES/session-shortcuts-kded.mo share/locale/fr/LC_MESSAGES/soliduiserver.mo share/locale/fy/LC_MESSAGES/kcm_autostart.mo share/locale/fy/LC_MESSAGES/kcm_colors.mo share/locale/fy/LC_MESSAGES/kcm_cursortheme.mo share/locale/fy/LC_MESSAGES/kcm_desktoptheme.mo share/locale/fy/LC_MESSAGES/kcm_fonts.mo share/locale/fy/LC_MESSAGES/kcm_icons.mo share/locale/fy/LC_MESSAGES/kcm_style.mo share/locale/fy/LC_MESSAGES/kcminit.mo share/locale/fy/LC_MESSAGES/kfontinst.mo share/locale/fy/LC_MESSAGES/kio_applications.mo share/locale/fy/LC_MESSAGES/klipper.mo share/locale/fy/LC_MESSAGES/krdb.mo share/locale/fy/LC_MESSAGES/ksmserver.mo share/locale/fy/LC_MESSAGES/libkworkspace.mo share/locale/fy/LC_MESSAGES/phonon_kde_plugin.mo share/locale/fy/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/fy/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/fy/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/fy/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/fy/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/fy/LC_MESSAGES/plasma_engine_keystate.mo share/locale/fy/LC_MESSAGES/plasma_engine_notifications.mo share/locale/fy/LC_MESSAGES/plasma_engine_weather.mo share/locale/fy/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/fy/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/fy/LC_MESSAGES/plasma_runner_locations.mo share/locale/fy/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/fy/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/fy/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/fy/LC_MESSAGES/plasma_runner_services.mo share/locale/fy/LC_MESSAGES/plasma_runner_sessions.mo share/locale/fy/LC_MESSAGES/plasma_runner_shell.mo share/locale/fy/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/fy/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/fy/LC_MESSAGES/soliduiserver.mo share/locale/ga/LC_MESSAGES/freespacenotifier.mo share/locale/ga/LC_MESSAGES/kcm_autostart.mo share/locale/ga/LC_MESSAGES/kcm_colors.mo share/locale/ga/LC_MESSAGES/kcm_cursortheme.mo share/locale/ga/LC_MESSAGES/kcm_desktoptheme.mo share/locale/ga/LC_MESSAGES/kcm_fonts.mo share/locale/ga/LC_MESSAGES/kcm_icons.mo share/locale/ga/LC_MESSAGES/kcm_style.mo share/locale/ga/LC_MESSAGES/kcminit.mo share/locale/ga/LC_MESSAGES/kfontinst.mo share/locale/ga/LC_MESSAGES/kio_applications.mo share/locale/ga/LC_MESSAGES/klipper.mo share/locale/ga/LC_MESSAGES/krdb.mo share/locale/ga/LC_MESSAGES/ksmserver.mo share/locale/ga/LC_MESSAGES/libkicker.mo share/locale/ga/LC_MESSAGES/libkworkspace.mo share/locale/ga/LC_MESSAGES/phonon_kde_plugin.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/ga/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/ga/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/ga/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/ga/LC_MESSAGES/plasma_engine_keystate.mo share/locale/ga/LC_MESSAGES/plasma_engine_notifications.mo share/locale/ga/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/ga/LC_MESSAGES/plasma_engine_weather.mo share/locale/ga/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/ga/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/ga/LC_MESSAGES/plasma_runner_kill.mo share/locale/ga/LC_MESSAGES/plasma_runner_locations.mo share/locale/ga/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/ga/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/ga/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/ga/LC_MESSAGES/plasma_runner_services.mo share/locale/ga/LC_MESSAGES/plasma_runner_sessions.mo share/locale/ga/LC_MESSAGES/plasma_runner_shell.mo share/locale/ga/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/ga/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/ga/LC_MESSAGES/soliduiserver.mo share/locale/gl/LC_MESSAGES/freespacenotifier.mo share/locale/gl/LC_MESSAGES/kcm_autostart.mo share/locale/gl/LC_MESSAGES/kcm_colors.mo share/locale/gl/LC_MESSAGES/kcm_cursortheme.mo share/locale/gl/LC_MESSAGES/kcm_desktoptheme.mo share/locale/gl/LC_MESSAGES/kcm_feedback.mo share/locale/gl/LC_MESSAGES/kcm_fonts.mo share/locale/gl/LC_MESSAGES/kcm_icons.mo share/locale/gl/LC_MESSAGES/kcm_lookandfeel.mo share/locale/gl/LC_MESSAGES/kcm_nightcolor.mo share/locale/gl/LC_MESSAGES/kcm_notifications.mo share/locale/gl/LC_MESSAGES/kcm_soundtheme.mo share/locale/gl/LC_MESSAGES/kcm_style.mo share/locale/gl/LC_MESSAGES/kcminit.mo share/locale/gl/LC_MESSAGES/kded_devicenotifications.mo share/locale/gl/LC_MESSAGES/kfontinst.mo share/locale/gl/LC_MESSAGES/kio_applications.mo share/locale/gl/LC_MESSAGES/kio_desktop.mo share/locale/gl/LC_MESSAGES/klipper.mo share/locale/gl/LC_MESSAGES/krdb.mo share/locale/gl/LC_MESSAGES/krunner.mo share/locale/gl/LC_MESSAGES/ksmserver.mo share/locale/gl/LC_MESSAGES/libkicker.mo share/locale/gl/LC_MESSAGES/libkmpris.mo share/locale/gl/LC_MESSAGES/libkworkspace.mo share/locale/gl/LC_MESSAGES/libnotificationmanager.mo share/locale/gl/LC_MESSAGES/phonon_kde_plugin.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.brightness.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/gl/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/gl/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/gl/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/gl/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/gl/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/gl/LC_MESSAGES/plasma_engine_dict.mo share/locale/gl/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/gl/LC_MESSAGES/plasma_engine_keystate.mo share/locale/gl/LC_MESSAGES/plasma_engine_notifications.mo share/locale/gl/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/gl/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/gl/LC_MESSAGES/plasma_engine_time.mo share/locale/gl/LC_MESSAGES/plasma_engine_weather.mo share/locale/gl/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/gl/LC_MESSAGES/plasma_runner_appstream.mo share/locale/gl/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/gl/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/gl/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/gl/LC_MESSAGES/plasma_runner_kill.mo share/locale/gl/LC_MESSAGES/plasma_runner_locations.mo share/locale/gl/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/gl/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/gl/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/gl/LC_MESSAGES/plasma_runner_services.mo share/locale/gl/LC_MESSAGES/plasma_runner_sessions.mo share/locale/gl/LC_MESSAGES/plasma_runner_shell.mo share/locale/gl/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/gl/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/gl/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/gl/LC_MESSAGES/plasmashell.mo share/locale/gl/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/gl/LC_MESSAGES/plasmawindowed.mo share/locale/gl/LC_MESSAGES/session-shortcuts-kded.mo share/locale/gl/LC_MESSAGES/soliduiserver.mo share/locale/gu/LC_MESSAGES/freespacenotifier.mo share/locale/gu/LC_MESSAGES/kcm_autostart.mo share/locale/gu/LC_MESSAGES/kcm_colors.mo share/locale/gu/LC_MESSAGES/kcm_cursortheme.mo share/locale/gu/LC_MESSAGES/kcm_desktoptheme.mo share/locale/gu/LC_MESSAGES/kcm_fonts.mo share/locale/gu/LC_MESSAGES/kcm_icons.mo share/locale/gu/LC_MESSAGES/kcm_style.mo share/locale/gu/LC_MESSAGES/kcminit.mo share/locale/gu/LC_MESSAGES/kfontinst.mo share/locale/gu/LC_MESSAGES/kio_applications.mo share/locale/gu/LC_MESSAGES/klipper.mo share/locale/gu/LC_MESSAGES/krdb.mo share/locale/gu/LC_MESSAGES/ksmserver.mo share/locale/gu/LC_MESSAGES/libkworkspace.mo share/locale/gu/LC_MESSAGES/phonon_kde_plugin.mo share/locale/gu/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/gu/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/gu/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/gu/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/gu/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/gu/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/gu/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/gu/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/gu/LC_MESSAGES/plasma_engine_keystate.mo share/locale/gu/LC_MESSAGES/plasma_engine_notifications.mo share/locale/gu/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/gu/LC_MESSAGES/plasma_engine_weather.mo share/locale/gu/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/gu/LC_MESSAGES/plasma_runner_kill.mo share/locale/gu/LC_MESSAGES/plasma_runner_locations.mo share/locale/gu/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/gu/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/gu/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/gu/LC_MESSAGES/plasma_runner_services.mo share/locale/gu/LC_MESSAGES/plasma_runner_sessions.mo share/locale/gu/LC_MESSAGES/plasma_runner_shell.mo share/locale/gu/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/gu/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/gu/LC_MESSAGES/soliduiserver.mo share/locale/he/LC_MESSAGES/freespacenotifier.mo share/locale/he/LC_MESSAGES/kcm_autostart.mo share/locale/he/LC_MESSAGES/kcm_colors.mo share/locale/he/LC_MESSAGES/kcm_cursortheme.mo share/locale/he/LC_MESSAGES/kcm_desktoptheme.mo share/locale/he/LC_MESSAGES/kcm_feedback.mo share/locale/he/LC_MESSAGES/kcm_fonts.mo share/locale/he/LC_MESSAGES/kcm_icons.mo share/locale/he/LC_MESSAGES/kcm_lookandfeel.mo share/locale/he/LC_MESSAGES/kcm_nightcolor.mo share/locale/he/LC_MESSAGES/kcm_notifications.mo share/locale/he/LC_MESSAGES/kcm_regionandlang.mo share/locale/he/LC_MESSAGES/kcm_soundtheme.mo share/locale/he/LC_MESSAGES/kcm_style.mo share/locale/he/LC_MESSAGES/kcm_users.mo share/locale/he/LC_MESSAGES/kcminit.mo share/locale/he/LC_MESSAGES/kded_devicenotifications.mo share/locale/he/LC_MESSAGES/kfontinst.mo share/locale/he/LC_MESSAGES/kio_applications.mo share/locale/he/LC_MESSAGES/kio_desktop.mo share/locale/he/LC_MESSAGES/klipper.mo share/locale/he/LC_MESSAGES/krdb.mo share/locale/he/LC_MESSAGES/krunner.mo share/locale/he/LC_MESSAGES/ksmserver.mo share/locale/he/LC_MESSAGES/libkicker.mo share/locale/he/LC_MESSAGES/libkmpris.mo share/locale/he/LC_MESSAGES/libkworkspace.mo share/locale/he/LC_MESSAGES/libnotificationmanager.mo share/locale/he/LC_MESSAGES/phonon_kde_plugin.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.brightness.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/he/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/he/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/he/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/he/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/he/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/he/LC_MESSAGES/plasma_engine_dict.mo share/locale/he/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/he/LC_MESSAGES/plasma_engine_keystate.mo share/locale/he/LC_MESSAGES/plasma_engine_notifications.mo share/locale/he/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/he/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/he/LC_MESSAGES/plasma_engine_time.mo share/locale/he/LC_MESSAGES/plasma_engine_weather.mo share/locale/he/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/he/LC_MESSAGES/plasma_runner_appstream.mo share/locale/he/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/he/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/he/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/he/LC_MESSAGES/plasma_runner_kill.mo share/locale/he/LC_MESSAGES/plasma_runner_locations.mo share/locale/he/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/he/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/he/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/he/LC_MESSAGES/plasma_runner_services.mo share/locale/he/LC_MESSAGES/plasma_runner_sessions.mo share/locale/he/LC_MESSAGES/plasma_runner_shell.mo share/locale/he/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/he/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/he/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/he/LC_MESSAGES/plasmashell.mo share/locale/he/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/he/LC_MESSAGES/plasmawindowed.mo share/locale/he/LC_MESSAGES/soliduiserver.mo share/locale/hi/LC_MESSAGES/freespacenotifier.mo share/locale/hi/LC_MESSAGES/kcm_autostart.mo share/locale/hi/LC_MESSAGES/kcm_colors.mo share/locale/hi/LC_MESSAGES/kcm_cursortheme.mo share/locale/hi/LC_MESSAGES/kcm_desktoptheme.mo share/locale/hi/LC_MESSAGES/kcm_feedback.mo share/locale/hi/LC_MESSAGES/kcm_fonts.mo share/locale/hi/LC_MESSAGES/kcm_icons.mo share/locale/hi/LC_MESSAGES/kcm_lookandfeel.mo share/locale/hi/LC_MESSAGES/kcm_nightcolor.mo share/locale/hi/LC_MESSAGES/kcm_notifications.mo share/locale/hi/LC_MESSAGES/kcm_style.mo share/locale/hi/LC_MESSAGES/kcm_users.mo share/locale/hi/LC_MESSAGES/kcminit.mo share/locale/hi/LC_MESSAGES/kfontinst.mo share/locale/hi/LC_MESSAGES/kio_applications.mo share/locale/hi/LC_MESSAGES/kio_desktop.mo share/locale/hi/LC_MESSAGES/klipper.mo share/locale/hi/LC_MESSAGES/krdb.mo share/locale/hi/LC_MESSAGES/krunner.mo share/locale/hi/LC_MESSAGES/ksmserver.mo share/locale/hi/LC_MESSAGES/libkicker.mo share/locale/hi/LC_MESSAGES/libkworkspace.mo share/locale/hi/LC_MESSAGES/libnotificationmanager.mo share/locale/hi/LC_MESSAGES/phonon_kde_plugin.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/hi/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/hi/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/hi/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/hi/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/hi/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/hi/LC_MESSAGES/plasma_engine_dict.mo share/locale/hi/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/hi/LC_MESSAGES/plasma_engine_keystate.mo share/locale/hi/LC_MESSAGES/plasma_engine_notifications.mo share/locale/hi/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/hi/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/hi/LC_MESSAGES/plasma_engine_time.mo share/locale/hi/LC_MESSAGES/plasma_engine_weather.mo share/locale/hi/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/hi/LC_MESSAGES/plasma_runner_appstream.mo share/locale/hi/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/hi/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/hi/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/hi/LC_MESSAGES/plasma_runner_kill.mo share/locale/hi/LC_MESSAGES/plasma_runner_locations.mo share/locale/hi/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/hi/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/hi/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/hi/LC_MESSAGES/plasma_runner_services.mo share/locale/hi/LC_MESSAGES/plasma_runner_sessions.mo share/locale/hi/LC_MESSAGES/plasma_runner_shell.mo share/locale/hi/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/hi/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/hi/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/hi/LC_MESSAGES/plasmashell.mo share/locale/hi/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/hi/LC_MESSAGES/soliduiserver.mo share/locale/hne/LC_MESSAGES/kcm_autostart.mo share/locale/hne/LC_MESSAGES/kcm_colors.mo share/locale/hne/LC_MESSAGES/kcm_cursortheme.mo share/locale/hne/LC_MESSAGES/kcm_fonts.mo share/locale/hne/LC_MESSAGES/kcm_icons.mo share/locale/hne/LC_MESSAGES/kcm_style.mo share/locale/hne/LC_MESSAGES/kcminit.mo share/locale/hne/LC_MESSAGES/kfontinst.mo share/locale/hne/LC_MESSAGES/kio_applications.mo share/locale/hne/LC_MESSAGES/krdb.mo share/locale/hne/LC_MESSAGES/ksmserver.mo share/locale/hne/LC_MESSAGES/libkworkspace.mo share/locale/hne/LC_MESSAGES/phonon_kde_plugin.mo share/locale/hne/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/hne/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/hne/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/hne/LC_MESSAGES/plasma_runner_locations.mo share/locale/hne/LC_MESSAGES/plasma_runner_sessions.mo share/locale/hne/LC_MESSAGES/plasma_runner_shell.mo share/locale/hne/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/hne/LC_MESSAGES/soliduiserver.mo share/locale/hr/LC_MESSAGES/freespacenotifier.mo share/locale/hr/LC_MESSAGES/kcm_autostart.mo share/locale/hr/LC_MESSAGES/kcm_colors.mo share/locale/hr/LC_MESSAGES/kcm_cursortheme.mo share/locale/hr/LC_MESSAGES/kcm_desktoptheme.mo share/locale/hr/LC_MESSAGES/kcm_fonts.mo share/locale/hr/LC_MESSAGES/kcm_icons.mo share/locale/hr/LC_MESSAGES/kcm_style.mo share/locale/hr/LC_MESSAGES/kcminit.mo share/locale/hr/LC_MESSAGES/kfontinst.mo share/locale/hr/LC_MESSAGES/kio_applications.mo share/locale/hr/LC_MESSAGES/klipper.mo share/locale/hr/LC_MESSAGES/krdb.mo share/locale/hr/LC_MESSAGES/ksmserver.mo share/locale/hr/LC_MESSAGES/libkworkspace.mo share/locale/hr/LC_MESSAGES/phonon_kde_plugin.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/hr/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/hr/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/hr/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/hr/LC_MESSAGES/plasma_engine_keystate.mo share/locale/hr/LC_MESSAGES/plasma_engine_notifications.mo share/locale/hr/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/hr/LC_MESSAGES/plasma_engine_weather.mo share/locale/hr/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/hr/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/hr/LC_MESSAGES/plasma_runner_kill.mo share/locale/hr/LC_MESSAGES/plasma_runner_locations.mo share/locale/hr/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/hr/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/hr/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/hr/LC_MESSAGES/plasma_runner_services.mo share/locale/hr/LC_MESSAGES/plasma_runner_sessions.mo share/locale/hr/LC_MESSAGES/plasma_runner_shell.mo share/locale/hr/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/hr/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/hr/LC_MESSAGES/soliduiserver.mo share/locale/hsb/LC_MESSAGES/freespacenotifier.mo share/locale/hsb/LC_MESSAGES/kcm_autostart.mo share/locale/hsb/LC_MESSAGES/kcm_colors.mo share/locale/hsb/LC_MESSAGES/kcm_cursortheme.mo share/locale/hsb/LC_MESSAGES/kcm_desktoptheme.mo share/locale/hsb/LC_MESSAGES/kcm_fonts.mo share/locale/hsb/LC_MESSAGES/kcm_icons.mo share/locale/hsb/LC_MESSAGES/kcm_style.mo share/locale/hsb/LC_MESSAGES/kcminit.mo share/locale/hsb/LC_MESSAGES/kfontinst.mo share/locale/hsb/LC_MESSAGES/kio_applications.mo share/locale/hsb/LC_MESSAGES/klipper.mo share/locale/hsb/LC_MESSAGES/krdb.mo share/locale/hsb/LC_MESSAGES/ksmserver.mo share/locale/hsb/LC_MESSAGES/libkicker.mo share/locale/hsb/LC_MESSAGES/libkworkspace.mo share/locale/hsb/LC_MESSAGES/phonon_kde_plugin.mo share/locale/hsb/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/hsb/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/hsb/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/hsb/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/hsb/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/hsb/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/hsb/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/hsb/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/hsb/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/hsb/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/hsb/LC_MESSAGES/plasma_runner_locations.mo share/locale/hsb/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/hsb/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/hsb/LC_MESSAGES/plasma_runner_sessions.mo share/locale/hsb/LC_MESSAGES/plasma_runner_shell.mo share/locale/hsb/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/hsb/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/hsb/LC_MESSAGES/soliduiserver.mo share/locale/hu/LC_MESSAGES/freespacenotifier.mo share/locale/hu/LC_MESSAGES/kcm_autostart.mo share/locale/hu/LC_MESSAGES/kcm_colors.mo share/locale/hu/LC_MESSAGES/kcm_cursortheme.mo share/locale/hu/LC_MESSAGES/kcm_desktoptheme.mo share/locale/hu/LC_MESSAGES/kcm_feedback.mo share/locale/hu/LC_MESSAGES/kcm_fonts.mo share/locale/hu/LC_MESSAGES/kcm_icons.mo share/locale/hu/LC_MESSAGES/kcm_lookandfeel.mo share/locale/hu/LC_MESSAGES/kcm_nightcolor.mo share/locale/hu/LC_MESSAGES/kcm_notifications.mo share/locale/hu/LC_MESSAGES/kcm_regionandlang.mo share/locale/hu/LC_MESSAGES/kcm_soundtheme.mo share/locale/hu/LC_MESSAGES/kcm_style.mo share/locale/hu/LC_MESSAGES/kcm_users.mo share/locale/hu/LC_MESSAGES/kcminit.mo share/locale/hu/LC_MESSAGES/kded_devicenotifications.mo share/locale/hu/LC_MESSAGES/kfontinst.mo share/locale/hu/LC_MESSAGES/kio_applications.mo share/locale/hu/LC_MESSAGES/kio_desktop.mo share/locale/hu/LC_MESSAGES/klipper.mo share/locale/hu/LC_MESSAGES/krdb.mo share/locale/hu/LC_MESSAGES/krunner.mo share/locale/hu/LC_MESSAGES/ksmserver.mo share/locale/hu/LC_MESSAGES/libkicker.mo share/locale/hu/LC_MESSAGES/libkmpris.mo share/locale/hu/LC_MESSAGES/libkworkspace.mo share/locale/hu/LC_MESSAGES/libnotificationmanager.mo share/locale/hu/LC_MESSAGES/phonon_kde_plugin.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.brightness.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/hu/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/hu/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/hu/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/hu/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/hu/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/hu/LC_MESSAGES/plasma_engine_dict.mo share/locale/hu/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/hu/LC_MESSAGES/plasma_engine_keystate.mo share/locale/hu/LC_MESSAGES/plasma_engine_notifications.mo share/locale/hu/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/hu/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/hu/LC_MESSAGES/plasma_engine_time.mo share/locale/hu/LC_MESSAGES/plasma_engine_weather.mo +share/locale/hu/LC_MESSAGES/plasma_interactiveconsole.mo share/locale/hu/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/hu/LC_MESSAGES/plasma_runner_appstream.mo share/locale/hu/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/hu/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/hu/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/hu/LC_MESSAGES/plasma_runner_kill.mo share/locale/hu/LC_MESSAGES/plasma_runner_locations.mo share/locale/hu/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/hu/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/hu/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/hu/LC_MESSAGES/plasma_runner_services.mo share/locale/hu/LC_MESSAGES/plasma_runner_sessions.mo share/locale/hu/LC_MESSAGES/plasma_runner_shell.mo share/locale/hu/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/hu/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/hu/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/hu/LC_MESSAGES/plasmashell.mo share/locale/hu/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/hu/LC_MESSAGES/plasmawindowed.mo share/locale/hu/LC_MESSAGES/session-shortcuts-kded.mo share/locale/hu/LC_MESSAGES/soliduiserver.mo share/locale/hy/LC_MESSAGES/kcminit.mo share/locale/hy/LC_MESSAGES/kfontinst.mo share/locale/hy/LC_MESSAGES/phonon_kde_plugin.mo share/locale/hy/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/hy/LC_MESSAGES/plasma_runner_locations.mo share/locale/ia/LC_MESSAGES/freespacenotifier.mo share/locale/ia/LC_MESSAGES/kcm_autostart.mo share/locale/ia/LC_MESSAGES/kcm_colors.mo share/locale/ia/LC_MESSAGES/kcm_cursortheme.mo share/locale/ia/LC_MESSAGES/kcm_desktoptheme.mo share/locale/ia/LC_MESSAGES/kcm_feedback.mo share/locale/ia/LC_MESSAGES/kcm_fonts.mo share/locale/ia/LC_MESSAGES/kcm_icons.mo share/locale/ia/LC_MESSAGES/kcm_lookandfeel.mo share/locale/ia/LC_MESSAGES/kcm_nightcolor.mo share/locale/ia/LC_MESSAGES/kcm_notifications.mo share/locale/ia/LC_MESSAGES/kcm_regionandlang.mo share/locale/ia/LC_MESSAGES/kcm_soundtheme.mo share/locale/ia/LC_MESSAGES/kcm_style.mo share/locale/ia/LC_MESSAGES/kcm_users.mo share/locale/ia/LC_MESSAGES/kcminit.mo share/locale/ia/LC_MESSAGES/kded_devicenotifications.mo share/locale/ia/LC_MESSAGES/kfontinst.mo share/locale/ia/LC_MESSAGES/kio_applications.mo share/locale/ia/LC_MESSAGES/kio_desktop.mo share/locale/ia/LC_MESSAGES/klipper.mo share/locale/ia/LC_MESSAGES/krdb.mo share/locale/ia/LC_MESSAGES/krunner.mo share/locale/ia/LC_MESSAGES/ksmserver.mo share/locale/ia/LC_MESSAGES/libkicker.mo share/locale/ia/LC_MESSAGES/libkmpris.mo share/locale/ia/LC_MESSAGES/libkworkspace.mo share/locale/ia/LC_MESSAGES/libnotificationmanager.mo share/locale/ia/LC_MESSAGES/phonon_kde_plugin.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.brightness.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/ia/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/ia/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/ia/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/ia/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/ia/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/ia/LC_MESSAGES/plasma_engine_dict.mo share/locale/ia/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/ia/LC_MESSAGES/plasma_engine_keystate.mo share/locale/ia/LC_MESSAGES/plasma_engine_notifications.mo share/locale/ia/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/ia/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/ia/LC_MESSAGES/plasma_engine_time.mo share/locale/ia/LC_MESSAGES/plasma_engine_weather.mo +share/locale/ia/LC_MESSAGES/plasma_interactiveconsole.mo share/locale/ia/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/ia/LC_MESSAGES/plasma_runner_appstream.mo share/locale/ia/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/ia/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/ia/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/ia/LC_MESSAGES/plasma_runner_kill.mo share/locale/ia/LC_MESSAGES/plasma_runner_locations.mo share/locale/ia/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/ia/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/ia/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/ia/LC_MESSAGES/plasma_runner_services.mo share/locale/ia/LC_MESSAGES/plasma_runner_sessions.mo share/locale/ia/LC_MESSAGES/plasma_runner_shell.mo share/locale/ia/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/ia/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/ia/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/ia/LC_MESSAGES/plasmashell.mo share/locale/ia/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/ia/LC_MESSAGES/plasmawindowed.mo share/locale/ia/LC_MESSAGES/session-shortcuts-kded.mo share/locale/ia/LC_MESSAGES/soliduiserver.mo share/locale/id/LC_MESSAGES/freespacenotifier.mo share/locale/id/LC_MESSAGES/kcm_autostart.mo share/locale/id/LC_MESSAGES/kcm_colors.mo share/locale/id/LC_MESSAGES/kcm_cursortheme.mo share/locale/id/LC_MESSAGES/kcm_desktoptheme.mo share/locale/id/LC_MESSAGES/kcm_feedback.mo share/locale/id/LC_MESSAGES/kcm_fonts.mo share/locale/id/LC_MESSAGES/kcm_icons.mo share/locale/id/LC_MESSAGES/kcm_lookandfeel.mo share/locale/id/LC_MESSAGES/kcm_nightcolor.mo share/locale/id/LC_MESSAGES/kcm_notifications.mo share/locale/id/LC_MESSAGES/kcm_style.mo share/locale/id/LC_MESSAGES/kcm_users.mo share/locale/id/LC_MESSAGES/kcminit.mo share/locale/id/LC_MESSAGES/kfontinst.mo share/locale/id/LC_MESSAGES/kio_applications.mo share/locale/id/LC_MESSAGES/kio_desktop.mo share/locale/id/LC_MESSAGES/klipper.mo share/locale/id/LC_MESSAGES/krdb.mo share/locale/id/LC_MESSAGES/krunner.mo share/locale/id/LC_MESSAGES/ksmserver.mo share/locale/id/LC_MESSAGES/libkicker.mo share/locale/id/LC_MESSAGES/libkworkspace.mo share/locale/id/LC_MESSAGES/libnotificationmanager.mo share/locale/id/LC_MESSAGES/phonon_kde_plugin.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/id/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/id/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/id/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/id/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/id/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/id/LC_MESSAGES/plasma_engine_dict.mo share/locale/id/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/id/LC_MESSAGES/plasma_engine_keystate.mo share/locale/id/LC_MESSAGES/plasma_engine_notifications.mo share/locale/id/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/id/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/id/LC_MESSAGES/plasma_engine_time.mo share/locale/id/LC_MESSAGES/plasma_engine_weather.mo share/locale/id/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/id/LC_MESSAGES/plasma_runner_appstream.mo share/locale/id/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/id/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/id/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/id/LC_MESSAGES/plasma_runner_kill.mo share/locale/id/LC_MESSAGES/plasma_runner_locations.mo share/locale/id/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/id/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/id/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/id/LC_MESSAGES/plasma_runner_services.mo share/locale/id/LC_MESSAGES/plasma_runner_sessions.mo share/locale/id/LC_MESSAGES/plasma_runner_shell.mo share/locale/id/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/id/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/id/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/id/LC_MESSAGES/plasmashell.mo share/locale/id/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/id/LC_MESSAGES/soliduiserver.mo share/locale/is/LC_MESSAGES/freespacenotifier.mo share/locale/is/LC_MESSAGES/kcm_autostart.mo share/locale/is/LC_MESSAGES/kcm_colors.mo share/locale/is/LC_MESSAGES/kcm_cursortheme.mo share/locale/is/LC_MESSAGES/kcm_desktoptheme.mo share/locale/is/LC_MESSAGES/kcm_feedback.mo share/locale/is/LC_MESSAGES/kcm_fonts.mo share/locale/is/LC_MESSAGES/kcm_icons.mo share/locale/is/LC_MESSAGES/kcm_lookandfeel.mo share/locale/is/LC_MESSAGES/kcm_nightcolor.mo share/locale/is/LC_MESSAGES/kcm_notifications.mo share/locale/is/LC_MESSAGES/kcm_regionandlang.mo share/locale/is/LC_MESSAGES/kcm_style.mo share/locale/is/LC_MESSAGES/kcm_users.mo share/locale/is/LC_MESSAGES/kcminit.mo share/locale/is/LC_MESSAGES/kfontinst.mo share/locale/is/LC_MESSAGES/kio_applications.mo share/locale/is/LC_MESSAGES/kio_desktop.mo share/locale/is/LC_MESSAGES/klipper.mo share/locale/is/LC_MESSAGES/krdb.mo share/locale/is/LC_MESSAGES/krunner.mo share/locale/is/LC_MESSAGES/ksmserver.mo share/locale/is/LC_MESSAGES/libkicker.mo share/locale/is/LC_MESSAGES/libkworkspace.mo share/locale/is/LC_MESSAGES/libnotificationmanager.mo share/locale/is/LC_MESSAGES/phonon_kde_plugin.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/is/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/is/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/is/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/is/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/is/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/is/LC_MESSAGES/plasma_engine_dict.mo share/locale/is/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/is/LC_MESSAGES/plasma_engine_keystate.mo share/locale/is/LC_MESSAGES/plasma_engine_notifications.mo share/locale/is/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/is/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/is/LC_MESSAGES/plasma_engine_time.mo share/locale/is/LC_MESSAGES/plasma_engine_weather.mo share/locale/is/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/is/LC_MESSAGES/plasma_runner_appstream.mo share/locale/is/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/is/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/is/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/is/LC_MESSAGES/plasma_runner_kill.mo share/locale/is/LC_MESSAGES/plasma_runner_locations.mo share/locale/is/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/is/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/is/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/is/LC_MESSAGES/plasma_runner_services.mo share/locale/is/LC_MESSAGES/plasma_runner_sessions.mo share/locale/is/LC_MESSAGES/plasma_runner_shell.mo share/locale/is/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/is/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/is/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/is/LC_MESSAGES/plasmashell.mo share/locale/is/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/is/LC_MESSAGES/soliduiserver.mo share/locale/it/LC_MESSAGES/freespacenotifier.mo share/locale/it/LC_MESSAGES/kcm_autostart.mo share/locale/it/LC_MESSAGES/kcm_colors.mo share/locale/it/LC_MESSAGES/kcm_cursortheme.mo share/locale/it/LC_MESSAGES/kcm_desktoptheme.mo share/locale/it/LC_MESSAGES/kcm_feedback.mo share/locale/it/LC_MESSAGES/kcm_fonts.mo share/locale/it/LC_MESSAGES/kcm_icons.mo share/locale/it/LC_MESSAGES/kcm_lookandfeel.mo share/locale/it/LC_MESSAGES/kcm_nightcolor.mo share/locale/it/LC_MESSAGES/kcm_notifications.mo share/locale/it/LC_MESSAGES/kcm_regionandlang.mo share/locale/it/LC_MESSAGES/kcm_soundtheme.mo share/locale/it/LC_MESSAGES/kcm_style.mo share/locale/it/LC_MESSAGES/kcm_users.mo share/locale/it/LC_MESSAGES/kcminit.mo share/locale/it/LC_MESSAGES/kded_devicenotifications.mo share/locale/it/LC_MESSAGES/kfontinst.mo share/locale/it/LC_MESSAGES/kio_applications.mo share/locale/it/LC_MESSAGES/kio_desktop.mo share/locale/it/LC_MESSAGES/klipper.mo share/locale/it/LC_MESSAGES/krdb.mo share/locale/it/LC_MESSAGES/krunner.mo share/locale/it/LC_MESSAGES/ksmserver.mo share/locale/it/LC_MESSAGES/libkicker.mo share/locale/it/LC_MESSAGES/libkmpris.mo share/locale/it/LC_MESSAGES/libkworkspace.mo share/locale/it/LC_MESSAGES/libnotificationmanager.mo share/locale/it/LC_MESSAGES/phonon_kde_plugin.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.brightness.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/it/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/it/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/it/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/it/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/it/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/it/LC_MESSAGES/plasma_engine_dict.mo share/locale/it/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/it/LC_MESSAGES/plasma_engine_keystate.mo share/locale/it/LC_MESSAGES/plasma_engine_notifications.mo share/locale/it/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/it/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/it/LC_MESSAGES/plasma_engine_time.mo share/locale/it/LC_MESSAGES/plasma_engine_weather.mo +share/locale/it/LC_MESSAGES/plasma_interactiveconsole.mo share/locale/it/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/it/LC_MESSAGES/plasma_runner_appstream.mo share/locale/it/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/it/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/it/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/it/LC_MESSAGES/plasma_runner_kill.mo share/locale/it/LC_MESSAGES/plasma_runner_locations.mo share/locale/it/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/it/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/it/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/it/LC_MESSAGES/plasma_runner_services.mo share/locale/it/LC_MESSAGES/plasma_runner_sessions.mo share/locale/it/LC_MESSAGES/plasma_runner_shell.mo share/locale/it/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/it/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/it/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/it/LC_MESSAGES/plasmashell.mo share/locale/it/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/it/LC_MESSAGES/plasmawindowed.mo share/locale/it/LC_MESSAGES/session-shortcuts-kded.mo share/locale/it/LC_MESSAGES/soliduiserver.mo share/locale/ja/LC_MESSAGES/freespacenotifier.mo share/locale/ja/LC_MESSAGES/kcm_autostart.mo share/locale/ja/LC_MESSAGES/kcm_colors.mo share/locale/ja/LC_MESSAGES/kcm_cursortheme.mo share/locale/ja/LC_MESSAGES/kcm_desktoptheme.mo share/locale/ja/LC_MESSAGES/kcm_feedback.mo share/locale/ja/LC_MESSAGES/kcm_fonts.mo share/locale/ja/LC_MESSAGES/kcm_icons.mo share/locale/ja/LC_MESSAGES/kcm_lookandfeel.mo share/locale/ja/LC_MESSAGES/kcm_nightcolor.mo share/locale/ja/LC_MESSAGES/kcm_notifications.mo share/locale/ja/LC_MESSAGES/kcm_regionandlang.mo share/locale/ja/LC_MESSAGES/kcm_soundtheme.mo share/locale/ja/LC_MESSAGES/kcm_style.mo share/locale/ja/LC_MESSAGES/kcm_users.mo share/locale/ja/LC_MESSAGES/kcminit.mo share/locale/ja/LC_MESSAGES/kded_devicenotifications.mo share/locale/ja/LC_MESSAGES/kfontinst.mo share/locale/ja/LC_MESSAGES/kio_applications.mo share/locale/ja/LC_MESSAGES/kio_desktop.mo share/locale/ja/LC_MESSAGES/klipper.mo share/locale/ja/LC_MESSAGES/krdb.mo share/locale/ja/LC_MESSAGES/krunner.mo share/locale/ja/LC_MESSAGES/ksmserver.mo share/locale/ja/LC_MESSAGES/libkicker.mo share/locale/ja/LC_MESSAGES/libkmpris.mo share/locale/ja/LC_MESSAGES/libkworkspace.mo share/locale/ja/LC_MESSAGES/libnotificationmanager.mo share/locale/ja/LC_MESSAGES/phonon_kde_plugin.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.brightness.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/ja/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/ja/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/ja/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/ja/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/ja/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/ja/LC_MESSAGES/plasma_engine_dict.mo share/locale/ja/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/ja/LC_MESSAGES/plasma_engine_keystate.mo share/locale/ja/LC_MESSAGES/plasma_engine_notifications.mo share/locale/ja/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/ja/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/ja/LC_MESSAGES/plasma_engine_time.mo share/locale/ja/LC_MESSAGES/plasma_engine_weather.mo share/locale/ja/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/ja/LC_MESSAGES/plasma_runner_appstream.mo share/locale/ja/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/ja/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/ja/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/ja/LC_MESSAGES/plasma_runner_kill.mo share/locale/ja/LC_MESSAGES/plasma_runner_locations.mo share/locale/ja/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/ja/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/ja/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/ja/LC_MESSAGES/plasma_runner_services.mo share/locale/ja/LC_MESSAGES/plasma_runner_sessions.mo share/locale/ja/LC_MESSAGES/plasma_runner_shell.mo share/locale/ja/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/ja/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/ja/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/ja/LC_MESSAGES/plasmashell.mo share/locale/ja/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/ja/LC_MESSAGES/plasmawindowed.mo share/locale/ja/LC_MESSAGES/session-shortcuts-kded.mo share/locale/ja/LC_MESSAGES/soliduiserver.mo share/locale/ka/LC_MESSAGES/freespacenotifier.mo share/locale/ka/LC_MESSAGES/kcm_autostart.mo share/locale/ka/LC_MESSAGES/kcm_colors.mo share/locale/ka/LC_MESSAGES/kcm_cursortheme.mo share/locale/ka/LC_MESSAGES/kcm_desktoptheme.mo share/locale/ka/LC_MESSAGES/kcm_feedback.mo share/locale/ka/LC_MESSAGES/kcm_fonts.mo share/locale/ka/LC_MESSAGES/kcm_icons.mo share/locale/ka/LC_MESSAGES/kcm_lookandfeel.mo share/locale/ka/LC_MESSAGES/kcm_nightcolor.mo share/locale/ka/LC_MESSAGES/kcm_notifications.mo share/locale/ka/LC_MESSAGES/kcm_regionandlang.mo share/locale/ka/LC_MESSAGES/kcm_soundtheme.mo share/locale/ka/LC_MESSAGES/kcm_style.mo share/locale/ka/LC_MESSAGES/kcm_users.mo share/locale/ka/LC_MESSAGES/kcminit.mo share/locale/ka/LC_MESSAGES/kded_devicenotifications.mo share/locale/ka/LC_MESSAGES/kfontinst.mo share/locale/ka/LC_MESSAGES/kio_applications.mo share/locale/ka/LC_MESSAGES/kio_desktop.mo share/locale/ka/LC_MESSAGES/klipper.mo share/locale/ka/LC_MESSAGES/krdb.mo share/locale/ka/LC_MESSAGES/krunner.mo share/locale/ka/LC_MESSAGES/ksmserver.mo share/locale/ka/LC_MESSAGES/libkicker.mo share/locale/ka/LC_MESSAGES/libkmpris.mo share/locale/ka/LC_MESSAGES/libkworkspace.mo share/locale/ka/LC_MESSAGES/libnotificationmanager.mo share/locale/ka/LC_MESSAGES/phonon_kde_plugin.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.brightness.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/ka/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/ka/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/ka/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/ka/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/ka/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/ka/LC_MESSAGES/plasma_engine_dict.mo share/locale/ka/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/ka/LC_MESSAGES/plasma_engine_keystate.mo share/locale/ka/LC_MESSAGES/plasma_engine_notifications.mo share/locale/ka/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/ka/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/ka/LC_MESSAGES/plasma_engine_time.mo share/locale/ka/LC_MESSAGES/plasma_engine_weather.mo +share/locale/ka/LC_MESSAGES/plasma_interactiveconsole.mo share/locale/ka/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/ka/LC_MESSAGES/plasma_runner_appstream.mo share/locale/ka/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/ka/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/ka/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/ka/LC_MESSAGES/plasma_runner_kill.mo share/locale/ka/LC_MESSAGES/plasma_runner_locations.mo share/locale/ka/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/ka/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/ka/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/ka/LC_MESSAGES/plasma_runner_services.mo share/locale/ka/LC_MESSAGES/plasma_runner_sessions.mo share/locale/ka/LC_MESSAGES/plasma_runner_shell.mo share/locale/ka/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/ka/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/ka/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/ka/LC_MESSAGES/plasmashell.mo share/locale/ka/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/ka/LC_MESSAGES/plasmawindowed.mo share/locale/ka/LC_MESSAGES/session-shortcuts-kded.mo share/locale/ka/LC_MESSAGES/soliduiserver.mo share/locale/kk/LC_MESSAGES/freespacenotifier.mo share/locale/kk/LC_MESSAGES/kcm_autostart.mo share/locale/kk/LC_MESSAGES/kcm_colors.mo share/locale/kk/LC_MESSAGES/kcm_cursortheme.mo share/locale/kk/LC_MESSAGES/kcm_desktoptheme.mo share/locale/kk/LC_MESSAGES/kcm_fonts.mo share/locale/kk/LC_MESSAGES/kcm_icons.mo share/locale/kk/LC_MESSAGES/kcm_style.mo share/locale/kk/LC_MESSAGES/kcminit.mo share/locale/kk/LC_MESSAGES/kfontinst.mo share/locale/kk/LC_MESSAGES/kio_applications.mo share/locale/kk/LC_MESSAGES/klipper.mo share/locale/kk/LC_MESSAGES/krdb.mo share/locale/kk/LC_MESSAGES/ksmserver.mo share/locale/kk/LC_MESSAGES/libkworkspace.mo share/locale/kk/LC_MESSAGES/phonon_kde_plugin.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/kk/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/kk/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/kk/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/kk/LC_MESSAGES/plasma_engine_keystate.mo share/locale/kk/LC_MESSAGES/plasma_engine_notifications.mo share/locale/kk/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/kk/LC_MESSAGES/plasma_engine_weather.mo share/locale/kk/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/kk/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/kk/LC_MESSAGES/plasma_runner_kill.mo share/locale/kk/LC_MESSAGES/plasma_runner_locations.mo share/locale/kk/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/kk/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/kk/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/kk/LC_MESSAGES/plasma_runner_services.mo share/locale/kk/LC_MESSAGES/plasma_runner_sessions.mo share/locale/kk/LC_MESSAGES/plasma_runner_shell.mo share/locale/kk/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/kk/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/kk/LC_MESSAGES/soliduiserver.mo share/locale/km/LC_MESSAGES/freespacenotifier.mo share/locale/km/LC_MESSAGES/kcm_autostart.mo share/locale/km/LC_MESSAGES/kcm_colors.mo share/locale/km/LC_MESSAGES/kcm_cursortheme.mo share/locale/km/LC_MESSAGES/kcm_desktoptheme.mo share/locale/km/LC_MESSAGES/kcm_fonts.mo share/locale/km/LC_MESSAGES/kcm_icons.mo share/locale/km/LC_MESSAGES/kcm_style.mo share/locale/km/LC_MESSAGES/kcminit.mo share/locale/km/LC_MESSAGES/kfontinst.mo share/locale/km/LC_MESSAGES/kio_applications.mo share/locale/km/LC_MESSAGES/klipper.mo share/locale/km/LC_MESSAGES/krdb.mo share/locale/km/LC_MESSAGES/ksmserver.mo share/locale/km/LC_MESSAGES/libkworkspace.mo share/locale/km/LC_MESSAGES/phonon_kde_plugin.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/km/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/km/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/km/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/km/LC_MESSAGES/plasma_engine_keystate.mo share/locale/km/LC_MESSAGES/plasma_engine_notifications.mo share/locale/km/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/km/LC_MESSAGES/plasma_engine_weather.mo share/locale/km/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/km/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/km/LC_MESSAGES/plasma_runner_kill.mo share/locale/km/LC_MESSAGES/plasma_runner_locations.mo share/locale/km/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/km/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/km/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/km/LC_MESSAGES/plasma_runner_services.mo share/locale/km/LC_MESSAGES/plasma_runner_sessions.mo share/locale/km/LC_MESSAGES/plasma_runner_shell.mo share/locale/km/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/km/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/km/LC_MESSAGES/soliduiserver.mo share/locale/kn/LC_MESSAGES/freespacenotifier.mo share/locale/kn/LC_MESSAGES/kcm_autostart.mo share/locale/kn/LC_MESSAGES/kcm_colors.mo share/locale/kn/LC_MESSAGES/kcm_cursortheme.mo share/locale/kn/LC_MESSAGES/kcm_desktoptheme.mo share/locale/kn/LC_MESSAGES/kcm_fonts.mo share/locale/kn/LC_MESSAGES/kcm_icons.mo share/locale/kn/LC_MESSAGES/kcm_style.mo share/locale/kn/LC_MESSAGES/kcminit.mo share/locale/kn/LC_MESSAGES/kfontinst.mo share/locale/kn/LC_MESSAGES/kio_applications.mo share/locale/kn/LC_MESSAGES/klipper.mo share/locale/kn/LC_MESSAGES/krdb.mo share/locale/kn/LC_MESSAGES/ksmserver.mo share/locale/kn/LC_MESSAGES/libkworkspace.mo share/locale/kn/LC_MESSAGES/phonon_kde_plugin.mo share/locale/kn/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/kn/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/kn/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/kn/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/kn/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/kn/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/kn/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/kn/LC_MESSAGES/plasma_engine_keystate.mo share/locale/kn/LC_MESSAGES/plasma_engine_notifications.mo share/locale/kn/LC_MESSAGES/plasma_engine_weather.mo share/locale/kn/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/kn/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/kn/LC_MESSAGES/plasma_runner_kill.mo share/locale/kn/LC_MESSAGES/plasma_runner_locations.mo share/locale/kn/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/kn/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/kn/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/kn/LC_MESSAGES/plasma_runner_services.mo share/locale/kn/LC_MESSAGES/plasma_runner_sessions.mo share/locale/kn/LC_MESSAGES/plasma_runner_shell.mo share/locale/kn/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/kn/LC_MESSAGES/soliduiserver.mo share/locale/ko/LC_MESSAGES/freespacenotifier.mo share/locale/ko/LC_MESSAGES/kcm_autostart.mo share/locale/ko/LC_MESSAGES/kcm_colors.mo share/locale/ko/LC_MESSAGES/kcm_cursortheme.mo share/locale/ko/LC_MESSAGES/kcm_desktoptheme.mo share/locale/ko/LC_MESSAGES/kcm_feedback.mo share/locale/ko/LC_MESSAGES/kcm_fonts.mo share/locale/ko/LC_MESSAGES/kcm_icons.mo share/locale/ko/LC_MESSAGES/kcm_lookandfeel.mo share/locale/ko/LC_MESSAGES/kcm_nightcolor.mo share/locale/ko/LC_MESSAGES/kcm_notifications.mo share/locale/ko/LC_MESSAGES/kcm_regionandlang.mo share/locale/ko/LC_MESSAGES/kcm_soundtheme.mo share/locale/ko/LC_MESSAGES/kcm_style.mo share/locale/ko/LC_MESSAGES/kcm_users.mo share/locale/ko/LC_MESSAGES/kcminit.mo share/locale/ko/LC_MESSAGES/kded_devicenotifications.mo share/locale/ko/LC_MESSAGES/kfontinst.mo share/locale/ko/LC_MESSAGES/kio_applications.mo share/locale/ko/LC_MESSAGES/kio_desktop.mo share/locale/ko/LC_MESSAGES/klipper.mo share/locale/ko/LC_MESSAGES/krdb.mo share/locale/ko/LC_MESSAGES/krunner.mo share/locale/ko/LC_MESSAGES/ksmserver.mo share/locale/ko/LC_MESSAGES/libkicker.mo share/locale/ko/LC_MESSAGES/libkmpris.mo share/locale/ko/LC_MESSAGES/libkworkspace.mo share/locale/ko/LC_MESSAGES/libnotificationmanager.mo share/locale/ko/LC_MESSAGES/phonon_kde_plugin.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.brightness.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/ko/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/ko/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/ko/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/ko/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/ko/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/ko/LC_MESSAGES/plasma_engine_dict.mo share/locale/ko/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/ko/LC_MESSAGES/plasma_engine_keystate.mo share/locale/ko/LC_MESSAGES/plasma_engine_notifications.mo share/locale/ko/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/ko/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/ko/LC_MESSAGES/plasma_engine_time.mo share/locale/ko/LC_MESSAGES/plasma_engine_weather.mo share/locale/ko/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/ko/LC_MESSAGES/plasma_runner_appstream.mo share/locale/ko/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/ko/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/ko/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/ko/LC_MESSAGES/plasma_runner_kill.mo share/locale/ko/LC_MESSAGES/plasma_runner_locations.mo share/locale/ko/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/ko/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/ko/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/ko/LC_MESSAGES/plasma_runner_services.mo share/locale/ko/LC_MESSAGES/plasma_runner_sessions.mo share/locale/ko/LC_MESSAGES/plasma_runner_shell.mo share/locale/ko/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/ko/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/ko/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/ko/LC_MESSAGES/plasmashell.mo share/locale/ko/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/ko/LC_MESSAGES/plasmawindowed.mo share/locale/ko/LC_MESSAGES/session-shortcuts-kded.mo share/locale/ko/LC_MESSAGES/soliduiserver.mo share/locale/ku/LC_MESSAGES/kcm_autostart.mo share/locale/ku/LC_MESSAGES/kcm_colors.mo share/locale/ku/LC_MESSAGES/kcm_cursortheme.mo share/locale/ku/LC_MESSAGES/kcm_desktoptheme.mo share/locale/ku/LC_MESSAGES/kcm_fonts.mo share/locale/ku/LC_MESSAGES/kcm_icons.mo share/locale/ku/LC_MESSAGES/kcm_style.mo share/locale/ku/LC_MESSAGES/kcminit.mo share/locale/ku/LC_MESSAGES/kfontinst.mo share/locale/ku/LC_MESSAGES/kio_applications.mo share/locale/ku/LC_MESSAGES/klipper.mo share/locale/ku/LC_MESSAGES/krdb.mo share/locale/ku/LC_MESSAGES/ksmserver.mo share/locale/ku/LC_MESSAGES/libkworkspace.mo share/locale/ku/LC_MESSAGES/phonon_kde_plugin.mo share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/ku/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/ku/LC_MESSAGES/plasma_runner_locations.mo share/locale/ku/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/ku/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/ku/LC_MESSAGES/plasma_runner_sessions.mo share/locale/ku/LC_MESSAGES/plasma_runner_shell.mo share/locale/ku/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/ku/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/ku/LC_MESSAGES/soliduiserver.mo share/locale/lb/LC_MESSAGES/kio_applications.mo share/locale/lt/LC_MESSAGES/freespacenotifier.mo share/locale/lt/LC_MESSAGES/kcm_autostart.mo share/locale/lt/LC_MESSAGES/kcm_colors.mo share/locale/lt/LC_MESSAGES/kcm_cursortheme.mo share/locale/lt/LC_MESSAGES/kcm_desktoptheme.mo share/locale/lt/LC_MESSAGES/kcm_feedback.mo share/locale/lt/LC_MESSAGES/kcm_fonts.mo share/locale/lt/LC_MESSAGES/kcm_icons.mo share/locale/lt/LC_MESSAGES/kcm_lookandfeel.mo share/locale/lt/LC_MESSAGES/kcm_nightcolor.mo share/locale/lt/LC_MESSAGES/kcm_notifications.mo share/locale/lt/LC_MESSAGES/kcm_regionandlang.mo share/locale/lt/LC_MESSAGES/kcm_style.mo share/locale/lt/LC_MESSAGES/kcm_users.mo share/locale/lt/LC_MESSAGES/kcminit.mo share/locale/lt/LC_MESSAGES/kfontinst.mo share/locale/lt/LC_MESSAGES/kio_applications.mo share/locale/lt/LC_MESSAGES/kio_desktop.mo share/locale/lt/LC_MESSAGES/klipper.mo share/locale/lt/LC_MESSAGES/krdb.mo share/locale/lt/LC_MESSAGES/krunner.mo share/locale/lt/LC_MESSAGES/ksmserver.mo share/locale/lt/LC_MESSAGES/libkicker.mo share/locale/lt/LC_MESSAGES/libkworkspace.mo share/locale/lt/LC_MESSAGES/libnotificationmanager.mo share/locale/lt/LC_MESSAGES/phonon_kde_plugin.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/lt/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/lt/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/lt/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/lt/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/lt/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/lt/LC_MESSAGES/plasma_engine_dict.mo share/locale/lt/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/lt/LC_MESSAGES/plasma_engine_keystate.mo share/locale/lt/LC_MESSAGES/plasma_engine_notifications.mo share/locale/lt/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/lt/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/lt/LC_MESSAGES/plasma_engine_time.mo share/locale/lt/LC_MESSAGES/plasma_engine_weather.mo share/locale/lt/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/lt/LC_MESSAGES/plasma_runner_appstream.mo share/locale/lt/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/lt/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/lt/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/lt/LC_MESSAGES/plasma_runner_kill.mo share/locale/lt/LC_MESSAGES/plasma_runner_locations.mo share/locale/lt/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/lt/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/lt/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/lt/LC_MESSAGES/plasma_runner_services.mo share/locale/lt/LC_MESSAGES/plasma_runner_sessions.mo share/locale/lt/LC_MESSAGES/plasma_runner_shell.mo share/locale/lt/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/lt/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/lt/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/lt/LC_MESSAGES/plasmashell.mo share/locale/lt/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/lt/LC_MESSAGES/soliduiserver.mo share/locale/lv/LC_MESSAGES/freespacenotifier.mo share/locale/lv/LC_MESSAGES/kcm_autostart.mo share/locale/lv/LC_MESSAGES/kcm_colors.mo share/locale/lv/LC_MESSAGES/kcm_cursortheme.mo share/locale/lv/LC_MESSAGES/kcm_desktoptheme.mo share/locale/lv/LC_MESSAGES/kcm_fonts.mo share/locale/lv/LC_MESSAGES/kcm_icons.mo share/locale/lv/LC_MESSAGES/kcm_style.mo share/locale/lv/LC_MESSAGES/kcminit.mo share/locale/lv/LC_MESSAGES/kfontinst.mo share/locale/lv/LC_MESSAGES/kio_applications.mo share/locale/lv/LC_MESSAGES/kio_desktop.mo share/locale/lv/LC_MESSAGES/klipper.mo share/locale/lv/LC_MESSAGES/krdb.mo share/locale/lv/LC_MESSAGES/ksmserver.mo share/locale/lv/LC_MESSAGES/libkicker.mo share/locale/lv/LC_MESSAGES/libkworkspace.mo share/locale/lv/LC_MESSAGES/libnotificationmanager.mo share/locale/lv/LC_MESSAGES/phonon_kde_plugin.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.brightness.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/lv/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/lv/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/lv/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/lv/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/lv/LC_MESSAGES/plasma_engine_keystate.mo share/locale/lv/LC_MESSAGES/plasma_engine_notifications.mo share/locale/lv/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/lv/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/lv/LC_MESSAGES/plasma_engine_weather.mo share/locale/lv/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/lv/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/lv/LC_MESSAGES/plasma_runner_kill.mo share/locale/lv/LC_MESSAGES/plasma_runner_locations.mo share/locale/lv/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/lv/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/lv/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/lv/LC_MESSAGES/plasma_runner_services.mo share/locale/lv/LC_MESSAGES/plasma_runner_sessions.mo share/locale/lv/LC_MESSAGES/plasma_runner_shell.mo share/locale/lv/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/lv/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/lv/LC_MESSAGES/plasmashell.mo share/locale/lv/LC_MESSAGES/soliduiserver.mo share/locale/mai/LC_MESSAGES/freespacenotifier.mo share/locale/mai/LC_MESSAGES/kcm_autostart.mo share/locale/mai/LC_MESSAGES/kcm_colors.mo share/locale/mai/LC_MESSAGES/kcm_cursortheme.mo share/locale/mai/LC_MESSAGES/kcm_desktoptheme.mo share/locale/mai/LC_MESSAGES/kcm_fonts.mo share/locale/mai/LC_MESSAGES/kcm_icons.mo share/locale/mai/LC_MESSAGES/kcm_style.mo share/locale/mai/LC_MESSAGES/kcminit.mo share/locale/mai/LC_MESSAGES/kfontinst.mo share/locale/mai/LC_MESSAGES/kio_applications.mo share/locale/mai/LC_MESSAGES/klipper.mo share/locale/mai/LC_MESSAGES/krdb.mo share/locale/mai/LC_MESSAGES/ksmserver.mo share/locale/mai/LC_MESSAGES/libkworkspace.mo share/locale/mai/LC_MESSAGES/phonon_kde_plugin.mo share/locale/mai/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/mai/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/mai/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/mai/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/mai/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/mai/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/mai/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/mai/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/mai/LC_MESSAGES/plasma_engine_keystate.mo share/locale/mai/LC_MESSAGES/plasma_engine_notifications.mo share/locale/mai/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/mai/LC_MESSAGES/plasma_engine_weather.mo share/locale/mai/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/mai/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/mai/LC_MESSAGES/plasma_runner_kill.mo share/locale/mai/LC_MESSAGES/plasma_runner_locations.mo share/locale/mai/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/mai/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/mai/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/mai/LC_MESSAGES/plasma_runner_services.mo share/locale/mai/LC_MESSAGES/plasma_runner_sessions.mo share/locale/mai/LC_MESSAGES/plasma_runner_shell.mo share/locale/mai/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/mai/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/mai/LC_MESSAGES/soliduiserver.mo share/locale/mk/LC_MESSAGES/kcm_autostart.mo share/locale/mk/LC_MESSAGES/kcm_colors.mo share/locale/mk/LC_MESSAGES/kcm_cursortheme.mo share/locale/mk/LC_MESSAGES/kcm_desktoptheme.mo share/locale/mk/LC_MESSAGES/kcm_fonts.mo share/locale/mk/LC_MESSAGES/kcm_icons.mo share/locale/mk/LC_MESSAGES/kcm_style.mo share/locale/mk/LC_MESSAGES/kcminit.mo share/locale/mk/LC_MESSAGES/kfontinst.mo share/locale/mk/LC_MESSAGES/kio_applications.mo share/locale/mk/LC_MESSAGES/klipper.mo share/locale/mk/LC_MESSAGES/krdb.mo share/locale/mk/LC_MESSAGES/ksmserver.mo share/locale/mk/LC_MESSAGES/libkworkspace.mo share/locale/mk/LC_MESSAGES/phonon_kde_plugin.mo share/locale/mk/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/mk/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/mk/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/mk/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/mk/LC_MESSAGES/plasma_runner_locations.mo share/locale/mk/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/mk/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/mk/LC_MESSAGES/plasma_runner_sessions.mo share/locale/mk/LC_MESSAGES/plasma_runner_shell.mo share/locale/mk/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/mk/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/mk/LC_MESSAGES/soliduiserver.mo share/locale/ml/LC_MESSAGES/freespacenotifier.mo share/locale/ml/LC_MESSAGES/kcm_autostart.mo share/locale/ml/LC_MESSAGES/kcm_colors.mo share/locale/ml/LC_MESSAGES/kcm_cursortheme.mo share/locale/ml/LC_MESSAGES/kcm_desktoptheme.mo share/locale/ml/LC_MESSAGES/kcm_feedback.mo share/locale/ml/LC_MESSAGES/kcm_fonts.mo share/locale/ml/LC_MESSAGES/kcm_icons.mo share/locale/ml/LC_MESSAGES/kcm_lookandfeel.mo share/locale/ml/LC_MESSAGES/kcm_nightcolor.mo share/locale/ml/LC_MESSAGES/kcm_notifications.mo share/locale/ml/LC_MESSAGES/kcm_style.mo share/locale/ml/LC_MESSAGES/kcminit.mo share/locale/ml/LC_MESSAGES/kfontinst.mo share/locale/ml/LC_MESSAGES/kio_applications.mo share/locale/ml/LC_MESSAGES/kio_desktop.mo share/locale/ml/LC_MESSAGES/klipper.mo share/locale/ml/LC_MESSAGES/krdb.mo share/locale/ml/LC_MESSAGES/krunner.mo share/locale/ml/LC_MESSAGES/ksmserver.mo share/locale/ml/LC_MESSAGES/libkicker.mo share/locale/ml/LC_MESSAGES/libkworkspace.mo share/locale/ml/LC_MESSAGES/libnotificationmanager.mo share/locale/ml/LC_MESSAGES/phonon_kde_plugin.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/ml/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/ml/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/ml/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/ml/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/ml/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/ml/LC_MESSAGES/plasma_engine_dict.mo share/locale/ml/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/ml/LC_MESSAGES/plasma_engine_keystate.mo share/locale/ml/LC_MESSAGES/plasma_engine_notifications.mo share/locale/ml/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/ml/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/ml/LC_MESSAGES/plasma_engine_time.mo share/locale/ml/LC_MESSAGES/plasma_engine_weather.mo share/locale/ml/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/ml/LC_MESSAGES/plasma_runner_appstream.mo share/locale/ml/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/ml/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/ml/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/ml/LC_MESSAGES/plasma_runner_kill.mo share/locale/ml/LC_MESSAGES/plasma_runner_locations.mo share/locale/ml/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/ml/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/ml/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/ml/LC_MESSAGES/plasma_runner_services.mo share/locale/ml/LC_MESSAGES/plasma_runner_sessions.mo share/locale/ml/LC_MESSAGES/plasma_runner_shell.mo share/locale/ml/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/ml/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/ml/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/ml/LC_MESSAGES/plasmashell.mo share/locale/ml/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/ml/LC_MESSAGES/soliduiserver.mo share/locale/mr/LC_MESSAGES/freespacenotifier.mo share/locale/mr/LC_MESSAGES/kcm_autostart.mo share/locale/mr/LC_MESSAGES/kcm_colors.mo share/locale/mr/LC_MESSAGES/kcm_cursortheme.mo share/locale/mr/LC_MESSAGES/kcm_desktoptheme.mo share/locale/mr/LC_MESSAGES/kcm_fonts.mo share/locale/mr/LC_MESSAGES/kcm_icons.mo share/locale/mr/LC_MESSAGES/kcm_style.mo share/locale/mr/LC_MESSAGES/kcminit.mo share/locale/mr/LC_MESSAGES/kfontinst.mo share/locale/mr/LC_MESSAGES/kio_applications.mo share/locale/mr/LC_MESSAGES/klipper.mo share/locale/mr/LC_MESSAGES/krdb.mo share/locale/mr/LC_MESSAGES/ksmserver.mo share/locale/mr/LC_MESSAGES/libkicker.mo share/locale/mr/LC_MESSAGES/libkworkspace.mo share/locale/mr/LC_MESSAGES/phonon_kde_plugin.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/mr/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/mr/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/mr/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/mr/LC_MESSAGES/plasma_engine_keystate.mo share/locale/mr/LC_MESSAGES/plasma_engine_notifications.mo share/locale/mr/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/mr/LC_MESSAGES/plasma_engine_weather.mo share/locale/mr/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/mr/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/mr/LC_MESSAGES/plasma_runner_kill.mo share/locale/mr/LC_MESSAGES/plasma_runner_locations.mo share/locale/mr/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/mr/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/mr/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/mr/LC_MESSAGES/plasma_runner_services.mo share/locale/mr/LC_MESSAGES/plasma_runner_sessions.mo share/locale/mr/LC_MESSAGES/plasma_runner_shell.mo share/locale/mr/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/mr/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/mr/LC_MESSAGES/soliduiserver.mo share/locale/ms/LC_MESSAGES/freespacenotifier.mo share/locale/ms/LC_MESSAGES/kcm_autostart.mo share/locale/ms/LC_MESSAGES/kcm_colors.mo share/locale/ms/LC_MESSAGES/kcm_cursortheme.mo share/locale/ms/LC_MESSAGES/kcm_desktoptheme.mo share/locale/ms/LC_MESSAGES/kcm_fonts.mo share/locale/ms/LC_MESSAGES/kcm_icons.mo share/locale/ms/LC_MESSAGES/kcm_style.mo share/locale/ms/LC_MESSAGES/kcminit.mo share/locale/ms/LC_MESSAGES/kfontinst.mo share/locale/ms/LC_MESSAGES/kio_applications.mo share/locale/ms/LC_MESSAGES/klipper.mo share/locale/ms/LC_MESSAGES/krdb.mo share/locale/ms/LC_MESSAGES/ksmserver.mo share/locale/ms/LC_MESSAGES/libkworkspace.mo share/locale/ms/LC_MESSAGES/phonon_kde_plugin.mo share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/ms/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/ms/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/ms/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/ms/LC_MESSAGES/plasma_engine_keystate.mo share/locale/ms/LC_MESSAGES/plasma_engine_notifications.mo share/locale/ms/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/ms/LC_MESSAGES/plasma_engine_weather.mo share/locale/ms/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/ms/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/ms/LC_MESSAGES/plasma_runner_kill.mo share/locale/ms/LC_MESSAGES/plasma_runner_locations.mo share/locale/ms/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/ms/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/ms/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/ms/LC_MESSAGES/plasma_runner_services.mo share/locale/ms/LC_MESSAGES/plasma_runner_sessions.mo share/locale/ms/LC_MESSAGES/plasma_runner_shell.mo share/locale/ms/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/ms/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/ms/LC_MESSAGES/soliduiserver.mo share/locale/nb/LC_MESSAGES/freespacenotifier.mo share/locale/nb/LC_MESSAGES/kcm_autostart.mo share/locale/nb/LC_MESSAGES/kcm_colors.mo share/locale/nb/LC_MESSAGES/kcm_cursortheme.mo share/locale/nb/LC_MESSAGES/kcm_desktoptheme.mo share/locale/nb/LC_MESSAGES/kcm_fonts.mo share/locale/nb/LC_MESSAGES/kcm_icons.mo share/locale/nb/LC_MESSAGES/kcm_lookandfeel.mo share/locale/nb/LC_MESSAGES/kcm_style.mo share/locale/nb/LC_MESSAGES/kcminit.mo share/locale/nb/LC_MESSAGES/kfontinst.mo share/locale/nb/LC_MESSAGES/kio_applications.mo share/locale/nb/LC_MESSAGES/kio_desktop.mo share/locale/nb/LC_MESSAGES/klipper.mo share/locale/nb/LC_MESSAGES/krdb.mo share/locale/nb/LC_MESSAGES/krunner.mo share/locale/nb/LC_MESSAGES/ksmserver.mo share/locale/nb/LC_MESSAGES/libkicker.mo share/locale/nb/LC_MESSAGES/libkworkspace.mo share/locale/nb/LC_MESSAGES/phonon_kde_plugin.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/nb/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/nb/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/nb/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/nb/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/nb/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/nb/LC_MESSAGES/plasma_engine_dict.mo share/locale/nb/LC_MESSAGES/plasma_engine_keystate.mo share/locale/nb/LC_MESSAGES/plasma_engine_notifications.mo share/locale/nb/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/nb/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/nb/LC_MESSAGES/plasma_engine_time.mo share/locale/nb/LC_MESSAGES/plasma_engine_weather.mo share/locale/nb/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/nb/LC_MESSAGES/plasma_runner_appstream.mo share/locale/nb/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/nb/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/nb/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/nb/LC_MESSAGES/plasma_runner_kill.mo share/locale/nb/LC_MESSAGES/plasma_runner_locations.mo share/locale/nb/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/nb/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/nb/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/nb/LC_MESSAGES/plasma_runner_services.mo share/locale/nb/LC_MESSAGES/plasma_runner_sessions.mo share/locale/nb/LC_MESSAGES/plasma_runner_shell.mo share/locale/nb/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/nb/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/nb/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/nb/LC_MESSAGES/plasmashell.mo share/locale/nb/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/nb/LC_MESSAGES/soliduiserver.mo share/locale/nds/LC_MESSAGES/freespacenotifier.mo share/locale/nds/LC_MESSAGES/kcm_autostart.mo share/locale/nds/LC_MESSAGES/kcm_colors.mo share/locale/nds/LC_MESSAGES/kcm_cursortheme.mo share/locale/nds/LC_MESSAGES/kcm_desktoptheme.mo share/locale/nds/LC_MESSAGES/kcm_fonts.mo share/locale/nds/LC_MESSAGES/kcm_icons.mo share/locale/nds/LC_MESSAGES/kcm_lookandfeel.mo share/locale/nds/LC_MESSAGES/kcm_style.mo share/locale/nds/LC_MESSAGES/kcminit.mo share/locale/nds/LC_MESSAGES/kfontinst.mo share/locale/nds/LC_MESSAGES/kio_applications.mo share/locale/nds/LC_MESSAGES/klipper.mo share/locale/nds/LC_MESSAGES/krdb.mo share/locale/nds/LC_MESSAGES/krunner.mo share/locale/nds/LC_MESSAGES/ksmserver.mo share/locale/nds/LC_MESSAGES/libkicker.mo share/locale/nds/LC_MESSAGES/libkworkspace.mo share/locale/nds/LC_MESSAGES/phonon_kde_plugin.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/nds/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/nds/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/nds/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/nds/LC_MESSAGES/plasma_engine_keystate.mo share/locale/nds/LC_MESSAGES/plasma_engine_notifications.mo share/locale/nds/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/nds/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/nds/LC_MESSAGES/plasma_engine_time.mo share/locale/nds/LC_MESSAGES/plasma_engine_weather.mo share/locale/nds/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/nds/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/nds/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/nds/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/nds/LC_MESSAGES/plasma_runner_kill.mo share/locale/nds/LC_MESSAGES/plasma_runner_locations.mo share/locale/nds/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/nds/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/nds/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/nds/LC_MESSAGES/plasma_runner_services.mo share/locale/nds/LC_MESSAGES/plasma_runner_sessions.mo share/locale/nds/LC_MESSAGES/plasma_runner_shell.mo share/locale/nds/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/nds/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/nds/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/nds/LC_MESSAGES/plasmashell.mo share/locale/nds/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/nds/LC_MESSAGES/soliduiserver.mo share/locale/ne/LC_MESSAGES/kcm_colors.mo share/locale/ne/LC_MESSAGES/kcm_cursortheme.mo share/locale/ne/LC_MESSAGES/kcm_fonts.mo share/locale/ne/LC_MESSAGES/kcm_icons.mo share/locale/ne/LC_MESSAGES/kcm_style.mo share/locale/ne/LC_MESSAGES/kcminit.mo share/locale/ne/LC_MESSAGES/kfontinst.mo share/locale/ne/LC_MESSAGES/kio_applications.mo share/locale/ne/LC_MESSAGES/klipper.mo share/locale/ne/LC_MESSAGES/krdb.mo share/locale/ne/LC_MESSAGES/ksmserver.mo share/locale/ne/LC_MESSAGES/libkworkspace.mo share/locale/ne/LC_MESSAGES/phonon_kde_plugin.mo share/locale/ne/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/ne/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/ne/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/ne/LC_MESSAGES/soliduiserver.mo share/locale/nl/LC_MESSAGES/freespacenotifier.mo share/locale/nl/LC_MESSAGES/kcm_autostart.mo share/locale/nl/LC_MESSAGES/kcm_colors.mo share/locale/nl/LC_MESSAGES/kcm_cursortheme.mo share/locale/nl/LC_MESSAGES/kcm_desktoptheme.mo share/locale/nl/LC_MESSAGES/kcm_feedback.mo share/locale/nl/LC_MESSAGES/kcm_fonts.mo share/locale/nl/LC_MESSAGES/kcm_icons.mo share/locale/nl/LC_MESSAGES/kcm_lookandfeel.mo share/locale/nl/LC_MESSAGES/kcm_nightcolor.mo share/locale/nl/LC_MESSAGES/kcm_notifications.mo share/locale/nl/LC_MESSAGES/kcm_regionandlang.mo share/locale/nl/LC_MESSAGES/kcm_soundtheme.mo share/locale/nl/LC_MESSAGES/kcm_style.mo share/locale/nl/LC_MESSAGES/kcm_users.mo share/locale/nl/LC_MESSAGES/kcminit.mo share/locale/nl/LC_MESSAGES/kded_devicenotifications.mo share/locale/nl/LC_MESSAGES/kfontinst.mo share/locale/nl/LC_MESSAGES/kio_applications.mo share/locale/nl/LC_MESSAGES/kio_desktop.mo share/locale/nl/LC_MESSAGES/klipper.mo share/locale/nl/LC_MESSAGES/krdb.mo share/locale/nl/LC_MESSAGES/krunner.mo share/locale/nl/LC_MESSAGES/ksmserver.mo share/locale/nl/LC_MESSAGES/libkicker.mo share/locale/nl/LC_MESSAGES/libkmpris.mo share/locale/nl/LC_MESSAGES/libkworkspace.mo share/locale/nl/LC_MESSAGES/libnotificationmanager.mo share/locale/nl/LC_MESSAGES/phonon_kde_plugin.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.brightness.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/nl/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/nl/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/nl/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/nl/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/nl/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/nl/LC_MESSAGES/plasma_engine_dict.mo share/locale/nl/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/nl/LC_MESSAGES/plasma_engine_keystate.mo share/locale/nl/LC_MESSAGES/plasma_engine_notifications.mo share/locale/nl/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/nl/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/nl/LC_MESSAGES/plasma_engine_time.mo share/locale/nl/LC_MESSAGES/plasma_engine_weather.mo share/locale/nl/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/nl/LC_MESSAGES/plasma_runner_appstream.mo share/locale/nl/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/nl/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/nl/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/nl/LC_MESSAGES/plasma_runner_kill.mo share/locale/nl/LC_MESSAGES/plasma_runner_locations.mo share/locale/nl/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/nl/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/nl/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/nl/LC_MESSAGES/plasma_runner_services.mo share/locale/nl/LC_MESSAGES/plasma_runner_sessions.mo share/locale/nl/LC_MESSAGES/plasma_runner_shell.mo share/locale/nl/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/nl/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/nl/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/nl/LC_MESSAGES/plasmashell.mo share/locale/nl/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/nl/LC_MESSAGES/plasmawindowed.mo share/locale/nl/LC_MESSAGES/session-shortcuts-kded.mo share/locale/nl/LC_MESSAGES/soliduiserver.mo share/locale/nn/LC_MESSAGES/freespacenotifier.mo share/locale/nn/LC_MESSAGES/kcm_autostart.mo share/locale/nn/LC_MESSAGES/kcm_colors.mo share/locale/nn/LC_MESSAGES/kcm_cursortheme.mo share/locale/nn/LC_MESSAGES/kcm_desktoptheme.mo share/locale/nn/LC_MESSAGES/kcm_feedback.mo share/locale/nn/LC_MESSAGES/kcm_fonts.mo share/locale/nn/LC_MESSAGES/kcm_icons.mo share/locale/nn/LC_MESSAGES/kcm_lookandfeel.mo share/locale/nn/LC_MESSAGES/kcm_nightcolor.mo share/locale/nn/LC_MESSAGES/kcm_notifications.mo share/locale/nn/LC_MESSAGES/kcm_regionandlang.mo share/locale/nn/LC_MESSAGES/kcm_soundtheme.mo share/locale/nn/LC_MESSAGES/kcm_style.mo share/locale/nn/LC_MESSAGES/kcm_users.mo share/locale/nn/LC_MESSAGES/kcminit.mo share/locale/nn/LC_MESSAGES/kded_devicenotifications.mo share/locale/nn/LC_MESSAGES/kfontinst.mo share/locale/nn/LC_MESSAGES/kio_applications.mo share/locale/nn/LC_MESSAGES/kio_desktop.mo share/locale/nn/LC_MESSAGES/klipper.mo share/locale/nn/LC_MESSAGES/krdb.mo share/locale/nn/LC_MESSAGES/krunner.mo share/locale/nn/LC_MESSAGES/ksmserver.mo share/locale/nn/LC_MESSAGES/libkicker.mo share/locale/nn/LC_MESSAGES/libkworkspace.mo share/locale/nn/LC_MESSAGES/libnotificationmanager.mo share/locale/nn/LC_MESSAGES/phonon_kde_plugin.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.brightness.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/nn/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/nn/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/nn/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/nn/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/nn/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/nn/LC_MESSAGES/plasma_engine_dict.mo share/locale/nn/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/nn/LC_MESSAGES/plasma_engine_keystate.mo share/locale/nn/LC_MESSAGES/plasma_engine_notifications.mo share/locale/nn/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/nn/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/nn/LC_MESSAGES/plasma_engine_time.mo share/locale/nn/LC_MESSAGES/plasma_engine_weather.mo share/locale/nn/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/nn/LC_MESSAGES/plasma_runner_appstream.mo share/locale/nn/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/nn/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/nn/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/nn/LC_MESSAGES/plasma_runner_kill.mo share/locale/nn/LC_MESSAGES/plasma_runner_locations.mo share/locale/nn/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/nn/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/nn/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/nn/LC_MESSAGES/plasma_runner_services.mo share/locale/nn/LC_MESSAGES/plasma_runner_sessions.mo share/locale/nn/LC_MESSAGES/plasma_runner_shell.mo share/locale/nn/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/nn/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/nn/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/nn/LC_MESSAGES/plasmashell.mo share/locale/nn/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/nn/LC_MESSAGES/plasmawindowed.mo share/locale/nn/LC_MESSAGES/soliduiserver.mo share/locale/oc/LC_MESSAGES/kcm_colors.mo share/locale/oc/LC_MESSAGES/kcm_cursortheme.mo share/locale/oc/LC_MESSAGES/kcm_fonts.mo share/locale/oc/LC_MESSAGES/kcm_icons.mo share/locale/oc/LC_MESSAGES/kcm_style.mo share/locale/oc/LC_MESSAGES/kcminit.mo share/locale/oc/LC_MESSAGES/kfontinst.mo share/locale/oc/LC_MESSAGES/kio_applications.mo share/locale/oc/LC_MESSAGES/klipper.mo share/locale/oc/LC_MESSAGES/krdb.mo share/locale/oc/LC_MESSAGES/ksmserver.mo share/locale/oc/LC_MESSAGES/libkworkspace.mo share/locale/oc/LC_MESSAGES/phonon_kde_plugin.mo share/locale/oc/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/oc/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/oc/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/oc/LC_MESSAGES/soliduiserver.mo share/locale/or/LC_MESSAGES/kcm_autostart.mo share/locale/or/LC_MESSAGES/kcm_colors.mo share/locale/or/LC_MESSAGES/kcm_cursortheme.mo share/locale/or/LC_MESSAGES/kcm_desktoptheme.mo share/locale/or/LC_MESSAGES/kcm_fonts.mo share/locale/or/LC_MESSAGES/kcm_icons.mo share/locale/or/LC_MESSAGES/kcm_style.mo share/locale/or/LC_MESSAGES/kcminit.mo share/locale/or/LC_MESSAGES/kfontinst.mo share/locale/or/LC_MESSAGES/kio_applications.mo share/locale/or/LC_MESSAGES/klipper.mo share/locale/or/LC_MESSAGES/krdb.mo share/locale/or/LC_MESSAGES/ksmserver.mo share/locale/or/LC_MESSAGES/libkworkspace.mo share/locale/or/LC_MESSAGES/phonon_kde_plugin.mo share/locale/or/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/or/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/or/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/or/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/or/LC_MESSAGES/plasma_runner_locations.mo share/locale/or/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/or/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/or/LC_MESSAGES/plasma_runner_sessions.mo share/locale/or/LC_MESSAGES/plasma_runner_shell.mo share/locale/or/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/or/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/or/LC_MESSAGES/soliduiserver.mo share/locale/pa/LC_MESSAGES/freespacenotifier.mo share/locale/pa/LC_MESSAGES/kcm_autostart.mo share/locale/pa/LC_MESSAGES/kcm_colors.mo share/locale/pa/LC_MESSAGES/kcm_cursortheme.mo share/locale/pa/LC_MESSAGES/kcm_desktoptheme.mo share/locale/pa/LC_MESSAGES/kcm_feedback.mo share/locale/pa/LC_MESSAGES/kcm_fonts.mo share/locale/pa/LC_MESSAGES/kcm_icons.mo share/locale/pa/LC_MESSAGES/kcm_lookandfeel.mo share/locale/pa/LC_MESSAGES/kcm_nightcolor.mo share/locale/pa/LC_MESSAGES/kcm_notifications.mo share/locale/pa/LC_MESSAGES/kcm_regionandlang.mo share/locale/pa/LC_MESSAGES/kcm_soundtheme.mo share/locale/pa/LC_MESSAGES/kcm_style.mo share/locale/pa/LC_MESSAGES/kcm_users.mo share/locale/pa/LC_MESSAGES/kcminit.mo share/locale/pa/LC_MESSAGES/kded_devicenotifications.mo share/locale/pa/LC_MESSAGES/kfontinst.mo share/locale/pa/LC_MESSAGES/kio_applications.mo share/locale/pa/LC_MESSAGES/kio_desktop.mo share/locale/pa/LC_MESSAGES/klipper.mo share/locale/pa/LC_MESSAGES/krdb.mo share/locale/pa/LC_MESSAGES/krunner.mo share/locale/pa/LC_MESSAGES/ksmserver.mo share/locale/pa/LC_MESSAGES/libkicker.mo share/locale/pa/LC_MESSAGES/libkmpris.mo share/locale/pa/LC_MESSAGES/libkworkspace.mo share/locale/pa/LC_MESSAGES/libnotificationmanager.mo share/locale/pa/LC_MESSAGES/phonon_kde_plugin.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.brightness.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/pa/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/pa/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/pa/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/pa/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/pa/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/pa/LC_MESSAGES/plasma_engine_dict.mo share/locale/pa/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/pa/LC_MESSAGES/plasma_engine_keystate.mo share/locale/pa/LC_MESSAGES/plasma_engine_notifications.mo share/locale/pa/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/pa/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/pa/LC_MESSAGES/plasma_engine_time.mo share/locale/pa/LC_MESSAGES/plasma_engine_weather.mo share/locale/pa/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/pa/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/pa/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/pa/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/pa/LC_MESSAGES/plasma_runner_kill.mo share/locale/pa/LC_MESSAGES/plasma_runner_locations.mo share/locale/pa/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/pa/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/pa/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/pa/LC_MESSAGES/plasma_runner_services.mo share/locale/pa/LC_MESSAGES/plasma_runner_sessions.mo share/locale/pa/LC_MESSAGES/plasma_runner_shell.mo share/locale/pa/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/pa/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/pa/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/pa/LC_MESSAGES/plasmashell.mo share/locale/pa/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/pa/LC_MESSAGES/plasmawindowed.mo share/locale/pa/LC_MESSAGES/soliduiserver.mo share/locale/pl/LC_MESSAGES/freespacenotifier.mo share/locale/pl/LC_MESSAGES/kcm_autostart.mo share/locale/pl/LC_MESSAGES/kcm_colors.mo share/locale/pl/LC_MESSAGES/kcm_cursortheme.mo share/locale/pl/LC_MESSAGES/kcm_desktoptheme.mo share/locale/pl/LC_MESSAGES/kcm_feedback.mo share/locale/pl/LC_MESSAGES/kcm_fonts.mo share/locale/pl/LC_MESSAGES/kcm_icons.mo share/locale/pl/LC_MESSAGES/kcm_lookandfeel.mo share/locale/pl/LC_MESSAGES/kcm_nightcolor.mo share/locale/pl/LC_MESSAGES/kcm_notifications.mo share/locale/pl/LC_MESSAGES/kcm_regionandlang.mo share/locale/pl/LC_MESSAGES/kcm_soundtheme.mo share/locale/pl/LC_MESSAGES/kcm_style.mo share/locale/pl/LC_MESSAGES/kcm_users.mo share/locale/pl/LC_MESSAGES/kcminit.mo share/locale/pl/LC_MESSAGES/kded_devicenotifications.mo share/locale/pl/LC_MESSAGES/kfontinst.mo share/locale/pl/LC_MESSAGES/kio_applications.mo share/locale/pl/LC_MESSAGES/kio_desktop.mo share/locale/pl/LC_MESSAGES/klipper.mo share/locale/pl/LC_MESSAGES/krdb.mo share/locale/pl/LC_MESSAGES/krunner.mo share/locale/pl/LC_MESSAGES/ksmserver.mo share/locale/pl/LC_MESSAGES/libkicker.mo share/locale/pl/LC_MESSAGES/libkmpris.mo share/locale/pl/LC_MESSAGES/libkworkspace.mo share/locale/pl/LC_MESSAGES/libnotificationmanager.mo share/locale/pl/LC_MESSAGES/phonon_kde_plugin.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.brightness.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/pl/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/pl/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/pl/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/pl/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/pl/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/pl/LC_MESSAGES/plasma_engine_dict.mo share/locale/pl/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/pl/LC_MESSAGES/plasma_engine_keystate.mo share/locale/pl/LC_MESSAGES/plasma_engine_notifications.mo share/locale/pl/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/pl/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/pl/LC_MESSAGES/plasma_engine_time.mo share/locale/pl/LC_MESSAGES/plasma_engine_weather.mo +share/locale/pl/LC_MESSAGES/plasma_interactiveconsole.mo share/locale/pl/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/pl/LC_MESSAGES/plasma_runner_appstream.mo share/locale/pl/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/pl/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/pl/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/pl/LC_MESSAGES/plasma_runner_kill.mo share/locale/pl/LC_MESSAGES/plasma_runner_locations.mo share/locale/pl/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/pl/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/pl/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/pl/LC_MESSAGES/plasma_runner_services.mo share/locale/pl/LC_MESSAGES/plasma_runner_sessions.mo share/locale/pl/LC_MESSAGES/plasma_runner_shell.mo share/locale/pl/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/pl/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/pl/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/pl/LC_MESSAGES/plasmashell.mo share/locale/pl/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/pl/LC_MESSAGES/plasmawindowed.mo share/locale/pl/LC_MESSAGES/session-shortcuts-kded.mo share/locale/pl/LC_MESSAGES/soliduiserver.mo share/locale/pt/LC_MESSAGES/freespacenotifier.mo share/locale/pt/LC_MESSAGES/kcm_autostart.mo share/locale/pt/LC_MESSAGES/kcm_colors.mo share/locale/pt/LC_MESSAGES/kcm_cursortheme.mo share/locale/pt/LC_MESSAGES/kcm_desktoptheme.mo share/locale/pt/LC_MESSAGES/kcm_feedback.mo share/locale/pt/LC_MESSAGES/kcm_fonts.mo share/locale/pt/LC_MESSAGES/kcm_icons.mo share/locale/pt/LC_MESSAGES/kcm_lookandfeel.mo share/locale/pt/LC_MESSAGES/kcm_nightcolor.mo share/locale/pt/LC_MESSAGES/kcm_notifications.mo share/locale/pt/LC_MESSAGES/kcm_regionandlang.mo share/locale/pt/LC_MESSAGES/kcm_style.mo share/locale/pt/LC_MESSAGES/kcm_users.mo share/locale/pt/LC_MESSAGES/kcminit.mo share/locale/pt/LC_MESSAGES/kfontinst.mo share/locale/pt/LC_MESSAGES/kio_applications.mo share/locale/pt/LC_MESSAGES/kio_desktop.mo share/locale/pt/LC_MESSAGES/klipper.mo share/locale/pt/LC_MESSAGES/krdb.mo share/locale/pt/LC_MESSAGES/krunner.mo share/locale/pt/LC_MESSAGES/ksmserver.mo share/locale/pt/LC_MESSAGES/libkicker.mo share/locale/pt/LC_MESSAGES/libkworkspace.mo share/locale/pt/LC_MESSAGES/libnotificationmanager.mo share/locale/pt/LC_MESSAGES/phonon_kde_plugin.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/pt/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/pt/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/pt/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/pt/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/pt/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/pt/LC_MESSAGES/plasma_engine_dict.mo share/locale/pt/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/pt/LC_MESSAGES/plasma_engine_keystate.mo share/locale/pt/LC_MESSAGES/plasma_engine_notifications.mo share/locale/pt/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/pt/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/pt/LC_MESSAGES/plasma_engine_time.mo share/locale/pt/LC_MESSAGES/plasma_engine_weather.mo share/locale/pt/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/pt/LC_MESSAGES/plasma_runner_appstream.mo share/locale/pt/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/pt/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/pt/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/pt/LC_MESSAGES/plasma_runner_kill.mo share/locale/pt/LC_MESSAGES/plasma_runner_locations.mo share/locale/pt/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/pt/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/pt/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/pt/LC_MESSAGES/plasma_runner_services.mo share/locale/pt/LC_MESSAGES/plasma_runner_sessions.mo share/locale/pt/LC_MESSAGES/plasma_runner_shell.mo share/locale/pt/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/pt/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/pt/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/pt/LC_MESSAGES/plasmashell.mo share/locale/pt/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/pt/LC_MESSAGES/soliduiserver.mo share/locale/pt_BR/LC_MESSAGES/freespacenotifier.mo share/locale/pt_BR/LC_MESSAGES/kcm_autostart.mo share/locale/pt_BR/LC_MESSAGES/kcm_colors.mo share/locale/pt_BR/LC_MESSAGES/kcm_cursortheme.mo share/locale/pt_BR/LC_MESSAGES/kcm_desktoptheme.mo share/locale/pt_BR/LC_MESSAGES/kcm_feedback.mo share/locale/pt_BR/LC_MESSAGES/kcm_fonts.mo share/locale/pt_BR/LC_MESSAGES/kcm_icons.mo share/locale/pt_BR/LC_MESSAGES/kcm_lookandfeel.mo share/locale/pt_BR/LC_MESSAGES/kcm_nightcolor.mo share/locale/pt_BR/LC_MESSAGES/kcm_notifications.mo share/locale/pt_BR/LC_MESSAGES/kcm_regionandlang.mo share/locale/pt_BR/LC_MESSAGES/kcm_soundtheme.mo share/locale/pt_BR/LC_MESSAGES/kcm_style.mo share/locale/pt_BR/LC_MESSAGES/kcm_users.mo share/locale/pt_BR/LC_MESSAGES/kcminit.mo share/locale/pt_BR/LC_MESSAGES/kded_devicenotifications.mo share/locale/pt_BR/LC_MESSAGES/kfontinst.mo share/locale/pt_BR/LC_MESSAGES/kio_applications.mo share/locale/pt_BR/LC_MESSAGES/kio_desktop.mo share/locale/pt_BR/LC_MESSAGES/klipper.mo share/locale/pt_BR/LC_MESSAGES/krdb.mo share/locale/pt_BR/LC_MESSAGES/krunner.mo share/locale/pt_BR/LC_MESSAGES/ksmserver.mo share/locale/pt_BR/LC_MESSAGES/libkicker.mo share/locale/pt_BR/LC_MESSAGES/libkmpris.mo share/locale/pt_BR/LC_MESSAGES/libkworkspace.mo share/locale/pt_BR/LC_MESSAGES/libnotificationmanager.mo share/locale/pt_BR/LC_MESSAGES/phonon_kde_plugin.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.brightness.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/pt_BR/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/pt_BR/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/pt_BR/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/pt_BR/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/pt_BR/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/pt_BR/LC_MESSAGES/plasma_engine_dict.mo share/locale/pt_BR/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/pt_BR/LC_MESSAGES/plasma_engine_keystate.mo share/locale/pt_BR/LC_MESSAGES/plasma_engine_notifications.mo share/locale/pt_BR/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/pt_BR/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/pt_BR/LC_MESSAGES/plasma_engine_time.mo share/locale/pt_BR/LC_MESSAGES/plasma_engine_weather.mo +share/locale/pt_BR/LC_MESSAGES/plasma_interactiveconsole.mo share/locale/pt_BR/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_appstream.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_kill.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_locations.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_services.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_sessions.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_shell.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/pt_BR/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/pt_BR/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/pt_BR/LC_MESSAGES/plasmashell.mo share/locale/pt_BR/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/pt_BR/LC_MESSAGES/plasmawindowed.mo +share/locale/pt_BR/LC_MESSAGES/session-shortcuts-kded.mo share/locale/pt_BR/LC_MESSAGES/soliduiserver.mo share/locale/ro/LC_MESSAGES/freespacenotifier.mo share/locale/ro/LC_MESSAGES/kcm_autostart.mo share/locale/ro/LC_MESSAGES/kcm_colors.mo share/locale/ro/LC_MESSAGES/kcm_cursortheme.mo share/locale/ro/LC_MESSAGES/kcm_desktoptheme.mo share/locale/ro/LC_MESSAGES/kcm_feedback.mo share/locale/ro/LC_MESSAGES/kcm_fonts.mo share/locale/ro/LC_MESSAGES/kcm_icons.mo share/locale/ro/LC_MESSAGES/kcm_lookandfeel.mo share/locale/ro/LC_MESSAGES/kcm_nightcolor.mo share/locale/ro/LC_MESSAGES/kcm_notifications.mo share/locale/ro/LC_MESSAGES/kcm_regionandlang.mo share/locale/ro/LC_MESSAGES/kcm_soundtheme.mo share/locale/ro/LC_MESSAGES/kcm_style.mo share/locale/ro/LC_MESSAGES/kcm_users.mo share/locale/ro/LC_MESSAGES/kcminit.mo share/locale/ro/LC_MESSAGES/kded_devicenotifications.mo share/locale/ro/LC_MESSAGES/kfontinst.mo share/locale/ro/LC_MESSAGES/kio_applications.mo share/locale/ro/LC_MESSAGES/kio_desktop.mo share/locale/ro/LC_MESSAGES/klipper.mo share/locale/ro/LC_MESSAGES/krdb.mo share/locale/ro/LC_MESSAGES/krunner.mo share/locale/ro/LC_MESSAGES/ksmserver.mo share/locale/ro/LC_MESSAGES/libkicker.mo share/locale/ro/LC_MESSAGES/libkmpris.mo share/locale/ro/LC_MESSAGES/libkworkspace.mo share/locale/ro/LC_MESSAGES/libnotificationmanager.mo share/locale/ro/LC_MESSAGES/phonon_kde_plugin.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.brightness.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/ro/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/ro/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/ro/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/ro/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/ro/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/ro/LC_MESSAGES/plasma_engine_dict.mo share/locale/ro/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/ro/LC_MESSAGES/plasma_engine_keystate.mo share/locale/ro/LC_MESSAGES/plasma_engine_notifications.mo share/locale/ro/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/ro/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/ro/LC_MESSAGES/plasma_engine_time.mo share/locale/ro/LC_MESSAGES/plasma_engine_weather.mo share/locale/ro/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/ro/LC_MESSAGES/plasma_runner_appstream.mo share/locale/ro/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/ro/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/ro/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/ro/LC_MESSAGES/plasma_runner_kill.mo share/locale/ro/LC_MESSAGES/plasma_runner_locations.mo share/locale/ro/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/ro/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/ro/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/ro/LC_MESSAGES/plasma_runner_services.mo share/locale/ro/LC_MESSAGES/plasma_runner_sessions.mo share/locale/ro/LC_MESSAGES/plasma_runner_shell.mo share/locale/ro/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/ro/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/ro/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/ro/LC_MESSAGES/plasmashell.mo share/locale/ro/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/ro/LC_MESSAGES/plasmawindowed.mo share/locale/ro/LC_MESSAGES/session-shortcuts-kded.mo share/locale/ro/LC_MESSAGES/soliduiserver.mo share/locale/ru/LC_MESSAGES/freespacenotifier.mo share/locale/ru/LC_MESSAGES/kcm_autostart.mo share/locale/ru/LC_MESSAGES/kcm_colors.mo share/locale/ru/LC_MESSAGES/kcm_cursortheme.mo share/locale/ru/LC_MESSAGES/kcm_desktoptheme.mo share/locale/ru/LC_MESSAGES/kcm_feedback.mo share/locale/ru/LC_MESSAGES/kcm_fonts.mo share/locale/ru/LC_MESSAGES/kcm_icons.mo share/locale/ru/LC_MESSAGES/kcm_lookandfeel.mo share/locale/ru/LC_MESSAGES/kcm_nightcolor.mo share/locale/ru/LC_MESSAGES/kcm_notifications.mo share/locale/ru/LC_MESSAGES/kcm_regionandlang.mo share/locale/ru/LC_MESSAGES/kcm_soundtheme.mo share/locale/ru/LC_MESSAGES/kcm_style.mo share/locale/ru/LC_MESSAGES/kcm_users.mo share/locale/ru/LC_MESSAGES/kcminit.mo share/locale/ru/LC_MESSAGES/kded_devicenotifications.mo share/locale/ru/LC_MESSAGES/kfontinst.mo share/locale/ru/LC_MESSAGES/kio_applications.mo share/locale/ru/LC_MESSAGES/kio_desktop.mo share/locale/ru/LC_MESSAGES/klipper.mo share/locale/ru/LC_MESSAGES/krdb.mo share/locale/ru/LC_MESSAGES/krunner.mo share/locale/ru/LC_MESSAGES/ksmserver.mo share/locale/ru/LC_MESSAGES/libkicker.mo share/locale/ru/LC_MESSAGES/libkmpris.mo share/locale/ru/LC_MESSAGES/libkworkspace.mo share/locale/ru/LC_MESSAGES/libnotificationmanager.mo share/locale/ru/LC_MESSAGES/phonon_kde_plugin.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.brightness.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/ru/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/ru/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/ru/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/ru/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/ru/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/ru/LC_MESSAGES/plasma_engine_dict.mo share/locale/ru/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/ru/LC_MESSAGES/plasma_engine_keystate.mo share/locale/ru/LC_MESSAGES/plasma_engine_notifications.mo share/locale/ru/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/ru/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/ru/LC_MESSAGES/plasma_engine_time.mo share/locale/ru/LC_MESSAGES/plasma_engine_weather.mo share/locale/ru/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/ru/LC_MESSAGES/plasma_runner_appstream.mo share/locale/ru/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/ru/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/ru/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/ru/LC_MESSAGES/plasma_runner_kill.mo share/locale/ru/LC_MESSAGES/plasma_runner_locations.mo share/locale/ru/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/ru/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/ru/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/ru/LC_MESSAGES/plasma_runner_services.mo share/locale/ru/LC_MESSAGES/plasma_runner_sessions.mo share/locale/ru/LC_MESSAGES/plasma_runner_shell.mo share/locale/ru/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/ru/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/ru/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/ru/LC_MESSAGES/plasmashell.mo share/locale/ru/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/ru/LC_MESSAGES/plasmawindowed.mo share/locale/ru/LC_MESSAGES/session-shortcuts-kded.mo share/locale/ru/LC_MESSAGES/soliduiserver.mo share/locale/sa/LC_MESSAGES/kcm_colors.mo share/locale/sa/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/sa/LC_MESSAGES/plasma_engine_weather.mo share/locale/sa/LC_MESSAGES/plasmashell.mo share/locale/se/LC_MESSAGES/kcm_colors.mo share/locale/se/LC_MESSAGES/kcm_cursortheme.mo share/locale/se/LC_MESSAGES/kcm_fonts.mo share/locale/se/LC_MESSAGES/kcm_icons.mo share/locale/se/LC_MESSAGES/kcm_style.mo share/locale/se/LC_MESSAGES/kcminit.mo share/locale/se/LC_MESSAGES/kfontinst.mo share/locale/se/LC_MESSAGES/kio_applications.mo share/locale/se/LC_MESSAGES/klipper.mo share/locale/se/LC_MESSAGES/krdb.mo share/locale/se/LC_MESSAGES/krunner.mo share/locale/se/LC_MESSAGES/ksmserver.mo share/locale/se/LC_MESSAGES/libkworkspace.mo share/locale/se/LC_MESSAGES/phonon_kde_plugin.mo share/locale/se/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/se/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/se/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/se/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/se/LC_MESSAGES/soliduiserver.mo share/locale/si/LC_MESSAGES/kcm_autostart.mo share/locale/si/LC_MESSAGES/kcm_colors.mo share/locale/si/LC_MESSAGES/kcm_cursortheme.mo share/locale/si/LC_MESSAGES/kcm_desktoptheme.mo share/locale/si/LC_MESSAGES/kcm_fonts.mo share/locale/si/LC_MESSAGES/kcm_icons.mo share/locale/si/LC_MESSAGES/kcm_style.mo share/locale/si/LC_MESSAGES/kcminit.mo share/locale/si/LC_MESSAGES/kfontinst.mo share/locale/si/LC_MESSAGES/kio_applications.mo share/locale/si/LC_MESSAGES/klipper.mo share/locale/si/LC_MESSAGES/krdb.mo share/locale/si/LC_MESSAGES/ksmserver.mo share/locale/si/LC_MESSAGES/libkworkspace.mo share/locale/si/LC_MESSAGES/phonon_kde_plugin.mo share/locale/si/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/si/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/si/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/si/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/si/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/si/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/si/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/si/LC_MESSAGES/plasma_engine_keystate.mo share/locale/si/LC_MESSAGES/plasma_engine_notifications.mo share/locale/si/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/si/LC_MESSAGES/plasma_engine_weather.mo share/locale/si/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/si/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/si/LC_MESSAGES/plasma_runner_locations.mo share/locale/si/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/si/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/si/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/si/LC_MESSAGES/plasma_runner_sessions.mo share/locale/si/LC_MESSAGES/plasma_runner_shell.mo share/locale/si/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/si/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/si/LC_MESSAGES/soliduiserver.mo share/locale/sk/LC_MESSAGES/freespacenotifier.mo share/locale/sk/LC_MESSAGES/kcm_autostart.mo share/locale/sk/LC_MESSAGES/kcm_colors.mo share/locale/sk/LC_MESSAGES/kcm_cursortheme.mo share/locale/sk/LC_MESSAGES/kcm_desktoptheme.mo share/locale/sk/LC_MESSAGES/kcm_feedback.mo share/locale/sk/LC_MESSAGES/kcm_fonts.mo share/locale/sk/LC_MESSAGES/kcm_icons.mo share/locale/sk/LC_MESSAGES/kcm_lookandfeel.mo share/locale/sk/LC_MESSAGES/kcm_nightcolor.mo share/locale/sk/LC_MESSAGES/kcm_notifications.mo share/locale/sk/LC_MESSAGES/kcm_regionandlang.mo share/locale/sk/LC_MESSAGES/kcm_soundtheme.mo share/locale/sk/LC_MESSAGES/kcm_style.mo share/locale/sk/LC_MESSAGES/kcm_users.mo share/locale/sk/LC_MESSAGES/kcminit.mo share/locale/sk/LC_MESSAGES/kded_devicenotifications.mo share/locale/sk/LC_MESSAGES/kfontinst.mo share/locale/sk/LC_MESSAGES/kio_applications.mo share/locale/sk/LC_MESSAGES/kio_desktop.mo share/locale/sk/LC_MESSAGES/klipper.mo share/locale/sk/LC_MESSAGES/krdb.mo share/locale/sk/LC_MESSAGES/krunner.mo share/locale/sk/LC_MESSAGES/ksmserver.mo share/locale/sk/LC_MESSAGES/libkicker.mo share/locale/sk/LC_MESSAGES/libkmpris.mo share/locale/sk/LC_MESSAGES/libkworkspace.mo share/locale/sk/LC_MESSAGES/libnotificationmanager.mo share/locale/sk/LC_MESSAGES/phonon_kde_plugin.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.brightness.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/sk/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/sk/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/sk/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/sk/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/sk/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/sk/LC_MESSAGES/plasma_engine_dict.mo share/locale/sk/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/sk/LC_MESSAGES/plasma_engine_keystate.mo share/locale/sk/LC_MESSAGES/plasma_engine_notifications.mo share/locale/sk/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/sk/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/sk/LC_MESSAGES/plasma_engine_time.mo share/locale/sk/LC_MESSAGES/plasma_engine_weather.mo share/locale/sk/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/sk/LC_MESSAGES/plasma_runner_appstream.mo share/locale/sk/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/sk/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/sk/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/sk/LC_MESSAGES/plasma_runner_kill.mo share/locale/sk/LC_MESSAGES/plasma_runner_locations.mo share/locale/sk/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/sk/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/sk/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/sk/LC_MESSAGES/plasma_runner_services.mo share/locale/sk/LC_MESSAGES/plasma_runner_sessions.mo share/locale/sk/LC_MESSAGES/plasma_runner_shell.mo share/locale/sk/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/sk/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/sk/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/sk/LC_MESSAGES/plasmashell.mo share/locale/sk/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/sk/LC_MESSAGES/plasmawindowed.mo share/locale/sk/LC_MESSAGES/soliduiserver.mo share/locale/sl/LC_MESSAGES/freespacenotifier.mo share/locale/sl/LC_MESSAGES/kcm_autostart.mo share/locale/sl/LC_MESSAGES/kcm_colors.mo share/locale/sl/LC_MESSAGES/kcm_cursortheme.mo share/locale/sl/LC_MESSAGES/kcm_desktoptheme.mo share/locale/sl/LC_MESSAGES/kcm_feedback.mo share/locale/sl/LC_MESSAGES/kcm_fonts.mo share/locale/sl/LC_MESSAGES/kcm_icons.mo share/locale/sl/LC_MESSAGES/kcm_lookandfeel.mo share/locale/sl/LC_MESSAGES/kcm_nightcolor.mo share/locale/sl/LC_MESSAGES/kcm_notifications.mo share/locale/sl/LC_MESSAGES/kcm_regionandlang.mo share/locale/sl/LC_MESSAGES/kcm_soundtheme.mo share/locale/sl/LC_MESSAGES/kcm_style.mo share/locale/sl/LC_MESSAGES/kcm_users.mo share/locale/sl/LC_MESSAGES/kcminit.mo share/locale/sl/LC_MESSAGES/kded_devicenotifications.mo share/locale/sl/LC_MESSAGES/kfontinst.mo share/locale/sl/LC_MESSAGES/kio_applications.mo share/locale/sl/LC_MESSAGES/kio_desktop.mo share/locale/sl/LC_MESSAGES/klipper.mo share/locale/sl/LC_MESSAGES/krdb.mo share/locale/sl/LC_MESSAGES/krunner.mo share/locale/sl/LC_MESSAGES/ksmserver.mo share/locale/sl/LC_MESSAGES/libkicker.mo share/locale/sl/LC_MESSAGES/libkmpris.mo share/locale/sl/LC_MESSAGES/libkworkspace.mo share/locale/sl/LC_MESSAGES/libnotificationmanager.mo share/locale/sl/LC_MESSAGES/phonon_kde_plugin.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.brightness.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/sl/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/sl/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/sl/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/sl/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/sl/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/sl/LC_MESSAGES/plasma_engine_dict.mo share/locale/sl/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/sl/LC_MESSAGES/plasma_engine_keystate.mo share/locale/sl/LC_MESSAGES/plasma_engine_notifications.mo share/locale/sl/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/sl/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/sl/LC_MESSAGES/plasma_engine_time.mo share/locale/sl/LC_MESSAGES/plasma_engine_weather.mo +share/locale/sl/LC_MESSAGES/plasma_interactiveconsole.mo share/locale/sl/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/sl/LC_MESSAGES/plasma_runner_appstream.mo share/locale/sl/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/sl/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/sl/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/sl/LC_MESSAGES/plasma_runner_kill.mo share/locale/sl/LC_MESSAGES/plasma_runner_locations.mo share/locale/sl/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/sl/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/sl/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/sl/LC_MESSAGES/plasma_runner_services.mo share/locale/sl/LC_MESSAGES/plasma_runner_sessions.mo share/locale/sl/LC_MESSAGES/plasma_runner_shell.mo share/locale/sl/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/sl/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/sl/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/sl/LC_MESSAGES/plasmashell.mo share/locale/sl/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/sl/LC_MESSAGES/plasmawindowed.mo share/locale/sl/LC_MESSAGES/session-shortcuts-kded.mo share/locale/sl/LC_MESSAGES/soliduiserver.mo share/locale/sq/LC_MESSAGES/kcm_autostart.mo share/locale/sq/LC_MESSAGES/kcm_colors.mo share/locale/sq/LC_MESSAGES/kcm_cursortheme.mo share/locale/sq/LC_MESSAGES/kcm_desktoptheme.mo share/locale/sq/LC_MESSAGES/kcm_fonts.mo share/locale/sq/LC_MESSAGES/kcm_icons.mo share/locale/sq/LC_MESSAGES/kcm_style.mo share/locale/sq/LC_MESSAGES/kcminit.mo share/locale/sq/LC_MESSAGES/kfontinst.mo share/locale/sq/LC_MESSAGES/kio_applications.mo share/locale/sq/LC_MESSAGES/klipper.mo share/locale/sq/LC_MESSAGES/krdb.mo share/locale/sq/LC_MESSAGES/ksmserver.mo share/locale/sq/LC_MESSAGES/libkworkspace.mo share/locale/sq/LC_MESSAGES/phonon_kde_plugin.mo share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/sq/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/sq/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/sq/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/sq/LC_MESSAGES/plasma_engine_keystate.mo share/locale/sq/LC_MESSAGES/plasma_engine_notifications.mo share/locale/sq/LC_MESSAGES/plasma_engine_weather.mo share/locale/sq/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/sq/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/sq/LC_MESSAGES/plasma_runner_locations.mo share/locale/sq/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/sq/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/sq/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/sq/LC_MESSAGES/plasma_runner_services.mo share/locale/sq/LC_MESSAGES/plasma_runner_sessions.mo share/locale/sq/LC_MESSAGES/plasma_runner_shell.mo share/locale/sq/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/sq/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/sq/LC_MESSAGES/soliduiserver.mo share/locale/sr/LC_MESSAGES/freespacenotifier.mo share/locale/sr/LC_MESSAGES/kcm_autostart.mo share/locale/sr/LC_MESSAGES/kcm_colors.mo share/locale/sr/LC_MESSAGES/kcm_cursortheme.mo share/locale/sr/LC_MESSAGES/kcm_desktoptheme.mo share/locale/sr/LC_MESSAGES/kcm_fonts.mo share/locale/sr/LC_MESSAGES/kcm_icons.mo share/locale/sr/LC_MESSAGES/kcm_lookandfeel.mo share/locale/sr/LC_MESSAGES/kcm_nightcolor.mo share/locale/sr/LC_MESSAGES/kcm_style.mo share/locale/sr/LC_MESSAGES/kcminit.mo share/locale/sr/LC_MESSAGES/kfontinst.mo share/locale/sr/LC_MESSAGES/kio_applications.mo share/locale/sr/LC_MESSAGES/kio_desktop.mo share/locale/sr/LC_MESSAGES/klipper.mo share/locale/sr/LC_MESSAGES/krdb.mo share/locale/sr/LC_MESSAGES/krunner.mo share/locale/sr/LC_MESSAGES/ksmserver.mo share/locale/sr/LC_MESSAGES/libkicker.mo share/locale/sr/LC_MESSAGES/libkworkspace.mo share/locale/sr/LC_MESSAGES/phonon_kde_plugin.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/sr/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/sr/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/sr/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/sr/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/sr/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/sr/LC_MESSAGES/plasma_engine_dict.mo share/locale/sr/LC_MESSAGES/plasma_engine_keystate.mo share/locale/sr/LC_MESSAGES/plasma_engine_notifications.mo share/locale/sr/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/sr/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/sr/LC_MESSAGES/plasma_engine_time.mo share/locale/sr/LC_MESSAGES/plasma_engine_weather.mo share/locale/sr/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/sr/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/sr/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/sr/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/sr/LC_MESSAGES/plasma_runner_kill.mo share/locale/sr/LC_MESSAGES/plasma_runner_locations.mo share/locale/sr/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/sr/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/sr/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/sr/LC_MESSAGES/plasma_runner_services.mo share/locale/sr/LC_MESSAGES/plasma_runner_sessions.mo share/locale/sr/LC_MESSAGES/plasma_runner_shell.mo share/locale/sr/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/sr/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/sr/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/sr/LC_MESSAGES/plasmashell.mo share/locale/sr/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/sr/LC_MESSAGES/soliduiserver.mo share/locale/sr@ijekavian/LC_MESSAGES/freespacenotifier.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_autostart.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_colors.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_cursortheme.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_desktoptheme.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_fonts.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_icons.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_lookandfeel.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_nightcolor.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_style.mo share/locale/sr@ijekavian/LC_MESSAGES/kcminit.mo share/locale/sr@ijekavian/LC_MESSAGES/kfontinst.mo share/locale/sr@ijekavian/LC_MESSAGES/kio_applications.mo share/locale/sr@ijekavian/LC_MESSAGES/kio_desktop.mo share/locale/sr@ijekavian/LC_MESSAGES/klipper.mo share/locale/sr@ijekavian/LC_MESSAGES/krdb.mo share/locale/sr@ijekavian/LC_MESSAGES/krunner.mo share/locale/sr@ijekavian/LC_MESSAGES/ksmserver.mo share/locale/sr@ijekavian/LC_MESSAGES/libkicker.mo share/locale/sr@ijekavian/LC_MESSAGES/libkworkspace.mo share/locale/sr@ijekavian/LC_MESSAGES/phonon_kde_plugin.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_engine_dict.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_engine_keystate.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_engine_notifications.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_engine_time.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_engine_weather.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_kill.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_locations.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_services.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_sessions.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_shell.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/sr@ijekavian/LC_MESSAGES/plasmashell.mo share/locale/sr@ijekavian/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/sr@ijekavian/LC_MESSAGES/soliduiserver.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/freespacenotifier.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_autostart.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_colors.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_cursortheme.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_desktoptheme.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_fonts.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_icons.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_lookandfeel.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_nightcolor.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_style.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcminit.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kfontinst.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kio_applications.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kio_desktop.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/klipper.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/krdb.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/krunner.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/ksmserver.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libkicker.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libkworkspace.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/phonon_kde_plugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_engine_dict.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_engine_keystate.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_engine_notifications.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_engine_time.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_engine_weather.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_kill.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_locations.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_services.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_sessions.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_shell.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasmashell.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/soliduiserver.mo share/locale/sr@latin/LC_MESSAGES/freespacenotifier.mo share/locale/sr@latin/LC_MESSAGES/kcm_autostart.mo share/locale/sr@latin/LC_MESSAGES/kcm_colors.mo share/locale/sr@latin/LC_MESSAGES/kcm_cursortheme.mo share/locale/sr@latin/LC_MESSAGES/kcm_desktoptheme.mo share/locale/sr@latin/LC_MESSAGES/kcm_fonts.mo share/locale/sr@latin/LC_MESSAGES/kcm_icons.mo share/locale/sr@latin/LC_MESSAGES/kcm_lookandfeel.mo share/locale/sr@latin/LC_MESSAGES/kcm_nightcolor.mo share/locale/sr@latin/LC_MESSAGES/kcm_style.mo share/locale/sr@latin/LC_MESSAGES/kcminit.mo share/locale/sr@latin/LC_MESSAGES/kfontinst.mo share/locale/sr@latin/LC_MESSAGES/kio_applications.mo share/locale/sr@latin/LC_MESSAGES/kio_desktop.mo share/locale/sr@latin/LC_MESSAGES/klipper.mo share/locale/sr@latin/LC_MESSAGES/krdb.mo share/locale/sr@latin/LC_MESSAGES/krunner.mo share/locale/sr@latin/LC_MESSAGES/ksmserver.mo share/locale/sr@latin/LC_MESSAGES/libkicker.mo share/locale/sr@latin/LC_MESSAGES/libkworkspace.mo share/locale/sr@latin/LC_MESSAGES/phonon_kde_plugin.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/sr@latin/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/sr@latin/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/sr@latin/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/sr@latin/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/sr@latin/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/sr@latin/LC_MESSAGES/plasma_engine_dict.mo share/locale/sr@latin/LC_MESSAGES/plasma_engine_keystate.mo share/locale/sr@latin/LC_MESSAGES/plasma_engine_notifications.mo share/locale/sr@latin/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/sr@latin/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/sr@latin/LC_MESSAGES/plasma_engine_time.mo share/locale/sr@latin/LC_MESSAGES/plasma_engine_weather.mo share/locale/sr@latin/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_kill.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_locations.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_services.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_sessions.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_shell.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/sr@latin/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/sr@latin/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/sr@latin/LC_MESSAGES/plasmashell.mo share/locale/sr@latin/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/sr@latin/LC_MESSAGES/soliduiserver.mo share/locale/sv/LC_MESSAGES/freespacenotifier.mo share/locale/sv/LC_MESSAGES/kcm_autostart.mo share/locale/sv/LC_MESSAGES/kcm_colors.mo share/locale/sv/LC_MESSAGES/kcm_cursortheme.mo share/locale/sv/LC_MESSAGES/kcm_desktoptheme.mo share/locale/sv/LC_MESSAGES/kcm_feedback.mo share/locale/sv/LC_MESSAGES/kcm_fonts.mo share/locale/sv/LC_MESSAGES/kcm_icons.mo share/locale/sv/LC_MESSAGES/kcm_lookandfeel.mo share/locale/sv/LC_MESSAGES/kcm_nightcolor.mo share/locale/sv/LC_MESSAGES/kcm_notifications.mo share/locale/sv/LC_MESSAGES/kcm_style.mo share/locale/sv/LC_MESSAGES/kcm_users.mo share/locale/sv/LC_MESSAGES/kcminit.mo share/locale/sv/LC_MESSAGES/kfontinst.mo share/locale/sv/LC_MESSAGES/kio_applications.mo share/locale/sv/LC_MESSAGES/kio_desktop.mo share/locale/sv/LC_MESSAGES/klipper.mo share/locale/sv/LC_MESSAGES/krdb.mo share/locale/sv/LC_MESSAGES/krunner.mo share/locale/sv/LC_MESSAGES/ksmserver.mo share/locale/sv/LC_MESSAGES/libkicker.mo share/locale/sv/LC_MESSAGES/libkworkspace.mo share/locale/sv/LC_MESSAGES/libnotificationmanager.mo share/locale/sv/LC_MESSAGES/phonon_kde_plugin.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/sv/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/sv/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/sv/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/sv/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/sv/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/sv/LC_MESSAGES/plasma_engine_dict.mo share/locale/sv/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/sv/LC_MESSAGES/plasma_engine_keystate.mo share/locale/sv/LC_MESSAGES/plasma_engine_notifications.mo share/locale/sv/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/sv/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/sv/LC_MESSAGES/plasma_engine_time.mo share/locale/sv/LC_MESSAGES/plasma_engine_weather.mo share/locale/sv/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/sv/LC_MESSAGES/plasma_runner_appstream.mo share/locale/sv/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/sv/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/sv/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/sv/LC_MESSAGES/plasma_runner_kill.mo share/locale/sv/LC_MESSAGES/plasma_runner_locations.mo share/locale/sv/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/sv/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/sv/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/sv/LC_MESSAGES/plasma_runner_services.mo share/locale/sv/LC_MESSAGES/plasma_runner_sessions.mo share/locale/sv/LC_MESSAGES/plasma_runner_shell.mo share/locale/sv/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/sv/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/sv/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/sv/LC_MESSAGES/plasmashell.mo share/locale/sv/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/sv/LC_MESSAGES/soliduiserver.mo share/locale/ta/LC_MESSAGES/freespacenotifier.mo share/locale/ta/LC_MESSAGES/kcm_autostart.mo share/locale/ta/LC_MESSAGES/kcm_colors.mo share/locale/ta/LC_MESSAGES/kcm_cursortheme.mo share/locale/ta/LC_MESSAGES/kcm_desktoptheme.mo share/locale/ta/LC_MESSAGES/kcm_feedback.mo share/locale/ta/LC_MESSAGES/kcm_fonts.mo share/locale/ta/LC_MESSAGES/kcm_icons.mo share/locale/ta/LC_MESSAGES/kcm_lookandfeel.mo share/locale/ta/LC_MESSAGES/kcm_nightcolor.mo share/locale/ta/LC_MESSAGES/kcm_notifications.mo share/locale/ta/LC_MESSAGES/kcm_style.mo share/locale/ta/LC_MESSAGES/kcm_users.mo share/locale/ta/LC_MESSAGES/kcminit.mo share/locale/ta/LC_MESSAGES/kfontinst.mo share/locale/ta/LC_MESSAGES/kio_applications.mo share/locale/ta/LC_MESSAGES/kio_desktop.mo share/locale/ta/LC_MESSAGES/klipper.mo share/locale/ta/LC_MESSAGES/krdb.mo share/locale/ta/LC_MESSAGES/krunner.mo share/locale/ta/LC_MESSAGES/ksmserver.mo share/locale/ta/LC_MESSAGES/libkicker.mo share/locale/ta/LC_MESSAGES/libkworkspace.mo share/locale/ta/LC_MESSAGES/libnotificationmanager.mo share/locale/ta/LC_MESSAGES/phonon_kde_plugin.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/ta/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/ta/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/ta/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/ta/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/ta/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/ta/LC_MESSAGES/plasma_engine_dict.mo share/locale/ta/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/ta/LC_MESSAGES/plasma_engine_keystate.mo share/locale/ta/LC_MESSAGES/plasma_engine_notifications.mo share/locale/ta/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/ta/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/ta/LC_MESSAGES/plasma_engine_time.mo share/locale/ta/LC_MESSAGES/plasma_engine_weather.mo share/locale/ta/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/ta/LC_MESSAGES/plasma_runner_appstream.mo share/locale/ta/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/ta/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/ta/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/ta/LC_MESSAGES/plasma_runner_kill.mo share/locale/ta/LC_MESSAGES/plasma_runner_locations.mo share/locale/ta/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/ta/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/ta/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/ta/LC_MESSAGES/plasma_runner_services.mo share/locale/ta/LC_MESSAGES/plasma_runner_sessions.mo share/locale/ta/LC_MESSAGES/plasma_runner_shell.mo share/locale/ta/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/ta/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/ta/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/ta/LC_MESSAGES/plasmashell.mo share/locale/ta/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/ta/LC_MESSAGES/soliduiserver.mo share/locale/te/LC_MESSAGES/kcm_autostart.mo share/locale/te/LC_MESSAGES/kcm_colors.mo share/locale/te/LC_MESSAGES/kcm_cursortheme.mo share/locale/te/LC_MESSAGES/kcm_desktoptheme.mo share/locale/te/LC_MESSAGES/kcm_fonts.mo share/locale/te/LC_MESSAGES/kcm_icons.mo share/locale/te/LC_MESSAGES/kcm_style.mo share/locale/te/LC_MESSAGES/kcminit.mo share/locale/te/LC_MESSAGES/kfontinst.mo share/locale/te/LC_MESSAGES/kio_applications.mo share/locale/te/LC_MESSAGES/klipper.mo share/locale/te/LC_MESSAGES/krdb.mo share/locale/te/LC_MESSAGES/ksmserver.mo share/locale/te/LC_MESSAGES/libkworkspace.mo share/locale/te/LC_MESSAGES/phonon_kde_plugin.mo share/locale/te/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/te/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/te/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/te/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/te/LC_MESSAGES/plasma_runner_locations.mo share/locale/te/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/te/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/te/LC_MESSAGES/plasma_runner_sessions.mo share/locale/te/LC_MESSAGES/plasma_runner_shell.mo share/locale/te/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/te/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/te/LC_MESSAGES/soliduiserver.mo share/locale/tg/LC_MESSAGES/freespacenotifier.mo share/locale/tg/LC_MESSAGES/kcm_autostart.mo share/locale/tg/LC_MESSAGES/kcm_colors.mo share/locale/tg/LC_MESSAGES/kcm_cursortheme.mo share/locale/tg/LC_MESSAGES/kcm_desktoptheme.mo share/locale/tg/LC_MESSAGES/kcm_fonts.mo share/locale/tg/LC_MESSAGES/kcm_icons.mo share/locale/tg/LC_MESSAGES/kcm_lookandfeel.mo share/locale/tg/LC_MESSAGES/kcm_notifications.mo share/locale/tg/LC_MESSAGES/kcm_style.mo share/locale/tg/LC_MESSAGES/kcm_users.mo share/locale/tg/LC_MESSAGES/kcminit.mo share/locale/tg/LC_MESSAGES/kfontinst.mo share/locale/tg/LC_MESSAGES/kio_applications.mo share/locale/tg/LC_MESSAGES/kio_desktop.mo share/locale/tg/LC_MESSAGES/klipper.mo share/locale/tg/LC_MESSAGES/krdb.mo share/locale/tg/LC_MESSAGES/krunner.mo share/locale/tg/LC_MESSAGES/ksmserver.mo share/locale/tg/LC_MESSAGES/libkicker.mo share/locale/tg/LC_MESSAGES/libkworkspace.mo share/locale/tg/LC_MESSAGES/libnotificationmanager.mo share/locale/tg/LC_MESSAGES/phonon_kde_plugin.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/tg/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/tg/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/tg/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/tg/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/tg/LC_MESSAGES/plasma_engine_dict.mo share/locale/tg/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/tg/LC_MESSAGES/plasma_engine_notifications.mo share/locale/tg/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/tg/LC_MESSAGES/plasma_engine_time.mo share/locale/tg/LC_MESSAGES/plasma_engine_weather.mo share/locale/tg/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/tg/LC_MESSAGES/plasma_runner_appstream.mo share/locale/tg/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/tg/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/tg/LC_MESSAGES/plasma_runner_locations.mo share/locale/tg/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/tg/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/tg/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/tg/LC_MESSAGES/plasma_runner_services.mo share/locale/tg/LC_MESSAGES/plasma_runner_sessions.mo share/locale/tg/LC_MESSAGES/plasma_runner_shell.mo share/locale/tg/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/tg/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/tg/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/tg/LC_MESSAGES/plasmashell.mo share/locale/tg/LC_MESSAGES/soliduiserver.mo share/locale/th/LC_MESSAGES/freespacenotifier.mo share/locale/th/LC_MESSAGES/kcm_autostart.mo share/locale/th/LC_MESSAGES/kcm_colors.mo share/locale/th/LC_MESSAGES/kcm_cursortheme.mo share/locale/th/LC_MESSAGES/kcm_desktoptheme.mo share/locale/th/LC_MESSAGES/kcm_fonts.mo share/locale/th/LC_MESSAGES/kcm_icons.mo share/locale/th/LC_MESSAGES/kcm_style.mo share/locale/th/LC_MESSAGES/kcminit.mo share/locale/th/LC_MESSAGES/kfontinst.mo share/locale/th/LC_MESSAGES/kio_applications.mo share/locale/th/LC_MESSAGES/klipper.mo share/locale/th/LC_MESSAGES/krdb.mo share/locale/th/LC_MESSAGES/ksmserver.mo share/locale/th/LC_MESSAGES/libkworkspace.mo share/locale/th/LC_MESSAGES/phonon_kde_plugin.mo share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/th/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/th/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/th/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/th/LC_MESSAGES/plasma_engine_keystate.mo share/locale/th/LC_MESSAGES/plasma_engine_notifications.mo share/locale/th/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/th/LC_MESSAGES/plasma_engine_weather.mo share/locale/th/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/th/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/th/LC_MESSAGES/plasma_runner_kill.mo share/locale/th/LC_MESSAGES/plasma_runner_locations.mo share/locale/th/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/th/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/th/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/th/LC_MESSAGES/plasma_runner_services.mo share/locale/th/LC_MESSAGES/plasma_runner_sessions.mo share/locale/th/LC_MESSAGES/plasma_runner_shell.mo share/locale/th/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/th/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/th/LC_MESSAGES/soliduiserver.mo share/locale/tok/LC_MESSAGES/freespacenotifier.mo share/locale/tok/LC_MESSAGES/kcm_autostart.mo share/locale/tok/LC_MESSAGES/kcm_colors.mo share/locale/tok/LC_MESSAGES/kcm_cursortheme.mo share/locale/tok/LC_MESSAGES/kcm_desktoptheme.mo share/locale/tok/LC_MESSAGES/kcm_feedback.mo share/locale/tok/LC_MESSAGES/kcm_fonts.mo share/locale/tok/LC_MESSAGES/kcm_icons.mo share/locale/tok/LC_MESSAGES/kcm_lookandfeel.mo share/locale/tok/LC_MESSAGES/kcm_nightcolor.mo share/locale/tok/LC_MESSAGES/kcm_notifications.mo share/locale/tok/LC_MESSAGES/kcm_regionandlang.mo share/locale/tok/LC_MESSAGES/kcm_style.mo share/locale/tok/LC_MESSAGES/kcm_users.mo share/locale/tok/LC_MESSAGES/kcminit.mo share/locale/tok/LC_MESSAGES/kfontinst.mo share/locale/tok/LC_MESSAGES/kio_applications.mo share/locale/tok/LC_MESSAGES/kio_desktop.mo share/locale/tok/LC_MESSAGES/klipper.mo share/locale/tok/LC_MESSAGES/krdb.mo share/locale/tok/LC_MESSAGES/krunner.mo share/locale/tok/LC_MESSAGES/ksmserver.mo share/locale/tok/LC_MESSAGES/libkicker.mo share/locale/tok/LC_MESSAGES/libkworkspace.mo share/locale/tok/LC_MESSAGES/libnotificationmanager.mo share/locale/tok/LC_MESSAGES/phonon_kde_plugin.mo share/locale/tok/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/tok/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/tok/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/tok/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/tok/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/tok/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/tok/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/tok/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/tok/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/tok/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/tok/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/tok/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/tok/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/tok/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/tok/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/tok/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/tok/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/tok/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/tok/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/tok/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/tok/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/tok/LC_MESSAGES/plasma_engine_dict.mo share/locale/tok/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/tok/LC_MESSAGES/plasma_engine_keystate.mo share/locale/tok/LC_MESSAGES/plasma_engine_notifications.mo share/locale/tok/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/tok/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/tok/LC_MESSAGES/plasma_engine_time.mo share/locale/tok/LC_MESSAGES/plasma_engine_weather.mo share/locale/tok/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/tok/LC_MESSAGES/plasma_runner_appstream.mo share/locale/tok/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/tok/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/tok/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/tok/LC_MESSAGES/plasma_runner_kill.mo share/locale/tok/LC_MESSAGES/plasma_runner_locations.mo share/locale/tok/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/tok/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/tok/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/tok/LC_MESSAGES/plasma_runner_services.mo share/locale/tok/LC_MESSAGES/plasma_runner_sessions.mo share/locale/tok/LC_MESSAGES/plasma_runner_shell.mo share/locale/tok/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/tok/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/tok/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/tok/LC_MESSAGES/plasmashell.mo share/locale/tok/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/tok/LC_MESSAGES/soliduiserver.mo share/locale/tr/LC_MESSAGES/freespacenotifier.mo share/locale/tr/LC_MESSAGES/kcm_autostart.mo share/locale/tr/LC_MESSAGES/kcm_colors.mo share/locale/tr/LC_MESSAGES/kcm_cursortheme.mo share/locale/tr/LC_MESSAGES/kcm_desktoptheme.mo share/locale/tr/LC_MESSAGES/kcm_feedback.mo share/locale/tr/LC_MESSAGES/kcm_fonts.mo share/locale/tr/LC_MESSAGES/kcm_icons.mo share/locale/tr/LC_MESSAGES/kcm_lookandfeel.mo share/locale/tr/LC_MESSAGES/kcm_nightcolor.mo share/locale/tr/LC_MESSAGES/kcm_notifications.mo share/locale/tr/LC_MESSAGES/kcm_regionandlang.mo share/locale/tr/LC_MESSAGES/kcm_soundtheme.mo share/locale/tr/LC_MESSAGES/kcm_style.mo share/locale/tr/LC_MESSAGES/kcm_users.mo share/locale/tr/LC_MESSAGES/kcminit.mo share/locale/tr/LC_MESSAGES/kded_devicenotifications.mo share/locale/tr/LC_MESSAGES/kfontinst.mo share/locale/tr/LC_MESSAGES/kio_applications.mo share/locale/tr/LC_MESSAGES/kio_desktop.mo share/locale/tr/LC_MESSAGES/klipper.mo share/locale/tr/LC_MESSAGES/krdb.mo share/locale/tr/LC_MESSAGES/krunner.mo share/locale/tr/LC_MESSAGES/ksmserver.mo share/locale/tr/LC_MESSAGES/libkicker.mo share/locale/tr/LC_MESSAGES/libkmpris.mo share/locale/tr/LC_MESSAGES/libkworkspace.mo share/locale/tr/LC_MESSAGES/libnotificationmanager.mo share/locale/tr/LC_MESSAGES/phonon_kde_plugin.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.brightness.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/tr/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/tr/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/tr/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/tr/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/tr/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/tr/LC_MESSAGES/plasma_engine_dict.mo share/locale/tr/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/tr/LC_MESSAGES/plasma_engine_keystate.mo share/locale/tr/LC_MESSAGES/plasma_engine_notifications.mo share/locale/tr/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/tr/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/tr/LC_MESSAGES/plasma_engine_time.mo share/locale/tr/LC_MESSAGES/plasma_engine_weather.mo +share/locale/tr/LC_MESSAGES/plasma_interactiveconsole.mo share/locale/tr/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/tr/LC_MESSAGES/plasma_runner_appstream.mo share/locale/tr/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/tr/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/tr/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/tr/LC_MESSAGES/plasma_runner_kill.mo share/locale/tr/LC_MESSAGES/plasma_runner_locations.mo share/locale/tr/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/tr/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/tr/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/tr/LC_MESSAGES/plasma_runner_services.mo share/locale/tr/LC_MESSAGES/plasma_runner_sessions.mo share/locale/tr/LC_MESSAGES/plasma_runner_shell.mo share/locale/tr/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/tr/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/tr/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/tr/LC_MESSAGES/plasmashell.mo share/locale/tr/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/tr/LC_MESSAGES/plasmawindowed.mo share/locale/tr/LC_MESSAGES/session-shortcuts-kded.mo share/locale/tr/LC_MESSAGES/soliduiserver.mo share/locale/ug/LC_MESSAGES/freespacenotifier.mo share/locale/ug/LC_MESSAGES/kcm_autostart.mo share/locale/ug/LC_MESSAGES/kcm_colors.mo share/locale/ug/LC_MESSAGES/kcm_cursortheme.mo share/locale/ug/LC_MESSAGES/kcm_desktoptheme.mo share/locale/ug/LC_MESSAGES/kcm_fonts.mo share/locale/ug/LC_MESSAGES/kcm_icons.mo share/locale/ug/LC_MESSAGES/kcm_style.mo share/locale/ug/LC_MESSAGES/kcminit.mo share/locale/ug/LC_MESSAGES/kfontinst.mo share/locale/ug/LC_MESSAGES/kio_applications.mo share/locale/ug/LC_MESSAGES/klipper.mo share/locale/ug/LC_MESSAGES/krdb.mo share/locale/ug/LC_MESSAGES/ksmserver.mo share/locale/ug/LC_MESSAGES/libkicker.mo share/locale/ug/LC_MESSAGES/libkworkspace.mo share/locale/ug/LC_MESSAGES/phonon_kde_plugin.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/ug/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/ug/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/ug/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/ug/LC_MESSAGES/plasma_engine_keystate.mo share/locale/ug/LC_MESSAGES/plasma_engine_notifications.mo share/locale/ug/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/ug/LC_MESSAGES/plasma_engine_weather.mo share/locale/ug/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/ug/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/ug/LC_MESSAGES/plasma_runner_kill.mo share/locale/ug/LC_MESSAGES/plasma_runner_locations.mo share/locale/ug/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/ug/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/ug/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/ug/LC_MESSAGES/plasma_runner_services.mo share/locale/ug/LC_MESSAGES/plasma_runner_sessions.mo share/locale/ug/LC_MESSAGES/plasma_runner_shell.mo share/locale/ug/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/ug/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/ug/LC_MESSAGES/soliduiserver.mo share/locale/uk/LC_MESSAGES/freespacenotifier.mo share/locale/uk/LC_MESSAGES/kcm_autostart.mo share/locale/uk/LC_MESSAGES/kcm_colors.mo share/locale/uk/LC_MESSAGES/kcm_cursortheme.mo share/locale/uk/LC_MESSAGES/kcm_desktoptheme.mo share/locale/uk/LC_MESSAGES/kcm_feedback.mo share/locale/uk/LC_MESSAGES/kcm_fonts.mo share/locale/uk/LC_MESSAGES/kcm_icons.mo share/locale/uk/LC_MESSAGES/kcm_lookandfeel.mo share/locale/uk/LC_MESSAGES/kcm_nightcolor.mo share/locale/uk/LC_MESSAGES/kcm_notifications.mo share/locale/uk/LC_MESSAGES/kcm_regionandlang.mo share/locale/uk/LC_MESSAGES/kcm_soundtheme.mo share/locale/uk/LC_MESSAGES/kcm_style.mo share/locale/uk/LC_MESSAGES/kcm_users.mo share/locale/uk/LC_MESSAGES/kcminit.mo share/locale/uk/LC_MESSAGES/kded_devicenotifications.mo share/locale/uk/LC_MESSAGES/kfontinst.mo share/locale/uk/LC_MESSAGES/kio_applications.mo share/locale/uk/LC_MESSAGES/kio_desktop.mo share/locale/uk/LC_MESSAGES/klipper.mo share/locale/uk/LC_MESSAGES/krdb.mo share/locale/uk/LC_MESSAGES/krunner.mo share/locale/uk/LC_MESSAGES/ksmserver.mo share/locale/uk/LC_MESSAGES/libkicker.mo share/locale/uk/LC_MESSAGES/libkmpris.mo share/locale/uk/LC_MESSAGES/libkworkspace.mo share/locale/uk/LC_MESSAGES/libnotificationmanager.mo share/locale/uk/LC_MESSAGES/phonon_kde_plugin.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.brightness.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/uk/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/uk/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/uk/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/uk/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/uk/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/uk/LC_MESSAGES/plasma_engine_dict.mo share/locale/uk/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/uk/LC_MESSAGES/plasma_engine_keystate.mo share/locale/uk/LC_MESSAGES/plasma_engine_notifications.mo share/locale/uk/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/uk/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/uk/LC_MESSAGES/plasma_engine_time.mo share/locale/uk/LC_MESSAGES/plasma_engine_weather.mo share/locale/uk/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/uk/LC_MESSAGES/plasma_runner_appstream.mo share/locale/uk/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/uk/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/uk/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/uk/LC_MESSAGES/plasma_runner_kill.mo share/locale/uk/LC_MESSAGES/plasma_runner_locations.mo share/locale/uk/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/uk/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/uk/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/uk/LC_MESSAGES/plasma_runner_services.mo share/locale/uk/LC_MESSAGES/plasma_runner_sessions.mo share/locale/uk/LC_MESSAGES/plasma_runner_shell.mo share/locale/uk/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/uk/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/uk/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/uk/LC_MESSAGES/plasmashell.mo share/locale/uk/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/uk/LC_MESSAGES/plasmawindowed.mo share/locale/uk/LC_MESSAGES/session-shortcuts-kded.mo share/locale/uk/LC_MESSAGES/soliduiserver.mo share/locale/uz/LC_MESSAGES/kcm_colors.mo share/locale/uz/LC_MESSAGES/kcm_cursortheme.mo share/locale/uz/LC_MESSAGES/kcm_fonts.mo share/locale/uz/LC_MESSAGES/kcm_icons.mo share/locale/uz/LC_MESSAGES/kcm_style.mo share/locale/uz/LC_MESSAGES/kfontinst.mo share/locale/uz/LC_MESSAGES/kio_applications.mo share/locale/uz/LC_MESSAGES/klipper.mo share/locale/uz/LC_MESSAGES/ksmserver.mo share/locale/uz@cyrillic/LC_MESSAGES/kcm_colors.mo share/locale/uz@cyrillic/LC_MESSAGES/kcm_cursortheme.mo share/locale/uz@cyrillic/LC_MESSAGES/kcm_fonts.mo share/locale/uz@cyrillic/LC_MESSAGES/kcm_icons.mo share/locale/uz@cyrillic/LC_MESSAGES/kcm_style.mo share/locale/uz@cyrillic/LC_MESSAGES/kfontinst.mo share/locale/uz@cyrillic/LC_MESSAGES/kio_applications.mo share/locale/uz@cyrillic/LC_MESSAGES/klipper.mo share/locale/uz@cyrillic/LC_MESSAGES/ksmserver.mo share/locale/uz@cyrillic/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/vi/LC_MESSAGES/freespacenotifier.mo share/locale/vi/LC_MESSAGES/kcm_autostart.mo share/locale/vi/LC_MESSAGES/kcm_colors.mo share/locale/vi/LC_MESSAGES/kcm_cursortheme.mo share/locale/vi/LC_MESSAGES/kcm_desktoptheme.mo share/locale/vi/LC_MESSAGES/kcm_feedback.mo share/locale/vi/LC_MESSAGES/kcm_fonts.mo share/locale/vi/LC_MESSAGES/kcm_icons.mo share/locale/vi/LC_MESSAGES/kcm_lookandfeel.mo share/locale/vi/LC_MESSAGES/kcm_nightcolor.mo share/locale/vi/LC_MESSAGES/kcm_notifications.mo share/locale/vi/LC_MESSAGES/kcm_regionandlang.mo share/locale/vi/LC_MESSAGES/kcm_style.mo share/locale/vi/LC_MESSAGES/kcm_users.mo share/locale/vi/LC_MESSAGES/kcminit.mo share/locale/vi/LC_MESSAGES/kfontinst.mo share/locale/vi/LC_MESSAGES/kio_applications.mo share/locale/vi/LC_MESSAGES/kio_desktop.mo share/locale/vi/LC_MESSAGES/klipper.mo share/locale/vi/LC_MESSAGES/krdb.mo share/locale/vi/LC_MESSAGES/krunner.mo share/locale/vi/LC_MESSAGES/ksmserver.mo share/locale/vi/LC_MESSAGES/libkicker.mo share/locale/vi/LC_MESSAGES/libkworkspace.mo share/locale/vi/LC_MESSAGES/libnotificationmanager.mo share/locale/vi/LC_MESSAGES/phonon_kde_plugin.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/vi/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/vi/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/vi/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/vi/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/vi/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/vi/LC_MESSAGES/plasma_engine_dict.mo share/locale/vi/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/vi/LC_MESSAGES/plasma_engine_keystate.mo share/locale/vi/LC_MESSAGES/plasma_engine_notifications.mo share/locale/vi/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/vi/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/vi/LC_MESSAGES/plasma_engine_time.mo share/locale/vi/LC_MESSAGES/plasma_engine_weather.mo share/locale/vi/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/vi/LC_MESSAGES/plasma_runner_appstream.mo share/locale/vi/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/vi/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/vi/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/vi/LC_MESSAGES/plasma_runner_kill.mo share/locale/vi/LC_MESSAGES/plasma_runner_locations.mo share/locale/vi/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/vi/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/vi/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/vi/LC_MESSAGES/plasma_runner_services.mo share/locale/vi/LC_MESSAGES/plasma_runner_sessions.mo share/locale/vi/LC_MESSAGES/plasma_runner_shell.mo share/locale/vi/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/vi/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/vi/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/vi/LC_MESSAGES/plasmashell.mo share/locale/vi/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/vi/LC_MESSAGES/soliduiserver.mo share/locale/wa/LC_MESSAGES/freespacenotifier.mo share/locale/wa/LC_MESSAGES/kcm_autostart.mo share/locale/wa/LC_MESSAGES/kcm_colors.mo share/locale/wa/LC_MESSAGES/kcm_cursortheme.mo share/locale/wa/LC_MESSAGES/kcm_desktoptheme.mo share/locale/wa/LC_MESSAGES/kcm_fonts.mo share/locale/wa/LC_MESSAGES/kcm_icons.mo share/locale/wa/LC_MESSAGES/kcm_style.mo share/locale/wa/LC_MESSAGES/kcminit.mo share/locale/wa/LC_MESSAGES/kfontinst.mo share/locale/wa/LC_MESSAGES/kio_applications.mo share/locale/wa/LC_MESSAGES/klipper.mo share/locale/wa/LC_MESSAGES/krdb.mo share/locale/wa/LC_MESSAGES/ksmserver.mo share/locale/wa/LC_MESSAGES/libkworkspace.mo share/locale/wa/LC_MESSAGES/phonon_kde_plugin.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/wa/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/wa/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/wa/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/wa/LC_MESSAGES/plasma_engine_keystate.mo share/locale/wa/LC_MESSAGES/plasma_engine_notifications.mo share/locale/wa/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/wa/LC_MESSAGES/plasma_engine_weather.mo share/locale/wa/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/wa/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/wa/LC_MESSAGES/plasma_runner_kill.mo share/locale/wa/LC_MESSAGES/plasma_runner_locations.mo share/locale/wa/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/wa/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/wa/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/wa/LC_MESSAGES/plasma_runner_services.mo share/locale/wa/LC_MESSAGES/plasma_runner_sessions.mo share/locale/wa/LC_MESSAGES/plasma_runner_shell.mo share/locale/wa/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/wa/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/wa/LC_MESSAGES/soliduiserver.mo share/locale/xh/LC_MESSAGES/kcm_colors.mo share/locale/xh/LC_MESSAGES/kcm_cursortheme.mo share/locale/xh/LC_MESSAGES/kcm_fonts.mo share/locale/xh/LC_MESSAGES/kcm_icons.mo share/locale/xh/LC_MESSAGES/kcm_style.mo share/locale/xh/LC_MESSAGES/kfontinst.mo share/locale/xh/LC_MESSAGES/klipper.mo share/locale/xh/LC_MESSAGES/krdb.mo share/locale/xh/LC_MESSAGES/ksmserver.mo share/locale/zh_CN/LC_MESSAGES/freespacenotifier.mo share/locale/zh_CN/LC_MESSAGES/kcm_autostart.mo share/locale/zh_CN/LC_MESSAGES/kcm_colors.mo share/locale/zh_CN/LC_MESSAGES/kcm_cursortheme.mo share/locale/zh_CN/LC_MESSAGES/kcm_desktoptheme.mo share/locale/zh_CN/LC_MESSAGES/kcm_feedback.mo share/locale/zh_CN/LC_MESSAGES/kcm_fonts.mo share/locale/zh_CN/LC_MESSAGES/kcm_icons.mo share/locale/zh_CN/LC_MESSAGES/kcm_lookandfeel.mo share/locale/zh_CN/LC_MESSAGES/kcm_nightcolor.mo share/locale/zh_CN/LC_MESSAGES/kcm_notifications.mo share/locale/zh_CN/LC_MESSAGES/kcm_regionandlang.mo share/locale/zh_CN/LC_MESSAGES/kcm_soundtheme.mo share/locale/zh_CN/LC_MESSAGES/kcm_style.mo share/locale/zh_CN/LC_MESSAGES/kcm_users.mo share/locale/zh_CN/LC_MESSAGES/kcminit.mo share/locale/zh_CN/LC_MESSAGES/kded_devicenotifications.mo share/locale/zh_CN/LC_MESSAGES/kfontinst.mo share/locale/zh_CN/LC_MESSAGES/kio_applications.mo share/locale/zh_CN/LC_MESSAGES/kio_desktop.mo share/locale/zh_CN/LC_MESSAGES/klipper.mo share/locale/zh_CN/LC_MESSAGES/krdb.mo share/locale/zh_CN/LC_MESSAGES/krunner.mo share/locale/zh_CN/LC_MESSAGES/ksmserver.mo share/locale/zh_CN/LC_MESSAGES/libkicker.mo share/locale/zh_CN/LC_MESSAGES/libkmpris.mo share/locale/zh_CN/LC_MESSAGES/libkworkspace.mo share/locale/zh_CN/LC_MESSAGES/libnotificationmanager.mo share/locale/zh_CN/LC_MESSAGES/phonon_kde_plugin.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.brightness.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/zh_CN/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/zh_CN/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/zh_CN/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/zh_CN/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/zh_CN/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/zh_CN/LC_MESSAGES/plasma_engine_dict.mo share/locale/zh_CN/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/zh_CN/LC_MESSAGES/plasma_engine_keystate.mo share/locale/zh_CN/LC_MESSAGES/plasma_engine_notifications.mo share/locale/zh_CN/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/zh_CN/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/zh_CN/LC_MESSAGES/plasma_engine_time.mo share/locale/zh_CN/LC_MESSAGES/plasma_engine_weather.mo share/locale/zh_CN/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_appstream.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_kill.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_locations.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_services.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_sessions.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_shell.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/zh_CN/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/zh_CN/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/zh_CN/LC_MESSAGES/plasmashell.mo share/locale/zh_CN/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/zh_CN/LC_MESSAGES/plasmawindowed.mo share/locale/zh_CN/LC_MESSAGES/session-shortcuts-kded.mo share/locale/zh_CN/LC_MESSAGES/soliduiserver.mo share/locale/zh_TW/LC_MESSAGES/freespacenotifier.mo share/locale/zh_TW/LC_MESSAGES/kcm_autostart.mo share/locale/zh_TW/LC_MESSAGES/kcm_colors.mo share/locale/zh_TW/LC_MESSAGES/kcm_cursortheme.mo share/locale/zh_TW/LC_MESSAGES/kcm_desktoptheme.mo share/locale/zh_TW/LC_MESSAGES/kcm_feedback.mo share/locale/zh_TW/LC_MESSAGES/kcm_fonts.mo share/locale/zh_TW/LC_MESSAGES/kcm_icons.mo share/locale/zh_TW/LC_MESSAGES/kcm_lookandfeel.mo share/locale/zh_TW/LC_MESSAGES/kcm_nightcolor.mo share/locale/zh_TW/LC_MESSAGES/kcm_notifications.mo share/locale/zh_TW/LC_MESSAGES/kcm_regionandlang.mo share/locale/zh_TW/LC_MESSAGES/kcm_soundtheme.mo share/locale/zh_TW/LC_MESSAGES/kcm_style.mo share/locale/zh_TW/LC_MESSAGES/kcm_users.mo share/locale/zh_TW/LC_MESSAGES/kcminit.mo share/locale/zh_TW/LC_MESSAGES/kded_devicenotifications.mo share/locale/zh_TW/LC_MESSAGES/kfontinst.mo share/locale/zh_TW/LC_MESSAGES/kio_applications.mo share/locale/zh_TW/LC_MESSAGES/kio_desktop.mo share/locale/zh_TW/LC_MESSAGES/klipper.mo share/locale/zh_TW/LC_MESSAGES/krdb.mo share/locale/zh_TW/LC_MESSAGES/krunner.mo share/locale/zh_TW/LC_MESSAGES/ksmserver.mo share/locale/zh_TW/LC_MESSAGES/libkicker.mo share/locale/zh_TW/LC_MESSAGES/libkmpris.mo share/locale/zh_TW/LC_MESSAGES/libkworkspace.mo share/locale/zh_TW/LC_MESSAGES/libnotificationmanager.mo share/locale/zh_TW/LC_MESSAGES/phonon_kde_plugin.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.brightness.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/zh_TW/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/zh_TW/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/zh_TW/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/zh_TW/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/zh_TW/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/zh_TW/LC_MESSAGES/plasma_engine_dict.mo share/locale/zh_TW/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/zh_TW/LC_MESSAGES/plasma_engine_keystate.mo share/locale/zh_TW/LC_MESSAGES/plasma_engine_notifications.mo share/locale/zh_TW/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/zh_TW/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/zh_TW/LC_MESSAGES/plasma_engine_time.mo share/locale/zh_TW/LC_MESSAGES/plasma_engine_weather.mo +share/locale/zh_TW/LC_MESSAGES/plasma_interactiveconsole.mo share/locale/zh_TW/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_appstream.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_kill.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_locations.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_services.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_sessions.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_shell.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/zh_TW/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/zh_TW/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/zh_TW/LC_MESSAGES/plasmashell.mo share/locale/zh_TW/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/zh_TW/LC_MESSAGES/plasmawindowed.mo share/locale/zh_TW/LC_MESSAGES/session-shortcuts-kded.mo share/locale/zh_TW/LC_MESSAGES/soliduiserver.mo share/metainfo/org.kde.breeze.desktop.appdata.xml share/metainfo/org.kde.breezedark.desktop.appdata.xml share/metainfo/org.kde.breezetwilight.desktop.appdata.xml share/metainfo/org.kde.color.appdata.xml share/metainfo/org.kde.image.appdata.xml share/metainfo/org.kde.plasma.activitybar.appdata.xml share/metainfo/org.kde.plasma.analogclock.appdata.xml share/metainfo/org.kde.plasma.appmenu.appdata.xml share/metainfo/org.kde.plasma.battery.appdata.xml share/metainfo/org.kde.plasma.brightness.appdata.xml share/metainfo/org.kde.plasma.calendar.appdata.xml share/metainfo/org.kde.plasma.cameraindicator.appdata.xml share/metainfo/org.kde.plasma.clipboard.appdata.xml share/metainfo/org.kde.plasma.devicenotifier.appdata.xml share/metainfo/org.kde.plasma.digitalclock.appdata.xml share/metainfo/org.kde.plasma.lock_logout.appdata.xml share/metainfo/org.kde.plasma.manage-inputmethod.appdata.xml share/metainfo/org.kde.plasma.mediacontroller.appdata.xml share/metainfo/org.kde.plasma.notifications.appdata.xml share/metainfo/org.kde.plasma.systemmonitor.appdata.xml share/metainfo/org.kde.plasma.systemmonitor.cpu.appdata.xml share/metainfo/org.kde.plasma.systemmonitor.cpucore.appdata.xml share/metainfo/org.kde.plasma.systemmonitor.diskactivity.appdata.xml share/metainfo/org.kde.plasma.systemmonitor.diskusage.appdata.xml share/metainfo/org.kde.plasma.systemmonitor.memory.appdata.xml share/metainfo/org.kde.plasma.systemmonitor.net.appdata.xml share/metainfo/org.kde.plasma.systemtray.appdata.xml share/metainfo/org.kde.slideshow.appdata.xml share/plasma/avatars/Artist Konqi.png share/plasma/avatars/Bookworm Konqi.png share/plasma/avatars/Boss Konqi.png share/plasma/avatars/Bug Catcher Konqi.png share/plasma/avatars/Card Shark Konqi.png share/plasma/avatars/Hacker Konqi.png share/plasma/avatars/Journalist Konqi.png share/plasma/avatars/Katie.png share/plasma/avatars/Konqi.png share/plasma/avatars/Mechanic Konqi.png share/plasma/avatars/Messenger Konqi.png share/plasma/avatars/Musician Konqi.png share/plasma/avatars/Office Worker Konqi.png share/plasma/avatars/PC Builder Konqi.png share/plasma/avatars/Scientist Konqi.png share/plasma/avatars/Teacher Konqi.png share/plasma/avatars/Virtual Reality Konqi.png share/plasma/avatars/photos/Air Balloon.png share/plasma/avatars/photos/Air Balloon.png.license share/plasma/avatars/photos/Astronaut.png share/plasma/avatars/photos/Astronaut.png.license share/plasma/avatars/photos/Books.png share/plasma/avatars/photos/Books.png.license share/plasma/avatars/photos/Brushes.png share/plasma/avatars/photos/Brushes.png.license share/plasma/avatars/photos/Bulb.png share/plasma/avatars/photos/Bulb.png.license share/plasma/avatars/photos/Car.png share/plasma/avatars/photos/Car.png.license share/plasma/avatars/photos/Cat.png share/plasma/avatars/photos/Cat.png.license share/plasma/avatars/photos/Chameleon.png share/plasma/avatars/photos/Chameleon.png.license share/plasma/avatars/photos/Cocktail.png share/plasma/avatars/photos/Cocktail.png.license share/plasma/avatars/photos/Dog.png share/plasma/avatars/photos/Dog.png.license share/plasma/avatars/photos/Fish.png share/plasma/avatars/photos/Fish.png.license share/plasma/avatars/photos/Gamepad.png share/plasma/avatars/photos/Gamepad.png.license share/plasma/avatars/photos/Owl.png share/plasma/avatars/photos/Owl.png.license share/plasma/avatars/photos/Pancakes.png share/plasma/avatars/photos/Pancakes.png.license share/plasma/avatars/photos/Parrot.png share/plasma/avatars/photos/Parrot.png.license share/plasma/avatars/photos/Pencils.png share/plasma/avatars/photos/Pencils.png.license share/plasma/avatars/photos/Shuttle.png share/plasma/avatars/photos/Shuttle.png.license share/plasma/avatars/photos/Soccer.png share/plasma/avatars/photos/Soccer.png.license share/plasma/avatars/photos/Sunflower.png share/plasma/avatars/photos/Sunflower.png.license share/plasma/avatars/photos/Sushi.png share/plasma/avatars/photos/Sushi.png.license share/plasma/look-and-feel/org.kde.breeze.desktop/contents/defaults share/plasma/look-and-feel/org.kde.breeze.desktop/contents/layouts/org.kde.plasma.desktop-layout.js share/plasma/look-and-feel/org.kde.breeze.desktop/contents/lockscreen/LockOsd.qml share/plasma/look-and-feel/org.kde.breeze.desktop/contents/lockscreen/LockScreen.qml share/plasma/look-and-feel/org.kde.breeze.desktop/contents/lockscreen/LockScreenUi.qml share/plasma/look-and-feel/org.kde.breeze.desktop/contents/lockscreen/MainBlock.qml share/plasma/look-and-feel/org.kde.breeze.desktop/contents/lockscreen/MediaControls.qml share/plasma/look-and-feel/org.kde.breeze.desktop/contents/lockscreen/NoPasswordUnlock.qml share/plasma/look-and-feel/org.kde.breeze.desktop/contents/lockscreen/config.qml share/plasma/look-and-feel/org.kde.breeze.desktop/contents/lockscreen/config.xml share/plasma/look-and-feel/org.kde.breeze.desktop/contents/logout/Logout.qml share/plasma/look-and-feel/org.kde.breeze.desktop/contents/logout/LogoutButton.qml share/plasma/look-and-feel/org.kde.breeze.desktop/contents/logout/timer.js share/plasma/look-and-feel/org.kde.breeze.desktop/contents/osd/Osd.qml share/plasma/look-and-feel/org.kde.breeze.desktop/contents/osd/OsdItem.qml share/plasma/look-and-feel/org.kde.breeze.desktop/contents/previews/fullscreenpreview.jpg share/plasma/look-and-feel/org.kde.breeze.desktop/contents/previews/lockscreen.png share/plasma/look-and-feel/org.kde.breeze.desktop/contents/previews/loginmanager.png share/plasma/look-and-feel/org.kde.breeze.desktop/contents/previews/preview.png share/plasma/look-and-feel/org.kde.breeze.desktop/contents/previews/runcommand.png share/plasma/look-and-feel/org.kde.breeze.desktop/contents/previews/splash.png share/plasma/look-and-feel/org.kde.breeze.desktop/contents/previews/userswitcher.png share/plasma/look-and-feel/org.kde.breeze.desktop/contents/previews/windowdecoration.png share/plasma/look-and-feel/org.kde.breeze.desktop/contents/splash/Splash.qml share/plasma/look-and-feel/org.kde.breeze.desktop/contents/splash/images/busywidget.svgz share/plasma/look-and-feel/org.kde.breeze.desktop/contents/splash/images/kde.svgz share/plasma/look-and-feel/org.kde.breeze.desktop/contents/splash/images/plasma.svgz share/plasma/look-and-feel/org.kde.breeze.desktop/contents/systemdialog/SystemDialog.qml share/plasma/look-and-feel/org.kde.breeze.desktop/metadata.json share/plasma/look-and-feel/org.kde.breezedark.desktop/contents/defaults share/plasma/look-and-feel/org.kde.breezedark.desktop/contents/layouts/org.kde.plasma.desktop-layout.js share/plasma/look-and-feel/org.kde.breezedark.desktop/contents/previews/fullscreenpreview.jpg share/plasma/look-and-feel/org.kde.breezedark.desktop/contents/previews/preview.png share/plasma/look-and-feel/org.kde.breezedark.desktop/metadata.json share/plasma/look-and-feel/org.kde.breezetwilight.desktop/contents/defaults share/plasma/look-and-feel/org.kde.breezetwilight.desktop/contents/layouts/org.kde.plasma.desktop-layout.js share/plasma/look-and-feel/org.kde.breezetwilight.desktop/contents/previews/fullscreenpreview.jpg share/plasma/look-and-feel/org.kde.breezetwilight.desktop/contents/previews/preview.png share/plasma/look-and-feel/org.kde.breezetwilight.desktop/metadata.json share/plasma/plasmoids/org.kde.plasma.activitybar/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.activitybar/metadata.json share/plasma/plasmoids/org.kde.plasma.analogclock/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.analogclock/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.analogclock/contents/ui/Hand.qml share/plasma/plasmoids/org.kde.plasma.analogclock/contents/ui/configGeneral.qml share/plasma/plasmoids/org.kde.plasma.analogclock/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.analogclock/metadata.json share/plasma/plasmoids/org.kde.plasma.appmenu/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.appmenu/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.appmenu/contents/ui/MenuDelegate.qml share/plasma/plasmoids/org.kde.plasma.appmenu/contents/ui/configGeneral.qml share/plasma/plasmoids/org.kde.plasma.appmenu/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.appmenu/metadata.json share/plasma/plasmoids/org.kde.plasma.battery/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.battery/contents/ui/BatteryItem.qml share/plasma/plasmoids/org.kde.plasma.battery/contents/ui/CompactRepresentation.qml share/plasma/plasmoids/org.kde.plasma.battery/contents/ui/InhibitionHint.qml share/plasma/plasmoids/org.kde.plasma.battery/contents/ui/PopupDialog.qml share/plasma/plasmoids/org.kde.plasma.battery/contents/ui/PowerManagementItem.qml share/plasma/plasmoids/org.kde.plasma.battery/contents/ui/PowerProfileItem.qml share/plasma/plasmoids/org.kde.plasma.battery/contents/ui/logic.js share/plasma/plasmoids/org.kde.plasma.battery/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.battery/metadata.json share/plasma/plasmoids/org.kde.plasma.brightness/contents/ui/BrightnessItem.qml share/plasma/plasmoids/org.kde.plasma.brightness/contents/ui/CompactRepresentation.qml share/plasma/plasmoids/org.kde.plasma.brightness/contents/ui/NightColorItem.qml share/plasma/plasmoids/org.kde.plasma.brightness/contents/ui/PopupDialog.qml share/plasma/plasmoids/org.kde.plasma.brightness/contents/ui/logic.js share/plasma/plasmoids/org.kde.plasma.brightness/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.brightness/metadata.json share/plasma/plasmoids/org.kde.plasma.calendar/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.calendar/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.calendar/contents/images/mini-calendar.svgz share/plasma/plasmoids/org.kde.plasma.calendar/contents/ui/configGeneral.qml share/plasma/plasmoids/org.kde.plasma.calendar/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.calendar/metadata.json share/plasma/plasmoids/org.kde.plasma.cameraindicator/contents/ui/FullRepresentation.qml share/plasma/plasmoids/org.kde.plasma.cameraindicator/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.cameraindicator/metadata.json share/plasma/plasmoids/org.kde.plasma.clipboard/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.clipboard/contents/ui/BarcodePage.qml share/plasma/plasmoids/org.kde.plasma.clipboard/contents/ui/ClipboardItemDelegate.qml share/plasma/plasmoids/org.kde.plasma.clipboard/contents/ui/ClipboardPage.qml share/plasma/plasmoids/org.kde.plasma.clipboard/contents/ui/DelegateToolButtons.qml share/plasma/plasmoids/org.kde.plasma.clipboard/contents/ui/EditPage.qml share/plasma/plasmoids/org.kde.plasma.clipboard/contents/ui/ImageItemDelegate.qml share/plasma/plasmoids/org.kde.plasma.clipboard/contents/ui/Menu.qml share/plasma/plasmoids/org.kde.plasma.clipboard/contents/ui/TextItemDelegate.qml share/plasma/plasmoids/org.kde.plasma.clipboard/contents/ui/UrlItemDelegate.qml share/plasma/plasmoids/org.kde.plasma.clipboard/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.clipboard/metadata.json share/plasma/plasmoids/org.kde.plasma.devicenotifier/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.devicenotifier/contents/ui/DeviceItem.qml share/plasma/plasmoids/org.kde.plasma.devicenotifier/contents/ui/FullRepresentation.qml share/plasma/plasmoids/org.kde.plasma.devicenotifier/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.devicenotifier/metadata.json share/plasma/plasmoids/org.kde.plasma.digitalclock/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.digitalclock/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.digitalclock/contents/ui/CalendarView.qml share/plasma/plasmoids/org.kde.plasma.digitalclock/contents/ui/DigitalClock.qml share/plasma/plasmoids/org.kde.plasma.digitalclock/contents/ui/MonthMenu.qml share/plasma/plasmoids/org.kde.plasma.digitalclock/contents/ui/Tooltip.qml share/plasma/plasmoids/org.kde.plasma.digitalclock/contents/ui/configAppearance.qml share/plasma/plasmoids/org.kde.plasma.digitalclock/contents/ui/configCalendar.qml share/plasma/plasmoids/org.kde.plasma.digitalclock/contents/ui/configTimeZones.qml share/plasma/plasmoids/org.kde.plasma.digitalclock/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.digitalclock/metadata.json share/plasma/plasmoids/org.kde.plasma.icon/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.icon/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.icon/metadata.json share/plasma/plasmoids/org.kde.plasma.lock_logout/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.lock_logout/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.lock_logout/contents/ui/ConfigGeneral.qml share/plasma/plasmoids/org.kde.plasma.lock_logout/contents/ui/data.js share/plasma/plasmoids/org.kde.plasma.lock_logout/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.lock_logout/metadata.json share/plasma/plasmoids/org.kde.plasma.manage-inputmethod/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.manage-inputmethod/metadata.json share/plasma/plasmoids/org.kde.plasma.mediacontroller/contents/ui/AlbumArtStackView.qml share/plasma/plasmoids/org.kde.plasma.mediacontroller/contents/ui/CompactRepresentation.qml share/plasma/plasmoids/org.kde.plasma.mediacontroller/contents/ui/ExpandedRepresentation.qml share/plasma/plasmoids/org.kde.plasma.mediacontroller/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.mediacontroller/metadata.json share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/CompactRepresentation.qml share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/DraggableDelegate.qml share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/DraggableFileArea.qml share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/EditContextMenu.qml share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/FullRepresentation.qml share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/JobDetails.qml share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/JobItem.qml share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/NotificationHeader.qml share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/NotificationItem.qml share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/NotificationPopup.qml share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/NotificationReplyField.qml share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/SelectableLabel.qml share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/ThumbnailStrip.qml share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/global/Globals.qml share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/global/PulseAudio.qml share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/global/qmldir share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.notifications/metadata.json share/plasma/plasmoids/org.kde.plasma.panelspacer/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.panelspacer/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.panelspacer/metadata.json share/plasma/plasmoids/org.kde.plasma.private.systemtray/contents/applet/CompactApplet.qml share/plasma/plasmoids/org.kde.plasma.private.systemtray/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.private.systemtray/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.private.systemtray/contents/ui/ConfigEntries.qml share/plasma/plasmoids/org.kde.plasma.private.systemtray/contents/ui/ConfigGeneral.qml share/plasma/plasmoids/org.kde.plasma.private.systemtray/contents/ui/CurrentItemHighLight.qml share/plasma/plasmoids/org.kde.plasma.private.systemtray/contents/ui/ExpandedRepresentation.qml share/plasma/plasmoids/org.kde.plasma.private.systemtray/contents/ui/ExpanderArrow.qml share/plasma/plasmoids/org.kde.plasma.private.systemtray/contents/ui/HiddenItemsView.qml share/plasma/plasmoids/org.kde.plasma.private.systemtray/contents/ui/PlasmoidPopupsContainer.qml share/plasma/plasmoids/org.kde.plasma.private.systemtray/contents/ui/SystemTrayState.qml share/plasma/plasmoids/org.kde.plasma.private.systemtray/contents/ui/items/AbstractItem.qml share/plasma/plasmoids/org.kde.plasma.private.systemtray/contents/ui/items/ItemLoader.qml share/plasma/plasmoids/org.kde.plasma.private.systemtray/contents/ui/items/PlasmoidItem.qml share/plasma/plasmoids/org.kde.plasma.private.systemtray/contents/ui/items/PulseAnimation.qml share/plasma/plasmoids/org.kde.plasma.private.systemtray/contents/ui/items/StatusNotifierItem.qml share/plasma/plasmoids/org.kde.plasma.private.systemtray/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.private.systemtray/metadata.json share/plasma/plasmoids/org.kde.plasma.systemmonitor.cpu/contents/config/faceproperties share/plasma/plasmoids/org.kde.plasma.systemmonitor.cpu/metadata.json share/plasma/plasmoids/org.kde.plasma.systemmonitor.cpucore/contents/config/faceproperties share/plasma/plasmoids/org.kde.plasma.systemmonitor.cpucore/metadata.json share/plasma/plasmoids/org.kde.plasma.systemmonitor.diskactivity/contents/config/faceproperties share/plasma/plasmoids/org.kde.plasma.systemmonitor.diskactivity/metadata.json share/plasma/plasmoids/org.kde.plasma.systemmonitor.diskusage/contents/config/faceproperties share/plasma/plasmoids/org.kde.plasma.systemmonitor.diskusage/metadata.json share/plasma/plasmoids/org.kde.plasma.systemmonitor.memory/contents/config/faceproperties share/plasma/plasmoids/org.kde.plasma.systemmonitor.memory/metadata.json share/plasma/plasmoids/org.kde.plasma.systemmonitor.net/contents/config/faceproperties share/plasma/plasmoids/org.kde.plasma.systemmonitor.net/metadata.json share/plasma/plasmoids/org.kde.plasma.systemmonitor/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.systemmonitor/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.systemmonitor/contents/ui/CompactRepresentation.qml share/plasma/plasmoids/org.kde.plasma.systemmonitor/contents/ui/FullRepresentation.qml share/plasma/plasmoids/org.kde.plasma.systemmonitor/contents/ui/config/ConfigAppearance.qml share/plasma/plasmoids/org.kde.plasma.systemmonitor/contents/ui/config/ConfigSensors.qml share/plasma/plasmoids/org.kde.plasma.systemmonitor/contents/ui/config/FaceDetails.qml share/plasma/plasmoids/org.kde.plasma.systemmonitor/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.systemmonitor/metadata.json share/plasma/plasmoids/org.kde.plasma.systemtray/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.systemtray/metadata.json share/plasma/wallpapers/org.kde.color/contents/config/main.xml share/plasma/wallpapers/org.kde.color/contents/ui/config.qml share/plasma/wallpapers/org.kde.color/contents/ui/main.qml share/plasma/wallpapers/org.kde.color/metadata.json share/plasma/wallpapers/org.kde.image/contents/config/main.xml share/plasma/wallpapers/org.kde.image/contents/ui/AddFileDialog.qml share/plasma/wallpapers/org.kde.image/contents/ui/ImageStackView.qml share/plasma/wallpapers/org.kde.image/contents/ui/ThumbnailsComponent.qml share/plasma/wallpapers/org.kde.image/contents/ui/WallpaperDelegate.qml share/plasma/wallpapers/org.kde.image/contents/ui/config.qml share/plasma/wallpapers/org.kde.image/contents/ui/main.qml share/plasma/wallpapers/org.kde.image/contents/ui/mediacomponent/AnimatedImageComponent.qml share/plasma/wallpapers/org.kde.image/contents/ui/mediacomponent/BaseMediaComponent.qml share/plasma/wallpapers/org.kde.image/contents/ui/mediacomponent/BlurComponent.qml share/plasma/wallpapers/org.kde.image/contents/ui/mediacomponent/StaticImageComponent.qml share/plasma/wallpapers/org.kde.image/metadata.json share/plasma/wallpapers/org.kde.slideshow/contents/config/main.xml share/plasma/wallpapers/org.kde.slideshow/contents/ui/AddFileDialog.qml share/plasma/wallpapers/org.kde.slideshow/contents/ui/ImageStackView.qml share/plasma/wallpapers/org.kde.slideshow/contents/ui/SlideshowComponent.qml share/plasma/wallpapers/org.kde.slideshow/contents/ui/ThumbnailsComponent.qml share/plasma/wallpapers/org.kde.slideshow/contents/ui/WallpaperDelegate.qml share/plasma/wallpapers/org.kde.slideshow/contents/ui/config.qml share/plasma/wallpapers/org.kde.slideshow/contents/ui/main.qml share/plasma/wallpapers/org.kde.slideshow/contents/ui/mediacomponent/AnimatedImageComponent.qml share/plasma/wallpapers/org.kde.slideshow/contents/ui/mediacomponent/BaseMediaComponent.qml share/plasma/wallpapers/org.kde.slideshow/contents/ui/mediacomponent/BlurComponent.qml share/plasma/wallpapers/org.kde.slideshow/contents/ui/mediacomponent/StaticImageComponent.qml share/plasma/wallpapers/org.kde.slideshow/metadata.json share/plasma5support/services/activities.operations share/plasma5support/services/applicationjobs.operations share/plasma5support/services/apps.operations share/plasma5support/services/hotplug.operations share/plasma5support/services/modifierkeystate.operations share/plasma5support/services/notifications.operations share/plasma5support/services/org.kde.places.operations share/plasma5support/services/org.kde.plasma.clipboard.operations share/plasma5support/services/packagekit.operations share/plasma5support/services/powermanagementservice.operations share/plasma5support/services/soliddevice.operations share/plasma5support/services/statusnotifieritem.operations share/qlogging-categories6/kcm_regionandlang.categories share/qlogging-categories6/kcmusers.categories share/qlogging-categories6/klipper.categories share/qlogging-categories6/libnotificationmanager.categories share/qlogging-categories6/myproject.categories share/qlogging-categories6/plasma-workspace.categories share/sddm/themes/breeze/Background.qml share/sddm/themes/breeze/KeyboardButton.qml share/sddm/themes/breeze/Login.qml share/sddm/themes/breeze/Main.qml share/sddm/themes/breeze/SessionButton.qml share/sddm/themes/breeze/default-logo.svg share/sddm/themes/breeze/faces/.face.icon share/sddm/themes/breeze/metadata.desktop share/sddm/themes/breeze/preview.png share/sddm/themes/breeze/theme.conf share/solid/actions/openWithFileManager.desktop share/wayland-sessions/plasma.desktop share/xsessions/plasmax11.desktop share/zsh/site-functions/_krunner share/zsh/site-functions/_plasmashell