Index: head/Mk/Uses/kde.mk =================================================================== --- head/Mk/Uses/kde.mk (revision 553023) +++ head/Mk/Uses/kde.mk (revision 553024) @@ -1,858 +1,858 @@ # $FreeBSD$ # # Provides support for KDE and KF5-based ports. # # Feature: kde # Valid ARGS: 5 # # 5: Depend on KDE Frameworks 5 components and variables. # # Variables that can be set by a port: # # USE_KDE List of KF5/Plasma5 components (other ports) that this # port depends on. # * foo_build Add a build-time dependency (BUILD_DEPENDS) # * foo_run Add a run-time dependency (RUN_DEPENDS) # * foo (default) Add both dependencies on component , or # a LIB_DEPENDS if applicable. # # To simplify the ports, also: # CATEGORIES If the port is part of one of the KDE Software distribution, # it can add, in addition to 'kde' one of the following: # kde-application: 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. # # MAINTAINER: kde@FreeBSD.org .if !defined(_INCLUDE_USES_KDE_MK) _INCLUDE_USES_KDE_MK= yes _KDE_SUPPORTED= 5 . if empty(kde_ARGS) IGNORE= kde needs a version (${_KDE_SUPPORTED}) . endif . for ver in ${_KDE_SUPPORTED:O:u} . if ${kde_ARGS:M${ver}} . if !defined(_KDE_VERSION) _KDE_VERSION= ${ver} . else IGNORE?= cannot be installed: different KDE versions specified via kde:[${_KDE_SUPPORTED:S/ //g}] #' . endif . endif . endfor . if empty(_KDE_VERSION) IGNORE?= kde:[${_KDE_SUPPORTED:S/ //g}] needs an argument #' . else _KDE_RELNAME= KDE${_KDE_VERSION} # === VERSIONS OF THE DIFFERENT COMPONENTS ===================================== # Current KDE desktop. -KDE_PLASMA_VERSION?= 5.20.0 +KDE_PLASMA_VERSION?= 5.20.1 KDE_PLASMA_BRANCH?= stable # Current KDE frameworks. KDE_FRAMEWORKS_VERSION?= 5.75.0 KDE_FRAMEWORKS_BRANCH?= stable # Current KDE applications. KDE_APPLICATIONS_VERSION?= 20.08.2 KDE_APPLICATIONS_SHLIB_VER?= 5.15.2 KDE_APPLICATIONS_BRANCH?= stable # Upstream moves old software to Attic/. Specify the newest applications release there. # Only the major version is used for the comparison. _KDE_APPLICATIONS_ATTIC_VERSION= 17.08.3 # Extended KDE universe applications. CALLIGRA_VERSION?= 2.9.11 CALLIGRA_BRANCH?= stable # ============================================================================== # === INSTALLATION PREFIXES AND HEADER LOCATION ================================ # Define unversioned prefix variable. KDE_PREFIX= ${LOCALBASE} # ============================================================================== # === CATEGORIES HANDLING -- SETTING DEFAULT VALUES ============================ # Doing MASTER_SITES magic based on the category of the port _KDE_CATEGORIES_SUPPORTED= kde-applications kde-frameworks kde-plasma . for cat in ${_KDE_CATEGORIES_SUPPORTED} . if ${CATEGORIES:M${cat}} . if !defined(_KDE_CATEGORY) _KDE_CATEGORY= ${cat} . else IGNORE?= cannot be installed: multiple kde-<...> categories specified via CATEGORIES=${CATEGORIES} #' . endif . endif . endfor . 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} # Decide where the file lies on KDE's servers: Check whether the file lies in Attic . if ${KDE_APPLICATIONS_VERSION:R:R} <= ${_KDE_APPLICATIONS_ATTIC_VERSION:R:R} MASTER_SITES?= KDE/Attic/applications/${KDE_APPLICATIONS_VERSION}/src . elseif ${KDE_APPLICATIONS_VERSION:R} < 19.12 MASTER_SITES?= KDE/${KDE_APPLICATIONS_BRANCH}/applications/${KDE_APPLICATIONS_VERSION}/src . else 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. DOCSDIR= ${PREFIX}/share/doc PORTDOCS?= HTML/* # 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}" . endif DIST_SUBDIR?= KDE/release-service/${KDE_APPLICATIONS_VERSION} . elif ${_KDE_CATEGORY:Mkde-plasma} PORTVERSION?= ${KDE_PLASMA_VERSION} PKGNAMEPREFIX?= plasma5- MASTER_SITES?= KDE/${KDE_PLASMA_BRANCH}/plasma/${KDE_PLASMA_VERSION} DIST_SUBDIR?= KDE/plasma/${KDE_PLASMA_VERSION} . elif ${_KDE_CATEGORY:Mkde-frameworks} PORTVERSION?= ${KDE_FRAMEWORKS_VERSION} PKGNAMEPREFIX?= kf5- # This is a slight duplication of _USE_FRAMEWORKS_PORTING -- it maybe would be # better to rely on ${_USE_FRAMEWORKS_PORTING:S/^/k/g} _PORTINGAIDS= kjs kjsembed kdelibs4support kdesignerplugin kdewebkit khtml kmediaplayer kross kxmlrpcclient . if ${_PORTINGAIDS:M*${PORTNAME}*} MASTER_SITES?= KDE/${KDE_FRAMEWORKS_BRANCH}/frameworks/${KDE_FRAMEWORKS_VERSION:R}/portingAids . else MASTER_SITES?= KDE/${KDE_FRAMEWORKS_BRANCH}/frameworks/${KDE_FRAMEWORKS_VERSION:R} . endif DIST_SUBDIR?= KDE/frameworks/${KDE_FRAMEWORKS_VERSION} . else IGNORE?= unknown CATEGORY value '${_KDE_CATEGORY}' #' . endif . endif #defined(_KDE_CATEGORY) # ============================================================================== # ==== SETUP CMAKE ENVIRONMENT ================================================= # Help cmake to find files when testing ports with non-default PREFIX. CMAKE_ARGS+= -DCMAKE_PREFIX_PATH="${LOCALBASE}" . if ${_KDE_VERSION:M*5*} # We set KDE_INSTALL_USE_QT_SYS_PATHS to install mkspecs files, plugins and # imports to the Qt 5 install directory. CMAKE_ARGS+= -DBUILD_TESTING:BOOL=OFF \ -DCMAKE_MODULE_PATH="${LOCALBASE};${KDE_PREFIX}" \ -DCMAKE_INSTALL_PREFIX="${KDE_PREFIX}" \ -DKDE_INSTALL_USE_QT_SYS_PATHS:BOOL=TRUE . endif # Set man-page installation prefix. CMAKE_ARGS+= -DKDE_INSTALL_MANDIR:PATH="${KDE_PREFIX}/man" \ -DMAN_INSTALL_DIR:PATH="${KDE_PREFIX}/man" # ============================================================================== # === SET-UP PLIST_SUB ========================================================= # Prefix and include directory. PLIST_SUB+= KDE_PREFIX="${KDE_PREFIX}" # KDE Applications version. PLIST_SUB+= KDE_APPLICATIONS_VERSION="${KDE_APPLICATIONS_VERSION}" . if ${_KDE_VERSION:M*5*} PLIST_SUB+= KDE_PLASMA_VERSION="${KDE_PLASMA_VERSION}" \ KDE_FRAMEWORKS_VERSION="${KDE_FRAMEWORKS_VERSION}" . endif # ============================================================================== _USE_KDE_BOTH= akonadi attica libkcddb libkcompactdisc libkdcraw libkdegames \ libkeduvocdocument libkexiv2 libkipi libksane okular \ baloo baloo-widgets kate marble # List of components of the KDE Frameworks distribution. # The *_TIER variables are internal, primarily for checking # that our list of frameworks matches the structure offered upstream. _USE_FRAMEWORKS_TIER1= apidox archive attica5 breeze-icons codecs config \ coreaddons dbusaddons dnssd holidays i18n idletime itemmodels \ itemviews kirigami2 kquickcharts oxygen-icons5 plotting prison \ qqc2-desktop-style solid sonnet syntaxhighlighting \ threadweaver wayland widgetsaddons windowsystem # NOT LISTED TIER1: modemmanagerqt networkmanagerqt (not applicable) _USE_FRAMEWORKS_TIER2= auth completion crash doctools \ filemetadata kimageformats jobwidgets notifications \ package pty syndication unitconversion _USE_FRAMEWORKS_TIER3= activities activities-stats baloo5 bookmarks configwidgets \ designerplugin emoticons globalaccel guiaddons \ iconthemes init kcmutils kdav kdeclarative \ kded kdesu kdewebkit kio kwayland-server newstuff notifyconfig parts \ people plasma-framework purpose runner service texteditor \ textwidgets wallet xmlgui xmlrpcclient _USE_FRAMEWORKS_TIER4= frameworkintegration calendarcore contacts # Porting Aids frameworks provide code and utilities to ease the transition from # kdelibs 4 to KDE Frameworks 5. Code should aim to port away from this framework, # new projects should avoid using these libraries. _USE_FRAMEWORKS_PORTING=js jsembed kdelibs4support khtml mediaplayer kross _USE_FRAMEWORKS_ALL= ecm \ ${_USE_FRAMEWORKS_TIER1} \ ${_USE_FRAMEWORKS_TIER2} \ ${_USE_FRAMEWORKS_TIER3} \ ${_USE_FRAMEWORKS_TIER4} \ ${_USE_FRAMEWORKS_PORTING} \ ${_USE_FRAMEWORKS_EXTRA} # 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 kwallet-pam \ kwayland-integration kwin kwrited libkscreen \ libksysguard milou oxygen plasma-browser-integration \ plasma-desktop plasma-disks plasma-integration plasma-pa \ plasma-sdk plasma-workspace plasma-workspace-wallpapers \ polkit-kde-agent-1 powerdevil systemsettings # List of components of the KDE PIM distribution (part of applications). _USE_KDEPIM5_ALL= akonadicontacts akonadiimportwizard akonadimime akonadinotes \ akonadicalendar akonadisearch alarmcalendar \ calendarcore calendarsupport calendarutils \ contacts eventviews gapi grantleetheme \ gravatar identitymanagement imap \ incidenceeditor kdepim-addons kdepim-apps-libs \ kdepim-runtime5 kitinerary kontactinterface kpkpass \ ksmtp ldap libkdepim libkleo libksieve mailcommon \ mailimporter mailtransport mbox messagelib \ mime pimcommon pimtextedit tnef \ kalarm kontact kmail mbox-importer \ akonadiconsole akregator grantlee-editor kaddressbook \ kalarm kmail-account-wizard kmail knotes kontact \ korganizer pim-data-exporter _USE_KDE5_ALL= ${_USE_FRAMEWORKS_ALL} \ ${_USE_PLASMA_ALL} \ ${_USE_KDEPIM5_ALL} \ ${_USE_KDE_BOTH} # ====================== frameworks components ================================= kde-activities_PORT= x11/kf5-kactivities kde-activities_LIB= libKF5Activities.so kde-activities-stats_PORT= x11/kf5-kactivities-stats kde-activities-stats_LIB= libKF5ActivitiesStats.so kde-apidox_PORT= devel/kf5-kapidox kde-apidox_PATH= ${KDE_PREFIX}/bin/kapidox_generate kde-apidox_TYPE= run kde-archive_PORT= archivers/kf5-karchive kde-archive_LIB= libKF5Archive.so kde-attica5_PORT= x11-toolkits/kf5-attica kde-attica5_LIB= libKF5Attica.so kde-auth_PORT= devel/kf5-kauth kde-auth_LIB= libKF5Auth.so kde-baloo5_PORT= sysutils/kf5-baloo kde-baloo5_LIB= libKF5Baloo.so kde-bookmarks_PORT= devel/kf5-kbookmarks kde-bookmarks_LIB= libKF5Bookmarks.so kde-breeze-icons_PORT= x11-themes/kf5-breeze-icons kde-breeze-icons_PATH= ${KDE_PREFIX}/share/icons/breeze/index.theme kde-breeze-icons_TYPE= run kde-codecs_PORT= textproc/kf5-kcodecs kde-codecs_LIB= libKF5Codecs.so kde-completion_PORT= x11-toolkits/kf5-kcompletion kde-completion_LIB= libKF5Completion.so kde-config_PORT= devel/kf5-kconfig kde-config_LIB= libKF5ConfigCore.so kde-configwidgets_PORT= x11-toolkits/kf5-kconfigwidgets kde-configwidgets_LIB= libKF5ConfigWidgets.so kde-coreaddons_PORT= devel/kf5-kcoreaddons kde-coreaddons_LIB= libKF5CoreAddons.so kde-crash_PORT= devel/kf5-kcrash kde-crash_LIB= libKF5Crash.so kde-dbusaddons_PORT= devel/kf5-kdbusaddons kde-dbusaddons_LIB= libKF5DBusAddons.so kde-designerplugin_PORT= x11-toolkits/kf5-kdesignerplugin kde-designerplugin_PATH= ${KDE_PREFIX}/bin/kgendesignerplugin kde-designerplugin_TYPE= run kde-dnssd_PORT= dns/kf5-kdnssd kde-dnssd_LIB= libKF5DNSSD.so kde-doctools_PORT= devel/kf5-kdoctools kde-doctools_PATH= ${KDE_PREFIX}/bin/meinproc5 kde-ecm_PORT= devel/kf5-extra-cmake-modules kde-ecm_PATH= ${LOCALBASE}/share/ECM/cmake/ECMConfig.cmake kde-emoticons_PORT= x11-themes/kf5-kemoticons kde-emoticons_LIB= libKF5Emoticons.so kde-filemetadata_PORT= devel/kf5-kfilemetadata kde-filemetadata_LIB= libKF5FileMetaData.so kde-frameworkintegration_PORT= x11/kf5-frameworkintegration kde-frameworkintegration_LIB= libKF5Style.so kde-globalaccel_PORT= x11/kf5-kglobalaccel kde-globalaccel_LIB= libKF5GlobalAccel.so kde-guiaddons_PORT= x11-toolkits/kf5-kguiaddons kde-guiaddons_LIB= libKF5GuiAddons.so kde-holidays_PORT= net/kf5-kholidays kde-holidays_LIB= libKF5Holidays.so kde-i18n_PORT= devel/kf5-ki18n kde-i18n_LIB= libKF5I18n.so kde-iconthemes_PORT= x11-themes/kf5-kiconthemes kde-iconthemes_LIB= libKF5IconThemes.so kde-idletime_PORT= devel/kf5-kidletime kde-idletime_LIB= libKF5IdleTime.so kde-init_PORT= x11/kf5-kinit kde-init_PATH= ${KDE_PREFIX}/bin/kdeinit5 kde-itemmodels_PORT= devel/kf5-kitemmodels kde-itemmodels_LIB= libKF5ItemModels.so kde-itemviews_PORT= x11-toolkits/kf5-kitemviews kde-itemviews_LIB= libKF5ItemViews.so kde-jobwidgets_PORT= x11-toolkits/kf5-kjobwidgets kde-jobwidgets_LIB= libKF5JobWidgets.so kde-js_PORT= www/kf5-kjs kde-js_LIB= libKF5JS.so kde-jsembed_PORT= www/kf5-kjsembed kde-jsembed_LIB= libKF5JsEmbed.so kde-kcmutils_PORT= devel/kf5-kcmutils kde-kcmutils_LIB= libKF5KCMUtils.so kde-kdeclarative_PORT= devel/kf5-kdeclarative kde-kdeclarative_LIB= libKF5Declarative.so kde-kded_PORT= x11/kf5-kded kde-kded_PATH= ${KDE_PREFIX}/bin/kded5 kde-kdelibs4support_PORT= x11/kf5-kdelibs4support kde-kdelibs4support_LIB= libKF5KDELibs4Support.so kde-kdesu_PORT= security/kf5-kdesu kde-kdesu_LIB= libKF5Su.so kde-kdewebkit_PORT= www/kf5-kdewebkit kde-kdewebkit_LIB= libKF5WebKit.so kde-khtml_PORT= www/kf5-khtml kde-khtml_LIB= libKF5KHtml.so kde-kimageformats_PORT= graphics/kf5-kimageformats kde-kimageformats_PATH= ${QT_PLUGINDIR}/imageformats/kimg_xcf.so kde-kimageformats_TYPE= run kde-kio_PORT= devel/kf5-kio kde-kio_LIB= libKF5KIOCore.so kde-kirigami2_PORT= x11-toolkits/kf5-kirigami2 kde-kirigami2_PATH= ${QT_QMLDIR}/org/kde/kirigami.2/libkirigamiplugin.so kde-kquickcharts_PORT= graphics/kf5-kquickcharts kde-kquickcharts_PATH= ${QT_QMLDIR}/org/kde/quickcharts/controls/libchartscontrolsplugin.so kde-kross_PORT= lang/kf5-kross kde-kross_LIB= libKF5KrossCore.so kde-kwayland-protocols_PORT= x11/plasma-kwayland-protocols kde-kwayland-protocols_LIB= ${KDE_PREFIX}/lib/cmake/PlasmaWaylandProtocols/PlasmaWaylandProtocolsConfig.cmake kde-kwayland-server_PORT= x11/plasma5-kwayland-server kde-kwayland-server_LIB= libKWaylandServer.so kde-mediaplayer_PORT= multimedia/kf5-kmediaplayer kde-mediaplayer_LIB= libKF5MediaPlayer.so.5 kde-newstuff_PORT= devel/kf5-knewstuff kde-newstuff_LIB= libKF5NewStuff.so kde-notifications_PORT= devel/kf5-knotifications kde-notifications_LIB= libKF5Notifications.so kde-notifyconfig_PORT= devel/kf5-knotifyconfig kde-notifyconfig_LIB= libKF5NotifyConfig.so kde-oxygen-icons5_PORT= x11-themes/kf5-oxygen-icons5 kde-oxygen-icons5_PATH= ${KDE_PREFIX}/share/icons/oxygen/index.theme kde-oxygen-icons5_TYPE= run kde-package_PORT= devel/kf5-kpackage kde-package_LIB= libKF5Package.so kde-parts_PORT= devel/kf5-kparts kde-parts_LIB= libKF5Parts.so kde-people_PORT= devel/kf5-kpeople kde-people_LIB= libKF5People.so kde-plasma-framework_PORT= x11/kf5-plasma-framework kde-plasma-framework_LIB= libKF5Plasma.so kde-plotting_PORT= graphics/kf5-kplotting kde-plotting_LIB= libKF5Plotting.so kde-prison_PORT= graphics/kf5-prison kde-prison_LIB= libKF5Prison.so kde-pty_PORT= devel/kf5-kpty kde-pty_LIB= libKF5Pty.so kde-purpose_PORT= misc/kf5-purpose kde-purpose_LIB= libKF5Purpose.so kde-qqc2-desktop-style_PORT= x11-themes/kf5-qqc2-desktop-style kde-qqc2-desktop-style_PATH= ${QT_PLUGINDIR}/kf5/kirigami/org.kde.desktop.so kde-runner_PORT= x11/kf5-krunner kde-runner_LIB= libKF5Runner.so kde-service_PORT= devel/kf5-kservice kde-service_PATH= ${KDE_PREFIX}/bin/kbuildsycoca5 kde-solid_PORT= devel/kf5-solid kde-solid_LIB= libKF5Solid.so kde-sonnet_PORT= textproc/kf5-sonnet kde-sonnet_LIB= libKF5SonnetCore.so kde-syndication_PORT= net/kf5-syndication kde-syndication_LIB= libKF5Syndication.so kde-syntaxhighlighting_PORT= textproc/kf5-syntax-highlighting kde-syntaxhighlighting_LIB= libKF5SyntaxHighlighting.so kde-texteditor_PORT= devel/kf5-ktexteditor kde-texteditor_LIB= libKF5TextEditor.so kde-textwidgets_PORT= x11-toolkits/kf5-ktextwidgets kde-textwidgets_LIB= libKF5TextWidgets.so kde-threadweaver_PORT= devel/kf5-threadweaver kde-threadweaver_LIB= libKF5ThreadWeaver.so kde-unitconversion_PORT= devel/kf5-kunitconversion kde-unitconversion_LIB= libKF5UnitConversion.so kde-wallet_PORT= sysutils/kf5-kwallet kde-wallet_LIB= libKF5Wallet.so kde-wayland_PORT= x11/kf5-kwayland kde-wayland_LIB= libKF5WaylandClient.so kde-widgetsaddons_PORT= x11-toolkits/kf5-kwidgetsaddons kde-widgetsaddons_LIB= libKF5WidgetsAddons.so kde-windowsystem_PORT= x11/kf5-kwindowsystem kde-windowsystem_LIB= libKF5WindowSystem.so kde-xmlgui_PORT= x11-toolkits/kf5-kxmlgui kde-xmlgui_LIB= libKF5XmlGui.so kde-xmlrpcclient_PORT= net/kf5-kxmlrpcclient kde-xmlrpcclient_LIB= libKF5XmlRpcClient.so # ====================== end of frameworks components ========================== # ====================== plasma components ===================================== kde-activitymanagerd_PORT= x11/plasma5-kactivitymanagerd kde-activitymanagerd_LIB= libkactivitymanagerd_plugin.so kde-breeze_PORT= x11-themes/plasma5-breeze kde-breeze_PATH= ${KDE_PREFIX}/share/QtCurve/Breeze.qtcurve kde-breeze-gtk_PORT= x11-themes/plasma5-breeze-gtk kde-breeze-gtk_PATH= ${KDE_PREFIX}/share/themes/Breeze/gtk-2.0/gtkrc kde-decoration_PORT= x11-wm/plasma5-kdecoration kde-decoration_LIB= libkdecorations2.so kde-discover_PORT= sysutils/plasma5-discover kde-discover_PATH= ${KDE_PREFIX}/bin/plasma-discover kde-drkonqi_PORT= sysutils/plasma5-drkonqi kde-drkonqi_PATH= ${KDE_PREFIX}/lib/libexec/drkonqi kde-hotkeys_PORT= devel/plasma5-khotkeys kde-hotkeys_LIB= libkhotkeysprivate.so.5 kde-infocenter_PORT= sysutils/plasma5-kinfocenter kde-infocenter_PATH= ${KDE_PREFIX}/bin/kinfocenter kde-kde-cli-tools_PORT= sysutils/plasma5-kde-cli-tools kde-kde-cli-tools_PATH= ${KDE_PREFIX}/bin/kcmshell5 kde-kde-gtk-config_PORT= x11-themes/plasma5-kde-gtk-config kde-kde-gtk-config_PATH= ${KDE_PREFIX}/lib/kconf_update_bin/gtk_theme kde-kdeplasma-addons_PORT= x11-toolkits/plasma5-kdeplasma-addons kde-kdeplasma-addons_PATH= ${QT_PLUGINDIR}/kcm_krunner_dictionary.so kde-kgamma5_PORT= x11/plasma5-kgamma5 kde-kgamma5_PATH= ${QT_PLUGINDIR}/kcm_kgamma.so kde-kmenuedit_PORT= sysutils/plasma5-kmenuedit kde-kmenuedit_PATH= ${KDE_PREFIX}/bin/kmenuedit kde-kscreen_PORT= x11/plasma5-kscreen kde-kscreen_PATH= ${KDE_PREFIX}/bin/kscreen-console kde-kscreenlocker_PORT= security/plasma5-kscreenlocker kde-kscreenlocker_LIB= libKScreenLocker.so kde-ksshaskpass_PORT= security/plasma5-ksshaskpass kde-ksshaskpass_PATH= ${KDE_PREFIX}/bin/ksshaskpass kde-ksysguard_PORT= sysutils/plasma5-ksysguard kde-ksysguard_PATH= ${KDE_PREFIX}/bin/ksysguard kde-kwallet-pam_PORT= security/plasma5-kwallet-pam kde-kwallet-pam_PATH= ${KDE_PREFIX}/lib/pam_kwallet5.so kde-kwayland-integration_PORT= x11/plasma5-kwayland-integration kde-kwayland-integration_PATH= ${QT_PLUGINDIR}/kf5/org.kde.kidletime.platforms/KF5IdleTimeKWaylandPlugin.so kde-kwin_PORT= x11-wm/plasma5-kwin kde-kwin_PATH= ${KDE_PREFIX}/bin/kwin_x11 kde-kwrited_PORT= devel/plasma5-kwrited kde-kwrited_PATH= ${QT_PLUGINDIR}/kf5/kded/kwrited.so kde-libkscreen_PORT= x11/plasma5-libkscreen kde-libkscreen_LIB= libKF5Screen.so kde-libksysguard_PORT= sysutils/plasma5-libksysguard kde-libksysguard_LIB= libksgrd.so kde-milou_PORT= deskutils/plasma5-milou kde-milou_LIB= libmilou.so.5 kde-oxygen_PORT= x11-themes/plasma5-oxygen kde-oxygen_PATH= ${QT_PLUGINDIR}/styles/oxygen.so kde-plasma-browser-integration_PORT= www/plasma5-plasma-browser-integration kde-plasma-browser-integration_PATH= ${KDE_PREFIX}/bin/plasma-browser-integration-host kde-plasma-desktop_PORT= x11/plasma5-plasma-desktop kde-plasma-desktop_PATH= ${KDE_PREFIX}/bin/kaccess kde-plasma-disks_PORT= sysutils/plasma5-plasma-disks kde-plasma-disks_PATH= ${KDE_PREFIX}/lib/libexec/kauth/kded-smart-helper kde-plasma-integration_PORT= x11/plasma5-plasma-integration kde-plasma-integration_PATH= ${QT_PLUGINDIR}/platformthemes/KDEPlasmaPlatformTheme.so kde-plasma-pa_PORT= audio/plasma5-plasma-pa kde-plasma-pa_PATH= ${QT_PLUGINDIR}/kcms/kcm_pulseaudio.so kde-plasma-sdk_PORT= devel/plasma5-plasma-sdk kde-plasma-sdk_PATH= ${KDE_PREFIX}/bin/plasmoidviewer kde-plasma-workspace_PORT= x11/plasma5-plasma-workspace kde-plasma-workspace_LIB= libkdeinit5_kcminit.so kde-plasma-workspace-wallpapers_PORT= x11-themes/plasma5-plasma-workspace-wallpapers kde-plasma-workspace-wallpapers_PATH= ${KDE_PREFIX}/share/wallpapers/Autumn/contents/images/1280x1024.jpg kde-polkit-kde-agent-1_PORT= sysutils/plasma5-polkit-kde-agent-1 kde-polkit-kde-agent-1_PATH= ${KDE_PREFIX}/lib/libexec/polkit-kde-authentication-agent-1 kde-powerdevil_PORT= sysutils/plasma5-powerdevil kde-powerdevil_LIB= libpowerdevilcore.so kde-systemsettings_PORT= sysutils/plasma5-systemsettings kde-systemsettings_PATH= ${KDE_PREFIX}/bin/systemsettings5 # ====================== end of plasma components ============================== # ====================== pim5 components ======================================= kde-akonadicontacts_PORT= net/akonadi-contacts kde-akonadicontacts_LIB= libKF5AkonadiContact.so kde-akonadiimportwizard_PORT= deskutils/akonadi-import-wizard kde-akonadiimportwizard_LIB= libKPimImportWizard.so kde-akonadimime_PORT= net/akonadi-mime kde-akonadimime_LIB= libKF5AkonadiMime.so kde-akonadinotes_PORT= net/akonadi-notes kde-akonadinotes_LIB= libKF5AkonadiNotes.so kde-akonadicalendar_PORT= net/akonadi-calendar kde-akonadicalendar_LIB= libKF5AkonadiCalendar.so kde-akonadisearch_PORT= net/akonadi-search kde-akonadisearch_LIB= libKF5AkonadiSearchCore.so kde-alarmcalendar_PORT= net/kalarmcal kde-alarmcalendar_LIB= libKF5AlarmCalendar.so kde-calendarsupport_PORT= net/calendarsupport kde-calendarsupport_LIB= libKF5CalendarSupport.so kde-calendarcore_PORT= net/kf5-kcalendarcore kde-calendarcore_LIB= libKF5CalendarCore.so kde-calendarutils_PORT= net/kcalutils kde-calendarutils_LIB= libKF5CalendarUtils.so kde-contacts_PORT= net/kf5-kcontacts kde-contacts_LIB= libKF5Contacts.so kde-eventviews_PORT= net/eventviews kde-eventviews_LIB= libKF5EventViews.so kde-gapi_PORT= net/libkgapi kde-gapi_LIB= libKPimGAPICore.so kde-grantleetheme_PORT= deskutils/grantleetheme kde-grantleetheme_LIB= libKF5GrantleeTheme.so kde-gravatar_PORT= net/libgravatar kde-gravatar_LIB= libKF5Gravatar.so kde-identitymanagement_PORT= net/kidentitymanagement kde-identitymanagement_LIB= libKF5IdentityManagement.so kde-imap_PORT= net/kimap kde-imap_LIB= libKF5IMAP.so kde-incidenceeditor_PORT= net/incidenceeditor kde-incidenceeditor_LIB= libKF5IncidenceEditor.so kde-kdav_PORT= net/kf5-kdav kde-kdav_LIB= libKF5DAV.so kde-kdepim-addons_PORT= deskutils/kdepim-addons kde-kdepim-addons_PATH= ${KDE_PREFIX}/lib/contacteditor/editorpageplugins/cryptopageplugin.so kde-kdepim-apps-libs_PORT= deskutils/kdepim-apps-libs kde-kdepim-apps-libs_LIB= libKF5KaddressbookGrantlee.so kde-kdepim-runtime5_PORT= deskutils/kdepim-runtime kde-kdepim-runtime5_PATH= ${KDE_PREFIX}/bin/gidmigrator kde-kitinerary_PORT= net/kitinerary kde-kitinerary_LIB= libKPimItinerary.so kde-kontactinterface_PORT= net/kontactinterface kde-kontactinterface_LIB= libKF5KontactInterface.so kde-kpkpass_PORT= security/kpkpass kde-kpkpass_LIB= libKPimPkPass.so kde-ksmtp_PORT= net/ksmtp kde-ksmtp_LIB= libKPimSMTP.so kde-ldap_PORT= net/kldap kde-ldap_LIB= libKF5Ldap.so kde-libkdepim_PORT= deskutils/libkdepim kde-libkdepim_LIB= libKF5Libkdepim.so kde-libkleo_PORT= security/libkleo kde-libkleo_LIB= libKF5Libkleo.so kde-libksieve_PORT= net/libksieve kde-libksieve_LIB= libKF5KSieve.so kde-mailcommon_PORT= net/mailcommon kde-mailcommon_LIB= libKF5MailCommon.so kde-mailimporter_PORT= net/mailimporter kde-mailimporter_LIB= libKF5MailImporter.so kde-mailtransport_PORT= net/kmailtransport kde-mailtransport_LIB= libKF5MailTransport.so kde-mbox_PORT= net/kmbox kde-mbox_LIB= libKF5Mbox.so kde-messagelib_PORT= net/messagelib kde-messagelib_LIB= libKF5MessageList.so kde-mime_PORT= net/kmime kde-mime_LIB= libKF5Mime.so kde-pimcommon_PORT= net/pimcommon kde-pimcommon_LIB= libKF5PimCommon.so kde-pimtextedit_PORT= net/kpimtextedit kde-pimtextedit_LIB= libKF5PimTextEdit.so kde-tnef_PORT= net/ktnef kde-tnef_LIB= libKF5Tnef.so # PIM Applications kde-akonadiconsole_PORT= deskutils/akonadiconsole kde-akonadiconsole_PATH= ${KDE_PREFIX}/bin/akonadiconsole kde-akregator_PORT= deskutils/akregator kde-akregator_PATH= ${KDE_PREFIX}/bin/akregator kde-grantlee-editor_PORT= deskutils/grantlee-editor kde-grantlee-editor_PATH= ${KDE_PREFIX}/bin/contactthemeeditor kde-kaddressbook_PORT= deskutils/kaddressbook kde-kaddressbook_PATH= ${KDE_PREFIX}/bin/kaddressbook kde-kalarm_PORT= deskutils/kalarm kde-kalarm_PATH= ${KDE_PREFIX}/bin/kalarm kde-kmail_PORT= deskutils/kmail kde-kmail_PATH= ${KDE_PREFIX}/bin/kmail kde-kmail-account-wizard_PORT= deskutils/kmail-account-wizard kde-kmail-account-wizard_PATH= ${KDE_PREFIX}/bin/accountwizard kde-knotes_PORT= deskutils/knotes kde-knotex_PATH= ${KDE_PREFIX}/bin/knotes kde-kontact_PORT= deskutils/kontact kde-kontact_PATH= ${KDE_PREFIX}/bin/kontact kde-korganizer_PORT= deskutils/korganizer kde-korganizer_PATH= ${KDE_PREFIX}/bin/korganizer kde-mbox-importer_PORT= deskutils/mbox-importer kde-mbox-importer_PATH= ${KDE_PREFIX}/bin/mboximporter kde-pim-data-exporter_PORT= deskutils/pim-data-exporter kde-pim-data-exporter_PATH= ${KDE_PREFIX}/bin/pimdataexporter # ====================== end of pim5 components ================================ # ====================== multiversion component ================================ kde-akonadi5_PORT= databases/akonadi kde-akonadi5_LIB= libKF5AkonadiPrivate.so kde-baloo-widgets5_PORT= sysutils/baloo-widgets kde-baloo-widgets5_LIB= libKF5BalooWidgets.so kde-kate5_PORT= editors/kate kde-kate5_PATH= ${QT_PLUGINDIR}/ktexteditor/katebacktracebrowserplugin.so kde-libkcddb5_PORT= audio/libkcddb kde-libkcddb5_LIB= libKF5Cddb.so kde-libkcompactdisc5_PORT= audio/libkcompactdisc kde-libkcompactdisc5_LIB= libKF5CompactDisc.so kde-libkdcraw5_PORT= graphics/libkdcraw kde-libkdcraw5_LIB= libKF5KDcraw.so kde-libkdegames5_PORT= games/libkdegames kde-libkdegames5_LIB= libKF5KDEGames.so kde-libkeduvocdocument5_PORT= misc/libkeduvocdocument kde-libkeduvocdocument5_LIB= libKEduVocDocument.so kde-libkexiv25_PORT= graphics/libkexiv2 kde-libkexiv25_LIB= libKF5KExiv2.so kde-libkipi5_PORT= graphics/libkipi kde-libkipi5_LIB= libKF5Kipi.so kde-libksane5_PORT= graphics/libksane kde-libksane5_LIB= libKF5Sane.so kde-marble5_PORT= astro/marble kde-marble5_LIB= libmarblewidget-qt5.so kde-okular5_PORT= graphics/okular kde-okular5_LIB= libOkular5Core.so # ====================== end of multiversion components ======================== # ====================== select the proper multiversion component ============== . for comp in ${_USE_KDE_BOTH} kde-${comp}_PORT= ${kde-${comp}${_KDE_VERSION}_PORT} . if defined(kde-${comp}${_KDE_VERSION}_LIB) kde-${comp}_LIB= ${kde-${comp}${_KDE_VERSION}_LIB} . else . if defined(kde-${comp}${_KDE_VERSION}_PATH}) kde-${comp}_PATH= ${kde-${comp}${_KDE_VERSION}_LIB} . endif # If neither is defined, this gets caught below when checking components . endif . endfor #=============================================================================== # end of component list ######################################################## _USE_KDE_ALL= ${_USE_${_KDE_RELNAME}_ALL} # Iterate through components deprived of suffix. . for component in ${USE_KDE:O:u:C/_.+//} # Check that the component is valid. . if ${_USE_KDE_ALL:M${component}} != "" # Skip meta-components (currently none). . if defined(kde-${component}_PORT) && (defined(kde-${component}_PATH) || defined(kde-${component}_LIB)) # Check if a dependency type is explicitly requested. . if ${USE_KDE:M${component}_*} != "" && ${USE_KDE:M${component}} == "" kde-${component}_TYPE= # empty . if ${USE_KDE:M${component}_build} != "" kde-${component}_TYPE+= build . endif . if ${USE_KDE:M${component}_run} != "" kde-${component}_TYPE+= run . endif . endif # ${USE_KDE:M${component}_*} != "" && ${USE_KDE:M${component}} == "" # If no dependency type is set, default to full dependency. . if !defined(kde-${component}_TYPE) kde-${component}_TYPE= build run . endif # Set real dependencies. . if defined(kde-${component}_LIB) && ${kde-${component}_TYPE:Mbuild} && ${kde-${component}_TYPE:Mrun} LIB_DEPENDS+= ${kde-${component}_LIB}:${kde-${component}_PORT} . else kde-${component}_PATH?= ${KDE_PREFIX}/lib/${kde-${component}_LIB} kde-${component}_DEPENDS= ${kde-${component}_PATH}:${kde-${component}_PORT} . if ${kde-${component}_TYPE:Mbuild} != "" BUILD_DEPENDS+= ${kde-${component}_DEPENDS} . endif . if ${kde-${component}_TYPE:Mrun} != "" RUN_DEPENDS+= ${kde-${component}_DEPENDS} . endif . endif # ${kde-${component}_LIB} && ${kde-${component}_TYPE:Mbuild} && ${kde-${component}_TYPE:Mrun} . endif # defined(kde-${component}_PORT) && defined(kde-${component}_PATH) . else # ! ${_USE_KDE_ALL:M${component}} != "" IGNORE= cannot be installed: unknown USE_KDE component '${component}' . endif # ${_USE_KDE_ALL:M${component}} != "" . endfor . endif .endif Index: head/audio/plasma5-plasma-pa/distinfo =================================================================== --- head/audio/plasma5-plasma-pa/distinfo (revision 553023) +++ head/audio/plasma5-plasma-pa/distinfo (revision 553024) @@ -1,3 +1,3 @@ -TIMESTAMP = 1602198199 -SHA256 (KDE/plasma/5.20.0/plasma-pa-5.20.0.tar.xz) = 8735726a0ce31d522ac410863a5940a4505eb7c98feab893bc38ed5217b57999 -SIZE (KDE/plasma/5.20.0/plasma-pa-5.20.0.tar.xz) = 111988 +TIMESTAMP = 1603378808 +SHA256 (KDE/plasma/5.20.1/plasma-pa-5.20.1.tar.xz) = ec841d7bc0311581f6d99b7debe91e9925621bc8b3dae3931fa77d154cc04567 +SIZE (KDE/plasma/5.20.1/plasma-pa-5.20.1.tar.xz) = 111972 Index: head/deskutils/plasma5-milou/distinfo =================================================================== --- head/deskutils/plasma5-milou/distinfo (revision 553023) +++ head/deskutils/plasma5-milou/distinfo (revision 553024) @@ -1,3 +1,3 @@ -TIMESTAMP = 1602198199 -SHA256 (KDE/plasma/5.20.0/milou-5.20.0.tar.xz) = 7637f088a6030e17bb6513c42b1d83645c86db07f1b29f5354322f59cff0821e -SIZE (KDE/plasma/5.20.0/milou-5.20.0.tar.xz) = 54912 +TIMESTAMP = 1603378810 +SHA256 (KDE/plasma/5.20.1/milou-5.20.1.tar.xz) = 58061b1a67c7779dc33e5a15ac9505e99e6fe8e77bf61d03372a10d02f752f1c +SIZE (KDE/plasma/5.20.1/milou-5.20.1.tar.xz) = 54928 Index: head/deskutils/plasma5-sddm-kcm/distinfo =================================================================== --- head/deskutils/plasma5-sddm-kcm/distinfo (revision 553023) +++ head/deskutils/plasma5-sddm-kcm/distinfo (revision 553024) @@ -1,3 +1,3 @@ -TIMESTAMP = 1602198200 -SHA256 (KDE/plasma/5.20.0/sddm-kcm-5.20.0.tar.xz) = c0d75983f8e1ebc4c7f57524fc6028c40446eaa35f9972088d1ebb17469fa3e1 -SIZE (KDE/plasma/5.20.0/sddm-kcm-5.20.0.tar.xz) = 63440 +TIMESTAMP = 1603378811 +SHA256 (KDE/plasma/5.20.1/sddm-kcm-5.20.1.tar.xz) = 7d262f4898850afb0f4137f86375c5f916166b9fa031fb78ebc2c4a68316cacb +SIZE (KDE/plasma/5.20.1/sddm-kcm-5.20.1.tar.xz) = 63904 Index: head/devel/plasma5-khotkeys/distinfo =================================================================== --- head/devel/plasma5-khotkeys/distinfo (revision 553023) +++ head/devel/plasma5-khotkeys/distinfo (revision 553024) @@ -1,3 +1,3 @@ -TIMESTAMP = 1602198201 -SHA256 (KDE/plasma/5.20.0/khotkeys-5.20.0.tar.xz) = 0e470ba928c5ce09e1a533cd83e02bb7943baac146c6c92354b0c3dc0393953a -SIZE (KDE/plasma/5.20.0/khotkeys-5.20.0.tar.xz) = 1854028 +TIMESTAMP = 1603378813 +SHA256 (KDE/plasma/5.20.1/khotkeys-5.20.1.tar.xz) = 0661c34b8ffaf1b786e30c5a906d2619d44fe3d6643a1826fda13d3e6bd94d71 +SIZE (KDE/plasma/5.20.1/khotkeys-5.20.1.tar.xz) = 1854788 Index: head/devel/plasma5-kwrited/distinfo =================================================================== --- head/devel/plasma5-kwrited/distinfo (revision 553023) +++ head/devel/plasma5-kwrited/distinfo (revision 553024) @@ -1,3 +1,3 @@ -TIMESTAMP = 1602198202 -SHA256 (KDE/plasma/5.20.0/kwrited-5.20.0.tar.xz) = a0ac927655804be22426049ee8b520133b10c8901d364fdd0ef8e03ce17b9b82 -SIZE (KDE/plasma/5.20.0/kwrited-5.20.0.tar.xz) = 20164 +TIMESTAMP = 1603378814 +SHA256 (KDE/plasma/5.20.1/kwrited-5.20.1.tar.xz) = 444dd8b76dd67428bef0a25ef24e2eb4b445f6f8787a88063c48d64f9ab120f8 +SIZE (KDE/plasma/5.20.1/kwrited-5.20.1.tar.xz) = 20156 Index: head/devel/plasma5-plasma-sdk/distinfo =================================================================== --- head/devel/plasma5-plasma-sdk/distinfo (revision 553023) +++ head/devel/plasma5-plasma-sdk/distinfo (revision 553024) @@ -1,3 +1,3 @@ -TIMESTAMP = 1602198203 -SHA256 (KDE/plasma/5.20.0/plasma-sdk-5.20.0.tar.xz) = b1d7cf1f64f5468c1769d7f442d7e324254a84a74b777313fb2e2bd97e3bcc5c -SIZE (KDE/plasma/5.20.0/plasma-sdk-5.20.0.tar.xz) = 264100 +TIMESTAMP = 1603378816 +SHA256 (KDE/plasma/5.20.1/plasma-sdk-5.20.1.tar.xz) = a7ed7c58005f5eb6e58aa27b9b134c54d211b4007a92c3ee194c23e3be292936 +SIZE (KDE/plasma/5.20.1/plasma-sdk-5.20.1.tar.xz) = 264224 Index: head/security/plasma5-kscreenlocker/distinfo =================================================================== --- head/security/plasma5-kscreenlocker/distinfo (revision 553023) +++ head/security/plasma5-kscreenlocker/distinfo (revision 553024) @@ -1,3 +1,3 @@ -TIMESTAMP = 1602198204 -SHA256 (KDE/plasma/5.20.0/kscreenlocker-5.20.0.tar.xz) = d8a3b5a7137b4f6c9fe0ad0b625ebc16f5c024e527f77f9a3f6744570a1c46a2 -SIZE (KDE/plasma/5.20.0/kscreenlocker-5.20.0.tar.xz) = 114332 +TIMESTAMP = 1603378817 +SHA256 (KDE/plasma/5.20.1/kscreenlocker-5.20.1.tar.xz) = e97f1bae6da55f412dfbc7fa15160edb2d4c1b095e915aa6a353ab926c31d84e +SIZE (KDE/plasma/5.20.1/kscreenlocker-5.20.1.tar.xz) = 114336 Index: head/security/plasma5-ksshaskpass/distinfo =================================================================== --- head/security/plasma5-ksshaskpass/distinfo (revision 553023) +++ head/security/plasma5-ksshaskpass/distinfo (revision 553024) @@ -1,3 +1,3 @@ -TIMESTAMP = 1602198204 -SHA256 (KDE/plasma/5.20.0/ksshaskpass-5.20.0.tar.xz) = 8793169684de4c0c281bb128dfc67335d34c214d38b8434e021296bb7a5fbae3 -SIZE (KDE/plasma/5.20.0/ksshaskpass-5.20.0.tar.xz) = 23528 +TIMESTAMP = 1603378818 +SHA256 (KDE/plasma/5.20.1/ksshaskpass-5.20.1.tar.xz) = c7b4dfbb297fe8d769c62fa4f9dba10598de38a1480459e3b3dcd62fa8965e73 +SIZE (KDE/plasma/5.20.1/ksshaskpass-5.20.1.tar.xz) = 23520 Index: head/security/plasma5-kwallet-pam/distinfo =================================================================== --- head/security/plasma5-kwallet-pam/distinfo (revision 553023) +++ head/security/plasma5-kwallet-pam/distinfo (revision 553024) @@ -1,3 +1,3 @@ -TIMESTAMP = 1602198205 -SHA256 (KDE/plasma/5.20.0/kwallet-pam-5.20.0.tar.xz) = 3f72384f1f28bc071cfa475cebec2f4315686a3713fbc778d953635272493d69 -SIZE (KDE/plasma/5.20.0/kwallet-pam-5.20.0.tar.xz) = 19860 +TIMESTAMP = 1603378820 +SHA256 (KDE/plasma/5.20.1/kwallet-pam-5.20.1.tar.xz) = b3dbfe00792a3a3b1362380e9c18ab8082a7057e6daaf323b3522e1789834cac +SIZE (KDE/plasma/5.20.1/kwallet-pam-5.20.1.tar.xz) = 19872 Index: head/sysutils/plasma5-discover/distinfo =================================================================== --- head/sysutils/plasma5-discover/distinfo (revision 553023) +++ head/sysutils/plasma5-discover/distinfo (revision 553024) @@ -1,3 +1,3 @@ -TIMESTAMP = 1602198205 -SHA256 (KDE/plasma/5.20.0/discover-5.20.0.tar.xz) = d72c7c2cf0478532776c18ca0c9c3c9f7277109c7ac47f22a44d0edfdc8ca1df -SIZE (KDE/plasma/5.20.0/discover-5.20.0.tar.xz) = 10297808 +TIMESTAMP = 1603378825 +SHA256 (KDE/plasma/5.20.1/discover-5.20.1.tar.xz) = f9c678bf58687ecfc0fe5fefe6d4dee7a5fc433b3f803f432716525e6f4e542f +SIZE (KDE/plasma/5.20.1/discover-5.20.1.tar.xz) = 10298328 Index: head/sysutils/plasma5-drkonqi/distinfo =================================================================== --- head/sysutils/plasma5-drkonqi/distinfo (revision 553023) +++ head/sysutils/plasma5-drkonqi/distinfo (revision 553024) @@ -1,3 +1,3 @@ -TIMESTAMP = 1602198206 -SHA256 (KDE/plasma/5.20.0/drkonqi-5.20.0.tar.xz) = cfe137c32630bde55307405974e79cdd28c41b14819ab35740cbc39315f91b88 -SIZE (KDE/plasma/5.20.0/drkonqi-5.20.0.tar.xz) = 746156 +TIMESTAMP = 1603378828 +SHA256 (KDE/plasma/5.20.1/drkonqi-5.20.1.tar.xz) = ae911abdcbd3833913774b2155f093c8c67e9debdbffbdf5806ae67142ca186d +SIZE (KDE/plasma/5.20.1/drkonqi-5.20.1.tar.xz) = 745912 Index: head/sysutils/plasma5-kde-cli-tools/distinfo =================================================================== --- head/sysutils/plasma5-kde-cli-tools/distinfo (revision 553023) +++ head/sysutils/plasma5-kde-cli-tools/distinfo (revision 553024) @@ -1,3 +1,3 @@ -TIMESTAMP = 1602198207 -SHA256 (KDE/plasma/5.20.0/kde-cli-tools-5.20.0.tar.xz) = a5875dab2a31dd4f024d178c8eaeb20262950292330435d51e9088de25b0b0af -SIZE (KDE/plasma/5.20.0/kde-cli-tools-5.20.0.tar.xz) = 597152 +TIMESTAMP = 1603378833 +SHA256 (KDE/plasma/5.20.1/kde-cli-tools-5.20.1.tar.xz) = c6711e2d39a6638fb79085b1c07062dd655300ee9a44bc3d4984e0501527097e +SIZE (KDE/plasma/5.20.1/kde-cli-tools-5.20.1.tar.xz) = 597036 Index: head/sysutils/plasma5-kinfocenter/distinfo =================================================================== --- head/sysutils/plasma5-kinfocenter/distinfo (revision 553023) +++ head/sysutils/plasma5-kinfocenter/distinfo (revision 553024) @@ -1,3 +1,3 @@ -TIMESTAMP = 1602198208 -SHA256 (KDE/plasma/5.20.0/kinfocenter-5.20.0.tar.xz) = 606557c20868b97f97ce4f7c6af45fdb8984914d70734924b9968f70b5faaa45 -SIZE (KDE/plasma/5.20.0/kinfocenter-5.20.0.tar.xz) = 1279124 +TIMESTAMP = 1603378834 +SHA256 (KDE/plasma/5.20.1/kinfocenter-5.20.1.tar.xz) = 6e86e518cc7180920dd6abe5653be029ba921e6653624922882c7d055f87e191 +SIZE (KDE/plasma/5.20.1/kinfocenter-5.20.1.tar.xz) = 1279328 Index: head/sysutils/plasma5-kmenuedit/distinfo =================================================================== --- head/sysutils/plasma5-kmenuedit/distinfo (revision 553023) +++ head/sysutils/plasma5-kmenuedit/distinfo (revision 553024) @@ -1,3 +1,3 @@ -TIMESTAMP = 1602198209 -SHA256 (KDE/plasma/5.20.0/kmenuedit-5.20.0.tar.xz) = 0dcc63fba88f76e723686760223af5d22464f7357a7e80540b369b2a6782e75e -SIZE (KDE/plasma/5.20.0/kmenuedit-5.20.0.tar.xz) = 893652 +TIMESTAMP = 1603378836 +SHA256 (KDE/plasma/5.20.1/kmenuedit-5.20.1.tar.xz) = 315d4b2ada63223c1c52ee10ed8c5313f6d927d80ac6a1718b823c7c15454fd0 +SIZE (KDE/plasma/5.20.1/kmenuedit-5.20.1.tar.xz) = 893700 Index: head/sysutils/plasma5-ksysguard/distinfo =================================================================== --- head/sysutils/plasma5-ksysguard/distinfo (revision 553023) +++ head/sysutils/plasma5-ksysguard/distinfo (revision 553024) @@ -1,3 +1,3 @@ -TIMESTAMP = 1602198209 -SHA256 (KDE/plasma/5.20.0/ksysguard-5.20.0.tar.xz) = 5e972b4e8bd799f902013b408e4677ef28b7a40c3be4739234c86ba92b2d1e84 -SIZE (KDE/plasma/5.20.0/ksysguard-5.20.0.tar.xz) = 558340 +TIMESTAMP = 1603378838 +SHA256 (KDE/plasma/5.20.1/ksysguard-5.20.1.tar.xz) = 6148705aed9100ba2697c758d9a703707f09924445d88dd311d0f99c1b32496a +SIZE (KDE/plasma/5.20.1/ksysguard-5.20.1.tar.xz) = 559156 Index: head/sysutils/plasma5-ksysguard/pkg-plist =================================================================== --- head/sysutils/plasma5-ksysguard/pkg-plist (revision 553023) +++ head/sysutils/plasma5-ksysguard/pkg-plist (revision 553024) @@ -1,183 +1,185 @@ bin/kstatsviewer bin/ksysguard bin/ksysguardd bin/ksystemstats etc/ksysguarddrc lib/libkdeinit5_ksysguard.so lib/libksgrdbackend.so %%QT_PLUGINDIR%%/ksysguard/ksysguard_ksgrd.so %%QT_PLUGINDIR%%/ksysguard/ksysguard_plugin_nvidiaglobal.so %%PCAP%%%%QT_PLUGINDIR%%/ksysguard/ksysguard_globalplugin_network.so %%QT_PLUGINDIR%%/ksysguard/ksysguard_plugin_osinfo.so %%QT_PLUGINDIR%%/ksysguard/process/ksysguard_plugin_nvidia.so share/applications/org.kde.ksysguard.desktop share/dbus-1/services/org.kde.ksystemstats.service share/doc/HTML/ca/ksysguard/index.cache.bz2 share/doc/HTML/ca/ksysguard/index.docbook share/doc/HTML/de/ksysguard/index.cache.bz2 share/doc/HTML/de/ksysguard/index.docbook share/doc/HTML/en/ksysguard/index.cache.bz2 share/doc/HTML/en/ksysguard/index.docbook share/doc/HTML/et/ksysguard/index.cache.bz2 share/doc/HTML/et/ksysguard/index.docbook share/doc/HTML/fr/ksysguard/index.cache.bz2 share/doc/HTML/fr/ksysguard/index.docbook share/doc/HTML/id/ksysguard/index.cache.bz2 share/doc/HTML/id/ksysguard/index.docbook share/doc/HTML/it/ksysguard/index.cache.bz2 share/doc/HTML/it/ksysguard/index.docbook share/doc/HTML/nl/ksysguard/index.cache.bz2 share/doc/HTML/nl/ksysguard/index.docbook share/doc/HTML/pt/ksysguard/index.cache.bz2 share/doc/HTML/pt/ksysguard/index.docbook share/doc/HTML/pt_BR/ksysguard/index.cache.bz2 share/doc/HTML/pt_BR/ksysguard/index.docbook share/doc/HTML/ru/ksysguard/index.cache.bz2 share/doc/HTML/ru/ksysguard/index.docbook share/doc/HTML/uk/ksysguard/index.cache.bz2 share/doc/HTML/uk/ksysguard/index.docbook share/icons/hicolor/16x16/apps/computer.png share/icons/hicolor/16x16/apps/daemon.png share/icons/hicolor/16x16/apps/kdeapp.png share/icons/hicolor/16x16/apps/kernel.png share/icons/hicolor/16x16/apps/ksysguardd.png share/icons/hicolor/16x16/apps/running.png share/icons/hicolor/16x16/apps/shell.png share/icons/hicolor/16x16/apps/unknownapp.png share/icons/hicolor/16x16/apps/waiting.png share/knotifications5/ksysguard.notifyrc share/knsrcfiles/ksysguard.knsrc %%DATADIR%%/ProcessTable.sgrd %%DATADIR%%/SystemLoad2.sgrd share/kxmlgui5/ksysguard/ksysguardui.rc share/locale/af/LC_MESSAGES/ksysguard.mo share/locale/ar/LC_MESSAGES/ksysguard.mo share/locale/ast/LC_MESSAGES/ksysguard.mo share/locale/az/LC_MESSAGES/ksysguard.mo share/locale/be/LC_MESSAGES/ksysguard.mo share/locale/be@latin/LC_MESSAGES/ksysguard.mo share/locale/bg/LC_MESSAGES/ksysguard.mo share/locale/bn/LC_MESSAGES/ksysguard.mo share/locale/bn_IN/LC_MESSAGES/ksysguard.mo share/locale/br/LC_MESSAGES/ksysguard.mo share/locale/bs/LC_MESSAGES/ksysguard.mo share/locale/ca/LC_MESSAGES/ksysguard.mo share/locale/ca/LC_MESSAGES/ksysguard_plugins_global.mo share/locale/ca/LC_MESSAGES/ksysguard_plugins_process.mo share/locale/ca@valencia/LC_MESSAGES/ksysguard.mo share/locale/ca@valencia/LC_MESSAGES/ksysguard_plugins_global.mo share/locale/ca@valencia/LC_MESSAGES/ksysguard_plugins_process.mo share/locale/cs/LC_MESSAGES/ksysguard.mo share/locale/cs/LC_MESSAGES/ksysguard_plugins_global.mo share/locale/cs/LC_MESSAGES/ksysguard_plugins_process.mo share/locale/csb/LC_MESSAGES/ksysguard.mo share/locale/cy/LC_MESSAGES/ksysguard.mo share/locale/da/LC_MESSAGES/ksysguard.mo share/locale/da/LC_MESSAGES/ksysguard_plugins_global.mo share/locale/da/LC_MESSAGES/ksysguard_plugins_process.mo share/locale/de/LC_MESSAGES/ksysguard.mo share/locale/de/LC_MESSAGES/ksysguard_plugins_global.mo share/locale/el/LC_MESSAGES/ksysguard.mo share/locale/en_GB/LC_MESSAGES/ksysguard.mo share/locale/en_GB/LC_MESSAGES/ksysguard_plugins_global.mo share/locale/en_GB/LC_MESSAGES/ksysguard_plugins_process.mo share/locale/eo/LC_MESSAGES/ksysguard.mo share/locale/es/LC_MESSAGES/ksysguard.mo share/locale/es/LC_MESSAGES/ksysguard_plugins_global.mo share/locale/es/LC_MESSAGES/ksysguard_plugins_process.mo share/locale/et/LC_MESSAGES/ksysguard.mo share/locale/eu/LC_MESSAGES/ksysguard.mo share/locale/eu/LC_MESSAGES/ksysguard_plugins_global.mo share/locale/eu/LC_MESSAGES/ksysguard_plugins_process.mo share/locale/fa/LC_MESSAGES/ksysguard.mo share/locale/fi/LC_MESSAGES/ksysguard.mo share/locale/fi/LC_MESSAGES/ksysguard_plugins_global.mo share/locale/fi/LC_MESSAGES/ksysguard_plugins_process.mo share/locale/fr/LC_MESSAGES/ksysguard.mo share/locale/fr/LC_MESSAGES/ksysguard_plugins_global.mo share/locale/fr/LC_MESSAGES/ksysguard_plugins_process.mo share/locale/fy/LC_MESSAGES/ksysguard.mo share/locale/ga/LC_MESSAGES/ksysguard.mo share/locale/gl/LC_MESSAGES/ksysguard.mo share/locale/gu/LC_MESSAGES/ksysguard.mo share/locale/he/LC_MESSAGES/ksysguard.mo share/locale/hi/LC_MESSAGES/ksysguard.mo share/locale/hne/LC_MESSAGES/ksysguard.mo share/locale/hr/LC_MESSAGES/ksysguard.mo share/locale/hsb/LC_MESSAGES/ksysguard.mo share/locale/hu/LC_MESSAGES/ksysguard.mo share/locale/ia/LC_MESSAGES/ksysguard.mo share/locale/id/LC_MESSAGES/ksysguard.mo share/locale/id/LC_MESSAGES/ksysguard_plugins_global.mo share/locale/id/LC_MESSAGES/ksysguard_plugins_process.mo share/locale/is/LC_MESSAGES/ksysguard.mo share/locale/it/LC_MESSAGES/ksysguard.mo share/locale/it/LC_MESSAGES/ksysguard_plugins_global.mo share/locale/it/LC_MESSAGES/ksysguard_plugins_process.mo share/locale/ja/LC_MESSAGES/ksysguard.mo share/locale/kk/LC_MESSAGES/ksysguard.mo share/locale/km/LC_MESSAGES/ksysguard.mo share/locale/kn/LC_MESSAGES/ksysguard.mo share/locale/ko/LC_MESSAGES/ksysguard.mo share/locale/ku/LC_MESSAGES/ksysguard.mo share/locale/lt/LC_MESSAGES/ksysguard.mo share/locale/lv/LC_MESSAGES/ksysguard.mo share/locale/mai/LC_MESSAGES/ksysguard.mo share/locale/mk/LC_MESSAGES/ksysguard.mo share/locale/ml/LC_MESSAGES/ksysguard.mo share/locale/mr/LC_MESSAGES/ksysguard.mo share/locale/ms/LC_MESSAGES/ksysguard.mo share/locale/nb/LC_MESSAGES/ksysguard.mo share/locale/nds/LC_MESSAGES/ksysguard.mo share/locale/ne/LC_MESSAGES/ksysguard.mo share/locale/nl/LC_MESSAGES/ksysguard.mo share/locale/nl/LC_MESSAGES/ksysguard_plugins_global.mo share/locale/nl/LC_MESSAGES/ksysguard_plugins_process.mo share/locale/nn/LC_MESSAGES/ksysguard.mo share/locale/oc/LC_MESSAGES/ksysguard.mo share/locale/pa/LC_MESSAGES/ksysguard.mo share/locale/pl/LC_MESSAGES/ksysguard.mo +share/locale/pl/LC_MESSAGES/ksysguard_plugins_global.mo +share/locale/pl/LC_MESSAGES/ksysguard_plugins_process.mo share/locale/pt/LC_MESSAGES/ksysguard.mo share/locale/pt/LC_MESSAGES/ksysguard_plugins_global.mo share/locale/pt/LC_MESSAGES/ksysguard_plugins_process.mo share/locale/pt_BR/LC_MESSAGES/ksysguard.mo share/locale/pt_BR/LC_MESSAGES/ksysguard_plugins_global.mo share/locale/pt_BR/LC_MESSAGES/ksysguard_plugins_process.mo share/locale/ro/LC_MESSAGES/ksysguard.mo share/locale/ro/LC_MESSAGES/ksysguard_plugins_global.mo share/locale/ro/LC_MESSAGES/ksysguard_plugins_process.mo share/locale/ru/LC_MESSAGES/ksysguard.mo share/locale/ru/LC_MESSAGES/ksysguard_plugins_global.mo share/locale/ru/LC_MESSAGES/ksysguard_plugins_process.mo share/locale/se/LC_MESSAGES/ksysguard.mo share/locale/si/LC_MESSAGES/ksysguard.mo share/locale/sk/LC_MESSAGES/ksysguard.mo share/locale/sk/LC_MESSAGES/ksysguard_plugins_global.mo share/locale/sk/LC_MESSAGES/ksysguard_plugins_process.mo share/locale/sl/LC_MESSAGES/ksysguard.mo share/locale/sl/LC_MESSAGES/ksysguard_plugins_global.mo share/locale/sl/LC_MESSAGES/ksysguard_plugins_process.mo share/locale/sq/LC_MESSAGES/ksysguard.mo share/locale/sr/LC_MESSAGES/ksysguard.mo share/locale/sr@ijekavian/LC_MESSAGES/ksysguard.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/ksysguard.mo share/locale/sr@latin/LC_MESSAGES/ksysguard.mo share/locale/ta/LC_MESSAGES/ksysguard.mo share/locale/te/LC_MESSAGES/ksysguard.mo share/locale/tg/LC_MESSAGES/ksysguard.mo share/locale/th/LC_MESSAGES/ksysguard.mo share/locale/tr/LC_MESSAGES/ksysguard.mo share/locale/ug/LC_MESSAGES/ksysguard.mo share/locale/uk/LC_MESSAGES/ksysguard.mo share/locale/uk/LC_MESSAGES/ksysguard_plugins_global.mo share/locale/uk/LC_MESSAGES/ksysguard_plugins_process.mo share/locale/uz/LC_MESSAGES/ksysguard.mo share/locale/uz@cyrillic/LC_MESSAGES/ksysguard.mo share/locale/vi/LC_MESSAGES/ksysguard.mo share/locale/wa/LC_MESSAGES/ksysguard.mo share/locale/xh/LC_MESSAGES/ksysguard.mo share/locale/zh_CN/LC_MESSAGES/ksysguard.mo share/locale/zh_CN/LC_MESSAGES/ksysguard_plugins_global.mo share/locale/zh_CN/LC_MESSAGES/ksysguard_plugins_process.mo share/locale/zh_TW/LC_MESSAGES/ksysguard.mo share/metainfo/org.kde.ksysguard.appdata.xml Index: head/sysutils/plasma5-libksysguard/distinfo =================================================================== --- head/sysutils/plasma5-libksysguard/distinfo (revision 553023) +++ head/sysutils/plasma5-libksysguard/distinfo (revision 553024) @@ -1,3 +1,3 @@ -TIMESTAMP = 1602198210 -SHA256 (KDE/plasma/5.20.0/libksysguard-5.20.0.tar.xz) = dd0be43db2170a5babdfc5afb56c418fa838ced9f5a9a99ee60ae34e4f4b67af -SIZE (KDE/plasma/5.20.0/libksysguard-5.20.0.tar.xz) = 682884 +TIMESTAMP = 1603378839 +SHA256 (KDE/plasma/5.20.1/libksysguard-5.20.1.tar.xz) = 8cd4b9a05aba2843628205c0006147910f8b243e9da6dc8e429ca8681ce5993e +SIZE (KDE/plasma/5.20.1/libksysguard-5.20.1.tar.xz) = 686188 Index: head/sysutils/plasma5-libksysguard/pkg-plist =================================================================== --- head/sysutils/plasma5-libksysguard/pkg-plist (revision 553023) +++ head/sysutils/plasma5-libksysguard/pkg-plist (revision 553024) @@ -1,491 +1,503 @@ include/ksysguard/faces/SensorFaceController.h include/ksysguard/faces/SensorFace_p.h include/ksysguard/faces/sensorfaces_export.h include/ksysguard/formatter/Formatter.h include/ksysguard/formatter/Unit.h include/ksysguard/formatter/formatter_export.h include/ksysguard/ksgrd/SensorAgent.h include/ksysguard/ksgrd/SensorClient.h include/ksysguard/ksgrd/SensorManager.h include/ksysguard/ksgrd/SensorShellAgent.h include/ksysguard/ksgrd/SensorSocketAgent.h include/ksysguard/ksignalplotter.h include/ksysguard/lsof.h include/ksysguard/processcore/formatter.h include/ksysguard/processcore/process.h include/ksysguard/processcore/process_attribute.h include/ksysguard/processcore/process_attribute_model.h include/ksysguard/processcore/process_controller.h include/ksysguard/processcore/process_data_model.h include/ksysguard/processcore/process_data_provider.h include/ksysguard/processcore/processes.h include/ksysguard/processcore/unit.h include/ksysguard/processui/KTextEditVT.h include/ksysguard/processui/ProcessFilter.h include/ksysguard/processui/ProcessModel.h include/ksysguard/processui/ksysguardprocesslist.h include/ksysguard/sensors/Sensor.h include/ksysguard/sensors/SensorDataModel.h include/ksysguard/sensors/SensorInfo_p.h include/ksysguard/sensors/SensorQuery.h include/ksysguard/sensors/SensorTreeModel.h include/ksysguard/sensors/sensors_export.h lib/cmake/KF5SysGuard/KF5SysGuardConfig.cmake lib/cmake/KSysGuard/KSysGuardConfig.cmake lib/cmake/KSysGuard/KSysGuardConfigVersion.cmake lib/cmake/KSysGuard/KSysGuardLibraryTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KSysGuard/KSysGuardLibraryTargets.cmake lib/libKSysGuardFormatter.so lib/libKSysGuardFormatter.so.%%KDE_PLASMA_VERSION%% lib/libKSysGuardFormatter.so.1 lib/libKSysGuardSensorFaces.so lib/libKSysGuardSensorFaces.so.%%KDE_PLASMA_VERSION%% lib/libKSysGuardSensorFaces.so.1 lib/libKSysGuardSensors.so lib/libKSysGuardSensors.so.%%KDE_PLASMA_VERSION%% lib/libKSysGuardSensors.so.1 lib/libexec/kauth/ksysguardprocesslist_helper lib/libksgrd.so lib/libksgrd.so.%%KDE_PLASMA_VERSION%% lib/libksgrd.so.9 lib/libksignalplotter.so lib/libksignalplotter.so.%%KDE_PLASMA_VERSION%% lib/libksignalplotter.so.9 lib/liblsofui.so lib/liblsofui.so.%%KDE_PLASMA_VERSION%% lib/liblsofui.so.9 lib/libprocesscore.so lib/libprocesscore.so.%%KDE_PLASMA_VERSION%% lib/libprocesscore.so.9 lib/libprocessui.so lib/libprocessui.so.%%KDE_PLASMA_VERSION%% lib/libprocessui.so.9 %%QT_PLUGINDIR%%/kpackage/packagestructure/sensorface_packagestructure.so %%QT_PLUGINDIR%%/designer/ksignalplotter5widgets.so %%QT_PLUGINDIR%%/designer/ksysguard5widgets.so %%QT_PLUGINDIR%%/designer/ksysguardlsof5widgets.so %%QT_QMLDIR%%/org/kde/ksysguard/faces/ExtendedLegend.qml %%QT_QMLDIR%%/org/kde/ksysguard/faces/SensorFace.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/system-services/org.kde.ksysguard.processlisthelper.service share/dbus-1/system.d/org.kde.ksysguard.processlisthelper.conf share/knsrcfiles/systemmonitor-faces.knsrc share/knsrcfiles/systemmonitor-presets.knsrc share/ksysguard/scripts/README share/ksysguard/scripts/smaps/helper.js share/ksysguard/scripts/smaps/index.html share/ksysguard/scripts/smaps/main.js share/ksysguard/scripts/smaps/smaps.desktop share/ksysguard/scripts/smaps/sorttable.js share/ksysguard/scripts/smaps/style.css share/ksysguard/sensorfaces/org.kde.ksysguard.barchart/contents/config/main.xml share/ksysguard/sensorfaces/org.kde.ksysguard.barchart/contents/faceproperties share/ksysguard/sensorfaces/org.kde.ksysguard.barchart/contents/ui/BarChart.qml share/ksysguard/sensorfaces/org.kde.ksysguard.barchart/contents/ui/CompactRepresentation.qml share/ksysguard/sensorfaces/org.kde.ksysguard.barchart/contents/ui/Config.qml share/ksysguard/sensorfaces/org.kde.ksysguard.barchart/contents/ui/FullRepresentation.qml share/ksysguard/sensorfaces/org.kde.ksysguard.barchart/metadata.desktop share/ksysguard/sensorfaces/org.kde.ksysguard.barchart/metadata.json share/ksysguard/sensorfaces/org.kde.ksysguard.horizontalbars/contents/faceproperties share/ksysguard/sensorfaces/org.kde.ksysguard.horizontalbars/contents/ui/Bar.qml share/ksysguard/sensorfaces/org.kde.ksysguard.horizontalbars/contents/ui/CompactRepresentation.qml share/ksysguard/sensorfaces/org.kde.ksysguard.horizontalbars/contents/ui/FullRepresentation.qml share/ksysguard/sensorfaces/org.kde.ksysguard.horizontalbars/metadata.desktop share/ksysguard/sensorfaces/org.kde.ksysguard.horizontalbars/metadata.json share/ksysguard/sensorfaces/org.kde.ksysguard.linechart/contents/config/main.xml share/ksysguard/sensorfaces/org.kde.ksysguard.linechart/contents/faceproperties share/ksysguard/sensorfaces/org.kde.ksysguard.linechart/contents/ui/CompactRepresentation.qml share/ksysguard/sensorfaces/org.kde.ksysguard.linechart/contents/ui/Config.qml share/ksysguard/sensorfaces/org.kde.ksysguard.linechart/contents/ui/FullRepresentation.qml share/ksysguard/sensorfaces/org.kde.ksysguard.linechart/contents/ui/LineChart.qml share/ksysguard/sensorfaces/org.kde.ksysguard.linechart/metadata.desktop share/ksysguard/sensorfaces/org.kde.ksysguard.linechart/metadata.json share/ksysguard/sensorfaces/org.kde.ksysguard.piechart/contents/config/main.xml share/ksysguard/sensorfaces/org.kde.ksysguard.piechart/contents/faceproperties share/ksysguard/sensorfaces/org.kde.ksysguard.piechart/contents/ui/CompactRepresentation.qml share/ksysguard/sensorfaces/org.kde.ksysguard.piechart/contents/ui/Config.qml share/ksysguard/sensorfaces/org.kde.ksysguard.piechart/contents/ui/FullRepresentation.qml share/ksysguard/sensorfaces/org.kde.ksysguard.piechart/contents/ui/PieChart.qml share/ksysguard/sensorfaces/org.kde.ksysguard.piechart/contents/ui/UsedTotalDisplay.qml share/ksysguard/sensorfaces/org.kde.ksysguard.piechart/metadata.desktop share/ksysguard/sensorfaces/org.kde.ksysguard.piechart/metadata.json share/ksysguard/sensorfaces/org.kde.ksysguard.textonly/contents/config/main.xml share/ksysguard/sensorfaces/org.kde.ksysguard.textonly/contents/faceproperties share/ksysguard/sensorfaces/org.kde.ksysguard.textonly/contents/ui/CompactRepresentation.qml share/ksysguard/sensorfaces/org.kde.ksysguard.textonly/contents/ui/Config.qml share/ksysguard/sensorfaces/org.kde.ksysguard.textonly/contents/ui/FullRepresentation.qml share/ksysguard/sensorfaces/org.kde.ksysguard.textonly/contents/ui/GroupedText.qml share/ksysguard/sensorfaces/org.kde.ksysguard.textonly/metadata.desktop share/ksysguard/sensorfaces/org.kde.ksysguard.textonly/metadata.json share/locale/ar/LC_MESSAGES/ksgrd.mo share/locale/ar/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/ar/LC_MESSAGES/processcore.mo share/locale/ar/LC_MESSAGES/processui.mo share/locale/as/LC_MESSAGES/processui.mo share/locale/ast/LC_MESSAGES/processcore.mo share/locale/be/LC_MESSAGES/processcore.mo share/locale/be/LC_MESSAGES/processui.mo share/locale/be@latin/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/bg/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/bg/LC_MESSAGES/processcore.mo share/locale/bg/LC_MESSAGES/processui.mo share/locale/bn_IN/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/bn_IN/LC_MESSAGES/processcore.mo share/locale/bn_IN/LC_MESSAGES/processui.mo share/locale/bs/LC_MESSAGES/ksgrd.mo share/locale/bs/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/bs/LC_MESSAGES/processcore.mo share/locale/bs/LC_MESSAGES/processui.mo share/locale/ca/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/ca/LC_MESSAGES/ksgrd.mo share/locale/ca/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/ca/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.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/ksysguardlsofwidgets.mo share/locale/ca/LC_MESSAGES/processcore.mo share/locale/ca/LC_MESSAGES/processui.mo share/locale/ca@valencia/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/ca@valencia/LC_MESSAGES/ksgrd.mo share/locale/ca@valencia/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/ca@valencia/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/ca@valencia/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/ca@valencia/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/ca@valencia/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/ca@valencia/LC_MESSAGES/processcore.mo share/locale/ca@valencia/LC_MESSAGES/processui.mo share/locale/cs/LC_MESSAGES/KSysGuardSensorFaces.mo -share/locale/en_GB/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo -share/locale/ro/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/cs/LC_MESSAGES/ksgrd.mo share/locale/cs/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/cs/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.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/ksysguardlsofwidgets.mo share/locale/cs/LC_MESSAGES/processcore.mo share/locale/cs/LC_MESSAGES/processui.mo share/locale/csb/LC_MESSAGES/processcore.mo share/locale/csb/LC_MESSAGES/processui.mo share/locale/da/LC_MESSAGES/ksgrd.mo share/locale/da/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/da/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/da/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/da/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/da/LC_MESSAGES/processcore.mo share/locale/da/LC_MESSAGES/processui.mo +share/locale/de/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/de/LC_MESSAGES/ksgrd.mo share/locale/de/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/de/LC_MESSAGES/processcore.mo share/locale/de/LC_MESSAGES/processui.mo share/locale/el/LC_MESSAGES/ksgrd.mo share/locale/el/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/el/LC_MESSAGES/processcore.mo share/locale/el/LC_MESSAGES/processui.mo share/locale/en_GB/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/en_GB/LC_MESSAGES/ksgrd.mo share/locale/en_GB/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/en_GB/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.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/ksysguardlsofwidgets.mo share/locale/en_GB/LC_MESSAGES/processcore.mo share/locale/en_GB/LC_MESSAGES/processui.mo share/locale/eo/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/eo/LC_MESSAGES/processcore.mo share/locale/eo/LC_MESSAGES/processui.mo share/locale/es/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/es/LC_MESSAGES/ksgrd.mo share/locale/es/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/es/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.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/ksysguardlsofwidgets.mo share/locale/es/LC_MESSAGES/processcore.mo share/locale/es/LC_MESSAGES/processui.mo share/locale/et/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/et/LC_MESSAGES/ksgrd.mo share/locale/et/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/et/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/et/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo +share/locale/et/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/et/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/et/LC_MESSAGES/processcore.mo share/locale/et/LC_MESSAGES/processui.mo share/locale/eu/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/eu/LC_MESSAGES/ksgrd.mo share/locale/eu/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/eu/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.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/ksysguardlsofwidgets.mo share/locale/eu/LC_MESSAGES/processcore.mo share/locale/eu/LC_MESSAGES/processui.mo share/locale/fa/LC_MESSAGES/processcore.mo share/locale/fa/LC_MESSAGES/processui.mo share/locale/fi/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/fi/LC_MESSAGES/ksgrd.mo share/locale/fi/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/fi/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/fi/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/fi/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/fi/LC_MESSAGES/processcore.mo share/locale/fi/LC_MESSAGES/processui.mo share/locale/fr/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/fr/LC_MESSAGES/ksgrd.mo share/locale/fr/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/fr/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.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/ksysguardlsofwidgets.mo share/locale/fr/LC_MESSAGES/processcore.mo share/locale/fr/LC_MESSAGES/processui.mo share/locale/fy/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/fy/LC_MESSAGES/processcore.mo share/locale/fy/LC_MESSAGES/processui.mo share/locale/ga/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/ga/LC_MESSAGES/processcore.mo share/locale/ga/LC_MESSAGES/processui.mo share/locale/gl/LC_MESSAGES/ksgrd.mo share/locale/gl/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/gl/LC_MESSAGES/processcore.mo share/locale/gl/LC_MESSAGES/processui.mo share/locale/gu/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/gu/LC_MESSAGES/processcore.mo share/locale/gu/LC_MESSAGES/processui.mo share/locale/he/LC_MESSAGES/ksgrd.mo share/locale/he/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/he/LC_MESSAGES/processcore.mo share/locale/he/LC_MESSAGES/processui.mo share/locale/hi/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/hi/LC_MESSAGES/processcore.mo share/locale/hi/LC_MESSAGES/processui.mo share/locale/hne/LC_MESSAGES/processcore.mo share/locale/hr/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/hr/LC_MESSAGES/processcore.mo share/locale/hr/LC_MESSAGES/processui.mo share/locale/hsb/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/hsb/LC_MESSAGES/processcore.mo share/locale/hsb/LC_MESSAGES/processui.mo share/locale/hu/LC_MESSAGES/ksgrd.mo share/locale/hu/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/hu/LC_MESSAGES/processcore.mo share/locale/hu/LC_MESSAGES/processui.mo share/locale/ia/LC_MESSAGES/ksgrd.mo share/locale/ia/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/ia/LC_MESSAGES/processcore.mo share/locale/ia/LC_MESSAGES/processui.mo share/locale/id/LC_MESSAGES/ksgrd.mo share/locale/id/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/id/LC_MESSAGES/processcore.mo share/locale/id/LC_MESSAGES/processui.mo share/locale/is/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/is/LC_MESSAGES/processcore.mo share/locale/is/LC_MESSAGES/processui.mo share/locale/it/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/it/LC_MESSAGES/ksgrd.mo share/locale/it/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/it/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.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/ksysguardlsofwidgets.mo share/locale/it/LC_MESSAGES/processcore.mo share/locale/it/LC_MESSAGES/processui.mo share/locale/ja/LC_MESSAGES/ksgrd.mo share/locale/ja/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/ja/LC_MESSAGES/processcore.mo share/locale/ja/LC_MESSAGES/processui.mo share/locale/kk/LC_MESSAGES/ksgrd.mo share/locale/kk/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/kk/LC_MESSAGES/processcore.mo share/locale/kk/LC_MESSAGES/processui.mo share/locale/km/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/km/LC_MESSAGES/processcore.mo share/locale/km/LC_MESSAGES/processui.mo share/locale/kn/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/ko/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/ko/LC_MESSAGES/ksgrd.mo share/locale/ko/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/ko/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/ko/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/ko/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/ko/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/ko/LC_MESSAGES/processcore.mo share/locale/ko/LC_MESSAGES/processui.mo share/locale/ku/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/ku/LC_MESSAGES/processcore.mo share/locale/ku/LC_MESSAGES/processui.mo share/locale/lt/LC_MESSAGES/ksgrd.mo share/locale/lt/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/lt/LC_MESSAGES/processcore.mo share/locale/lt/LC_MESSAGES/processui.mo share/locale/lv/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/lv/LC_MESSAGES/processcore.mo share/locale/lv/LC_MESSAGES/processui.mo share/locale/mai/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/mai/LC_MESSAGES/processcore.mo share/locale/mai/LC_MESSAGES/processui.mo share/locale/mk/LC_MESSAGES/processcore.mo share/locale/mk/LC_MESSAGES/processui.mo share/locale/ml/LC_MESSAGES/ksgrd.mo share/locale/ml/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/ml/LC_MESSAGES/processcore.mo share/locale/ml/LC_MESSAGES/processui.mo share/locale/mr/LC_MESSAGES/ksgrd.mo share/locale/mr/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/mr/LC_MESSAGES/processcore.mo share/locale/mr/LC_MESSAGES/processui.mo share/locale/ms/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/ms/LC_MESSAGES/processcore.mo share/locale/ms/LC_MESSAGES/processui.mo share/locale/nb/LC_MESSAGES/ksgrd.mo share/locale/nb/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/nb/LC_MESSAGES/processcore.mo share/locale/nb/LC_MESSAGES/processui.mo share/locale/nds/LC_MESSAGES/ksgrd.mo share/locale/nds/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/nds/LC_MESSAGES/processcore.mo share/locale/nds/LC_MESSAGES/processui.mo share/locale/ne/LC_MESSAGES/processcore.mo share/locale/ne/LC_MESSAGES/processui.mo share/locale/nl/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/nl/LC_MESSAGES/ksgrd.mo share/locale/nl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/nl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.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/ksysguardlsofwidgets.mo share/locale/nl/LC_MESSAGES/processcore.mo share/locale/nl/LC_MESSAGES/processui.mo share/locale/nn/LC_MESSAGES/ksgrd.mo share/locale/nn/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/nn/LC_MESSAGES/processcore.mo share/locale/nn/LC_MESSAGES/processui.mo share/locale/oc/LC_MESSAGES/processcore.mo share/locale/oc/LC_MESSAGES/processui.mo share/locale/pa/LC_MESSAGES/ksgrd.mo share/locale/pa/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/pa/LC_MESSAGES/processcore.mo share/locale/pa/LC_MESSAGES/processui.mo +share/locale/pl/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/pl/LC_MESSAGES/ksgrd.mo +share/locale/pl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo +share/locale/pl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.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/ksysguardlsofwidgets.mo share/locale/pl/LC_MESSAGES/processcore.mo share/locale/pl/LC_MESSAGES/processui.mo share/locale/pt/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/pt/LC_MESSAGES/ksgrd.mo share/locale/pt/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/pt/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.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/ksysguardlsofwidgets.mo share/locale/pt/LC_MESSAGES/processcore.mo share/locale/pt/LC_MESSAGES/processui.mo share/locale/pt_BR/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/pt_BR/LC_MESSAGES/ksgrd.mo share/locale/pt_BR/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/pt_BR/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/pt_BR/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/pt_BR/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/pt_BR/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/pt_BR/LC_MESSAGES/processcore.mo share/locale/pt_BR/LC_MESSAGES/processui.mo share/locale/ro/LC_MESSAGES/ksgrd.mo +share/locale/ro/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/ro/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/ro/LC_MESSAGES/processcore.mo share/locale/ro/LC_MESSAGES/processui.mo +share/locale/ru/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/ru/LC_MESSAGES/ksgrd.mo +share/locale/ru/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo +share/locale/ru/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo +share/locale/ru/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/ru/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/ru/LC_MESSAGES/processcore.mo share/locale/ru/LC_MESSAGES/processui.mo share/locale/se/LC_MESSAGES/processcore.mo share/locale/se/LC_MESSAGES/processui.mo share/locale/si/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/si/LC_MESSAGES/processcore.mo share/locale/si/LC_MESSAGES/processui.mo share/locale/sk/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/sk/LC_MESSAGES/ksgrd.mo share/locale/sk/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/sk/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.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/ksysguardlsofwidgets.mo share/locale/sk/LC_MESSAGES/processcore.mo share/locale/sk/LC_MESSAGES/processui.mo share/locale/sl/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/sl/LC_MESSAGES/ksgrd.mo share/locale/sl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/sl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.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/ksysguardlsofwidgets.mo share/locale/sl/LC_MESSAGES/processcore.mo share/locale/sl/LC_MESSAGES/processui.mo share/locale/sq/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/sq/LC_MESSAGES/processcore.mo share/locale/sq/LC_MESSAGES/processui.mo share/locale/sr/LC_MESSAGES/ksgrd.mo share/locale/sr/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/sr/LC_MESSAGES/processcore.mo share/locale/sr/LC_MESSAGES/processui.mo share/locale/sr@ijekavian/LC_MESSAGES/ksgrd.mo share/locale/sr@ijekavian/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/sr@ijekavian/LC_MESSAGES/processcore.mo share/locale/sr@ijekavian/LC_MESSAGES/processui.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/ksgrd.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/processcore.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/processui.mo share/locale/sr@latin/LC_MESSAGES/ksgrd.mo share/locale/sr@latin/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/sr@latin/LC_MESSAGES/processcore.mo share/locale/sr@latin/LC_MESSAGES/processui.mo share/locale/ta/LC_MESSAGES/processcore.mo share/locale/ta/LC_MESSAGES/processui.mo share/locale/te/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/te/LC_MESSAGES/processcore.mo share/locale/te/LC_MESSAGES/processui.mo share/locale/tg/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/tg/LC_MESSAGES/processcore.mo share/locale/tg/LC_MESSAGES/processui.mo share/locale/th/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/th/LC_MESSAGES/processcore.mo share/locale/th/LC_MESSAGES/processui.mo share/locale/tr/LC_MESSAGES/ksgrd.mo share/locale/tr/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/tr/LC_MESSAGES/processcore.mo share/locale/tr/LC_MESSAGES/processui.mo share/locale/ug/LC_MESSAGES/ksgrd.mo share/locale/ug/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/ug/LC_MESSAGES/processcore.mo share/locale/ug/LC_MESSAGES/processui.mo share/locale/uk/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/uk/LC_MESSAGES/ksgrd.mo share/locale/uk/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/uk/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.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/ksysguardlsofwidgets.mo share/locale/uk/LC_MESSAGES/processcore.mo share/locale/uk/LC_MESSAGES/processui.mo share/locale/wa/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/wa/LC_MESSAGES/processcore.mo share/locale/wa/LC_MESSAGES/processui.mo share/locale/zh_CN/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/zh_CN/LC_MESSAGES/ksgrd.mo share/locale/zh_CN/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/zh_CN/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.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/ksysguardlsofwidgets.mo share/locale/zh_CN/LC_MESSAGES/processcore.mo share/locale/zh_CN/LC_MESSAGES/processui.mo share/locale/zh_TW/LC_MESSAGES/ksgrd.mo share/locale/zh_TW/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/zh_TW/LC_MESSAGES/processcore.mo share/locale/zh_TW/LC_MESSAGES/processui.mo share/polkit-1/actions/org.kde.ksysguard.processlisthelper.policy share/qlogging-categories5/libksysguard.categories Index: head/sysutils/plasma5-plasma-disks/distinfo =================================================================== --- head/sysutils/plasma5-plasma-disks/distinfo (revision 553023) +++ head/sysutils/plasma5-plasma-disks/distinfo (revision 553024) @@ -1,3 +1,3 @@ -TIMESTAMP = 1602342045 -SHA256 (KDE/plasma/5.20.0/plasma-disks-5.20.0.tar.xz) = 187abd14a94864cfadfd19375ac93813194cf5e2d89e6863d52599bd7bf923e8 -SIZE (KDE/plasma/5.20.0/plasma-disks-5.20.0.tar.xz) = 60536 +TIMESTAMP = 1603378841 +SHA256 (KDE/plasma/5.20.1/plasma-disks-5.20.1.tar.xz) = 0e382861b3fcd5eeecfbbc3fb924ae1da839b502da639dda14893a2903929f0e +SIZE (KDE/plasma/5.20.1/plasma-disks-5.20.1.tar.xz) = 62988 Index: head/sysutils/plasma5-plasma-disks/pkg-plist =================================================================== --- head/sysutils/plasma5-plasma-disks/pkg-plist (revision 553023) +++ head/sysutils/plasma5-plasma-disks/pkg-plist (revision 553024) @@ -1,32 +1,35 @@ lib/libexec/kauth/kded-smart-helper %%QT_PLUGINDIR%%/kcms/smart.so %%QT_PLUGINDIR%%/kf5/kded/smart.so share/dbus-1/system-services/org.kde.kded.smart.service share/dbus-1/system.d/org.kde.kded.smart.conf share/knotifications5/org.kde.kded.smart.notifyrc share/kpackage/kcms/plasma_disks/contents/main.qml share/kpackage/kcms/plasma_disks/metadata.desktop share/kpackage/kcms/plasma_disks/metadata.json share/kservices5/smart.desktop share/locale/ca/LC_MESSAGES/plasma_disks.mo share/locale/ca@valencia/LC_MESSAGES/plasma_disks.mo share/locale/cs/LC_MESSAGES/plasma_disks.mo share/locale/da/LC_MESSAGES/plasma_disks.mo share/locale/de/LC_MESSAGES/plasma_disks.mo +share/locale/el/LC_MESSAGES/plasma_disks.mo share/locale/en_GB/LC_MESSAGES/plasma_disks.mo share/locale/es/LC_MESSAGES/plasma_disks.mo +share/locale/et/LC_MESSAGES/plasma_disks.mo share/locale/eu/LC_MESSAGES/plasma_disks.mo share/locale/fi/LC_MESSAGES/plasma_disks.mo share/locale/fr/LC_MESSAGES/plasma_disks.mo share/locale/it/LC_MESSAGES/plasma_disks.mo share/locale/ko/LC_MESSAGES/plasma_disks.mo share/locale/nl/LC_MESSAGES/plasma_disks.mo share/locale/nn/LC_MESSAGES/plasma_disks.mo +share/locale/pl/LC_MESSAGES/plasma_disks.mo share/locale/pt_BR/LC_MESSAGES/plasma_disks.mo share/locale/ro/LC_MESSAGES/plasma_disks.mo share/locale/sk/LC_MESSAGES/plasma_disks.mo share/locale/sl/LC_MESSAGES/plasma_disks.mo share/locale/sv/LC_MESSAGES/plasma_disks.mo share/locale/uk/LC_MESSAGES/plasma_disks.mo share/metainfo/org.kde.plasma.disks.metainfo.xml share/polkit-1/actions/org.kde.kded.smart.policy Index: head/sysutils/plasma5-polkit-kde-agent-1/distinfo =================================================================== --- head/sysutils/plasma5-polkit-kde-agent-1/distinfo (revision 553023) +++ head/sysutils/plasma5-polkit-kde-agent-1/distinfo (revision 553024) @@ -1,3 +1,3 @@ -TIMESTAMP = 1602198211 -SHA256 (KDE/plasma/5.20.0/polkit-kde-agent-1-5.20.0.tar.xz) = 838d2354f32dc305cdd485b69dc70b7e7a6c408d72ae623929493fcdea28455c -SIZE (KDE/plasma/5.20.0/polkit-kde-agent-1-5.20.0.tar.xz) = 44352 +TIMESTAMP = 1603378842 +SHA256 (KDE/plasma/5.20.1/polkit-kde-agent-1-5.20.1.tar.xz) = 76fff91115db932951a60c17e4463713f8e8c6ceef95fb96249b51f4f2d126a1 +SIZE (KDE/plasma/5.20.1/polkit-kde-agent-1-5.20.1.tar.xz) = 44352 Index: head/sysutils/plasma5-powerdevil/distinfo =================================================================== --- head/sysutils/plasma5-powerdevil/distinfo (revision 553023) +++ head/sysutils/plasma5-powerdevil/distinfo (revision 553024) @@ -1,3 +1,3 @@ -TIMESTAMP = 1602521935 -SHA256 (KDE/plasma/5.20.0/powerdevil-5.20.0.tar.xz) = f2a383473e1dc2e7067cb808c02ad657a6999361bdfb3fbdcac4c99e5cf8fcee -SIZE (KDE/plasma/5.20.0/powerdevil-5.20.0.tar.xz) = 606232 +TIMESTAMP = 1603378844 +SHA256 (KDE/plasma/5.20.1/powerdevil-5.20.1.tar.xz) = 36273fca26c73520c674e96039a43134254313998a2a7587c3267230530b50ae +SIZE (KDE/plasma/5.20.1/powerdevil-5.20.1.tar.xz) = 607288 Index: head/sysutils/plasma5-systemsettings/Makefile =================================================================== --- head/sysutils/plasma5-systemsettings/Makefile (revision 553023) +++ head/sysutils/plasma5-systemsettings/Makefile (revision 553024) @@ -1,20 +1,19 @@ # $FreeBSD$ PORTNAME= systemsettings -DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 +DISTVERSION= ${KDE_PLASMA_VERSION}.1 CATEGORIES= sysutils kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 system settings USES= cmake compiler:c++11-lib cpe gettext kde:5 qt:5 tar:xz USE_KDE= activities activities-stats auth codecs completion config \ configwidgets coreaddons crash dbusaddons doctools ecm guiaddons \ i18n iconthemes itemmodels itemviews jobwidgets js kcmutils \ kdeclarative khtml kio kirigami2 package parts plasma-workspace \ service sonnet textwidgets widgetsaddons windowsystem xmlgui USE_QT= concurrent core dbus declarative gui network widgets xml \ buildtools_build qmake_build .include Index: head/sysutils/plasma5-systemsettings/distinfo =================================================================== --- head/sysutils/plasma5-systemsettings/distinfo (revision 553023) +++ head/sysutils/plasma5-systemsettings/distinfo (revision 553024) @@ -1,3 +1,3 @@ -TIMESTAMP = 1602603970 -SHA256 (KDE/plasma/5.20.0/systemsettings-5.20.0.tar.xz) = 5d353d33087c69aa6dac33c53831b2014e1f8e5f9bec3b8e2b6e9f37b4868390 -SIZE (KDE/plasma/5.20.0/systemsettings-5.20.0.tar.xz) = 703036 +TIMESTAMP = 1603386476 +SHA256 (KDE/plasma/5.20.1/systemsettings-5.20.1.1.tar.xz) = 6923be6b9b6fbee59d917b9c7036f1a1146a5feeb5ad6442988f45c1531e4f4a +SIZE (KDE/plasma/5.20.1/systemsettings-5.20.1.1.tar.xz) = 188608 Index: head/www/plasma5-plasma-browser-integration/distinfo =================================================================== --- head/www/plasma5-plasma-browser-integration/distinfo (revision 553023) +++ head/www/plasma5-plasma-browser-integration/distinfo (revision 553024) @@ -1,3 +1,3 @@ -TIMESTAMP = 1602198213 -SHA256 (KDE/plasma/5.20.0/plasma-browser-integration-5.20.0.tar.xz) = 8fb5bff4b1f170187bd7100ad3465b4e3cd4854c6d593a87ef162c9f7e0b9fe3 -SIZE (KDE/plasma/5.20.0/plasma-browser-integration-5.20.0.tar.xz) = 191056 +TIMESTAMP = 1603378847 +SHA256 (KDE/plasma/5.20.1/plasma-browser-integration-5.20.1.tar.xz) = 5d0ef73b569ca21a56c550e35c0ea2a3b4ca00b0e13d64391dc229479f3fd2f1 +SIZE (KDE/plasma/5.20.1/plasma-browser-integration-5.20.1.tar.xz) = 191440 Index: head/x11/plasma5-kactivitymanagerd/distinfo =================================================================== --- head/x11/plasma5-kactivitymanagerd/distinfo (revision 553023) +++ head/x11/plasma5-kactivitymanagerd/distinfo (revision 553024) @@ -1,3 +1,3 @@ -TIMESTAMP = 1602198221 -SHA256 (KDE/plasma/5.20.0/kactivitymanagerd-5.20.0.tar.xz) = 3edc81cc588db4405e1b51831288bdd9ad5c33ef097620549bf936fc7ec21fbe -SIZE (KDE/plasma/5.20.0/kactivitymanagerd-5.20.0.tar.xz) = 94596 +TIMESTAMP = 1603378870 +SHA256 (KDE/plasma/5.20.1/kactivitymanagerd-5.20.1.tar.xz) = cb07812a1ea5a52e6bd6f4bc7a0639df6280fe66eac0f727559f7d25f4fb5e85 +SIZE (KDE/plasma/5.20.1/kactivitymanagerd-5.20.1.tar.xz) = 94596 Index: head/x11/plasma5-kgamma5/distinfo =================================================================== --- head/x11/plasma5-kgamma5/distinfo (revision 553023) +++ head/x11/plasma5-kgamma5/distinfo (revision 553024) @@ -1,3 +1,3 @@ -TIMESTAMP = 1602198222 -SHA256 (KDE/plasma/5.20.0/kgamma5-5.20.0.tar.xz) = 614f92fc14a3c7ed5b7e44579d715d4f7d6387ffab04863d081ef45be375bd0f -SIZE (KDE/plasma/5.20.0/kgamma5-5.20.0.tar.xz) = 80952 +TIMESTAMP = 1603378871 +SHA256 (KDE/plasma/5.20.1/kgamma5-5.20.1.tar.xz) = 401ea7194bd1199b5eabf615d6499d17c629db3b27480e225afe7b73ccdaece8 +SIZE (KDE/plasma/5.20.1/kgamma5-5.20.1.tar.xz) = 80968 Index: head/x11/plasma5-kscreen/distinfo =================================================================== --- head/x11/plasma5-kscreen/distinfo (revision 553023) +++ head/x11/plasma5-kscreen/distinfo (revision 553024) @@ -1,3 +1,3 @@ -TIMESTAMP = 1602198223 -SHA256 (KDE/plasma/5.20.0/kscreen-5.20.0.tar.xz) = fad43bdaf4706501c7d130dd885229d3b4a4ed327f2d352d577f3c34be2a3edd -SIZE (KDE/plasma/5.20.0/kscreen-5.20.0.tar.xz) = 113696 +TIMESTAMP = 1603378873 +SHA256 (KDE/plasma/5.20.1/kscreen-5.20.1.tar.xz) = 37e2d32d1d0b707f28dfb77084a34af3f21602112819c468f1db74b44df3cdf7 +SIZE (KDE/plasma/5.20.1/kscreen-5.20.1.tar.xz) = 113692 Index: head/x11/plasma5-kwayland-integration/distinfo =================================================================== --- head/x11/plasma5-kwayland-integration/distinfo (revision 553023) +++ head/x11/plasma5-kwayland-integration/distinfo (revision 553024) @@ -1,3 +1,3 @@ -TIMESTAMP = 1602198223 -SHA256 (KDE/plasma/5.20.0/kwayland-integration-5.20.0.tar.xz) = 4a1ec22d8d0fb7bb3302605ce211b52353fe93b9b29744db0cc9a961ba67707a -SIZE (KDE/plasma/5.20.0/kwayland-integration-5.20.0.tar.xz) = 21396 +TIMESTAMP = 1603378876 +SHA256 (KDE/plasma/5.20.1/kwayland-integration-5.20.1.tar.xz) = bda8b9872791831eb95469b01cf1058bae4da24b0793cd8ff4eebae51a49e078 +SIZE (KDE/plasma/5.20.1/kwayland-integration-5.20.1.tar.xz) = 21408 Index: head/x11/plasma5-kwayland-server/distinfo =================================================================== --- head/x11/plasma5-kwayland-server/distinfo (revision 553023) +++ head/x11/plasma5-kwayland-server/distinfo (revision 553024) @@ -1,3 +1,3 @@ -TIMESTAMP = 1602198224 -SHA256 (KDE/plasma/5.20.0/kwayland-server-5.20.0.tar.xz) = e40253814bad7fa4ae829f1d3a752ba9bd89d92c5e89a72c6b857668ed75ecd6 -SIZE (KDE/plasma/5.20.0/kwayland-server-5.20.0.tar.xz) = 220692 +TIMESTAMP = 1603378897 +SHA256 (KDE/plasma/5.20.1/kwayland-server-5.20.1.tar.xz) = afdadebf8ab32c5598ff7e3bb60d1c37920c639c122a27874a38453a33287d02 +SIZE (KDE/plasma/5.20.1/kwayland-server-5.20.1.tar.xz) = 220732 Index: head/x11/plasma5-libkscreen/distinfo =================================================================== --- head/x11/plasma5-libkscreen/distinfo (revision 553023) +++ head/x11/plasma5-libkscreen/distinfo (revision 553024) @@ -1,3 +1,3 @@ -TIMESTAMP = 1602198225 -SHA256 (KDE/plasma/5.20.0/libkscreen-5.20.0.tar.xz) = 45c799f0d2c8c9d5ef2f6d0cc0451d5ae25c9d6f955924f57202fc88c85f655e -SIZE (KDE/plasma/5.20.0/libkscreen-5.20.0.tar.xz) = 85460 +TIMESTAMP = 1603378899 +SHA256 (KDE/plasma/5.20.1/libkscreen-5.20.1.tar.xz) = 1781133b885ba73c2dba3803f71793834c65c27e043c26e27233a48b5b71e5fe +SIZE (KDE/plasma/5.20.1/libkscreen-5.20.1.tar.xz) = 85472 Index: head/x11/plasma5-plasma-desktop/distinfo =================================================================== --- head/x11/plasma5-plasma-desktop/distinfo (revision 553023) +++ head/x11/plasma5-plasma-desktop/distinfo (revision 553024) @@ -1,3 +1,3 @@ -TIMESTAMP = 1602198226 -SHA256 (KDE/plasma/5.20.0/plasma-desktop-5.20.0.tar.xz) = 4bf5aa68ac132fa651a2694af772342ece61da2a3a2c1d7c6da75c84bec6b87f -SIZE (KDE/plasma/5.20.0/plasma-desktop-5.20.0.tar.xz) = 15860268 +TIMESTAMP = 1603378902 +SHA256 (KDE/plasma/5.20.1/plasma-desktop-5.20.1.tar.xz) = c1988abd455680717088c133ab29f501af5c097c1fa9e07035dfb2b85df2e843 +SIZE (KDE/plasma/5.20.1/plasma-desktop-5.20.1.tar.xz) = 15862268 Index: head/x11/plasma5-plasma-desktop/pkg-plist =================================================================== --- head/x11/plasma5-plasma-desktop/pkg-plist (revision 553023) +++ head/x11/plasma5-plasma-desktop/pkg-plist (revision 553024) @@ -1,3980 +1,3981 @@ %%IBUS%%bin/ibus-ui-emojier-plasma bin/kaccess bin/kapplymousetheme bin/kcm-touchpad-list-devices bin/knetattach bin/solid-action-desktop-gen bin/tastenbrett etc/xdg/autostart/kaccess.desktop lib/libexec/kauth/kcmdatetimehelper %%IBUS%%lib/libexec/kimpanel-ibus-panel %%IBUS%%lib/libexec/kimpanel-ibus-panel-launcher %%SCIM%%lib/libexec/kimpanel-scim-panel lib/libkdeinit5_kaccess.so %%QT_PLUGINDIR%%/kcm_access.so %%QT_PLUGINDIR%%/kcm_activities.so %%QT_PLUGINDIR%%/kcm_clock.so %%QT_PLUGINDIR%%/kcm_componentchooser.so %%QT_PLUGINDIR%%/kcm_desktoppaths.so %%QT_PLUGINDIR%%/kcm_formats.so %%QT_PLUGINDIR%%/kcm_keyboard.so %%QT_PLUGINDIR%%/kcm_mouse.so %%QT_PLUGINDIR%%/kcm_plasmasearch.so %%QT_PLUGINDIR%%/kcm_smserver.so %%QT_PLUGINDIR%%/kcm_solid_actions.so %%QT_PLUGINDIR%%/kcms/kcm_autostart.so %%QT_PLUGINDIR%%/kcms/kcm_baloofile.so %%QT_PLUGINDIR%%/kcms/kcm_kded.so %%QT_PLUGINDIR%%/kcms/kcm_keys.so %%QT_PLUGINDIR%%/kcms/kcm_launchfeedback.so %%QT_PLUGINDIR%%/kcms/kcm_nightcolor.so %%QT_PLUGINDIR%%/kcms/kcm_notifications.so %%QT_PLUGINDIR%%/kcms/kcm_splashscreen.so %%QT_PLUGINDIR%%/kcms/kcm_users.so %%QT_PLUGINDIR%%/kcms/kcm_workspace.so %%QT_PLUGINDIR%%/kcmspellchecking.so %%QT_PLUGINDIR%%/kded_touchpad.so %%QT_PLUGINDIR%%/kf5/kded/device_automounter.so %%QT_PLUGINDIR%%/kf5/kded/keyboard.so %%QT_PLUGINDIR%%/kf5/krunner/krunner_kwin.so %%QT_PLUGINDIR%%/kf5/krunner/krunner_plasma-desktop.so %%QT_PLUGINDIR%%/libkcm_device_automounter.so %%QT_PLUGINDIR%%/libkcm_qtquicksettings.so %%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_touchpad.so %%QT_QMLDIR%%/org/kde/activities/settings/libkactivitiessettingsplugin.so %%QT_QMLDIR%%/org/kde/activities/settings/qmldir %%QT_QMLDIR%%/org/kde/plasma/activityswitcher/libactivityswitcherextensionplugin.so %%QT_QMLDIR%%/org/kde/plasma/activityswitcher/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/kimpanel/libkimpanelplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/kimpanel/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/pager/libpagerplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/pager/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/showdesktop/libshowdesktopplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/showdesktop/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/taskmanager/libtaskmanagerplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/taskmanager/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/trash/libtrashplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/trash/qmldir %%QT_QMLDIR%%/org/kde/private/desktopcontainment/desktop/libdesktopplugin.so %%QT_QMLDIR%%/org/kde/private/desktopcontainment/desktop/qmldir %%QT_QMLDIR%%/org/kde/private/desktopcontainment/folder/libfolderplugin.so %%QT_QMLDIR%%/org/kde/private/desktopcontainment/folder/qmldir share/applications/org.kde.knetattach.desktop %%IBUS%%share/applications/org.kde.plasma.emojier.desktop share/config.kcfg/browser_settings.kcfg share/config.kcfg/kactivitymanagerd_plugins_settings.kcfg share/config.kcfg/kactivitymanagerd_settings.kcfg share/config.kcfg/launchfeedbacksettingsbase.kcfg share/config.kcfg/splashscreensettings.kcfg share/config.kcfg/terminal_settings.kcfg share/config.kcfg/touchpad.kcfg share/config.kcfg/touchpaddaemon.kcfg share/config.kcfg/workspaceoptions_kdeglobalssettings.kcfg share/config.kcfg/workspaceoptions_plasmasettings.kcfg share/dbus-1/interfaces/org.kde.touchpad.xml share/dbus-1/system-services/org.kde.kcontrol.kcmclock.service share/dbus-1/system.d/org.kde.kcontrol.kcmclock.conf share/doc/HTML/ca/kcontrol/autostart/index.cache.bz2 share/doc/HTML/ca/kcontrol/autostart/index.docbook share/doc/HTML/ca/kcontrol/baloo/index.cache.bz2 share/doc/HTML/ca/kcontrol/baloo/index.docbook share/doc/HTML/ca/kcontrol/clock/index.cache.bz2 share/doc/HTML/ca/kcontrol/clock/index.docbook share/doc/HTML/ca/kcontrol/componentchooser/index.cache.bz2 share/doc/HTML/ca/kcontrol/componentchooser/index.docbook share/doc/HTML/ca/kcontrol/cursortheme/index.cache.bz2 share/doc/HTML/ca/kcontrol/cursortheme/index.docbook share/doc/HTML/ca/kcontrol/formats/index.cache.bz2 share/doc/HTML/ca/kcontrol/formats/index.docbook share/doc/HTML/ca/kcontrol/joystick/index.cache.bz2 share/doc/HTML/ca/kcontrol/joystick/index.docbook share/doc/HTML/ca/kcontrol/kcmaccess/index.cache.bz2 share/doc/HTML/ca/kcontrol/kcmaccess/index.docbook share/doc/HTML/ca/kcontrol/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/notifications/index.cache.bz2 share/doc/HTML/ca/kcontrol/notifications/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/autostart/index.cache.bz2 share/doc/HTML/de/kcontrol/autostart/index.docbook share/doc/HTML/de/kcontrol/baloo/index.cache.bz2 share/doc/HTML/de/kcontrol/baloo/index.docbook share/doc/HTML/de/kcontrol/clock/index.cache.bz2 share/doc/HTML/de/kcontrol/clock/index.docbook share/doc/HTML/de/kcontrol/componentchooser/index.cache.bz2 share/doc/HTML/de/kcontrol/componentchooser/index.docbook share/doc/HTML/de/kcontrol/cursortheme/index.cache.bz2 share/doc/HTML/de/kcontrol/cursortheme/index.docbook share/doc/HTML/de/kcontrol/formats/index.cache.bz2 share/doc/HTML/de/kcontrol/formats/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/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/autostart/index.cache.bz2 share/doc/HTML/en/kcontrol/autostart/index.docbook share/doc/HTML/en/kcontrol/baloo/index.cache.bz2 share/doc/HTML/en/kcontrol/baloo/index.docbook share/doc/HTML/en/kcontrol/clock/index.cache.bz2 share/doc/HTML/en/kcontrol/clock/index.docbook share/doc/HTML/en/kcontrol/componentchooser/index.cache.bz2 share/doc/HTML/en/kcontrol/componentchooser/index.docbook share/doc/HTML/en/kcontrol/cursortheme/index.cache.bz2 share/doc/HTML/en/kcontrol/cursortheme/index.docbook share/doc/HTML/en/kcontrol/formats/index.cache.bz2 share/doc/HTML/en/kcontrol/formats/index.docbook share/doc/HTML/en/kcontrol/joystick/index.cache.bz2 share/doc/HTML/en/kcontrol/joystick/index.docbook share/doc/HTML/en/kcontrol/joystick/joystick-calibration.png share/doc/HTML/en/kcontrol/joystick/joystick-main.png share/doc/HTML/en/kcontrol/kcmaccess/index.cache.bz2 share/doc/HTML/en/kcontrol/kcmaccess/index.docbook share/doc/HTML/en/kcontrol/kcmlaunchfeedback/index.cache.bz2 share/doc/HTML/en/kcontrol/kcmlaunchfeedback/index.docbook share/doc/HTML/en/kcontrol/kcmsmserver/index.cache.bz2 share/doc/HTML/en/kcontrol/kcmsmserver/index.docbook share/doc/HTML/en/kcontrol/kded/index.cache.bz2 share/doc/HTML/en/kcontrol/kded/index.docbook share/doc/HTML/en/kcontrol/keyboard/index.cache.bz2 share/doc/HTML/en/kcontrol/keyboard/index.docbook share/doc/HTML/en/kcontrol/keys/index.cache.bz2 share/doc/HTML/en/kcontrol/keys/index.docbook share/doc/HTML/en/kcontrol/keys/list-add.png share/doc/HTML/en/kcontrol/keys/remove.png share/doc/HTML/en/kcontrol/mouse/index.cache.bz2 share/doc/HTML/en/kcontrol/mouse/index.docbook share/doc/HTML/en/kcontrol/notifications/index.cache.bz2 share/doc/HTML/en/kcontrol/notifications/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/autostart/index.cache.bz2 share/doc/HTML/es/kcontrol/autostart/index.docbook share/doc/HTML/es/kcontrol/baloo/index.cache.bz2 share/doc/HTML/es/kcontrol/baloo/index.docbook share/doc/HTML/es/kcontrol/clock/index.cache.bz2 share/doc/HTML/es/kcontrol/clock/index.docbook share/doc/HTML/es/kcontrol/componentchooser/index.cache.bz2 share/doc/HTML/es/kcontrol/componentchooser/index.docbook share/doc/HTML/es/kcontrol/cursortheme/index.cache.bz2 share/doc/HTML/es/kcontrol/cursortheme/index.docbook share/doc/HTML/es/kcontrol/joystick/index.cache.bz2 share/doc/HTML/es/kcontrol/joystick/index.docbook share/doc/HTML/es/kcontrol/kcmlaunchfeedback/index.cache.bz2 share/doc/HTML/es/kcontrol/kcmlaunchfeedback/index.docbook share/doc/HTML/es/kcontrol/kcmsmserver/index.cache.bz2 share/doc/HTML/es/kcontrol/kcmsmserver/index.docbook share/doc/HTML/es/kcontrol/kded/index.cache.bz2 share/doc/HTML/es/kcontrol/kded/index.docbook share/doc/HTML/es/kcontrol/mouse/index.cache.bz2 share/doc/HTML/es/kcontrol/mouse/index.docbook share/doc/HTML/es/kcontrol/paths/index.cache.bz2 share/doc/HTML/es/kcontrol/paths/index.docbook share/doc/HTML/es/kcontrol/solid-device-automounter/index.cache.bz2 share/doc/HTML/es/kcontrol/solid-device-automounter/index.docbook share/doc/HTML/es/kfontview/index.cache.bz2 share/doc/HTML/es/kfontview/index.docbook share/doc/HTML/es/knetattach/index.cache.bz2 share/doc/HTML/es/knetattach/index.docbook share/doc/HTML/et/kcontrol/clock/index.cache.bz2 share/doc/HTML/et/kcontrol/clock/index.docbook share/doc/HTML/et/kcontrol/solid-actions/index.cache.bz2 share/doc/HTML/et/kcontrol/solid-actions/index.docbook share/doc/HTML/et/kcontrol/solid-device-automounter/index.cache.bz2 share/doc/HTML/et/kcontrol/solid-device-automounter/index.docbook share/doc/HTML/id/kcontrol/autostart/index.cache.bz2 share/doc/HTML/id/kcontrol/autostart/index.docbook share/doc/HTML/id/kcontrol/baloo/index.cache.bz2 share/doc/HTML/id/kcontrol/baloo/index.docbook share/doc/HTML/id/kcontrol/clock/index.cache.bz2 share/doc/HTML/id/kcontrol/clock/index.docbook share/doc/HTML/id/kcontrol/componentchooser/index.cache.bz2 share/doc/HTML/id/kcontrol/componentchooser/index.docbook share/doc/HTML/id/kcontrol/cursortheme/index.cache.bz2 share/doc/HTML/id/kcontrol/cursortheme/index.docbook share/doc/HTML/id/kcontrol/formats/index.cache.bz2 share/doc/HTML/id/kcontrol/formats/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/autostart/index.cache.bz2 share/doc/HTML/it/kcontrol/autostart/index.docbook share/doc/HTML/it/kcontrol/baloo/index.cache.bz2 share/doc/HTML/it/kcontrol/baloo/index.docbook share/doc/HTML/it/kcontrol/clock/index.cache.bz2 share/doc/HTML/it/kcontrol/clock/index.docbook share/doc/HTML/it/kcontrol/componentchooser/index.cache.bz2 share/doc/HTML/it/kcontrol/componentchooser/index.docbook share/doc/HTML/it/kcontrol/cursortheme/index.cache.bz2 share/doc/HTML/it/kcontrol/cursortheme/index.docbook share/doc/HTML/it/kcontrol/formats/index.cache.bz2 share/doc/HTML/it/kcontrol/formats/index.docbook share/doc/HTML/it/kcontrol/joystick/index.cache.bz2 share/doc/HTML/it/kcontrol/joystick/index.docbook share/doc/HTML/it/kcontrol/kcmaccess/index.cache.bz2 share/doc/HTML/it/kcontrol/kcmaccess/index.docbook share/doc/HTML/it/kcontrol/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/notifications/index.cache.bz2 share/doc/HTML/it/kcontrol/notifications/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/autostart/index.cache.bz2 share/doc/HTML/nl/kcontrol/autostart/index.docbook share/doc/HTML/nl/kcontrol/baloo/index.cache.bz2 share/doc/HTML/nl/kcontrol/baloo/index.docbook share/doc/HTML/nl/kcontrol/clock/index.cache.bz2 share/doc/HTML/nl/kcontrol/clock/index.docbook share/doc/HTML/nl/kcontrol/componentchooser/index.cache.bz2 share/doc/HTML/nl/kcontrol/componentchooser/index.docbook share/doc/HTML/nl/kcontrol/cursortheme/index.cache.bz2 share/doc/HTML/nl/kcontrol/cursortheme/index.docbook share/doc/HTML/nl/kcontrol/formats/index.cache.bz2 share/doc/HTML/nl/kcontrol/formats/index.docbook share/doc/HTML/nl/kcontrol/joystick/index.cache.bz2 share/doc/HTML/nl/kcontrol/joystick/index.docbook share/doc/HTML/nl/kcontrol/kcmaccess/index.cache.bz2 share/doc/HTML/nl/kcontrol/kcmaccess/index.docbook share/doc/HTML/nl/kcontrol/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/notifications/index.cache.bz2 share/doc/HTML/nl/kcontrol/notifications/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/autostart/index.cache.bz2 share/doc/HTML/pt/kcontrol/autostart/index.docbook share/doc/HTML/pt/kcontrol/baloo/index.cache.bz2 share/doc/HTML/pt/kcontrol/baloo/index.docbook share/doc/HTML/pt/kcontrol/clock/index.cache.bz2 share/doc/HTML/pt/kcontrol/clock/index.docbook share/doc/HTML/pt/kcontrol/componentchooser/index.cache.bz2 share/doc/HTML/pt/kcontrol/componentchooser/index.docbook share/doc/HTML/pt/kcontrol/cursortheme/index.cache.bz2 share/doc/HTML/pt/kcontrol/cursortheme/index.docbook share/doc/HTML/pt/kcontrol/formats/index.cache.bz2 share/doc/HTML/pt/kcontrol/formats/index.docbook share/doc/HTML/pt/kcontrol/joystick/index.cache.bz2 share/doc/HTML/pt/kcontrol/joystick/index.docbook share/doc/HTML/pt/kcontrol/kcmaccess/index.cache.bz2 share/doc/HTML/pt/kcontrol/kcmaccess/index.docbook share/doc/HTML/pt/kcontrol/kcmlaunchfeedback/index.cache.bz2 share/doc/HTML/pt/kcontrol/kcmlaunchfeedback/index.docbook share/doc/HTML/pt/kcontrol/kcmsmserver/index.cache.bz2 share/doc/HTML/pt/kcontrol/kcmsmserver/index.docbook share/doc/HTML/pt/kcontrol/kded/index.cache.bz2 share/doc/HTML/pt/kcontrol/kded/index.docbook share/doc/HTML/pt/kcontrol/keyboard/index.cache.bz2 share/doc/HTML/pt/kcontrol/keyboard/index.docbook share/doc/HTML/pt/kcontrol/keys/index.cache.bz2 share/doc/HTML/pt/kcontrol/keys/index.docbook share/doc/HTML/pt/kcontrol/mouse/index.cache.bz2 share/doc/HTML/pt/kcontrol/mouse/index.docbook share/doc/HTML/pt/kcontrol/paths/index.cache.bz2 share/doc/HTML/pt/kcontrol/paths/index.docbook share/doc/HTML/pt/kcontrol/solid-actions/index.cache.bz2 share/doc/HTML/pt/kcontrol/solid-actions/index.docbook share/doc/HTML/pt/kcontrol/solid-device-automounter/index.cache.bz2 share/doc/HTML/pt/kcontrol/solid-device-automounter/index.docbook share/doc/HTML/pt/kcontrol/spellchecking/index.cache.bz2 share/doc/HTML/pt/kcontrol/spellchecking/index.docbook share/doc/HTML/pt/kcontrol/splashscreen/index.cache.bz2 share/doc/HTML/pt/kcontrol/splashscreen/index.docbook share/doc/HTML/pt/kfontview/index.cache.bz2 share/doc/HTML/pt/kfontview/index.docbook share/doc/HTML/pt/knetattach/index.cache.bz2 share/doc/HTML/pt/knetattach/index.docbook share/doc/HTML/pt/plasma-desktop/index.cache.bz2 share/doc/HTML/pt/plasma-desktop/index.docbook share/doc/HTML/pt_BR/kcontrol/autostart/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/autostart/index.docbook share/doc/HTML/pt_BR/kcontrol/baloo/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/baloo/index.docbook share/doc/HTML/pt_BR/kcontrol/clock/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/clock/index.docbook share/doc/HTML/pt_BR/kcontrol/componentchooser/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/componentchooser/index.docbook share/doc/HTML/pt_BR/kcontrol/cursortheme/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/cursortheme/index.docbook share/doc/HTML/pt_BR/kcontrol/formats/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/formats/index.docbook share/doc/HTML/pt_BR/kcontrol/joystick/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/joystick/index.docbook share/doc/HTML/pt_BR/kcontrol/kcmaccess/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/kcmaccess/index.docbook share/doc/HTML/pt_BR/kcontrol/kcmlaunchfeedback/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/kcmlaunchfeedback/index.docbook share/doc/HTML/pt_BR/kcontrol/kcmsmserver/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/kcmsmserver/index.docbook share/doc/HTML/pt_BR/kcontrol/kded/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/kded/index.docbook share/doc/HTML/pt_BR/kcontrol/keyboard/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/keyboard/index.docbook share/doc/HTML/pt_BR/kcontrol/keys/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/keys/index.docbook share/doc/HTML/pt_BR/kcontrol/mouse/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/mouse/index.docbook share/doc/HTML/pt_BR/kcontrol/paths/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/paths/index.docbook share/doc/HTML/pt_BR/kcontrol/solid-actions/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/solid-actions/index.docbook share/doc/HTML/pt_BR/kcontrol/solid-device-automounter/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/solid-device-automounter/index.docbook share/doc/HTML/pt_BR/kcontrol/spellchecking/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/spellchecking/index.docbook share/doc/HTML/pt_BR/kcontrol/splashscreen/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/splashscreen/index.docbook share/doc/HTML/pt_BR/kcontrol/splashscreen/splash-main.png share/doc/HTML/pt_BR/kfontview/index.cache.bz2 share/doc/HTML/pt_BR/kfontview/index.docbook share/doc/HTML/pt_BR/knetattach/index.cache.bz2 share/doc/HTML/pt_BR/knetattach/index.docbook share/doc/HTML/pt_BR/knetattach/screenshot.png share/doc/HTML/pt_BR/knetattach/screenshot1.png share/doc/HTML/pt_BR/knetattach/screenshot2.png share/doc/HTML/pt_BR/knetattach/screenshot3.png share/doc/HTML/pt_BR/knetattach/screenshot4.png share/doc/HTML/pt_BR/plasma-desktop/add-widgets.png share/doc/HTML/pt_BR/plasma-desktop/desktop-settings.png share/doc/HTML/pt_BR/plasma-desktop/index.cache.bz2 share/doc/HTML/pt_BR/plasma-desktop/index.docbook share/doc/HTML/pt_BR/plasma-desktop/krunner-configure.png share/doc/HTML/pt_BR/plasma-desktop/krunner.png share/doc/HTML/pt_BR/plasma-desktop/panel-settings.png share/doc/HTML/pt_BR/plasma-desktop/system-tray-settings.png share/doc/HTML/pt_BR/plasma-desktop/system-tray-up-arrow.png share/doc/HTML/pt_BR/plasma-desktop/taskbar-settings.png share/doc/HTML/ru/kcontrol/baloo/index.cache.bz2 share/doc/HTML/ru/kcontrol/baloo/index.docbook share/doc/HTML/ru/kcontrol/clock/index.cache.bz2 share/doc/HTML/ru/kcontrol/clock/index.docbook share/doc/HTML/ru/kcontrol/componentchooser/index.cache.bz2 share/doc/HTML/ru/kcontrol/componentchooser/index.docbook share/doc/HTML/ru/kcontrol/cursortheme/index.cache.bz2 share/doc/HTML/ru/kcontrol/cursortheme/index.docbook share/doc/HTML/ru/kcontrol/formats/index.cache.bz2 share/doc/HTML/ru/kcontrol/formats/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/kcmlaunchfeedback/index.cache.bz2 share/doc/HTML/ru/kcontrol/kcmlaunchfeedback/index.docbook share/doc/HTML/ru/kcontrol/kcmsmserver/index.cache.bz2 share/doc/HTML/ru/kcontrol/kcmsmserver/index.docbook share/doc/HTML/ru/kcontrol/kded/index.cache.bz2 share/doc/HTML/ru/kcontrol/kded/index.docbook share/doc/HTML/ru/kcontrol/keyboard/index.cache.bz2 share/doc/HTML/ru/kcontrol/keyboard/index.docbook share/doc/HTML/ru/kcontrol/keys/index.cache.bz2 share/doc/HTML/ru/kcontrol/keys/index.docbook share/doc/HTML/ru/kcontrol/mouse/index.cache.bz2 share/doc/HTML/ru/kcontrol/mouse/index.docbook share/doc/HTML/ru/kcontrol/paths/index.cache.bz2 share/doc/HTML/ru/kcontrol/paths/index.docbook share/doc/HTML/ru/kcontrol/paths/paths.png share/doc/HTML/ru/kcontrol/solid-actions/add-action.png share/doc/HTML/ru/kcontrol/solid-actions/edit-action.png share/doc/HTML/ru/kcontrol/solid-actions/index.cache.bz2 share/doc/HTML/ru/kcontrol/solid-actions/index.docbook share/doc/HTML/ru/kcontrol/solid-actions/main.png share/doc/HTML/ru/kcontrol/solid-device-automounter/index.cache.bz2 share/doc/HTML/ru/kcontrol/solid-device-automounter/index.docbook share/doc/HTML/ru/kcontrol/spellchecking/index.cache.bz2 share/doc/HTML/ru/kcontrol/spellchecking/index.docbook share/doc/HTML/ru/kcontrol/splashscreen/get-new-theme.png share/doc/HTML/ru/kcontrol/splashscreen/index.cache.bz2 share/doc/HTML/ru/kcontrol/splashscreen/index.docbook share/doc/HTML/ru/kcontrol/splashscreen/splash-main.png share/doc/HTML/ru/knetattach/index.cache.bz2 share/doc/HTML/ru/knetattach/index.docbook share/doc/HTML/ru/plasma-desktop/index.cache.bz2 share/doc/HTML/ru/plasma-desktop/index.docbook share/doc/HTML/sr/kcontrol/autostart/index.cache.bz2 share/doc/HTML/sr/kcontrol/autostart/index.docbook share/doc/HTML/sr/kcontrol/clock/index.cache.bz2 share/doc/HTML/sr/kcontrol/clock/index.docbook share/doc/HTML/sr/kcontrol/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/autostart/index.cache.bz2 share/doc/HTML/sr@latin/kcontrol/autostart/index.docbook share/doc/HTML/sr@latin/kcontrol/clock/index.cache.bz2 share/doc/HTML/sr@latin/kcontrol/clock/index.docbook share/doc/HTML/sr@latin/kcontrol/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/uk/kcontrol/autostart/index.cache.bz2 share/doc/HTML/uk/kcontrol/autostart/index.docbook share/doc/HTML/uk/kcontrol/baloo/index.cache.bz2 share/doc/HTML/uk/kcontrol/baloo/index.docbook share/doc/HTML/uk/kcontrol/clock/index.cache.bz2 share/doc/HTML/uk/kcontrol/clock/index.docbook share/doc/HTML/uk/kcontrol/componentchooser/index.cache.bz2 share/doc/HTML/uk/kcontrol/componentchooser/index.docbook share/doc/HTML/uk/kcontrol/cursortheme/index.cache.bz2 share/doc/HTML/uk/kcontrol/cursortheme/index.docbook share/doc/HTML/uk/kcontrol/formats/index.cache.bz2 share/doc/HTML/uk/kcontrol/formats/index.docbook share/doc/HTML/uk/kcontrol/joystick/index.cache.bz2 share/doc/HTML/uk/kcontrol/joystick/index.docbook share/doc/HTML/uk/kcontrol/kcmaccess/index.cache.bz2 share/doc/HTML/uk/kcontrol/kcmaccess/index.docbook share/doc/HTML/uk/kcontrol/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/notifications/index.cache.bz2 share/doc/HTML/uk/kcontrol/notifications/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/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_componentchooser/kcm_browser.desktop share/kcm_componentchooser/kcm_filemanager.desktop share/kcm_componentchooser/kcm_kemail.desktop share/kcm_componentchooser/kcm_terminal.desktop share/kcmkeyboard/pics/epo.png share/kcmkeys/kde3.kksrc share/kcmkeys/kde4.kksrc share/kcmkeys/mac4.kksrc share/kcmkeys/unix3.kksrc share/kcmkeys/win3.kksrc share/kcmkeys/win4.kksrc share/kcmkeys/wm3.kksrc share/kcmmouse/cursor_large_black.pcf.gz share/kcmmouse/cursor_large_white.pcf.gz share/kcmmouse/cursor_small_white.pcf.gz share/kcmmouse/pics/mouse_lh.png share/kcmmouse/pics/mouse_rh.png share/kcmsolidactions/solid-action-template.desktop share/kconf_update/ksmserver_update_loginMode_value.py share/kconf_update/ksmserver_update_loginMode_value.upd share/kf5/kactivitymanagerd/workspace/settings/qml/activitiesTab/ActivitiesView.qml share/kf5/kactivitymanagerd/workspace/settings/qml/activitiesTab/main.qml share/kf5/kactivitymanagerd/workspace/settings/qml/activityDialog/GeneralTab.qml share/kf5/kactivitymanagerd/workspace/settings/qml/privacyTab/BlacklistApplicationView.qml %%IBUS%%share/kglobalaccel/org.kde.plasma.emojier.desktop share/knotifications5/kaccess.notifyrc share/knotifications5/kcm_touchpad.notifyrc share/knsrcfiles/ksplash.knsrc share/kpackage/kcms/kcm5_kded/contents/ui/main.qml share/kpackage/kcms/kcm5_kded/metadata.desktop share/kpackage/kcms/kcm5_kded/metadata.json share/kpackage/kcms/kcm_autostart/contents/ui/main.qml share/kpackage/kcms/kcm_autostart/metadata.desktop share/kpackage/kcms/kcm_autostart/metadata.json share/kpackage/kcms/kcm_baloofile/contents/ui/main.qml share/kpackage/kcms/kcm_baloofile/metadata.desktop share/kpackage/kcms/kcm_baloofile/metadata.json share/kpackage/kcms/kcm_keys/contents/ui/ShortcutActionDelegate.qml share/kpackage/kcms/kcm_keys/contents/ui/main.qml share/kpackage/kcms/kcm_keys/metadata.desktop share/kpackage/kcms/kcm_keys/metadata.json share/kpackage/kcms/kcm_launchfeedback/contents/ui/main.qml share/kpackage/kcms/kcm_launchfeedback/metadata.desktop share/kpackage/kcms/kcm_launchfeedback/metadata.json share/kpackage/kcms/kcm_nightcolor/contents/ui/LocationsFixedView.qml share/kpackage/kcms/kcm_nightcolor/contents/ui/NumberField.qml share/kpackage/kcms/kcm_nightcolor/contents/ui/TimeField.qml share/kpackage/kcms/kcm_nightcolor/contents/ui/TimingsView.qml share/kpackage/kcms/kcm_nightcolor/contents/ui/main.qml share/kpackage/kcms/kcm_nightcolor/metadata.desktop share/kpackage/kcms/kcm_nightcolor/metadata.json share/kpackage/kcms/kcm_notifications/contents/ui/ApplicationConfiguration.qml share/kpackage/kcms/kcm_notifications/contents/ui/PopupPositionPage.qml share/kpackage/kcms/kcm_notifications/contents/ui/ScreenPositionSelector.qml share/kpackage/kcms/kcm_notifications/contents/ui/SourcesPage.qml share/kpackage/kcms/kcm_notifications/contents/ui/main.qml share/kpackage/kcms/kcm_notifications/metadata.desktop share/kpackage/kcms/kcm_notifications/metadata.json share/kpackage/kcms/kcm_splashscreen/contents/ui/main.qml share/kpackage/kcms/kcm_splashscreen/metadata.desktop share/kpackage/kcms/kcm_splashscreen/metadata.json share/kpackage/kcms/kcm_users/contents/img/Katie.png share/kpackage/kcms/kcm_users/contents/img/Konqi.png share/kpackage/kcms/kcm_users/contents/img/Artist Konqi.png share/kpackage/kcms/kcm_users/contents/img/Bookworm Konqi.png share/kpackage/kcms/kcm_users/contents/img/Boss Konqi.png share/kpackage/kcms/kcm_users/contents/img/Bug Catcher Konqi.png share/kpackage/kcms/kcm_users/contents/img/Card Shark Konqi.png share/kpackage/kcms/kcm_users/contents/img/Hacker Konqi.png share/kpackage/kcms/kcm_users/contents/img/Journalist Konqi.png share/kpackage/kcms/kcm_users/contents/img/Mechanic Konqi.png share/kpackage/kcms/kcm_users/contents/img/Messenger Konqi.png share/kpackage/kcms/kcm_users/contents/img/Musician Konqi.png share/kpackage/kcms/kcm_users/contents/img/Office Worker Konqi.png share/kpackage/kcms/kcm_users/contents/img/PC Builder Konqi.png share/kpackage/kcms/kcm_users/contents/img/Scientist Konqi.png share/kpackage/kcms/kcm_users/contents/img/Teacher Konqi.png share/kpackage/kcms/kcm_users/contents/img/Virtual Reality Konqi.png share/kpackage/kcms/kcm_users/contents/img/photos/Air Balloon.png share/kpackage/kcms/kcm_users/contents/img/photos/Air Balloon.png.license share/kpackage/kcms/kcm_users/contents/img/photos/Astronaut.png share/kpackage/kcms/kcm_users/contents/img/photos/Astronaut.png.license share/kpackage/kcms/kcm_users/contents/img/photos/Books.png share/kpackage/kcms/kcm_users/contents/img/photos/Books.png.license share/kpackage/kcms/kcm_users/contents/img/photos/Brushes.png share/kpackage/kcms/kcm_users/contents/img/photos/Brushes.png.license share/kpackage/kcms/kcm_users/contents/img/photos/Bulb.png share/kpackage/kcms/kcm_users/contents/img/photos/Bulb.png.license share/kpackage/kcms/kcm_users/contents/img/photos/Car.png share/kpackage/kcms/kcm_users/contents/img/photos/Car.png.license share/kpackage/kcms/kcm_users/contents/img/photos/Cat.png share/kpackage/kcms/kcm_users/contents/img/photos/Cat.png.license share/kpackage/kcms/kcm_users/contents/img/photos/Chameleon.png share/kpackage/kcms/kcm_users/contents/img/photos/Chamelon.png.license share/kpackage/kcms/kcm_users/contents/img/photos/Cocktail.png share/kpackage/kcms/kcm_users/contents/img/photos/Cocktail.png.license share/kpackage/kcms/kcm_users/contents/img/photos/Dog.png share/kpackage/kcms/kcm_users/contents/img/photos/Dog.png.license share/kpackage/kcms/kcm_users/contents/img/photos/Fish.png share/kpackage/kcms/kcm_users/contents/img/photos/Fish.png.license share/kpackage/kcms/kcm_users/contents/img/photos/Gamepad.png share/kpackage/kcms/kcm_users/contents/img/photos/Gamepad.png.license share/kpackage/kcms/kcm_users/contents/img/photos/Owl.png share/kpackage/kcms/kcm_users/contents/img/photos/Owl.png.license share/kpackage/kcms/kcm_users/contents/img/photos/Pancakes.png share/kpackage/kcms/kcm_users/contents/img/photos/Pancakes.png.license share/kpackage/kcms/kcm_users/contents/img/photos/Parrot.png share/kpackage/kcms/kcm_users/contents/img/photos/Parrot.png.license share/kpackage/kcms/kcm_users/contents/img/photos/Pencils.png share/kpackage/kcms/kcm_users/contents/img/photos/Pencils.png.license share/kpackage/kcms/kcm_users/contents/img/photos/Shuttle.png share/kpackage/kcms/kcm_users/contents/img/photos/Shuttle.png.license share/kpackage/kcms/kcm_users/contents/img/photos/Soccer.png share/kpackage/kcms/kcm_users/contents/img/photos/Soccer.png.license share/kpackage/kcms/kcm_users/contents/img/photos/Sunflower.png share/kpackage/kcms/kcm_users/contents/img/photos/Sunflower.png.license share/kpackage/kcms/kcm_users/contents/img/photos/Sushi.png share/kpackage/kcms/kcm_users/contents/img/photos/Sushi.png.license share/kpackage/kcms/kcm_users/contents/ui/ChangePassword.qml share/kpackage/kcms/kcm_users/contents/ui/CreateUser.qml share/kpackage/kcms/kcm_users/contents/ui/UserDetailsPage.qml share/kpackage/kcms/kcm_users/contents/ui/main.qml share/kpackage/kcms/kcm_users/metadata.desktop share/kpackage/kcms/kcm_users/metadata.json share/kpackage/kcms/kcm_workspace/contents/ui/main.qml share/kpackage/kcms/kcm_workspace/metadata.desktop share/kpackage/kcms/kcm_workspace/metadata.json share/kservices5/autostart.desktop share/kservices5/clock.desktop share/kservices5/componentchooser.desktop share/kservices5/desktoppath.desktop share/kservices5/device_automounter_kcm.desktop share/kservices5/formats.desktop share/kservices5/kcm_activities.desktop share/kservices5/kcm_baloofile.desktop share/kservices5/kcm_keyboard.desktop share/kservices5/kcm_keys.desktop share/kservices5/kcm_launchfeedback.desktop share/kservices5/kcm_nightcolor.desktop share/kservices5/kcm_notifications.desktop share/kservices5/kcm_plasmasearch.desktop share/kservices5/kcm_splashscreen.desktop share/kservices5/kcm_touchpad.desktop share/kservices5/kcm_users.desktop share/kservices5/kcm_workspace.desktop share/kservices5/kcmaccess.desktop share/kservices5/kcmkded.desktop share/kservices5/kcmsmserver.desktop share/kservices5/kded/touchpad.desktop share/kservices5/mouse.desktop share/kservices5/plasma-applet-org.kde.plasma.icontasks.desktop share/kservices5/plasma-applet-org.kde.plasma.kicker.desktop share/kservices5/plasma-applet-org.kde.plasma.kickoff.desktop share/kservices5/plasma-applet-org.kde.plasma.kimpanel.desktop share/kservices5/plasma-applet-org.kde.plasma.minimizeall.desktop share/kservices5/plasma-applet-org.kde.plasma.pager.desktop share/kservices5/plasma-applet-org.kde.plasma.showActivityManager.desktop share/kservices5/plasma-applet-org.kde.plasma.showdesktop.desktop share/kservices5/plasma-applet-org.kde.plasma.taskmanager.desktop share/kservices5/plasma-applet-org.kde.plasma.trash.desktop share/kservices5/plasma-applet-org.kde.plasma.windowlist.desktop share/kservices5/plasma-applet-touchpad.desktop share/kservices5/plasma-containment-org.kde.desktopcontainment.desktop share/kservices5/plasma-containment-org.kde.panel.desktop share/kservices5/plasma-containment-org.kde.plasma.folder.desktop share/kservices5/plasma-dataengine-touchpad.desktop share/kservices5/plasma-layout-template-org.kde.plasma.desktop.appmenubar.desktop share/kservices5/plasma-layout-template-org.kde.plasma.desktop.defaultPanel.desktop share/kservices5/plasma-layout-template-org.kde.plasma.desktop.emptyPanel.desktop share/kservices5/plasma-package-org.kde.desktoptoolbox.desktop share/kservices5/plasma-package-org.kde.paneltoolbox.desktop share/kservices5/plasma-shell-org.kde.plasma.desktop.desktop share/kservices5/qtquicksettings.desktop share/kservices5/solid-actions.desktop share/kservices5/spellchecking.desktop share/kservicetypes5/solid-device-type.desktop share/locale/af/LC_MESSAGES/kaccess.mo share/locale/af/LC_MESSAGES/kcm5_componentchooser.mo share/locale/af/LC_MESSAGES/kcm5_joystick.mo share/locale/af/LC_MESSAGES/kcm5_kded.mo share/locale/af/LC_MESSAGES/kcm_desktoppaths.mo share/locale/af/LC_MESSAGES/kcm_launchfeedback.mo share/locale/af/LC_MESSAGES/kcmaccess.mo share/locale/af/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/af/LC_MESSAGES/knetattach5.mo share/locale/af/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ar/LC_MESSAGES/kaccess.mo share/locale/ar/LC_MESSAGES/kcm5_componentchooser.mo share/locale/ar/LC_MESSAGES/kcm5_device_automounter.mo share/locale/ar/LC_MESSAGES/kcm5_joystick.mo share/locale/ar/LC_MESSAGES/kcm5_kded.mo share/locale/ar/LC_MESSAGES/kcm_activities5.mo share/locale/ar/LC_MESSAGES/kcm_autostart.mo share/locale/ar/LC_MESSAGES/kcm_baloofile.mo share/locale/ar/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ar/LC_MESSAGES/kcm_launchfeedback.mo share/locale/ar/LC_MESSAGES/kcm_search.mo share/locale/ar/LC_MESSAGES/kcm_solid_actions.mo share/locale/ar/LC_MESSAGES/kcm_splashscreen.mo share/locale/ar/LC_MESSAGES/kcm_touchpad.mo share/locale/ar/LC_MESSAGES/kcm_workspace.mo share/locale/ar/LC_MESSAGES/kcmaccess.mo share/locale/ar/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/ar/LC_MESSAGES/knetattach5.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/ar/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/ar/LC_MESSAGES/plasma_runner_kwin.mo share/locale/ar/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/ar/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/ar/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/ar/LC_MESSAGES/plasmaactivitymanager.mo share/locale/as/LC_MESSAGES/kcmaccess.mo share/locale/ast/LC_MESSAGES/kcm5_componentchooser.mo share/locale/ast/LC_MESSAGES/kcm5_device_automounter.mo share/locale/ast/LC_MESSAGES/kcm_autostart.mo share/locale/ast/LC_MESSAGES/kcm_launchfeedback.mo share/locale/ast/LC_MESSAGES/kcm_nightcolor.mo share/locale/ast/LC_MESSAGES/kcm_notifications.mo share/locale/ast/LC_MESSAGES/kcm_search.mo share/locale/ast/LC_MESSAGES/kcm_splashscreen.mo share/locale/ast/LC_MESSAGES/kcm_workspace.mo share/locale/ast/LC_MESSAGES/kcmformats.mo share/locale/ast/LC_MESSAGES/kcmkclock.mo share/locale/ast/LC_MESSAGES/kcmkeyboard.mo share/locale/ast/LC_MESSAGES/kcmsmserver.mo share/locale/ast/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ast/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/az/LC_MESSAGES/kaccess.mo share/locale/az/LC_MESSAGES/kcm5_componentchooser.mo share/locale/az/LC_MESSAGES/kcm5_device_automounter.mo share/locale/az/LC_MESSAGES/kcm5_joystick.mo share/locale/az/LC_MESSAGES/kcm5_kded.mo share/locale/az/LC_MESSAGES/kcm_activities5.mo share/locale/az/LC_MESSAGES/kcm_autostart.mo share/locale/az/LC_MESSAGES/kcm_baloofile.mo share/locale/az/LC_MESSAGES/kcm_desktoppaths.mo share/locale/az/LC_MESSAGES/kcm_keys.mo share/locale/az/LC_MESSAGES/kcm_launchfeedback.mo share/locale/az/LC_MESSAGES/kcm_nightcolor.mo share/locale/az/LC_MESSAGES/kcm_notifications.mo share/locale/az/LC_MESSAGES/kcm_search.mo share/locale/az/LC_MESSAGES/kcm_solid_actions.mo share/locale/az/LC_MESSAGES/kcm_splashscreen.mo share/locale/az/LC_MESSAGES/kcm_touchpad.mo share/locale/az/LC_MESSAGES/kcm_workspace.mo share/locale/az/LC_MESSAGES/kcmaccess.mo share/locale/az/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/az/LC_MESSAGES/knetattach5.mo share/locale/az/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/az/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/az/LC_MESSAGES/plasma_runner_kwin.mo share/locale/az/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/az/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/az/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/az/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/az/LC_MESSAGES/plasmaactivitymanager.mo share/locale/be/LC_MESSAGES/kaccess.mo share/locale/be/LC_MESSAGES/kcm5_componentchooser.mo share/locale/be/LC_MESSAGES/kcm5_joystick.mo share/locale/be/LC_MESSAGES/kcm5_kded.mo share/locale/be/LC_MESSAGES/kcm_desktoppaths.mo share/locale/be/LC_MESSAGES/kcm_launchfeedback.mo share/locale/be/LC_MESSAGES/kcmaccess.mo share/locale/be/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/be/LC_MESSAGES/knetattach5.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/be@latin/LC_MESSAGES/kcm_autostart.mo share/locale/be@latin/LC_MESSAGES/kcm_desktoppaths.mo share/locale/be@latin/LC_MESSAGES/kcmformats.mo share/locale/be@latin/LC_MESSAGES/kcmkclock.mo share/locale/be@latin/LC_MESSAGES/kcmkeyboard.mo share/locale/be@latin/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/be@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/be@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/be@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/bg/LC_MESSAGES/kaccess.mo share/locale/bg/LC_MESSAGES/kcm5_componentchooser.mo share/locale/bg/LC_MESSAGES/kcm5_device_automounter.mo share/locale/bg/LC_MESSAGES/kcm5_joystick.mo share/locale/bg/LC_MESSAGES/kcm5_kded.mo share/locale/bg/LC_MESSAGES/kcm_autostart.mo share/locale/bg/LC_MESSAGES/kcm_baloofile.mo share/locale/bg/LC_MESSAGES/kcm_desktoppaths.mo share/locale/bg/LC_MESSAGES/kcm_launchfeedback.mo share/locale/bg/LC_MESSAGES/kcm_solid_actions.mo share/locale/bg/LC_MESSAGES/kcmaccess.mo share/locale/bg/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/bg/LC_MESSAGES/knetattach5.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/bg/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/bn/LC_MESSAGES/kaccess.mo share/locale/bn/LC_MESSAGES/kcm5_componentchooser.mo share/locale/bn/LC_MESSAGES/kcm5_kded.mo share/locale/bn/LC_MESSAGES/kcm_desktoppaths.mo share/locale/bn/LC_MESSAGES/kcmaccess.mo share/locale/bn/LC_MESSAGES/kcmformats.mo share/locale/bn/LC_MESSAGES/kcmkclock.mo share/locale/bn/LC_MESSAGES/kcmkeyboard.mo share/locale/bn/LC_MESSAGES/kcmsmserver.mo share/locale/bn/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/bn_IN/LC_MESSAGES/kaccess.mo share/locale/bn_IN/LC_MESSAGES/kcm5_kded.mo share/locale/bn_IN/LC_MESSAGES/kcm_autostart.mo share/locale/bn_IN/LC_MESSAGES/kcm_desktoppaths.mo share/locale/bn_IN/LC_MESSAGES/kcmaccess.mo share/locale/bn_IN/LC_MESSAGES/kcmformats.mo share/locale/bn_IN/LC_MESSAGES/kcmkclock.mo share/locale/bn_IN/LC_MESSAGES/kcmkeyboard.mo share/locale/bn_IN/LC_MESSAGES/kcmsmserver.mo share/locale/bn_IN/LC_MESSAGES/knetattach5.mo share/locale/bn_IN/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/bn_IN/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/bn_IN/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/bn_IN/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/br/LC_MESSAGES/kaccess.mo share/locale/br/LC_MESSAGES/kcm5_componentchooser.mo share/locale/br/LC_MESSAGES/kcm5_joystick.mo share/locale/br/LC_MESSAGES/kcm5_kded.mo share/locale/br/LC_MESSAGES/kcm_desktoppaths.mo share/locale/br/LC_MESSAGES/kcm_launchfeedback.mo share/locale/br/LC_MESSAGES/kcmaccess.mo share/locale/br/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/br/LC_MESSAGES/knetattach5.mo share/locale/br/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/bs/LC_MESSAGES/kaccess.mo share/locale/bs/LC_MESSAGES/kcm5_componentchooser.mo share/locale/bs/LC_MESSAGES/kcm5_device_automounter.mo share/locale/bs/LC_MESSAGES/kcm5_joystick.mo share/locale/bs/LC_MESSAGES/kcm5_kded.mo share/locale/bs/LC_MESSAGES/kcm_autostart.mo share/locale/bs/LC_MESSAGES/kcm_baloofile.mo share/locale/bs/LC_MESSAGES/kcm_desktoppaths.mo share/locale/bs/LC_MESSAGES/kcm_launchfeedback.mo share/locale/bs/LC_MESSAGES/kcm_search.mo share/locale/bs/LC_MESSAGES/kcm_solid_actions.mo share/locale/bs/LC_MESSAGES/kcm_splashscreen.mo share/locale/bs/LC_MESSAGES/kcm_touchpad.mo share/locale/bs/LC_MESSAGES/kcm_workspace.mo share/locale/bs/LC_MESSAGES/kcmaccess.mo share/locale/bs/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/bs/LC_MESSAGES/knetattach5.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/bs/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/bs/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/bs/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/bs/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/ca/LC_MESSAGES/kaccess.mo share/locale/ca/LC_MESSAGES/kcm5_componentchooser.mo share/locale/ca/LC_MESSAGES/kcm5_device_automounter.mo share/locale/ca/LC_MESSAGES/kcm5_joystick.mo share/locale/ca/LC_MESSAGES/kcm5_kded.mo share/locale/ca/LC_MESSAGES/kcm_activities5.mo share/locale/ca/LC_MESSAGES/kcm_autostart.mo share/locale/ca/LC_MESSAGES/kcm_baloofile.mo share/locale/ca/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ca/LC_MESSAGES/kcm_keys.mo share/locale/ca/LC_MESSAGES/kcm_launchfeedback.mo share/locale/ca/LC_MESSAGES/kcm_nightcolor.mo share/locale/ca/LC_MESSAGES/kcm_notifications.mo share/locale/ca/LC_MESSAGES/kcm_search.mo share/locale/ca/LC_MESSAGES/kcm_solid_actions.mo share/locale/ca/LC_MESSAGES/kcm_splashscreen.mo share/locale/ca/LC_MESSAGES/kcm_touchpad.mo share/locale/ca/LC_MESSAGES/kcm_users.mo share/locale/ca/LC_MESSAGES/kcm_workspace.mo share/locale/ca/LC_MESSAGES/kcmaccess.mo share/locale/ca/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/ca/LC_MESSAGES/knetattach5.mo share/locale/ca/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/ca/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/ca/LC_MESSAGES/plasma_runner_kwin.mo share/locale/ca/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/ca/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/ca/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/ca/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/ca/LC_MESSAGES/plasmaactivitymanager.mo share/locale/ca@valencia/LC_MESSAGES/kaccess.mo share/locale/ca@valencia/LC_MESSAGES/kcm5_componentchooser.mo share/locale/ca@valencia/LC_MESSAGES/kcm5_device_automounter.mo share/locale/ca@valencia/LC_MESSAGES/kcm5_joystick.mo share/locale/ca@valencia/LC_MESSAGES/kcm5_kded.mo share/locale/ca@valencia/LC_MESSAGES/kcm_activities5.mo share/locale/ca@valencia/LC_MESSAGES/kcm_autostart.mo share/locale/ca@valencia/LC_MESSAGES/kcm_baloofile.mo share/locale/ca@valencia/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ca@valencia/LC_MESSAGES/kcm_keys.mo share/locale/ca@valencia/LC_MESSAGES/kcm_launchfeedback.mo share/locale/ca@valencia/LC_MESSAGES/kcm_nightcolor.mo share/locale/ca@valencia/LC_MESSAGES/kcm_notifications.mo share/locale/ca@valencia/LC_MESSAGES/kcm_search.mo share/locale/ca@valencia/LC_MESSAGES/kcm_solid_actions.mo share/locale/ca@valencia/LC_MESSAGES/kcm_splashscreen.mo share/locale/ca@valencia/LC_MESSAGES/kcm_touchpad.mo share/locale/ca@valencia/LC_MESSAGES/kcm_users.mo share/locale/ca@valencia/LC_MESSAGES/kcm_workspace.mo share/locale/ca@valencia/LC_MESSAGES/kcmaccess.mo share/locale/ca@valencia/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/ca@valencia/LC_MESSAGES/knetattach5.mo share/locale/ca@valencia/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_kwin.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/ca@valencia/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/ca@valencia/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/ca@valencia/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/ca@valencia/LC_MESSAGES/plasmaactivitymanager.mo share/locale/cs/LC_MESSAGES/kaccess.mo share/locale/cs/LC_MESSAGES/kcm5_componentchooser.mo share/locale/cs/LC_MESSAGES/kcm5_device_automounter.mo share/locale/cs/LC_MESSAGES/kcm5_joystick.mo share/locale/cs/LC_MESSAGES/kcm5_kded.mo share/locale/cs/LC_MESSAGES/kcm_activities5.mo share/locale/cs/LC_MESSAGES/kcm_autostart.mo share/locale/cs/LC_MESSAGES/kcm_baloofile.mo share/locale/cs/LC_MESSAGES/kcm_desktoppaths.mo share/locale/cs/LC_MESSAGES/kcm_keys.mo share/locale/cs/LC_MESSAGES/kcm_launchfeedback.mo share/locale/cs/LC_MESSAGES/kcm_nightcolor.mo share/locale/cs/LC_MESSAGES/kcm_notifications.mo share/locale/cs/LC_MESSAGES/kcm_search.mo share/locale/cs/LC_MESSAGES/kcm_solid_actions.mo share/locale/cs/LC_MESSAGES/kcm_splashscreen.mo share/locale/cs/LC_MESSAGES/kcm_touchpad.mo share/locale/cs/LC_MESSAGES/kcm_users.mo share/locale/cs/LC_MESSAGES/kcm_workspace.mo share/locale/cs/LC_MESSAGES/kcmaccess.mo share/locale/cs/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/cs/LC_MESSAGES/knetattach5.mo share/locale/cs/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/cs/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/cs/LC_MESSAGES/plasma_runner_kwin.mo share/locale/cs/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/cs/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/cs/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/cs/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/cs/LC_MESSAGES/plasmaactivitymanager.mo share/locale/csb/LC_MESSAGES/kaccess.mo share/locale/csb/LC_MESSAGES/kcm5_componentchooser.mo share/locale/csb/LC_MESSAGES/kcm5_joystick.mo share/locale/csb/LC_MESSAGES/kcm5_kded.mo share/locale/csb/LC_MESSAGES/kcm_launchfeedback.mo share/locale/csb/LC_MESSAGES/kcmaccess.mo share/locale/csb/LC_MESSAGES/kcmformats.mo share/locale/csb/LC_MESSAGES/kcmkclock.mo share/locale/csb/LC_MESSAGES/kcmkeyboard.mo share/locale/csb/LC_MESSAGES/kcmsmserver.mo share/locale/csb/LC_MESSAGES/knetattach5.mo share/locale/csb/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/csb/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/csb/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/csb/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/csb/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/cy/LC_MESSAGES/kaccess.mo share/locale/cy/LC_MESSAGES/kcm5_componentchooser.mo share/locale/cy/LC_MESSAGES/kcm5_joystick.mo share/locale/cy/LC_MESSAGES/kcm5_kded.mo share/locale/cy/LC_MESSAGES/kcm_desktoppaths.mo share/locale/cy/LC_MESSAGES/kcm_launchfeedback.mo share/locale/cy/LC_MESSAGES/kcmaccess.mo share/locale/cy/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/cy/LC_MESSAGES/knetattach5.mo share/locale/cy/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/da/LC_MESSAGES/kaccess.mo share/locale/da/LC_MESSAGES/kcm5_componentchooser.mo share/locale/da/LC_MESSAGES/kcm5_device_automounter.mo share/locale/da/LC_MESSAGES/kcm5_joystick.mo share/locale/da/LC_MESSAGES/kcm5_kded.mo share/locale/da/LC_MESSAGES/kcm_activities5.mo share/locale/da/LC_MESSAGES/kcm_autostart.mo share/locale/da/LC_MESSAGES/kcm_baloofile.mo share/locale/da/LC_MESSAGES/kcm_desktoppaths.mo share/locale/da/LC_MESSAGES/kcm_keys.mo share/locale/da/LC_MESSAGES/kcm_launchfeedback.mo share/locale/da/LC_MESSAGES/kcm_nightcolor.mo share/locale/da/LC_MESSAGES/kcm_notifications.mo share/locale/da/LC_MESSAGES/kcm_search.mo share/locale/da/LC_MESSAGES/kcm_solid_actions.mo share/locale/da/LC_MESSAGES/kcm_splashscreen.mo share/locale/da/LC_MESSAGES/kcm_touchpad.mo share/locale/da/LC_MESSAGES/kcm_users.mo share/locale/da/LC_MESSAGES/kcm_workspace.mo share/locale/da/LC_MESSAGES/kcmaccess.mo share/locale/da/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/da/LC_MESSAGES/knetattach5.mo share/locale/da/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/da/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/da/LC_MESSAGES/plasma_runner_kwin.mo share/locale/da/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/da/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/da/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/da/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/da/LC_MESSAGES/plasmaactivitymanager.mo share/locale/de/LC_MESSAGES/kaccess.mo share/locale/de/LC_MESSAGES/kcm5_componentchooser.mo share/locale/de/LC_MESSAGES/kcm5_device_automounter.mo share/locale/de/LC_MESSAGES/kcm5_joystick.mo share/locale/de/LC_MESSAGES/kcm5_kded.mo share/locale/de/LC_MESSAGES/kcm_activities5.mo share/locale/de/LC_MESSAGES/kcm_autostart.mo share/locale/de/LC_MESSAGES/kcm_baloofile.mo share/locale/de/LC_MESSAGES/kcm_desktoppaths.mo share/locale/de/LC_MESSAGES/kcm_keys.mo share/locale/de/LC_MESSAGES/kcm_launchfeedback.mo share/locale/de/LC_MESSAGES/kcm_nightcolor.mo share/locale/de/LC_MESSAGES/kcm_notifications.mo share/locale/de/LC_MESSAGES/kcm_search.mo share/locale/de/LC_MESSAGES/kcm_solid_actions.mo share/locale/de/LC_MESSAGES/kcm_splashscreen.mo share/locale/de/LC_MESSAGES/kcm_touchpad.mo share/locale/de/LC_MESSAGES/kcm_users.mo share/locale/de/LC_MESSAGES/kcm_workspace.mo share/locale/de/LC_MESSAGES/kcmaccess.mo share/locale/de/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/de/LC_MESSAGES/knetattach5.mo share/locale/de/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/de/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/de/LC_MESSAGES/plasma_runner_kwin.mo share/locale/de/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/de/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/de/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/de/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/de/LC_MESSAGES/plasmaactivitymanager.mo share/locale/el/LC_MESSAGES/kaccess.mo share/locale/el/LC_MESSAGES/kcm5_componentchooser.mo share/locale/el/LC_MESSAGES/kcm5_device_automounter.mo share/locale/el/LC_MESSAGES/kcm5_joystick.mo share/locale/el/LC_MESSAGES/kcm5_kded.mo share/locale/el/LC_MESSAGES/kcm_activities5.mo share/locale/el/LC_MESSAGES/kcm_autostart.mo share/locale/el/LC_MESSAGES/kcm_baloofile.mo share/locale/el/LC_MESSAGES/kcm_desktoppaths.mo share/locale/el/LC_MESSAGES/kcm_launchfeedback.mo share/locale/el/LC_MESSAGES/kcm_search.mo share/locale/el/LC_MESSAGES/kcm_solid_actions.mo share/locale/el/LC_MESSAGES/kcm_splashscreen.mo share/locale/el/LC_MESSAGES/kcm_touchpad.mo share/locale/el/LC_MESSAGES/kcm_workspace.mo share/locale/el/LC_MESSAGES/kcmaccess.mo share/locale/el/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/el/LC_MESSAGES/knetattach5.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/el/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/el/LC_MESSAGES/plasma_runner_kwin.mo share/locale/el/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/el/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/el/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/el/LC_MESSAGES/plasmaactivitymanager.mo share/locale/en_GB/LC_MESSAGES/kaccess.mo share/locale/en_GB/LC_MESSAGES/kcm5_componentchooser.mo share/locale/en_GB/LC_MESSAGES/kcm5_device_automounter.mo share/locale/en_GB/LC_MESSAGES/kcm5_joystick.mo share/locale/en_GB/LC_MESSAGES/kcm5_kded.mo share/locale/en_GB/LC_MESSAGES/kcm_activities5.mo share/locale/en_GB/LC_MESSAGES/kcm_autostart.mo share/locale/en_GB/LC_MESSAGES/kcm_baloofile.mo share/locale/en_GB/LC_MESSAGES/kcm_desktoppaths.mo share/locale/en_GB/LC_MESSAGES/kcm_keys.mo share/locale/en_GB/LC_MESSAGES/kcm_launchfeedback.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_search.mo share/locale/en_GB/LC_MESSAGES/kcm_solid_actions.mo share/locale/en_GB/LC_MESSAGES/kcm_splashscreen.mo share/locale/en_GB/LC_MESSAGES/kcm_touchpad.mo share/locale/en_GB/LC_MESSAGES/kcm_users.mo share/locale/en_GB/LC_MESSAGES/kcm_workspace.mo share/locale/en_GB/LC_MESSAGES/kcmaccess.mo share/locale/en_GB/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/en_GB/LC_MESSAGES/knetattach5.mo share/locale/en_GB/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_kwin.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/en_GB/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/en_GB/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/en_GB/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/en_GB/LC_MESSAGES/plasmaactivitymanager.mo share/locale/eo/LC_MESSAGES/kaccess.mo share/locale/eo/LC_MESSAGES/kcm5_componentchooser.mo share/locale/eo/LC_MESSAGES/kcm5_device_automounter.mo share/locale/eo/LC_MESSAGES/kcm5_joystick.mo share/locale/eo/LC_MESSAGES/kcm5_kded.mo share/locale/eo/LC_MESSAGES/kcm_autostart.mo share/locale/eo/LC_MESSAGES/kcm_desktoppaths.mo share/locale/eo/LC_MESSAGES/kcm_launchfeedback.mo share/locale/eo/LC_MESSAGES/kcm_solid_actions.mo share/locale/eo/LC_MESSAGES/kcmaccess.mo share/locale/eo/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/eo/LC_MESSAGES/knetattach5.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/eo/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/es/LC_MESSAGES/kaccess.mo share/locale/es/LC_MESSAGES/kcm5_componentchooser.mo share/locale/es/LC_MESSAGES/kcm5_device_automounter.mo share/locale/es/LC_MESSAGES/kcm5_joystick.mo share/locale/es/LC_MESSAGES/kcm5_kded.mo share/locale/es/LC_MESSAGES/kcm_activities5.mo share/locale/es/LC_MESSAGES/kcm_autostart.mo share/locale/es/LC_MESSAGES/kcm_baloofile.mo share/locale/es/LC_MESSAGES/kcm_desktoppaths.mo share/locale/es/LC_MESSAGES/kcm_keys.mo share/locale/es/LC_MESSAGES/kcm_launchfeedback.mo share/locale/es/LC_MESSAGES/kcm_nightcolor.mo share/locale/es/LC_MESSAGES/kcm_notifications.mo share/locale/es/LC_MESSAGES/kcm_search.mo share/locale/es/LC_MESSAGES/kcm_solid_actions.mo share/locale/es/LC_MESSAGES/kcm_splashscreen.mo share/locale/es/LC_MESSAGES/kcm_touchpad.mo share/locale/es/LC_MESSAGES/kcm_users.mo share/locale/es/LC_MESSAGES/kcm_workspace.mo share/locale/es/LC_MESSAGES/kcmaccess.mo share/locale/es/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/es/LC_MESSAGES/knetattach5.mo share/locale/es/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/es/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/es/LC_MESSAGES/plasma_runner_kwin.mo share/locale/es/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/es/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/es/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/es/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/es/LC_MESSAGES/plasmaactivitymanager.mo share/locale/et/LC_MESSAGES/kaccess.mo share/locale/et/LC_MESSAGES/kcm5_componentchooser.mo share/locale/et/LC_MESSAGES/kcm5_device_automounter.mo share/locale/et/LC_MESSAGES/kcm5_joystick.mo share/locale/et/LC_MESSAGES/kcm5_kded.mo share/locale/et/LC_MESSAGES/kcm_activities5.mo share/locale/et/LC_MESSAGES/kcm_autostart.mo share/locale/et/LC_MESSAGES/kcm_baloofile.mo share/locale/et/LC_MESSAGES/kcm_desktoppaths.mo share/locale/et/LC_MESSAGES/kcm_keys.mo share/locale/et/LC_MESSAGES/kcm_launchfeedback.mo share/locale/et/LC_MESSAGES/kcm_nightcolor.mo share/locale/et/LC_MESSAGES/kcm_notifications.mo share/locale/et/LC_MESSAGES/kcm_search.mo share/locale/et/LC_MESSAGES/kcm_solid_actions.mo share/locale/et/LC_MESSAGES/kcm_splashscreen.mo share/locale/et/LC_MESSAGES/kcm_touchpad.mo +share/locale/et/LC_MESSAGES/kcm_users.mo share/locale/et/LC_MESSAGES/kcm_workspace.mo share/locale/et/LC_MESSAGES/kcmaccess.mo share/locale/et/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/et/LC_MESSAGES/knetattach5.mo share/locale/et/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/et/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/et/LC_MESSAGES/plasma_runner_kwin.mo share/locale/et/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/et/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/et/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/et/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/et/LC_MESSAGES/plasmaactivitymanager.mo share/locale/eu/LC_MESSAGES/kaccess.mo share/locale/eu/LC_MESSAGES/kcm5_componentchooser.mo share/locale/eu/LC_MESSAGES/kcm5_device_automounter.mo share/locale/eu/LC_MESSAGES/kcm5_joystick.mo share/locale/eu/LC_MESSAGES/kcm5_kded.mo share/locale/eu/LC_MESSAGES/kcm_activities5.mo share/locale/eu/LC_MESSAGES/kcm_autostart.mo share/locale/eu/LC_MESSAGES/kcm_baloofile.mo share/locale/eu/LC_MESSAGES/kcm_desktoppaths.mo share/locale/eu/LC_MESSAGES/kcm_keys.mo share/locale/eu/LC_MESSAGES/kcm_launchfeedback.mo share/locale/eu/LC_MESSAGES/kcm_nightcolor.mo share/locale/eu/LC_MESSAGES/kcm_notifications.mo share/locale/eu/LC_MESSAGES/kcm_search.mo share/locale/eu/LC_MESSAGES/kcm_solid_actions.mo share/locale/eu/LC_MESSAGES/kcm_splashscreen.mo share/locale/eu/LC_MESSAGES/kcm_touchpad.mo share/locale/eu/LC_MESSAGES/kcm_users.mo share/locale/eu/LC_MESSAGES/kcm_workspace.mo share/locale/eu/LC_MESSAGES/kcmaccess.mo share/locale/eu/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/eu/LC_MESSAGES/knetattach5.mo share/locale/eu/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/eu/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/eu/LC_MESSAGES/plasma_runner_kwin.mo share/locale/eu/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/eu/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/eu/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/eu/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/eu/LC_MESSAGES/plasmaactivitymanager.mo share/locale/fa/LC_MESSAGES/kaccess.mo share/locale/fa/LC_MESSAGES/kcm5_componentchooser.mo share/locale/fa/LC_MESSAGES/kcm5_device_automounter.mo share/locale/fa/LC_MESSAGES/kcm5_joystick.mo share/locale/fa/LC_MESSAGES/kcm5_kded.mo share/locale/fa/LC_MESSAGES/kcm_autostart.mo share/locale/fa/LC_MESSAGES/kcm_desktoppaths.mo share/locale/fa/LC_MESSAGES/kcm_launchfeedback.mo share/locale/fa/LC_MESSAGES/kcm_solid_actions.mo share/locale/fa/LC_MESSAGES/kcmaccess.mo share/locale/fa/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/fa/LC_MESSAGES/knetattach5.mo share/locale/fa/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/fa/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/fa/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/fa/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/fi/LC_MESSAGES/kaccess.mo share/locale/fi/LC_MESSAGES/kcm5_componentchooser.mo share/locale/fi/LC_MESSAGES/kcm5_device_automounter.mo share/locale/fi/LC_MESSAGES/kcm5_joystick.mo share/locale/fi/LC_MESSAGES/kcm5_kded.mo share/locale/fi/LC_MESSAGES/kcm_activities5.mo share/locale/fi/LC_MESSAGES/kcm_autostart.mo share/locale/fi/LC_MESSAGES/kcm_baloofile.mo share/locale/fi/LC_MESSAGES/kcm_desktoppaths.mo share/locale/fi/LC_MESSAGES/kcm_keys.mo share/locale/fi/LC_MESSAGES/kcm_launchfeedback.mo share/locale/fi/LC_MESSAGES/kcm_nightcolor.mo share/locale/fi/LC_MESSAGES/kcm_notifications.mo share/locale/fi/LC_MESSAGES/kcm_search.mo share/locale/fi/LC_MESSAGES/kcm_solid_actions.mo share/locale/fi/LC_MESSAGES/kcm_splashscreen.mo share/locale/fi/LC_MESSAGES/kcm_touchpad.mo share/locale/fi/LC_MESSAGES/kcm_users.mo share/locale/fi/LC_MESSAGES/kcm_workspace.mo share/locale/fi/LC_MESSAGES/kcmaccess.mo share/locale/fi/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/fi/LC_MESSAGES/knetattach5.mo share/locale/fi/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/fi/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/fi/LC_MESSAGES/plasma_runner_kwin.mo share/locale/fi/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/fi/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/fi/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/fi/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/fi/LC_MESSAGES/plasmaactivitymanager.mo share/locale/fr/LC_MESSAGES/kaccess.mo share/locale/fr/LC_MESSAGES/kcm5_componentchooser.mo share/locale/fr/LC_MESSAGES/kcm5_device_automounter.mo share/locale/fr/LC_MESSAGES/kcm5_joystick.mo share/locale/fr/LC_MESSAGES/kcm5_kded.mo share/locale/fr/LC_MESSAGES/kcm_activities5.mo share/locale/fr/LC_MESSAGES/kcm_autostart.mo share/locale/fr/LC_MESSAGES/kcm_baloofile.mo share/locale/fr/LC_MESSAGES/kcm_desktoppaths.mo share/locale/fr/LC_MESSAGES/kcm_keys.mo share/locale/fr/LC_MESSAGES/kcm_launchfeedback.mo share/locale/fr/LC_MESSAGES/kcm_nightcolor.mo share/locale/fr/LC_MESSAGES/kcm_notifications.mo share/locale/fr/LC_MESSAGES/kcm_search.mo share/locale/fr/LC_MESSAGES/kcm_solid_actions.mo share/locale/fr/LC_MESSAGES/kcm_splashscreen.mo share/locale/fr/LC_MESSAGES/kcm_touchpad.mo share/locale/fr/LC_MESSAGES/kcm_users.mo share/locale/fr/LC_MESSAGES/kcm_workspace.mo share/locale/fr/LC_MESSAGES/kcmaccess.mo share/locale/fr/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/fr/LC_MESSAGES/knetattach5.mo share/locale/fr/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/fr/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/fr/LC_MESSAGES/plasma_runner_kwin.mo share/locale/fr/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/fr/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/fr/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/fr/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/fr/LC_MESSAGES/plasmaactivitymanager.mo share/locale/fy/LC_MESSAGES/kaccess.mo share/locale/fy/LC_MESSAGES/kcm5_componentchooser.mo share/locale/fy/LC_MESSAGES/kcm5_joystick.mo share/locale/fy/LC_MESSAGES/kcm5_kded.mo share/locale/fy/LC_MESSAGES/kcm_autostart.mo share/locale/fy/LC_MESSAGES/kcm_desktoppaths.mo share/locale/fy/LC_MESSAGES/kcm_launchfeedback.mo share/locale/fy/LC_MESSAGES/kcm_solid_actions.mo share/locale/fy/LC_MESSAGES/kcmaccess.mo share/locale/fy/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/fy/LC_MESSAGES/knetattach5.mo share/locale/fy/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/fy/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/fy/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/fy/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ga/LC_MESSAGES/kaccess.mo share/locale/ga/LC_MESSAGES/kcm5_componentchooser.mo share/locale/ga/LC_MESSAGES/kcm5_device_automounter.mo share/locale/ga/LC_MESSAGES/kcm5_joystick.mo share/locale/ga/LC_MESSAGES/kcm5_kded.mo share/locale/ga/LC_MESSAGES/kcm_autostart.mo share/locale/ga/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ga/LC_MESSAGES/kcm_launchfeedback.mo share/locale/ga/LC_MESSAGES/kcm_solid_actions.mo share/locale/ga/LC_MESSAGES/kcmaccess.mo share/locale/ga/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/ga/LC_MESSAGES/knetattach5.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/ga/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/gl/LC_MESSAGES/kaccess.mo share/locale/gl/LC_MESSAGES/kcm5_componentchooser.mo share/locale/gl/LC_MESSAGES/kcm5_device_automounter.mo share/locale/gl/LC_MESSAGES/kcm5_joystick.mo share/locale/gl/LC_MESSAGES/kcm5_kded.mo share/locale/gl/LC_MESSAGES/kcm_activities5.mo share/locale/gl/LC_MESSAGES/kcm_autostart.mo share/locale/gl/LC_MESSAGES/kcm_baloofile.mo share/locale/gl/LC_MESSAGES/kcm_desktoppaths.mo share/locale/gl/LC_MESSAGES/kcm_launchfeedback.mo share/locale/gl/LC_MESSAGES/kcm_nightcolor.mo share/locale/gl/LC_MESSAGES/kcm_notifications.mo share/locale/gl/LC_MESSAGES/kcm_search.mo share/locale/gl/LC_MESSAGES/kcm_solid_actions.mo share/locale/gl/LC_MESSAGES/kcm_splashscreen.mo share/locale/gl/LC_MESSAGES/kcm_touchpad.mo share/locale/gl/LC_MESSAGES/kcm_workspace.mo share/locale/gl/LC_MESSAGES/kcmaccess.mo share/locale/gl/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/gl/LC_MESSAGES/knetattach5.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/gl/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/gl/LC_MESSAGES/plasma_runner_kwin.mo share/locale/gl/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/gl/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/gl/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/gl/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/gl/LC_MESSAGES/plasmaactivitymanager.mo share/locale/gu/LC_MESSAGES/kaccess.mo share/locale/gu/LC_MESSAGES/kcm5_componentchooser.mo share/locale/gu/LC_MESSAGES/kcm5_device_automounter.mo share/locale/gu/LC_MESSAGES/kcm5_joystick.mo share/locale/gu/LC_MESSAGES/kcm5_kded.mo share/locale/gu/LC_MESSAGES/kcm_autostart.mo share/locale/gu/LC_MESSAGES/kcm_desktoppaths.mo share/locale/gu/LC_MESSAGES/kcm_launchfeedback.mo share/locale/gu/LC_MESSAGES/kcm_solid_actions.mo share/locale/gu/LC_MESSAGES/kcmaccess.mo share/locale/gu/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/gu/LC_MESSAGES/knetattach5.mo share/locale/gu/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/gu/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/gu/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/gu/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/gu/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/gu/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/he/LC_MESSAGES/kaccess.mo share/locale/he/LC_MESSAGES/kcm5_componentchooser.mo share/locale/he/LC_MESSAGES/kcm5_device_automounter.mo share/locale/he/LC_MESSAGES/kcm5_joystick.mo share/locale/he/LC_MESSAGES/kcm5_kded.mo share/locale/he/LC_MESSAGES/kcm_activities5.mo share/locale/he/LC_MESSAGES/kcm_autostart.mo share/locale/he/LC_MESSAGES/kcm_baloofile.mo share/locale/he/LC_MESSAGES/kcm_desktoppaths.mo share/locale/he/LC_MESSAGES/kcm_launchfeedback.mo share/locale/he/LC_MESSAGES/kcm_search.mo share/locale/he/LC_MESSAGES/kcm_solid_actions.mo share/locale/he/LC_MESSAGES/kcm_splashscreen.mo share/locale/he/LC_MESSAGES/kcm_touchpad.mo share/locale/he/LC_MESSAGES/kcm_workspace.mo share/locale/he/LC_MESSAGES/kcmaccess.mo share/locale/he/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/he/LC_MESSAGES/knetattach5.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/he/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/he/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/he/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/he/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/he/LC_MESSAGES/plasmaactivitymanager.mo share/locale/hi/LC_MESSAGES/kaccess.mo share/locale/hi/LC_MESSAGES/kcm5_componentchooser.mo share/locale/hi/LC_MESSAGES/kcm5_device_automounter.mo share/locale/hi/LC_MESSAGES/kcm5_joystick.mo share/locale/hi/LC_MESSAGES/kcm5_kded.mo share/locale/hi/LC_MESSAGES/kcm_autostart.mo share/locale/hi/LC_MESSAGES/kcm_desktoppaths.mo share/locale/hi/LC_MESSAGES/kcm_launchfeedback.mo share/locale/hi/LC_MESSAGES/kcm_solid_actions.mo share/locale/hi/LC_MESSAGES/kcmaccess.mo share/locale/hi/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/hi/LC_MESSAGES/knetattach5.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/hi/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/hne/LC_MESSAGES/kaccess.mo share/locale/hne/LC_MESSAGES/kcm5_componentchooser.mo share/locale/hne/LC_MESSAGES/kcm5_joystick.mo share/locale/hne/LC_MESSAGES/kcm5_kded.mo share/locale/hne/LC_MESSAGES/kcm_autostart.mo share/locale/hne/LC_MESSAGES/kcm_desktoppaths.mo share/locale/hne/LC_MESSAGES/kcm_launchfeedback.mo share/locale/hne/LC_MESSAGES/kcmaccess.mo share/locale/hne/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/hne/LC_MESSAGES/knetattach5.mo share/locale/hne/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/hne/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/hne/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/hne/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/hr/LC_MESSAGES/kaccess.mo share/locale/hr/LC_MESSAGES/kcm5_componentchooser.mo share/locale/hr/LC_MESSAGES/kcm5_device_automounter.mo share/locale/hr/LC_MESSAGES/kcm5_joystick.mo share/locale/hr/LC_MESSAGES/kcm5_kded.mo share/locale/hr/LC_MESSAGES/kcm_autostart.mo share/locale/hr/LC_MESSAGES/kcm_desktoppaths.mo share/locale/hr/LC_MESSAGES/kcm_launchfeedback.mo share/locale/hr/LC_MESSAGES/kcm_solid_actions.mo share/locale/hr/LC_MESSAGES/kcmaccess.mo share/locale/hr/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/hr/LC_MESSAGES/knetattach5.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/hr/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/hsb/LC_MESSAGES/kaccess.mo share/locale/hsb/LC_MESSAGES/kcm5_componentchooser.mo share/locale/hsb/LC_MESSAGES/kcm5_joystick.mo share/locale/hsb/LC_MESSAGES/kcm5_kded.mo share/locale/hsb/LC_MESSAGES/kcm_autostart.mo share/locale/hsb/LC_MESSAGES/kcm_desktoppaths.mo share/locale/hsb/LC_MESSAGES/kcm_launchfeedback.mo share/locale/hsb/LC_MESSAGES/kcmaccess.mo share/locale/hsb/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/hsb/LC_MESSAGES/knetattach5.mo share/locale/hsb/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/hsb/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/hsb/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/hsb/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/hu/LC_MESSAGES/kaccess.mo share/locale/hu/LC_MESSAGES/kcm5_componentchooser.mo share/locale/hu/LC_MESSAGES/kcm5_device_automounter.mo share/locale/hu/LC_MESSAGES/kcm5_joystick.mo share/locale/hu/LC_MESSAGES/kcm5_kded.mo share/locale/hu/LC_MESSAGES/kcm_activities5.mo share/locale/hu/LC_MESSAGES/kcm_autostart.mo share/locale/hu/LC_MESSAGES/kcm_baloofile.mo share/locale/hu/LC_MESSAGES/kcm_desktoppaths.mo share/locale/hu/LC_MESSAGES/kcm_launchfeedback.mo share/locale/hu/LC_MESSAGES/kcm_nightcolor.mo share/locale/hu/LC_MESSAGES/kcm_notifications.mo share/locale/hu/LC_MESSAGES/kcm_search.mo share/locale/hu/LC_MESSAGES/kcm_solid_actions.mo share/locale/hu/LC_MESSAGES/kcm_splashscreen.mo share/locale/hu/LC_MESSAGES/kcm_touchpad.mo share/locale/hu/LC_MESSAGES/kcm_workspace.mo share/locale/hu/LC_MESSAGES/kcmaccess.mo share/locale/hu/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/hu/LC_MESSAGES/knetattach5.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.kicker.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/hu/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/hu/LC_MESSAGES/plasma_runner_kwin.mo share/locale/hu/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/hu/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/hu/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/hu/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/hu/LC_MESSAGES/plasmaactivitymanager.mo share/locale/ia/LC_MESSAGES/kaccess.mo share/locale/ia/LC_MESSAGES/kcm5_componentchooser.mo share/locale/ia/LC_MESSAGES/kcm5_device_automounter.mo share/locale/ia/LC_MESSAGES/kcm5_joystick.mo share/locale/ia/LC_MESSAGES/kcm5_kded.mo share/locale/ia/LC_MESSAGES/kcm_activities5.mo share/locale/ia/LC_MESSAGES/kcm_autostart.mo share/locale/ia/LC_MESSAGES/kcm_baloofile.mo share/locale/ia/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ia/LC_MESSAGES/kcm_keys.mo share/locale/ia/LC_MESSAGES/kcm_launchfeedback.mo share/locale/ia/LC_MESSAGES/kcm_nightcolor.mo share/locale/ia/LC_MESSAGES/kcm_notifications.mo share/locale/ia/LC_MESSAGES/kcm_search.mo share/locale/ia/LC_MESSAGES/kcm_solid_actions.mo share/locale/ia/LC_MESSAGES/kcm_splashscreen.mo share/locale/ia/LC_MESSAGES/kcm_touchpad.mo share/locale/ia/LC_MESSAGES/kcm_workspace.mo share/locale/ia/LC_MESSAGES/kcmaccess.mo share/locale/ia/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/ia/LC_MESSAGES/knetattach5.mo share/locale/ia/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/ia/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/ia/LC_MESSAGES/plasma_runner_kwin.mo share/locale/ia/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/ia/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/ia/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/ia/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/ia/LC_MESSAGES/plasmaactivitymanager.mo share/locale/id/LC_MESSAGES/kaccess.mo share/locale/id/LC_MESSAGES/kcm5_componentchooser.mo share/locale/id/LC_MESSAGES/kcm5_device_automounter.mo share/locale/id/LC_MESSAGES/kcm5_joystick.mo share/locale/id/LC_MESSAGES/kcm5_kded.mo share/locale/id/LC_MESSAGES/kcm_activities5.mo share/locale/id/LC_MESSAGES/kcm_autostart.mo share/locale/id/LC_MESSAGES/kcm_baloofile.mo share/locale/id/LC_MESSAGES/kcm_desktoppaths.mo share/locale/id/LC_MESSAGES/kcm_keys.mo share/locale/id/LC_MESSAGES/kcm_launchfeedback.mo share/locale/id/LC_MESSAGES/kcm_nightcolor.mo share/locale/id/LC_MESSAGES/kcm_notifications.mo share/locale/id/LC_MESSAGES/kcm_search.mo share/locale/id/LC_MESSAGES/kcm_solid_actions.mo share/locale/id/LC_MESSAGES/kcm_splashscreen.mo share/locale/id/LC_MESSAGES/kcm_touchpad.mo share/locale/id/LC_MESSAGES/kcm_workspace.mo share/locale/id/LC_MESSAGES/kcmaccess.mo share/locale/id/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/id/LC_MESSAGES/knetattach5.mo share/locale/id/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/id/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/id/LC_MESSAGES/plasma_runner_kwin.mo share/locale/id/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/id/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/id/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/id/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/id/LC_MESSAGES/plasmaactivitymanager.mo share/locale/is/LC_MESSAGES/kaccess.mo share/locale/is/LC_MESSAGES/kcm5_componentchooser.mo share/locale/is/LC_MESSAGES/kcm5_device_automounter.mo share/locale/is/LC_MESSAGES/kcm5_joystick.mo share/locale/is/LC_MESSAGES/kcm5_kded.mo share/locale/is/LC_MESSAGES/kcm_autostart.mo share/locale/is/LC_MESSAGES/kcm_desktoppaths.mo share/locale/is/LC_MESSAGES/kcm_launchfeedback.mo share/locale/is/LC_MESSAGES/kcm_solid_actions.mo share/locale/is/LC_MESSAGES/kcmaccess.mo share/locale/is/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/is/LC_MESSAGES/knetattach5.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/is/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/it/LC_MESSAGES/kaccess.mo share/locale/it/LC_MESSAGES/kcm5_componentchooser.mo share/locale/it/LC_MESSAGES/kcm5_device_automounter.mo share/locale/it/LC_MESSAGES/kcm5_joystick.mo share/locale/it/LC_MESSAGES/kcm5_kded.mo share/locale/it/LC_MESSAGES/kcm_activities5.mo share/locale/it/LC_MESSAGES/kcm_autostart.mo share/locale/it/LC_MESSAGES/kcm_baloofile.mo share/locale/it/LC_MESSAGES/kcm_desktoppaths.mo share/locale/it/LC_MESSAGES/kcm_keys.mo share/locale/it/LC_MESSAGES/kcm_launchfeedback.mo share/locale/it/LC_MESSAGES/kcm_nightcolor.mo share/locale/it/LC_MESSAGES/kcm_notifications.mo share/locale/it/LC_MESSAGES/kcm_search.mo share/locale/it/LC_MESSAGES/kcm_solid_actions.mo share/locale/it/LC_MESSAGES/kcm_splashscreen.mo share/locale/it/LC_MESSAGES/kcm_touchpad.mo share/locale/it/LC_MESSAGES/kcm_users.mo share/locale/it/LC_MESSAGES/kcm_workspace.mo share/locale/it/LC_MESSAGES/kcmaccess.mo share/locale/it/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/it/LC_MESSAGES/knetattach5.mo share/locale/it/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/it/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/it/LC_MESSAGES/plasma_runner_kwin.mo share/locale/it/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/it/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/it/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/it/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/it/LC_MESSAGES/plasmaactivitymanager.mo share/locale/ja/LC_MESSAGES/kaccess.mo share/locale/ja/LC_MESSAGES/kcm5_componentchooser.mo share/locale/ja/LC_MESSAGES/kcm5_device_automounter.mo share/locale/ja/LC_MESSAGES/kcm5_joystick.mo share/locale/ja/LC_MESSAGES/kcm5_kded.mo share/locale/ja/LC_MESSAGES/kcm_activities5.mo share/locale/ja/LC_MESSAGES/kcm_autostart.mo share/locale/ja/LC_MESSAGES/kcm_baloofile.mo share/locale/ja/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ja/LC_MESSAGES/kcm_launchfeedback.mo share/locale/ja/LC_MESSAGES/kcm_nightcolor.mo share/locale/ja/LC_MESSAGES/kcm_notifications.mo share/locale/ja/LC_MESSAGES/kcm_search.mo share/locale/ja/LC_MESSAGES/kcm_solid_actions.mo share/locale/ja/LC_MESSAGES/kcm_splashscreen.mo share/locale/ja/LC_MESSAGES/kcm_touchpad.mo share/locale/ja/LC_MESSAGES/kcm_workspace.mo share/locale/ja/LC_MESSAGES/kcmaccess.mo share/locale/ja/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/ja/LC_MESSAGES/knetattach5.mo share/locale/ja/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/ja/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/ja/LC_MESSAGES/plasma_runner_kwin.mo share/locale/ja/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/ja/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/ja/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/ja/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/ja/LC_MESSAGES/plasmaactivitymanager.mo share/locale/kk/LC_MESSAGES/kaccess.mo share/locale/kk/LC_MESSAGES/kcm5_componentchooser.mo share/locale/kk/LC_MESSAGES/kcm5_device_automounter.mo share/locale/kk/LC_MESSAGES/kcm5_joystick.mo share/locale/kk/LC_MESSAGES/kcm5_kded.mo share/locale/kk/LC_MESSAGES/kcm_autostart.mo share/locale/kk/LC_MESSAGES/kcm_desktoppaths.mo share/locale/kk/LC_MESSAGES/kcm_launchfeedback.mo share/locale/kk/LC_MESSAGES/kcm_solid_actions.mo share/locale/kk/LC_MESSAGES/kcmaccess.mo share/locale/kk/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/kk/LC_MESSAGES/knetattach5.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/kk/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/kk/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/km/LC_MESSAGES/kaccess.mo share/locale/km/LC_MESSAGES/kcm5_componentchooser.mo share/locale/km/LC_MESSAGES/kcm5_device_automounter.mo share/locale/km/LC_MESSAGES/kcm5_joystick.mo share/locale/km/LC_MESSAGES/kcm5_kded.mo share/locale/km/LC_MESSAGES/kcm_autostart.mo share/locale/km/LC_MESSAGES/kcm_desktoppaths.mo share/locale/km/LC_MESSAGES/kcm_launchfeedback.mo share/locale/km/LC_MESSAGES/kcm_solid_actions.mo share/locale/km/LC_MESSAGES/kcmaccess.mo share/locale/km/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/km/LC_MESSAGES/knetattach5.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/km/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/kn/LC_MESSAGES/kaccess.mo share/locale/kn/LC_MESSAGES/kcm5_componentchooser.mo share/locale/kn/LC_MESSAGES/kcm5_device_automounter.mo share/locale/kn/LC_MESSAGES/kcm5_joystick.mo share/locale/kn/LC_MESSAGES/kcm5_kded.mo share/locale/kn/LC_MESSAGES/kcm_autostart.mo share/locale/kn/LC_MESSAGES/kcm_desktoppaths.mo share/locale/kn/LC_MESSAGES/kcm_launchfeedback.mo share/locale/kn/LC_MESSAGES/kcmaccess.mo share/locale/kn/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/kn/LC_MESSAGES/knetattach5.mo share/locale/kn/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/kn/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/kn/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/kn/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/kn/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/kn/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/ko/LC_MESSAGES/kaccess.mo share/locale/ko/LC_MESSAGES/kcm5_componentchooser.mo share/locale/ko/LC_MESSAGES/kcm5_device_automounter.mo share/locale/ko/LC_MESSAGES/kcm5_joystick.mo share/locale/ko/LC_MESSAGES/kcm5_kded.mo share/locale/ko/LC_MESSAGES/kcm_activities5.mo share/locale/ko/LC_MESSAGES/kcm_autostart.mo share/locale/ko/LC_MESSAGES/kcm_baloofile.mo share/locale/ko/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ko/LC_MESSAGES/kcm_keys.mo share/locale/ko/LC_MESSAGES/kcm_launchfeedback.mo share/locale/ko/LC_MESSAGES/kcm_nightcolor.mo share/locale/ko/LC_MESSAGES/kcm_notifications.mo share/locale/ko/LC_MESSAGES/kcm_search.mo share/locale/ko/LC_MESSAGES/kcm_solid_actions.mo share/locale/ko/LC_MESSAGES/kcm_splashscreen.mo share/locale/ko/LC_MESSAGES/kcm_touchpad.mo share/locale/ko/LC_MESSAGES/kcm_users.mo share/locale/ko/LC_MESSAGES/kcm_workspace.mo share/locale/ko/LC_MESSAGES/kcmaccess.mo share/locale/ko/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/ko/LC_MESSAGES/knetattach5.mo share/locale/ko/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/ko/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/ko/LC_MESSAGES/plasma_runner_kwin.mo share/locale/ko/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/ko/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/ko/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/ko/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/ko/LC_MESSAGES/plasmaactivitymanager.mo share/locale/ku/LC_MESSAGES/kaccess.mo share/locale/ku/LC_MESSAGES/kcm5_componentchooser.mo share/locale/ku/LC_MESSAGES/kcm5_joystick.mo share/locale/ku/LC_MESSAGES/kcm5_kded.mo share/locale/ku/LC_MESSAGES/kcm_autostart.mo share/locale/ku/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ku/LC_MESSAGES/kcm_launchfeedback.mo share/locale/ku/LC_MESSAGES/kcmaccess.mo share/locale/ku/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/ku/LC_MESSAGES/knetattach5.mo share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/lt/LC_MESSAGES/kaccess.mo share/locale/lt/LC_MESSAGES/kcm5_componentchooser.mo share/locale/lt/LC_MESSAGES/kcm5_device_automounter.mo share/locale/lt/LC_MESSAGES/kcm5_joystick.mo share/locale/lt/LC_MESSAGES/kcm5_kded.mo share/locale/lt/LC_MESSAGES/kcm_activities5.mo share/locale/lt/LC_MESSAGES/kcm_autostart.mo share/locale/lt/LC_MESSAGES/kcm_baloofile.mo share/locale/lt/LC_MESSAGES/kcm_desktoppaths.mo share/locale/lt/LC_MESSAGES/kcm_launchfeedback.mo share/locale/lt/LC_MESSAGES/kcm_nightcolor.mo share/locale/lt/LC_MESSAGES/kcm_notifications.mo share/locale/lt/LC_MESSAGES/kcm_search.mo share/locale/lt/LC_MESSAGES/kcm_solid_actions.mo share/locale/lt/LC_MESSAGES/kcm_splashscreen.mo share/locale/lt/LC_MESSAGES/kcm_touchpad.mo share/locale/lt/LC_MESSAGES/kcm_workspace.mo share/locale/lt/LC_MESSAGES/kcmaccess.mo share/locale/lt/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/lt/LC_MESSAGES/knetattach5.mo share/locale/lt/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/lt/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/lt/LC_MESSAGES/plasma_runner_kwin.mo share/locale/lt/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/lt/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/lt/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/lt/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/lt/LC_MESSAGES/plasmaactivitymanager.mo share/locale/lv/LC_MESSAGES/kaccess.mo share/locale/lv/LC_MESSAGES/kcm5_componentchooser.mo share/locale/lv/LC_MESSAGES/kcm5_device_automounter.mo share/locale/lv/LC_MESSAGES/kcm5_joystick.mo share/locale/lv/LC_MESSAGES/kcm5_kded.mo share/locale/lv/LC_MESSAGES/kcm_autostart.mo share/locale/lv/LC_MESSAGES/kcm_desktoppaths.mo share/locale/lv/LC_MESSAGES/kcm_launchfeedback.mo share/locale/lv/LC_MESSAGES/kcm_solid_actions.mo share/locale/lv/LC_MESSAGES/kcmaccess.mo share/locale/lv/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/lv/LC_MESSAGES/knetattach5.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/lv/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/mai/LC_MESSAGES/kaccess.mo share/locale/mai/LC_MESSAGES/kcm5_componentchooser.mo share/locale/mai/LC_MESSAGES/kcm5_device_automounter.mo share/locale/mai/LC_MESSAGES/kcm5_joystick.mo share/locale/mai/LC_MESSAGES/kcm5_kded.mo share/locale/mai/LC_MESSAGES/kcm_autostart.mo share/locale/mai/LC_MESSAGES/kcm_desktoppaths.mo share/locale/mai/LC_MESSAGES/kcm_launchfeedback.mo share/locale/mai/LC_MESSAGES/kcm_solid_actions.mo share/locale/mai/LC_MESSAGES/kcmaccess.mo share/locale/mai/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/mai/LC_MESSAGES/knetattach5.mo share/locale/mai/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/mai/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/mai/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/mai/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/mai/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/mai/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/mk/LC_MESSAGES/kaccess.mo share/locale/mk/LC_MESSAGES/kcm5_componentchooser.mo share/locale/mk/LC_MESSAGES/kcm5_joystick.mo share/locale/mk/LC_MESSAGES/kcm5_kded.mo share/locale/mk/LC_MESSAGES/kcm_autostart.mo share/locale/mk/LC_MESSAGES/kcm_desktoppaths.mo share/locale/mk/LC_MESSAGES/kcm_launchfeedback.mo share/locale/mk/LC_MESSAGES/kcmaccess.mo share/locale/mk/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/mk/LC_MESSAGES/knetattach5.mo share/locale/mk/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/mk/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/mk/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/mk/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ml/LC_MESSAGES/kaccess.mo share/locale/ml/LC_MESSAGES/kcm5_componentchooser.mo share/locale/ml/LC_MESSAGES/kcm5_device_automounter.mo share/locale/ml/LC_MESSAGES/kcm5_joystick.mo share/locale/ml/LC_MESSAGES/kcm5_kded.mo share/locale/ml/LC_MESSAGES/kcm_activities5.mo share/locale/ml/LC_MESSAGES/kcm_autostart.mo share/locale/ml/LC_MESSAGES/kcm_baloofile.mo share/locale/ml/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ml/LC_MESSAGES/kcm_launchfeedback.mo share/locale/ml/LC_MESSAGES/kcm_nightcolor.mo share/locale/ml/LC_MESSAGES/kcm_notifications.mo share/locale/ml/LC_MESSAGES/kcm_search.mo share/locale/ml/LC_MESSAGES/kcm_solid_actions.mo share/locale/ml/LC_MESSAGES/kcm_splashscreen.mo share/locale/ml/LC_MESSAGES/kcm_touchpad.mo share/locale/ml/LC_MESSAGES/kcm_workspace.mo share/locale/ml/LC_MESSAGES/kcmaccess.mo share/locale/ml/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/ml/LC_MESSAGES/knetattach5.mo share/locale/ml/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/ml/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/ml/LC_MESSAGES/plasma_runner_kwin.mo share/locale/ml/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/ml/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/ml/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/ml/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/ml/LC_MESSAGES/plasmaactivitymanager.mo share/locale/mr/LC_MESSAGES/kaccess.mo share/locale/mr/LC_MESSAGES/kcm5_componentchooser.mo share/locale/mr/LC_MESSAGES/kcm5_device_automounter.mo share/locale/mr/LC_MESSAGES/kcm5_joystick.mo share/locale/mr/LC_MESSAGES/kcm5_kded.mo share/locale/mr/LC_MESSAGES/kcm_autostart.mo share/locale/mr/LC_MESSAGES/kcm_desktoppaths.mo share/locale/mr/LC_MESSAGES/kcm_launchfeedback.mo share/locale/mr/LC_MESSAGES/kcm_solid_actions.mo share/locale/mr/LC_MESSAGES/kcmaccess.mo share/locale/mr/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/mr/LC_MESSAGES/knetattach5.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/mr/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/mr/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/ms/LC_MESSAGES/kaccess.mo share/locale/ms/LC_MESSAGES/kcm5_componentchooser.mo share/locale/ms/LC_MESSAGES/kcm5_device_automounter.mo share/locale/ms/LC_MESSAGES/kcm5_joystick.mo share/locale/ms/LC_MESSAGES/kcm5_kded.mo share/locale/ms/LC_MESSAGES/kcm_autostart.mo share/locale/ms/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ms/LC_MESSAGES/kcm_launchfeedback.mo share/locale/ms/LC_MESSAGES/kcm_solid_actions.mo share/locale/ms/LC_MESSAGES/kcmaccess.mo share/locale/ms/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/ms/LC_MESSAGES/knetattach5.mo share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/ms/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/nb/LC_MESSAGES/kaccess.mo share/locale/nb/LC_MESSAGES/kcm5_componentchooser.mo share/locale/nb/LC_MESSAGES/kcm5_device_automounter.mo share/locale/nb/LC_MESSAGES/kcm5_joystick.mo share/locale/nb/LC_MESSAGES/kcm5_kded.mo share/locale/nb/LC_MESSAGES/kcm_autostart.mo share/locale/nb/LC_MESSAGES/kcm_baloofile.mo share/locale/nb/LC_MESSAGES/kcm_desktoppaths.mo share/locale/nb/LC_MESSAGES/kcm_launchfeedback.mo share/locale/nb/LC_MESSAGES/kcm_search.mo share/locale/nb/LC_MESSAGES/kcm_solid_actions.mo share/locale/nb/LC_MESSAGES/kcm_splashscreen.mo share/locale/nb/LC_MESSAGES/kcm_touchpad.mo share/locale/nb/LC_MESSAGES/kcm_workspace.mo share/locale/nb/LC_MESSAGES/kcmaccess.mo share/locale/nb/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/nb/LC_MESSAGES/knetattach5.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/nb/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/nb/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/nb/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/nds/LC_MESSAGES/kaccess.mo share/locale/nds/LC_MESSAGES/kcm5_componentchooser.mo share/locale/nds/LC_MESSAGES/kcm5_device_automounter.mo share/locale/nds/LC_MESSAGES/kcm5_joystick.mo share/locale/nds/LC_MESSAGES/kcm5_kded.mo share/locale/nds/LC_MESSAGES/kcm_autostart.mo share/locale/nds/LC_MESSAGES/kcm_baloofile.mo share/locale/nds/LC_MESSAGES/kcm_desktoppaths.mo share/locale/nds/LC_MESSAGES/kcm_launchfeedback.mo share/locale/nds/LC_MESSAGES/kcm_search.mo share/locale/nds/LC_MESSAGES/kcm_solid_actions.mo share/locale/nds/LC_MESSAGES/kcm_splashscreen.mo share/locale/nds/LC_MESSAGES/kcm_workspace.mo share/locale/nds/LC_MESSAGES/kcmaccess.mo share/locale/nds/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/nds/LC_MESSAGES/knetattach5.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/nds/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/nds/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/nds/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/ne/LC_MESSAGES/kaccess.mo share/locale/ne/LC_MESSAGES/kcm5_componentchooser.mo share/locale/ne/LC_MESSAGES/kcm5_joystick.mo share/locale/ne/LC_MESSAGES/kcm5_kded.mo share/locale/ne/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ne/LC_MESSAGES/kcm_launchfeedback.mo share/locale/ne/LC_MESSAGES/kcmaccess.mo share/locale/ne/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/ne/LC_MESSAGES/knetattach5.mo share/locale/ne/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ne/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/nl/LC_MESSAGES/kaccess.mo share/locale/nl/LC_MESSAGES/kcm5_componentchooser.mo share/locale/nl/LC_MESSAGES/kcm5_device_automounter.mo share/locale/nl/LC_MESSAGES/kcm5_joystick.mo share/locale/nl/LC_MESSAGES/kcm5_kded.mo share/locale/nl/LC_MESSAGES/kcm_activities5.mo share/locale/nl/LC_MESSAGES/kcm_autostart.mo share/locale/nl/LC_MESSAGES/kcm_baloofile.mo share/locale/nl/LC_MESSAGES/kcm_desktoppaths.mo share/locale/nl/LC_MESSAGES/kcm_keys.mo share/locale/nl/LC_MESSAGES/kcm_launchfeedback.mo share/locale/nl/LC_MESSAGES/kcm_nightcolor.mo share/locale/nl/LC_MESSAGES/kcm_notifications.mo share/locale/nl/LC_MESSAGES/kcm_search.mo share/locale/nl/LC_MESSAGES/kcm_solid_actions.mo share/locale/nl/LC_MESSAGES/kcm_splashscreen.mo share/locale/nl/LC_MESSAGES/kcm_touchpad.mo share/locale/nl/LC_MESSAGES/kcm_users.mo share/locale/nl/LC_MESSAGES/kcm_workspace.mo share/locale/nl/LC_MESSAGES/kcmaccess.mo share/locale/nl/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/nl/LC_MESSAGES/knetattach5.mo share/locale/nl/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/nl/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/nl/LC_MESSAGES/plasma_runner_kwin.mo share/locale/nl/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/nl/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/nl/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/nl/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/nl/LC_MESSAGES/plasmaactivitymanager.mo share/locale/nn/LC_MESSAGES/kaccess.mo share/locale/nn/LC_MESSAGES/kcm5_componentchooser.mo share/locale/nn/LC_MESSAGES/kcm5_device_automounter.mo share/locale/nn/LC_MESSAGES/kcm5_joystick.mo share/locale/nn/LC_MESSAGES/kcm5_kded.mo share/locale/nn/LC_MESSAGES/kcm_activities5.mo share/locale/nn/LC_MESSAGES/kcm_autostart.mo share/locale/nn/LC_MESSAGES/kcm_baloofile.mo share/locale/nn/LC_MESSAGES/kcm_desktoppaths.mo share/locale/nn/LC_MESSAGES/kcm_keys.mo share/locale/nn/LC_MESSAGES/kcm_launchfeedback.mo share/locale/nn/LC_MESSAGES/kcm_nightcolor.mo share/locale/nn/LC_MESSAGES/kcm_notifications.mo share/locale/nn/LC_MESSAGES/kcm_search.mo share/locale/nn/LC_MESSAGES/kcm_solid_actions.mo share/locale/nn/LC_MESSAGES/kcm_splashscreen.mo share/locale/nn/LC_MESSAGES/kcm_touchpad.mo share/locale/nn/LC_MESSAGES/kcm_users.mo share/locale/nn/LC_MESSAGES/kcm_workspace.mo share/locale/nn/LC_MESSAGES/kcmaccess.mo share/locale/nn/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/nn/LC_MESSAGES/knetattach5.mo share/locale/nn/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/nn/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/nn/LC_MESSAGES/plasma_runner_kwin.mo share/locale/nn/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/nn/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/nn/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/nn/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/nn/LC_MESSAGES/plasmaactivitymanager.mo share/locale/oc/LC_MESSAGES/kaccess.mo share/locale/oc/LC_MESSAGES/kcm5_componentchooser.mo share/locale/oc/LC_MESSAGES/kcm5_joystick.mo share/locale/oc/LC_MESSAGES/kcm5_kded.mo share/locale/oc/LC_MESSAGES/kcm_desktoppaths.mo share/locale/oc/LC_MESSAGES/kcm_launchfeedback.mo share/locale/oc/LC_MESSAGES/kcmaccess.mo share/locale/oc/LC_MESSAGES/kcmkclock.mo share/locale/oc/LC_MESSAGES/kcmkeyboard.mo share/locale/oc/LC_MESSAGES/kcmmouse.mo share/locale/oc/LC_MESSAGES/kcmsmserver.mo share/locale/oc/LC_MESSAGES/knetattach5.mo share/locale/oc/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/or/LC_MESSAGES/kaccess.mo share/locale/or/LC_MESSAGES/kcm5_componentchooser.mo share/locale/or/LC_MESSAGES/kcm5_joystick.mo share/locale/or/LC_MESSAGES/kcm5_kded.mo share/locale/or/LC_MESSAGES/kcm_autostart.mo share/locale/or/LC_MESSAGES/kcm_desktoppaths.mo share/locale/or/LC_MESSAGES/kcm_launchfeedback.mo share/locale/or/LC_MESSAGES/kcmaccess.mo share/locale/or/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/or/LC_MESSAGES/knetattach5.mo share/locale/or/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/or/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/or/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/or/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/pa/LC_MESSAGES/kaccess.mo share/locale/pa/LC_MESSAGES/kcm5_componentchooser.mo share/locale/pa/LC_MESSAGES/kcm5_device_automounter.mo share/locale/pa/LC_MESSAGES/kcm5_joystick.mo share/locale/pa/LC_MESSAGES/kcm5_kded.mo share/locale/pa/LC_MESSAGES/kcm_activities5.mo share/locale/pa/LC_MESSAGES/kcm_autostart.mo share/locale/pa/LC_MESSAGES/kcm_baloofile.mo share/locale/pa/LC_MESSAGES/kcm_desktoppaths.mo share/locale/pa/LC_MESSAGES/kcm_launchfeedback.mo share/locale/pa/LC_MESSAGES/kcm_nightcolor.mo share/locale/pa/LC_MESSAGES/kcm_notifications.mo share/locale/pa/LC_MESSAGES/kcm_search.mo share/locale/pa/LC_MESSAGES/kcm_solid_actions.mo share/locale/pa/LC_MESSAGES/kcm_splashscreen.mo share/locale/pa/LC_MESSAGES/kcm_touchpad.mo share/locale/pa/LC_MESSAGES/kcm_users.mo share/locale/pa/LC_MESSAGES/kcm_workspace.mo share/locale/pa/LC_MESSAGES/kcmaccess.mo share/locale/pa/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/pa/LC_MESSAGES/knetattach5.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.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_applet_touchpad.mo share/locale/pa/LC_MESSAGES/plasma_runner_kwin.mo share/locale/pa/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/pa/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/pa/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/pa/LC_MESSAGES/plasmaactivitymanager.mo share/locale/pl/LC_MESSAGES/kaccess.mo share/locale/pl/LC_MESSAGES/kcm5_componentchooser.mo share/locale/pl/LC_MESSAGES/kcm5_device_automounter.mo share/locale/pl/LC_MESSAGES/kcm5_joystick.mo share/locale/pl/LC_MESSAGES/kcm5_kded.mo share/locale/pl/LC_MESSAGES/kcm_activities5.mo share/locale/pl/LC_MESSAGES/kcm_autostart.mo share/locale/pl/LC_MESSAGES/kcm_baloofile.mo share/locale/pl/LC_MESSAGES/kcm_desktoppaths.mo share/locale/pl/LC_MESSAGES/kcm_keys.mo share/locale/pl/LC_MESSAGES/kcm_launchfeedback.mo share/locale/pl/LC_MESSAGES/kcm_nightcolor.mo share/locale/pl/LC_MESSAGES/kcm_notifications.mo share/locale/pl/LC_MESSAGES/kcm_search.mo share/locale/pl/LC_MESSAGES/kcm_solid_actions.mo share/locale/pl/LC_MESSAGES/kcm_splashscreen.mo share/locale/pl/LC_MESSAGES/kcm_touchpad.mo share/locale/pl/LC_MESSAGES/kcm_users.mo share/locale/pl/LC_MESSAGES/kcm_workspace.mo share/locale/pl/LC_MESSAGES/kcmaccess.mo share/locale/pl/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/pl/LC_MESSAGES/knetattach5.mo share/locale/pl/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/pl/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/pl/LC_MESSAGES/plasma_runner_kwin.mo share/locale/pl/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/pl/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/pl/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/pl/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/pl/LC_MESSAGES/plasmaactivitymanager.mo share/locale/pt/LC_MESSAGES/kaccess.mo share/locale/pt/LC_MESSAGES/kcm5_componentchooser.mo share/locale/pt/LC_MESSAGES/kcm5_device_automounter.mo share/locale/pt/LC_MESSAGES/kcm5_joystick.mo share/locale/pt/LC_MESSAGES/kcm5_kded.mo share/locale/pt/LC_MESSAGES/kcm_activities5.mo share/locale/pt/LC_MESSAGES/kcm_autostart.mo share/locale/pt/LC_MESSAGES/kcm_baloofile.mo share/locale/pt/LC_MESSAGES/kcm_desktoppaths.mo share/locale/pt/LC_MESSAGES/kcm_keys.mo share/locale/pt/LC_MESSAGES/kcm_launchfeedback.mo share/locale/pt/LC_MESSAGES/kcm_nightcolor.mo share/locale/pt/LC_MESSAGES/kcm_notifications.mo share/locale/pt/LC_MESSAGES/kcm_search.mo share/locale/pt/LC_MESSAGES/kcm_solid_actions.mo share/locale/pt/LC_MESSAGES/kcm_splashscreen.mo share/locale/pt/LC_MESSAGES/kcm_touchpad.mo share/locale/pt/LC_MESSAGES/kcm_users.mo share/locale/pt/LC_MESSAGES/kcm_workspace.mo share/locale/pt/LC_MESSAGES/kcmaccess.mo share/locale/pt/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/pt/LC_MESSAGES/knetattach5.mo share/locale/pt/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/pt/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/pt/LC_MESSAGES/plasma_runner_kwin.mo share/locale/pt/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/pt/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/pt/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/pt/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/pt/LC_MESSAGES/plasmaactivitymanager.mo share/locale/pt_BR/LC_MESSAGES/kaccess.mo share/locale/pt_BR/LC_MESSAGES/kcm5_componentchooser.mo share/locale/pt_BR/LC_MESSAGES/kcm5_device_automounter.mo share/locale/pt_BR/LC_MESSAGES/kcm5_joystick.mo share/locale/pt_BR/LC_MESSAGES/kcm5_kded.mo share/locale/pt_BR/LC_MESSAGES/kcm_activities5.mo share/locale/pt_BR/LC_MESSAGES/kcm_autostart.mo share/locale/pt_BR/LC_MESSAGES/kcm_baloofile.mo share/locale/pt_BR/LC_MESSAGES/kcm_desktoppaths.mo share/locale/pt_BR/LC_MESSAGES/kcm_keys.mo share/locale/pt_BR/LC_MESSAGES/kcm_launchfeedback.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_search.mo share/locale/pt_BR/LC_MESSAGES/kcm_solid_actions.mo share/locale/pt_BR/LC_MESSAGES/kcm_splashscreen.mo share/locale/pt_BR/LC_MESSAGES/kcm_touchpad.mo share/locale/pt_BR/LC_MESSAGES/kcm_users.mo share/locale/pt_BR/LC_MESSAGES/kcm_workspace.mo share/locale/pt_BR/LC_MESSAGES/kcmaccess.mo share/locale/pt_BR/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/pt_BR/LC_MESSAGES/knetattach5.mo share/locale/pt_BR/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_kwin.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/pt_BR/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/pt_BR/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/pt_BR/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/pt_BR/LC_MESSAGES/plasmaactivitymanager.mo share/locale/ro/LC_MESSAGES/kaccess.mo share/locale/ro/LC_MESSAGES/kcm5_componentchooser.mo share/locale/ro/LC_MESSAGES/kcm5_device_automounter.mo share/locale/ro/LC_MESSAGES/kcm5_joystick.mo share/locale/ro/LC_MESSAGES/kcm5_kded.mo share/locale/ro/LC_MESSAGES/kcm_activities5.mo share/locale/ro/LC_MESSAGES/kcm_autostart.mo share/locale/ro/LC_MESSAGES/kcm_baloofile.mo share/locale/ro/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ro/LC_MESSAGES/kcm_keys.mo share/locale/ro/LC_MESSAGES/kcm_launchfeedback.mo share/locale/ro/LC_MESSAGES/kcm_nightcolor.mo share/locale/ro/LC_MESSAGES/kcm_notifications.mo share/locale/ro/LC_MESSAGES/kcm_search.mo share/locale/ro/LC_MESSAGES/kcm_solid_actions.mo share/locale/ro/LC_MESSAGES/kcm_splashscreen.mo share/locale/ro/LC_MESSAGES/kcm_touchpad.mo share/locale/ro/LC_MESSAGES/kcm_users.mo share/locale/ro/LC_MESSAGES/kcm_workspace.mo share/locale/ro/LC_MESSAGES/kcmaccess.mo share/locale/ro/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/ro/LC_MESSAGES/knetattach5.mo share/locale/ro/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/ro/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/ro/LC_MESSAGES/plasma_runner_kwin.mo share/locale/ro/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/ro/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/ro/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/ro/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/ro/LC_MESSAGES/plasmaactivitymanager.mo share/locale/ru/LC_MESSAGES/kaccess.mo share/locale/ru/LC_MESSAGES/kcm5_componentchooser.mo share/locale/ru/LC_MESSAGES/kcm5_device_automounter.mo share/locale/ru/LC_MESSAGES/kcm5_joystick.mo share/locale/ru/LC_MESSAGES/kcm5_kded.mo share/locale/ru/LC_MESSAGES/kcm_activities5.mo share/locale/ru/LC_MESSAGES/kcm_autostart.mo share/locale/ru/LC_MESSAGES/kcm_baloofile.mo share/locale/ru/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ru/LC_MESSAGES/kcm_keys.mo share/locale/ru/LC_MESSAGES/kcm_launchfeedback.mo share/locale/ru/LC_MESSAGES/kcm_nightcolor.mo share/locale/ru/LC_MESSAGES/kcm_notifications.mo share/locale/ru/LC_MESSAGES/kcm_search.mo share/locale/ru/LC_MESSAGES/kcm_solid_actions.mo share/locale/ru/LC_MESSAGES/kcm_splashscreen.mo share/locale/ru/LC_MESSAGES/kcm_touchpad.mo share/locale/ru/LC_MESSAGES/kcm_users.mo share/locale/ru/LC_MESSAGES/kcm_workspace.mo share/locale/ru/LC_MESSAGES/kcmaccess.mo share/locale/ru/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/ru/LC_MESSAGES/knetattach5.mo share/locale/ru/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/ru/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/ru/LC_MESSAGES/plasma_runner_kwin.mo share/locale/ru/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/ru/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/ru/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/ru/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/ru/LC_MESSAGES/plasmaactivitymanager.mo share/locale/se/LC_MESSAGES/kaccess.mo share/locale/se/LC_MESSAGES/kcm5_componentchooser.mo share/locale/se/LC_MESSAGES/kcm5_joystick.mo share/locale/se/LC_MESSAGES/kcm5_kded.mo share/locale/se/LC_MESSAGES/kcm_desktoppaths.mo share/locale/se/LC_MESSAGES/kcm_launchfeedback.mo share/locale/se/LC_MESSAGES/kcmaccess.mo share/locale/se/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/se/LC_MESSAGES/knetattach5.mo share/locale/se/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/se/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/si/LC_MESSAGES/kaccess.mo share/locale/si/LC_MESSAGES/kcm5_componentchooser.mo share/locale/si/LC_MESSAGES/kcm5_device_automounter.mo share/locale/si/LC_MESSAGES/kcm5_joystick.mo share/locale/si/LC_MESSAGES/kcm5_kded.mo share/locale/si/LC_MESSAGES/kcm_autostart.mo share/locale/si/LC_MESSAGES/kcm_desktoppaths.mo share/locale/si/LC_MESSAGES/kcm_launchfeedback.mo share/locale/si/LC_MESSAGES/kcm_solid_actions.mo share/locale/si/LC_MESSAGES/kcmaccess.mo share/locale/si/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/si/LC_MESSAGES/knetattach5.mo share/locale/si/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/si/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/si/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/si/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/si/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/sk/LC_MESSAGES/kaccess.mo share/locale/sk/LC_MESSAGES/kcm5_componentchooser.mo share/locale/sk/LC_MESSAGES/kcm5_device_automounter.mo share/locale/sk/LC_MESSAGES/kcm5_joystick.mo share/locale/sk/LC_MESSAGES/kcm5_kded.mo share/locale/sk/LC_MESSAGES/kcm_activities5.mo share/locale/sk/LC_MESSAGES/kcm_autostart.mo share/locale/sk/LC_MESSAGES/kcm_baloofile.mo share/locale/sk/LC_MESSAGES/kcm_desktoppaths.mo share/locale/sk/LC_MESSAGES/kcm_keys.mo share/locale/sk/LC_MESSAGES/kcm_launchfeedback.mo share/locale/sk/LC_MESSAGES/kcm_nightcolor.mo share/locale/sk/LC_MESSAGES/kcm_notifications.mo share/locale/sk/LC_MESSAGES/kcm_search.mo share/locale/sk/LC_MESSAGES/kcm_solid_actions.mo share/locale/sk/LC_MESSAGES/kcm_splashscreen.mo share/locale/sk/LC_MESSAGES/kcm_touchpad.mo share/locale/sk/LC_MESSAGES/kcm_users.mo share/locale/sk/LC_MESSAGES/kcm_workspace.mo share/locale/sk/LC_MESSAGES/kcmaccess.mo share/locale/sk/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/sk/LC_MESSAGES/knetattach5.mo share/locale/sk/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/sk/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/sk/LC_MESSAGES/plasma_runner_kwin.mo share/locale/sk/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/sk/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/sk/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/sk/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/sk/LC_MESSAGES/plasmaactivitymanager.mo share/locale/sl/LC_MESSAGES/kaccess.mo share/locale/sl/LC_MESSAGES/kcm5_componentchooser.mo share/locale/sl/LC_MESSAGES/kcm5_device_automounter.mo share/locale/sl/LC_MESSAGES/kcm5_joystick.mo share/locale/sl/LC_MESSAGES/kcm5_kded.mo share/locale/sl/LC_MESSAGES/kcm_activities5.mo share/locale/sl/LC_MESSAGES/kcm_autostart.mo share/locale/sl/LC_MESSAGES/kcm_baloofile.mo share/locale/sl/LC_MESSAGES/kcm_desktoppaths.mo share/locale/sl/LC_MESSAGES/kcm_keys.mo share/locale/sl/LC_MESSAGES/kcm_launchfeedback.mo share/locale/sl/LC_MESSAGES/kcm_nightcolor.mo share/locale/sl/LC_MESSAGES/kcm_notifications.mo share/locale/sl/LC_MESSAGES/kcm_search.mo share/locale/sl/LC_MESSAGES/kcm_solid_actions.mo share/locale/sl/LC_MESSAGES/kcm_splashscreen.mo share/locale/sl/LC_MESSAGES/kcm_touchpad.mo share/locale/sl/LC_MESSAGES/kcm_users.mo share/locale/sl/LC_MESSAGES/kcm_workspace.mo share/locale/sl/LC_MESSAGES/kcmaccess.mo share/locale/sl/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/sl/LC_MESSAGES/knetattach5.mo share/locale/sl/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/sl/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/sl/LC_MESSAGES/plasma_runner_kwin.mo share/locale/sl/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/sl/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/sl/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/sl/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/sl/LC_MESSAGES/plasmaactivitymanager.mo share/locale/sq/LC_MESSAGES/kaccess.mo share/locale/sq/LC_MESSAGES/kcm5_componentchooser.mo share/locale/sq/LC_MESSAGES/kcm5_joystick.mo share/locale/sq/LC_MESSAGES/kcm5_kded.mo share/locale/sq/LC_MESSAGES/kcm_autostart.mo share/locale/sq/LC_MESSAGES/kcm_launchfeedback.mo share/locale/sq/LC_MESSAGES/kcm_solid_actions.mo share/locale/sq/LC_MESSAGES/kcmaccess.mo share/locale/sq/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/sq/LC_MESSAGES/knetattach5.mo share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/sr/LC_MESSAGES/kaccess.mo share/locale/sr/LC_MESSAGES/kcm5_componentchooser.mo share/locale/sr/LC_MESSAGES/kcm5_device_automounter.mo share/locale/sr/LC_MESSAGES/kcm5_joystick.mo share/locale/sr/LC_MESSAGES/kcm5_kded.mo share/locale/sr/LC_MESSAGES/kcm_activities5.mo share/locale/sr/LC_MESSAGES/kcm_autostart.mo share/locale/sr/LC_MESSAGES/kcm_baloofile.mo share/locale/sr/LC_MESSAGES/kcm_desktoppaths.mo share/locale/sr/LC_MESSAGES/kcm_launchfeedback.mo share/locale/sr/LC_MESSAGES/kcm_nightcolor.mo share/locale/sr/LC_MESSAGES/kcm_search.mo share/locale/sr/LC_MESSAGES/kcm_solid_actions.mo share/locale/sr/LC_MESSAGES/kcm_splashscreen.mo share/locale/sr/LC_MESSAGES/kcm_touchpad.mo share/locale/sr/LC_MESSAGES/kcm_workspace.mo share/locale/sr/LC_MESSAGES/kcmaccess.mo share/locale/sr/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/sr/LC_MESSAGES/knetattach5.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/sr/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/sr/LC_MESSAGES/plasma_runner_kwin.mo share/locale/sr/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/sr/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/sr/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/sr/LC_MESSAGES/plasmaactivitymanager.mo share/locale/sr/LC_SCRIPTS/kfontinst/kfontinst.js share/locale/sr@ijekavian/LC_MESSAGES/kaccess.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm5_componentchooser.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm5_device_automounter.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm5_joystick.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm5_kded.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_activities5.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_autostart.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_baloofile.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_desktoppaths.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_launchfeedback.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_nightcolor.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_search.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_solid_actions.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_splashscreen.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_touchpad.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_workspace.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmaccess.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/sr@ijekavian/LC_MESSAGES/knetattach5.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_kwin.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/sr@ijekavian/LC_MESSAGES/plasmaactivitymanager.mo share/locale/sr@ijekavian/LC_SCRIPTS/kfontinst/kfontinst.js share/locale/sr@ijekavianlatin/LC_MESSAGES/kaccess.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm5_componentchooser.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm5_device_automounter.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm5_joystick.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm5_kded.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_activities5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_autostart.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_baloofile.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_desktoppaths.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_launchfeedback.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_nightcolor.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_search.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_solid_actions.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_splashscreen.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_touchpad.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_workspace.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmaccess.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/knetattach5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_kwin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasmaactivitymanager.mo share/locale/sr@ijekavianlatin/LC_SCRIPTS/kfontinst/kfontinst.js share/locale/sr@latin/LC_MESSAGES/kaccess.mo share/locale/sr@latin/LC_MESSAGES/kcm5_componentchooser.mo share/locale/sr@latin/LC_MESSAGES/kcm5_device_automounter.mo share/locale/sr@latin/LC_MESSAGES/kcm5_joystick.mo share/locale/sr@latin/LC_MESSAGES/kcm5_kded.mo share/locale/sr@latin/LC_MESSAGES/kcm_activities5.mo share/locale/sr@latin/LC_MESSAGES/kcm_autostart.mo share/locale/sr@latin/LC_MESSAGES/kcm_baloofile.mo share/locale/sr@latin/LC_MESSAGES/kcm_desktoppaths.mo share/locale/sr@latin/LC_MESSAGES/kcm_launchfeedback.mo share/locale/sr@latin/LC_MESSAGES/kcm_nightcolor.mo share/locale/sr@latin/LC_MESSAGES/kcm_search.mo share/locale/sr@latin/LC_MESSAGES/kcm_solid_actions.mo share/locale/sr@latin/LC_MESSAGES/kcm_splashscreen.mo share/locale/sr@latin/LC_MESSAGES/kcm_touchpad.mo share/locale/sr@latin/LC_MESSAGES/kcm_workspace.mo share/locale/sr@latin/LC_MESSAGES/kcmaccess.mo share/locale/sr@latin/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/sr@latin/LC_MESSAGES/knetattach5.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_kwin.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/sr@latin/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/sr@latin/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/sr@latin/LC_MESSAGES/plasmaactivitymanager.mo share/locale/sr@latin/LC_SCRIPTS/kfontinst/kfontinst.js share/locale/ta/LC_MESSAGES/kaccess.mo share/locale/ta/LC_MESSAGES/kcm5_componentchooser.mo share/locale/ta/LC_MESSAGES/kcm5_joystick.mo share/locale/ta/LC_MESSAGES/kcm5_kded.mo share/locale/ta/LC_MESSAGES/kcm_autostart.mo share/locale/ta/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ta/LC_MESSAGES/kcm_launchfeedback.mo share/locale/ta/LC_MESSAGES/kcmaccess.mo share/locale/ta/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/ta/LC_MESSAGES/knetattach5.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/te/LC_MESSAGES/kaccess.mo share/locale/te/LC_MESSAGES/kcm5_componentchooser.mo share/locale/te/LC_MESSAGES/kcm5_joystick.mo share/locale/te/LC_MESSAGES/kcm5_kded.mo share/locale/te/LC_MESSAGES/kcm_autostart.mo share/locale/te/LC_MESSAGES/kcm_desktoppaths.mo share/locale/te/LC_MESSAGES/kcm_launchfeedback.mo share/locale/te/LC_MESSAGES/kcmaccess.mo share/locale/te/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/te/LC_MESSAGES/knetattach5.mo share/locale/te/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/te/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/te/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/te/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/tg/LC_MESSAGES/kaccess.mo share/locale/tg/LC_MESSAGES/kcm5_componentchooser.mo share/locale/tg/LC_MESSAGES/kcm5_joystick.mo share/locale/tg/LC_MESSAGES/kcm5_kded.mo share/locale/tg/LC_MESSAGES/kcm_activities5.mo share/locale/tg/LC_MESSAGES/kcm_autostart.mo share/locale/tg/LC_MESSAGES/kcm_baloofile.mo share/locale/tg/LC_MESSAGES/kcm_desktoppaths.mo share/locale/tg/LC_MESSAGES/kcm_launchfeedback.mo share/locale/tg/LC_MESSAGES/kcm_notifications.mo share/locale/tg/LC_MESSAGES/kcm_search.mo share/locale/tg/LC_MESSAGES/kcm_splashscreen.mo share/locale/tg/LC_MESSAGES/kcm_users.mo share/locale/tg/LC_MESSAGES/kcmaccess.mo share/locale/tg/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/tg/LC_MESSAGES/knetattach5.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/tg/LC_MESSAGES/plasma_runner_kwin.mo share/locale/tg/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/tg/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/tg/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/th/LC_MESSAGES/kaccess.mo share/locale/th/LC_MESSAGES/kcm5_componentchooser.mo share/locale/th/LC_MESSAGES/kcm5_device_automounter.mo share/locale/th/LC_MESSAGES/kcm5_joystick.mo share/locale/th/LC_MESSAGES/kcm5_kded.mo share/locale/th/LC_MESSAGES/kcm_autostart.mo share/locale/th/LC_MESSAGES/kcm_desktoppaths.mo share/locale/th/LC_MESSAGES/kcm_launchfeedback.mo share/locale/th/LC_MESSAGES/kcm_solid_actions.mo share/locale/th/LC_MESSAGES/kcmaccess.mo share/locale/th/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/th/LC_MESSAGES/knetattach5.mo share/locale/th/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/th/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/tr/LC_MESSAGES/kaccess.mo share/locale/tr/LC_MESSAGES/kcm5_componentchooser.mo share/locale/tr/LC_MESSAGES/kcm5_device_automounter.mo share/locale/tr/LC_MESSAGES/kcm5_joystick.mo share/locale/tr/LC_MESSAGES/kcm5_kded.mo share/locale/tr/LC_MESSAGES/kcm_activities5.mo share/locale/tr/LC_MESSAGES/kcm_autostart.mo share/locale/tr/LC_MESSAGES/kcm_baloofile.mo share/locale/tr/LC_MESSAGES/kcm_desktoppaths.mo share/locale/tr/LC_MESSAGES/kcm_launchfeedback.mo share/locale/tr/LC_MESSAGES/kcm_search.mo share/locale/tr/LC_MESSAGES/kcm_solid_actions.mo share/locale/tr/LC_MESSAGES/kcm_splashscreen.mo share/locale/tr/LC_MESSAGES/kcm_touchpad.mo share/locale/tr/LC_MESSAGES/kcm_workspace.mo share/locale/tr/LC_MESSAGES/kcmaccess.mo share/locale/tr/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/tr/LC_MESSAGES/knetattach5.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/tr/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/tr/LC_MESSAGES/plasma_runner_kwin.mo share/locale/tr/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/tr/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/tr/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/tr/LC_MESSAGES/plasmaactivitymanager.mo share/locale/ug/LC_MESSAGES/kaccess.mo share/locale/ug/LC_MESSAGES/kcm5_componentchooser.mo share/locale/ug/LC_MESSAGES/kcm5_device_automounter.mo share/locale/ug/LC_MESSAGES/kcm5_joystick.mo share/locale/ug/LC_MESSAGES/kcm5_kded.mo share/locale/ug/LC_MESSAGES/kcm_autostart.mo share/locale/ug/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ug/LC_MESSAGES/kcm_launchfeedback.mo share/locale/ug/LC_MESSAGES/kcm_solid_actions.mo share/locale/ug/LC_MESSAGES/kcmaccess.mo share/locale/ug/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/ug/LC_MESSAGES/knetattach5.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/ug/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/ug/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/uk/LC_MESSAGES/kaccess.mo share/locale/uk/LC_MESSAGES/kcm5_componentchooser.mo share/locale/uk/LC_MESSAGES/kcm5_device_automounter.mo share/locale/uk/LC_MESSAGES/kcm5_joystick.mo share/locale/uk/LC_MESSAGES/kcm5_kded.mo share/locale/uk/LC_MESSAGES/kcm_activities5.mo share/locale/uk/LC_MESSAGES/kcm_autostart.mo share/locale/uk/LC_MESSAGES/kcm_baloofile.mo share/locale/uk/LC_MESSAGES/kcm_desktoppaths.mo share/locale/uk/LC_MESSAGES/kcm_keys.mo share/locale/uk/LC_MESSAGES/kcm_launchfeedback.mo share/locale/uk/LC_MESSAGES/kcm_nightcolor.mo share/locale/uk/LC_MESSAGES/kcm_notifications.mo share/locale/uk/LC_MESSAGES/kcm_search.mo share/locale/uk/LC_MESSAGES/kcm_solid_actions.mo share/locale/uk/LC_MESSAGES/kcm_splashscreen.mo share/locale/uk/LC_MESSAGES/kcm_touchpad.mo share/locale/uk/LC_MESSAGES/kcm_users.mo share/locale/uk/LC_MESSAGES/kcm_workspace.mo share/locale/uk/LC_MESSAGES/kcmaccess.mo share/locale/uk/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/uk/LC_MESSAGES/knetattach5.mo share/locale/uk/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/uk/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/uk/LC_MESSAGES/plasma_runner_kwin.mo share/locale/uk/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/uk/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/uk/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/uk/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/uk/LC_MESSAGES/plasmaactivitymanager.mo share/locale/uz/LC_MESSAGES/kaccess.mo share/locale/uz/LC_MESSAGES/kcm5_componentchooser.mo share/locale/uz/LC_MESSAGES/kcm5_joystick.mo share/locale/uz/LC_MESSAGES/kcm5_kded.mo share/locale/uz/LC_MESSAGES/kcm_desktoppaths.mo share/locale/uz/LC_MESSAGES/kcm_launchfeedback.mo share/locale/uz/LC_MESSAGES/kcmaccess.mo share/locale/uz/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/uz/LC_MESSAGES/knetattach5.mo share/locale/uz/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/uz@cyrillic/LC_MESSAGES/kaccess.mo share/locale/uz@cyrillic/LC_MESSAGES/kcm5_componentchooser.mo share/locale/uz@cyrillic/LC_MESSAGES/kcm5_joystick.mo share/locale/uz@cyrillic/LC_MESSAGES/kcm5_kded.mo share/locale/uz@cyrillic/LC_MESSAGES/kcm_desktoppaths.mo share/locale/uz@cyrillic/LC_MESSAGES/kcm_launchfeedback.mo share/locale/uz@cyrillic/LC_MESSAGES/kcmaccess.mo share/locale/uz@cyrillic/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/uz@cyrillic/LC_MESSAGES/knetattach5.mo share/locale/uz@cyrillic/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/vi/LC_MESSAGES/kaccess.mo share/locale/vi/LC_MESSAGES/kcm5_componentchooser.mo share/locale/vi/LC_MESSAGES/kcm5_joystick.mo share/locale/vi/LC_MESSAGES/kcm5_kded.mo share/locale/vi/LC_MESSAGES/kcm_desktoppaths.mo share/locale/vi/LC_MESSAGES/kcm_launchfeedback.mo share/locale/vi/LC_MESSAGES/kcmaccess.mo share/locale/vi/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/vi/LC_MESSAGES/knetattach5.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/wa/LC_MESSAGES/kaccess.mo share/locale/wa/LC_MESSAGES/kcm5_componentchooser.mo share/locale/wa/LC_MESSAGES/kcm5_device_automounter.mo share/locale/wa/LC_MESSAGES/kcm5_joystick.mo share/locale/wa/LC_MESSAGES/kcm5_kded.mo share/locale/wa/LC_MESSAGES/kcm_autostart.mo share/locale/wa/LC_MESSAGES/kcm_desktoppaths.mo share/locale/wa/LC_MESSAGES/kcm_launchfeedback.mo share/locale/wa/LC_MESSAGES/kcm_solid_actions.mo share/locale/wa/LC_MESSAGES/kcmaccess.mo share/locale/wa/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/wa/LC_MESSAGES/knetattach5.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/wa/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/xh/LC_MESSAGES/kaccess.mo share/locale/xh/LC_MESSAGES/kcm5_componentchooser.mo share/locale/xh/LC_MESSAGES/kcm5_kded.mo share/locale/xh/LC_MESSAGES/kcm_desktoppaths.mo share/locale/xh/LC_MESSAGES/kcm_launchfeedback.mo share/locale/xh/LC_MESSAGES/kcmaccess.mo share/locale/xh/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/xh/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/zh_CN/LC_MESSAGES/kaccess.mo share/locale/zh_CN/LC_MESSAGES/kcm5_componentchooser.mo share/locale/zh_CN/LC_MESSAGES/kcm5_device_automounter.mo share/locale/zh_CN/LC_MESSAGES/kcm5_joystick.mo share/locale/zh_CN/LC_MESSAGES/kcm5_kded.mo share/locale/zh_CN/LC_MESSAGES/kcm_activities5.mo share/locale/zh_CN/LC_MESSAGES/kcm_autostart.mo share/locale/zh_CN/LC_MESSAGES/kcm_baloofile.mo share/locale/zh_CN/LC_MESSAGES/kcm_desktoppaths.mo share/locale/zh_CN/LC_MESSAGES/kcm_keys.mo share/locale/zh_CN/LC_MESSAGES/kcm_launchfeedback.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_search.mo share/locale/zh_CN/LC_MESSAGES/kcm_solid_actions.mo share/locale/zh_CN/LC_MESSAGES/kcm_splashscreen.mo share/locale/zh_CN/LC_MESSAGES/kcm_touchpad.mo share/locale/zh_CN/LC_MESSAGES/kcm_users.mo share/locale/zh_CN/LC_MESSAGES/kcm_workspace.mo share/locale/zh_CN/LC_MESSAGES/kcmaccess.mo share/locale/zh_CN/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/zh_CN/LC_MESSAGES/knetattach5.mo share/locale/zh_CN/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_kwin.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/zh_CN/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/zh_CN/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/zh_CN/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/zh_CN/LC_MESSAGES/plasmaactivitymanager.mo share/locale/zh_TW/LC_MESSAGES/kaccess.mo share/locale/zh_TW/LC_MESSAGES/kcm5_componentchooser.mo share/locale/zh_TW/LC_MESSAGES/kcm5_device_automounter.mo share/locale/zh_TW/LC_MESSAGES/kcm5_joystick.mo share/locale/zh_TW/LC_MESSAGES/kcm5_kded.mo share/locale/zh_TW/LC_MESSAGES/kcm_activities5.mo share/locale/zh_TW/LC_MESSAGES/kcm_autostart.mo share/locale/zh_TW/LC_MESSAGES/kcm_baloofile.mo share/locale/zh_TW/LC_MESSAGES/kcm_desktoppaths.mo share/locale/zh_TW/LC_MESSAGES/kcm_launchfeedback.mo share/locale/zh_TW/LC_MESSAGES/kcm_nightcolor.mo share/locale/zh_TW/LC_MESSAGES/kcm_notifications.mo share/locale/zh_TW/LC_MESSAGES/kcm_search.mo share/locale/zh_TW/LC_MESSAGES/kcm_solid_actions.mo share/locale/zh_TW/LC_MESSAGES/kcm_splashscreen.mo share/locale/zh_TW/LC_MESSAGES/kcm_touchpad.mo share/locale/zh_TW/LC_MESSAGES/kcm_workspace.mo share/locale/zh_TW/LC_MESSAGES/kcmaccess.mo share/locale/zh_TW/LC_MESSAGES/kcmformats.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/kcmsmserver.mo share/locale/zh_TW/LC_MESSAGES/knetattach5.mo share/locale/zh_TW/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_kwin.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/zh_TW/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/zh_TW/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/zh_TW/LC_MESSAGES/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.desktop.appdata.xml share/metainfo/org.kde.plasma.desktop.appmenubar.appdata.xml share/metainfo/org.kde.plasma.desktop.defaultPanel.appdata.xml share/metainfo/org.kde.plasma.desktop.emptyPanel.appdata.xml share/metainfo/org.kde.plasma.folder.appdata.xml share/metainfo/org.kde.plasma.icontasks.appdata.xml share/metainfo/org.kde.plasma.kicker.appdata.xml share/metainfo/org.kde.plasma.kickoff.appdata.xml share/metainfo/org.kde.plasma.kimpanel.appdata.xml share/metainfo/org.kde.plasma.minimizeall.appdata.xml share/metainfo/org.kde.plasma.pager.appdata.xml share/metainfo/org.kde.plasma.showActivityManager.appdata.xml share/metainfo/org.kde.plasma.showdesktop.appdata.xml share/metainfo/org.kde.plasma.taskmanager.appdata.xml share/metainfo/org.kde.plasma.trash.appdata.xml share/metainfo/org.kde.plasma.windowlist.appdata.xml share/metainfo/org.kde.plasmashell.metainfo.xml share/plasma/desktoptheme/default/icons/touchpad.svg share/plasma/layout-templates/org.kde.plasma.desktop.appmenubar/contents/layout.js share/plasma/layout-templates/org.kde.plasma.desktop.appmenubar/metadata.desktop share/plasma/layout-templates/org.kde.plasma.desktop.appmenubar/metadata.json share/plasma/layout-templates/org.kde.plasma.desktop.defaultPanel/contents/layout.js share/plasma/layout-templates/org.kde.plasma.desktop.defaultPanel/metadata.desktop share/plasma/layout-templates/org.kde.plasma.desktop.defaultPanel/metadata.json share/plasma/layout-templates/org.kde.plasma.desktop.emptyPanel/contents/layout.js share/plasma/layout-templates/org.kde.plasma.desktop.emptyPanel/metadata.desktop share/plasma/layout-templates/org.kde.plasma.desktop.emptyPanel/metadata.json share/plasma/packages/org.kde.desktoptoolbox/contents/config/main.xml share/plasma/packages/org.kde.desktoptoolbox/contents/ui/ToolBoxButton.qml share/plasma/packages/org.kde.desktoptoolbox/contents/ui/ToolBoxRoot.qml share/plasma/packages/org.kde.desktoptoolbox/metadata.desktop share/plasma/packages/org.kde.desktoptoolbox/metadata.json share/plasma/packages/org.kde.paneltoolbox/contents/ui/main.qml share/plasma/packages/org.kde.paneltoolbox/metadata.desktop share/plasma/packages/org.kde.paneltoolbox/metadata.json share/plasma/plasmoids/org.kde.desktopcontainment/contents/config/config.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/config/main.xml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/ActionButton.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/BackButtonItem.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/BusyOverlay.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/CompactRepresentation.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/ConfigFilter.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/ConfigIcons.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/ConfigLocation.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/ConfigOverlay.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/FolderItemActionButton.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/FolderItemDelegate.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/FolderItemPreviewPluginsDialog.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/FolderView.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/FolderViewDialog.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/FolderViewDropArea.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/FolderViewLayer.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/code/FolderTools.js share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/main.qml share/plasma/plasmoids/org.kde.desktopcontainment/metadata.desktop share/plasma/plasmoids/org.kde.desktopcontainment/metadata.json share/plasma/plasmoids/org.kde.panel/contents/config/main.xml share/plasma/plasmoids/org.kde.panel/contents/ui/ConfigOverlay.qml share/plasma/plasmoids/org.kde.panel/contents/ui/LayoutManager.js share/plasma/plasmoids/org.kde.panel/contents/ui/main.qml share/plasma/plasmoids/org.kde.panel/metadata.desktop share/plasma/plasmoids/org.kde.panel/metadata.json share/plasma/plasmoids/org.kde.panel/plasma-containment-panel.desktop share/plasma/plasmoids/org.kde.plasma.folder/metadata.desktop share/plasma/plasmoids/org.kde.plasma.folder/metadata.json share/plasma/plasmoids/org.kde.plasma.icontasks/metadata.desktop share/plasma/plasmoids/org.kde.plasma.icontasks/metadata.json share/plasma/plasmoids/org.kde.plasma.kicker/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/ActionMenu.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/CompactRepresentation.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/ConfigGeneral.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/DashboardRepresentation.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/DashboardTabBar.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/DashboardTabButton.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/ItemGridDelegate.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/ItemGridView.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/ItemListDelegate.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/ItemListDialog.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/ItemListView.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/ItemMultiGridView.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/MenuRepresentation.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/RunnerResultsList.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/SideBarItem.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/SideBarSection.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/code/tools.js share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.kicker/metadata.desktop share/plasma/plasmoids/org.kde.plasma.kicker/metadata.json share/plasma/plasmoids/org.kde.plasma.kickoff/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/ActionMenu.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/ApplicationsView.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/BaseView.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/Breadcrumb.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/ComputerView.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/ConfigButtons.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/ConfigGeneral.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/FavoritesView.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/FullRepresentation.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/Header.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/Kickoff.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/KickoffButton.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/KickoffConfigurationButton.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/KickoffHighlight.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/KickoffItem.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/KickoffListView.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/LeaveView.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/OftenUsedView.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/RecentlyUsedView.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/SearchView.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/SectionDelegate.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/code/tools.js share/plasma/plasmoids/org.kde.plasma.kickoff/metadata.desktop share/plasma/plasmoids/org.kde.plasma.kickoff/metadata.json share/plasma/plasmoids/org.kde.plasma.kimpanel/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.kimpanel/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.kimpanel/contents/ui/ActionMenu.qml share/plasma/plasmoids/org.kde.plasma.kimpanel/contents/ui/CandidateHighlight.qml share/plasma/plasmoids/org.kde.plasma.kimpanel/contents/ui/ConfigAppearance.qml share/plasma/plasmoids/org.kde.plasma.kimpanel/contents/ui/ContextMenu.qml share/plasma/plasmoids/org.kde.plasma.kimpanel/contents/ui/InputPanel.qml share/plasma/plasmoids/org.kde.plasma.kimpanel/contents/ui/StatusIcon.qml share/plasma/plasmoids/org.kde.plasma.kimpanel/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.kimpanel/metadata.desktop share/plasma/plasmoids/org.kde.plasma.kimpanel/metadata.json share/plasma/plasmoids/org.kde.plasma.minimizeall/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.minimizeall/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.minimizeall/metadata.desktop share/plasma/plasmoids/org.kde.plasma.minimizeall/metadata.json share/plasma/plasmoids/org.kde.plasma.pager/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.pager/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.pager/contents/ui/configGeneral.qml share/plasma/plasmoids/org.kde.plasma.pager/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.pager/metadata.desktop share/plasma/plasmoids/org.kde.plasma.pager/metadata.json share/plasma/plasmoids/org.kde.plasma.showActivityManager/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.showActivityManager/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.showActivityManager/contents/ui/ConfigAppearance.qml share/plasma/plasmoids/org.kde.plasma.showActivityManager/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.showActivityManager/metadata.desktop share/plasma/plasmoids/org.kde.plasma.showActivityManager/metadata.json share/plasma/plasmoids/org.kde.plasma.showdesktop/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.showdesktop/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.showdesktop/metadata.desktop share/plasma/plasmoids/org.kde.plasma.showdesktop/metadata.json share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/AudioStream.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/Badge.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/ConfigAppearance.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/ConfigBehavior.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/ContextMenu.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/GroupDialog.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/GroupExpanderOverlay.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/MouseHandler.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/PipeWireThumbnail.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/PulseAudio.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/ScrollableTextWrapper.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/Task.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/TaskBadgeOverlay.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/TaskList.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/TaskProgressOverlay.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/ToolTipDelegate.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/ToolTipInstance.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/ToolTipWindowMouseArea.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/code/layout.js share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/code/tools.js share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/metadata.desktop share/plasma/plasmoids/org.kde.plasma.taskmanager/metadata.json share/plasma/plasmoids/org.kde.plasma.trash/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.trash/metadata.desktop share/plasma/plasmoids/org.kde.plasma.trash/metadata.json share/plasma/plasmoids/org.kde.plasma.windowlist/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.windowlist/metadata.desktop share/plasma/plasmoids/org.kde.plasma.windowlist/metadata.json share/plasma/plasmoids/touchpad/contents/ui/touchpad.qml share/plasma/plasmoids/touchpad/metadata.desktop share/plasma/plasmoids/touchpad/metadata.json share/plasma/services/touchpad.operations share/plasma/shells/org.kde.plasma.desktop/contents/InteractiveConsole.qml share/plasma/shells/org.kde.plasma.desktop/contents/activitymanager/ActivityItem.qml share/plasma/shells/org.kde.plasma.desktop/contents/activitymanager/ActivityList.qml share/plasma/shells/org.kde.plasma.desktop/contents/activitymanager/ActivityManager.qml share/plasma/shells/org.kde.plasma.desktop/contents/activitymanager/Heading.qml share/plasma/shells/org.kde.plasma.desktop/contents/activitymanager/StoppedActivityItem.qml share/plasma/shells/org.kde.plasma.desktop/contents/activitymanager/TaskDropArea.qml share/plasma/shells/org.kde.plasma.desktop/contents/activitymanager/WindowPreview.qml share/plasma/shells/org.kde.plasma.desktop/contents/activitymanager/static.js share/plasma/shells/org.kde.plasma.desktop/contents/applet/AppletError.qml share/plasma/shells/org.kde.plasma.desktop/contents/applet/CompactApplet.qml share/plasma/shells/org.kde.plasma.desktop/contents/applet/DefaultCompactRepresentation.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/AboutPlugin.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/AppletConfiguration.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/ConfigCategoryDelegate.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/ConfigurationContainmentActions.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/ConfigurationContainmentAppearance.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/ConfigurationKcmPage.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/ConfigurationShortcuts.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/ContainmentConfiguration.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/MouseEventInputButton.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/PanelConfiguration.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/panelconfiguration/EdgeHandle.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/panelconfiguration/MoreSettingsMenu.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/panelconfiguration/Ruler.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/panelconfiguration/SliderHandle.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/panelconfiguration/ToolBar.qml share/plasma/shells/org.kde.plasma.desktop/contents/defaults share/plasma/shells/org.kde.plasma.desktop/contents/explorer/AppletAlternatives.qml share/plasma/shells/org.kde.plasma.desktop/contents/explorer/AppletDelegate.qml share/plasma/shells/org.kde.plasma.desktop/contents/explorer/Tooltip.qml share/plasma/shells/org.kde.plasma.desktop/contents/explorer/WidgetExplorer.qml share/plasma/shells/org.kde.plasma.desktop/contents/layout.js share/plasma/shells/org.kde.plasma.desktop/contents/updates/maintain_existing_desktop_icon_sizes.js share/plasma/shells/org.kde.plasma.desktop/contents/updates/move_desktop_layout_config.js share/plasma/shells/org.kde.plasma.desktop/contents/updates/obsolete_kickoffrc.js share/plasma/shells/org.kde.plasma.desktop/contents/updates/unlock_widgets.js share/plasma/shells/org.kde.plasma.desktop/contents/views/Desktop.qml share/plasma/shells/org.kde.plasma.desktop/contents/views/Panel.qml share/plasma/shells/org.kde.plasma.desktop/metadata.desktop share/plasma/shells/org.kde.plasma.desktop/metadata.json share/polkit-1/actions/org.kde.kcontrol.kcmclock.policy share/qlogging-categories5/kcmkeys.categories share/qlogging-categories5/kcmusers.categories share/solid/devices/solid-device-Battery.desktop share/solid/devices/solid-device-Block.desktop share/solid/devices/solid-device-Camera.desktop share/solid/devices/solid-device-OpticalDisc.desktop share/solid/devices/solid-device-OpticalDrive.desktop share/solid/devices/solid-device-PortableMediaPlayer.desktop share/solid/devices/solid-device-Processor.desktop share/solid/devices/solid-device-StorageAccess.desktop share/solid/devices/solid-device-StorageDrive.desktop share/solid/devices/solid-device-StorageVolume.desktop Index: head/x11/plasma5-plasma-integration/distinfo =================================================================== --- head/x11/plasma5-plasma-integration/distinfo (revision 553023) +++ head/x11/plasma5-plasma-integration/distinfo (revision 553024) @@ -1,3 +1,3 @@ -TIMESTAMP = 1602198227 -SHA256 (KDE/plasma/5.20.0/plasma-integration-5.20.0.tar.xz) = a6382a4330d2a2117578c2e2d42e4e7588622c522e8cbfe4c537918680479e2b -SIZE (KDE/plasma/5.20.0/plasma-integration-5.20.0.tar.xz) = 59856 +TIMESTAMP = 1603378904 +SHA256 (KDE/plasma/5.20.1/plasma-integration-5.20.1.tar.xz) = 0887c4f04d040cdb14c4e1f52911a72bba037838b2a610897d6fe6a2b82958eb +SIZE (KDE/plasma/5.20.1/plasma-integration-5.20.1.tar.xz) = 59956 Index: head/x11/plasma5-plasma-workspace/Makefile =================================================================== --- head/x11/plasma5-plasma-workspace/Makefile (revision 553023) +++ head/x11/plasma5-plasma-workspace/Makefile (revision 553024) @@ -1,56 +1,55 @@ # $FreeBSD$ PORTNAME= plasma-workspace -DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 +DISTVERSION= ${KDE_PLASMA_VERSION}.1 CATEGORIES= x11 kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 Plasma workspace LIB_DEPENDS= libcln.so:math/cln \ libdbusmenu-qt5.so:devel/libdbusmenu-qt \ libfreetype.so:print/freetype2 \ libfontconfig.so:x11-fonts/fontconfig \ libqalculate.so:math/libqalculate \ libwayland-client.so:graphics/wayland \ libxcb-image.so:x11/xcb-util-image \ libxcb-util.so:x11/xcb-util RUN_DEPENDS= ck-launch-session:sysutils/consolekit2\ iceauth:x11/iceauth \ xsetroot:x11/xsetroot \ xset:x11/xset \ xmessage:x11/xmessage \ ${LOCALBASE}/libdata/pkgconfig/xkeyboard-config.pc:x11/xkeyboard-config \ iso-codes>=0:misc/iso-codes \ ${LOCALBASE}/bin/genv:sysutils/coreutils USES= cmake compiler:c++11-lib cpe desktop-file-utils gettext kde:5 pkgconfig \ qt:5 tar:xz xorg USE_KDE= activities activities-stats activitymanagerd attica archive auth baloo bookmarks \ codecs completion config configwidgets coreaddons crash \ dbusaddons doctools emoticons filemetadata globalaccel \ guiaddons holidays i18n iconthemes idletime init itemmodels \ itemviews jobwidgets js jsembed kcmutils kdeclarative \ kdelibs4support kdesu kdewebkit kio kscreenlocker \ notifications package pty kwin libkscreen libksysguard \ newstuff notifyconfig parts people plasma-framework \ plasma-integration prison runner service solid sonnet \ texteditor textwidgets unitconversion wallet wayland \ widgetsaddons windowsystem xmlgui xmlrpcclient \ breeze_run breeze-icons_run kquickcharts_run oxygen-icons5_run \ kded_run milou_run USE_QT= concurrent core declarative dbus graphicaleffects gui network phonon4 \ printsupport qdbus quickcontrols_run script svg sql \ testlib webkit widgets x11extras xml \ paths_run \ buildtools_build qmake_build USE_XORG= ice sm x11 xau xcb xcomposite xcursor xext xfixes xft xkbfile xrender xtst CMAKE_OFF= BUILD_TESTING # In 5.15 a file was moved from x11/plasma5-plasma-desktop to x11/plasma5-plasma-workspace: CONFLICTS_INSTALL= plasma5-plasma-desktop-5.14.* .include Index: head/x11/plasma5-plasma-workspace/distinfo =================================================================== --- head/x11/plasma5-plasma-workspace/distinfo (revision 553023) +++ head/x11/plasma5-plasma-workspace/distinfo (revision 553024) @@ -1,3 +1,3 @@ -TIMESTAMP = 1602521947 -SHA256 (KDE/plasma/5.20.0/plasma-workspace-5.20.0.tar.xz) = 20fc599fdfc6477c7315fdf3059bae7ac4843294e550a8d18b6cf1af2ed2b2ca -SIZE (KDE/plasma/5.20.0/plasma-workspace-5.20.0.tar.xz) = 8991780 +TIMESTAMP = 1603386432 +SHA256 (KDE/plasma/5.20.1/plasma-workspace-5.20.1.1.tar.xz) = 75b625dc705ec72c374dbcdb4c359ce199a33dea4af72dbf45d3830e375439a6 +SIZE (KDE/plasma/5.20.1/plasma-workspace-5.20.1.1.tar.xz) = 8994820 Index: head/x11/plasma5-plasma-workspace/pkg-plist =================================================================== --- head/x11/plasma5-plasma-workspace/pkg-plist (revision 553023) +++ head/x11/plasma5-plasma-workspace/pkg-plist (revision 553024) @@ -1,5693 +1,5695 @@ bin/gmenudbusmenuproxy bin/kcminit bin/kcminit_startup bin/kcolorschemeeditor bin/kfontinst bin/kfontview bin/klipper bin/krdb bin/krunner bin/ksmserver bin/ksplashqml bin/lookandfeeltool bin/plasma-shutdown bin/plasma_session bin/plasma_waitforname bin/plasmashell bin/plasmawindowed bin/startplasma-wayland bin/startplasma-x11 bin/systemmonitor bin/xembedsniproxy etc/xdg/autostart/gmenudbusmenuproxy.desktop etc/xdg/autostart/klipper.desktop etc/xdg/autostart/org.kde.plasmashell.desktop etc/xdg/autostart/xembedsniproxy.desktop etc/xdg/plasmanotifyrc etc/xdg/taskmanagerrulesrc include/colorcorrect/colorcorrect_export.h include/colorcorrect/colorcorrectconstants.h include/colorcorrect/compositorcoloradaptor.h include/colorcorrect/geolocator.h include/kworkspace5/config-libkworkspace.h include/kworkspace5/kdisplaymanager.h include/kworkspace5/kworkspace.h include/kworkspace5/kworkspace_export.h include/kworkspace5/sessionmanagement.h include/kworkspace5/updatelaunchenvjob.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/plasma/weather/ion.h include/plasma/weather/ion_export.h include/taskmanager/abstracttasksmodel.h include/taskmanager/abstracttasksmodeliface.h include/taskmanager/abstracttasksproxymodeliface.h include/taskmanager/abstractwindowtasksmodel.h include/taskmanager/activityinfo.h include/taskmanager/concatenatetasksproxymodel.h include/taskmanager/flattentaskgroupsproxymodel.h include/taskmanager/launchertasksmodel.h include/taskmanager/startuptasksmodel.h include/taskmanager/taskfilterproxymodel.h include/taskmanager/taskgroupingproxymodel.h include/taskmanager/taskmanager_export.h include/taskmanager/tasksmodel.h include/taskmanager/tasktools.h include/taskmanager/virtualdesktopinfo.h include/taskmanager/waylandtasksmodel.h include/taskmanager/windowtasksmodel.h include/taskmanager/xwindowtasksmodel.h lib/cmake/KRunnerAppDBusInterface/KRunnerAppDBusInterfaceConfig.cmake lib/cmake/KSMServerDBusInterface/KSMServerDBusInterfaceConfig.cmake lib/cmake/LibColorCorrect/LibColorCorrectConfig.cmake lib/cmake/LibColorCorrect/LibColorCorrectConfigVersion.cmake lib/cmake/LibColorCorrect/LibColorCorrectLibraryTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/LibColorCorrect/LibColorCorrectLibraryTargets.cmake lib/cmake/LibKWorkspace/LibKWorkspaceConfig.cmake lib/cmake/LibKWorkspace/LibKWorkspaceConfigVersion.cmake lib/cmake/LibKWorkspace/LibKWorkspaceLibraryTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/LibKWorkspace/LibKWorkspaceLibraryTargets.cmake lib/cmake/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/krdb_clearlibrarypath lib/kconf_update_bin/krunnerglobalshortcuts lib/kconf_update_bin/krunnerplugins lib/libcolorcorrect.so lib/libcolorcorrect.so.%%KDE_PLASMA_VERSION%% lib/libcolorcorrect.so.5 lib/libexec/baloorunner lib/libexec/kauth/fontinst lib/libexec/kauth/fontinst_helper lib/libexec/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/libexec/startplasma-waylandsession lib/libkdeinit5_kcminit.so lib/libkdeinit5_kcminit_startup.so lib/libkdeinit5_klipper.so lib/libkfontinst.so lib/libkfontinst.so.%%KDE_PLASMA_VERSION%% lib/libkfontinst.so.5 lib/libkfontinstui.so lib/libkfontinstui.so.5 lib/libkfontinstui.so.%%KDE_PLASMA_VERSION%% lib/libkworkspace5.so lib/libkworkspace5.so.%%KDE_PLASMA_VERSION%% lib/libkworkspace5.so.5 lib/libnotificationmanager.so lib/libnotificationmanager.so.%%KDE_PLASMA_VERSION%% lib/libnotificationmanager.so.1 lib/libtaskmanager.so lib/libtaskmanager.so.%%KDE_PLASMA_VERSION%% lib/libtaskmanager.so.6 lib/libweather_ion.so lib/libweather_ion.so.7 lib/libweather_ion.so.7.0.0 %%QT_PLUGINDIR%%/fontthumbnail.so %%QT_PLUGINDIR%%/kcm_fontinst.so %%QT_PLUGINDIR%%/kcm_krunner_kill.so %%QT_PLUGINDIR%%/kcms/kcm_colors.so %%QT_PLUGINDIR%%/kcms/kcm_cursortheme.so %%QT_PLUGINDIR%%/kcms/kcm_desktoptheme.so %%QT_PLUGINDIR%%/kcms/kcm_fonts.so %%QT_PLUGINDIR%%/kcms/kcm_icons.so %%QT_PLUGINDIR%%/kcms/kcm_lookandfeel.so %%QT_PLUGINDIR%%/kcms/kcm_style.so %%QT_PLUGINDIR%%/kcms/kcm_translations.so %%QT_PLUGINDIR%%/kf5/kded/appmenu.so %%QT_PLUGINDIR%%/kf5/kded/colorcorrectlocationupdater.so %%QT_PLUGINDIR%%/kf5/kded/desktopnotifier.so %%QT_PLUGINDIR%%/kf5/kded/freespacenotifier.so %%QT_PLUGINDIR%%/kf5/kded/ksysguard.so %%QT_PLUGINDIR%%/kf5/kded/ktimezoned.so %%QT_PLUGINDIR%%/kf5/kded/solidautoeject.so %%QT_PLUGINDIR%%/kf5/kded/soliduiserver.so %%QT_PLUGINDIR%%/kf5/kded/statusnotifierwatcher.so %%QT_PLUGINDIR%%/kf5/kio/applications.so %%QT_PLUGINDIR%%/kf5/kio/desktop.so %%QT_PLUGINDIR%%/kf5/krunner/krunner_activities.so %%QT_PLUGINDIR%%/kf5/krunner/krunner_bookmarksrunner.so %%QT_PLUGINDIR%%/kf5/krunner/krunner_calculatorrunner.so %%QT_PLUGINDIR%%/kf5/krunner/krunner_kill.so %%QT_PLUGINDIR%%/kf5/krunner/krunner_locations.so %%QT_PLUGINDIR%%/kf5/krunner/krunner_placesrunner.so %%QT_PLUGINDIR%%/kf5/krunner/krunner_powerdevil.so %%QT_PLUGINDIR%%/kf5/krunner/krunner_recentdocuments.so %%QT_PLUGINDIR%%/kf5/krunner/krunner_services.so %%QT_PLUGINDIR%%/kf5/krunner/krunner_sessions.so %%QT_PLUGINDIR%%/kf5/krunner/krunner_shell.so %%QT_PLUGINDIR%%/kf5/krunner/krunner_webshortcuts.so %%QT_PLUGINDIR%%/kf5/krunner/krunner_windowedwidgets.so %%QT_PLUGINDIR%%/kf5/krunner/krunner_windows.so %%QT_PLUGINDIR%%/kfontviewpart.so %%QT_PLUGINDIR%%/kio_fonts.so %%QT_PLUGINDIR%%/kpackage/packagestructure/plasma_packagestructure_layoutemplate.so %%QT_PLUGINDIR%%/kpackage/packagestructure/plasma_packagestructure_lookandfeel.so %%QT_PLUGINDIR%%/kpackage/packagestructure/plasma_packagestructure_plasmashell.so %%QT_PLUGINDIR%%/kpackage/packagestructure/plasma_packagestructure_wallpaper.so %%QT_PLUGINDIR%%/kpackage/packagestructure/plasma_packagestructure_wallpaperimages.so %%QT_PLUGINDIR%%/phonon_platform/kde.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.systemtray.so %%QT_PLUGINDIR%%/plasma/applets/plasma_applet_appmenu.so %%QT_PLUGINDIR%%/plasma/applets/plasma_applet_calendar.so %%QT_PLUGINDIR%%/plasma/applets/plasma_applet_icon.so %%QT_PLUGINDIR%%/plasma/applets/plasma_applet_notifications.so %%QT_PLUGINDIR%%/plasma/applets/plasma_applet_systemmonitor.so %%QT_PLUGINDIR%%/plasma/containmentactions/plasma_containmentactions_applauncher.so %%QT_PLUGINDIR%%/plasma/containmentactions/plasma_containmentactions_contextmenu.so %%QT_PLUGINDIR%%/plasma/containmentactions/plasma_containmentactions_paste.so %%QT_PLUGINDIR%%/plasma/containmentactions/plasma_containmentactions_switchdesktop.so %%QT_PLUGINDIR%%/plasma/containmentactions/plasma_containmentactions_switchwindow.so %%QT_PLUGINDIR%%/plasma/dataengine/ion_bbcukmet.so %%QT_PLUGINDIR%%/plasma/dataengine/ion_envcan.so %%QT_PLUGINDIR%%/plasma/dataengine/ion_noaa.so %%QT_PLUGINDIR%%/plasma/dataengine/ion_wettercom.so %%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_activities.so %%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_applicationjobs.so %%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_apps.so %%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_clipboard.so %%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_devicenotifications.so %%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_dict.so %%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_executable.so %%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_favicons.so %%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_filebrowser.so %%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_hotplug.so %%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_keystate.so %%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_mouse.so %%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_mpris2.so %%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_notifications.so %%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_packagekit.so %%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_places.so %%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_powermanagement.so %%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_soliddevice.so %%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_statusnotifieritem.so %%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_systemmonitor.so %%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_time.so %%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_weather.so %%QT_PLUGINDIR%%/plasma_containmentactions_switchactivity.so %%QT_PLUGINDIR%%/plasmacalendarplugins/holidays/HolidaysConfig.qml %%QT_PLUGINDIR%%/plasmacalendarplugins/holidaysevents.so %%QT_QMLDIR%%/org/kde/colorcorrect/libcolorcorrectplugin.so %%QT_QMLDIR%%/org/kde/colorcorrect/qmldir %%QT_QMLDIR%%/org/kde/holidayeventshelperplugin/libholidayeventshelperplugin.so %%QT_QMLDIR%%/org/kde/holidayeventshelperplugin/qmldir %%QT_QMLDIR%%/org/kde/notificationmanager/libnotificationmanagerplugin.so %%QT_QMLDIR%%/org/kde/notificationmanager/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/appmenu/libappmenuplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/appmenu/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/sessions/libsessionsprivateplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/sessions/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/shell/libplasmashellprivateplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/shell/qmldir %%QT_QMLDIR%%/org/kde/plasma/wallpapers/image/libplasma_wallpaper_imageplugin.so %%QT_QMLDIR%%/org/kde/plasma/wallpapers/image/qmldir %%QT_QMLDIR%%/org/kde/plasma/workspace/components/BatteryIcon.qml %%QT_QMLDIR%%/org/kde/plasma/workspace/components/qmldir %%QT_QMLDIR%%/org/kde/plasma/workspace/keyboardlayout/libkeyboardlayoutplugin.so %%QT_QMLDIR%%/org/kde/plasma/workspace/keyboardlayout/qmldir %%QT_QMLDIR%%/org/kde/taskmanager/libtaskmanagerplugin.so %%QT_QMLDIR%%/org/kde/taskmanager/qmldir share/applications/org.kde.kcolorschemeeditor.desktop share/applications/org.kde.kfontview.desktop share/applications/org.kde.klipper.desktop share/applications/org.kde.plasmashell.desktop share/applications/org.kde.systemmonitor.desktop share/applications/plasma-windowed.desktop share/config.kcfg/colorssettings.kcfg share/config.kcfg/cursorthemesettings.kcfg share/config.kcfg/fontssettings.kcfg share/config.kcfg/freespacenotifier.kcfg share/config.kcfg/iconssettingsbase.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.baloorunner.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/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/colors/index.cache.bz2 share/doc/HTML/ca/kcontrol/colors/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/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/screenlocker/index.cache.bz2 share/doc/HTML/ca/kcontrol/screenlocker/index.docbook share/doc/HTML/ca/kcontrol/translations/index.cache.bz2 share/doc/HTML/ca/kcontrol/translations/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/colors/index.cache.bz2 share/doc/HTML/de/kcontrol/colors/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/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/screenlocker/index.cache.bz2 share/doc/HTML/de/kcontrol/screenlocker/index.docbook share/doc/HTML/de/kcontrol/translations/index.cache.bz2 share/doc/HTML/de/kcontrol/translations/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/colors/index.cache.bz2 share/doc/HTML/en/kcontrol/colors/index.docbook 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/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/screenlocker/index.cache.bz2 share/doc/HTML/en/kcontrol/screenlocker/index.docbook share/doc/HTML/en/kcontrol/translations/go-top.png share/doc/HTML/en/kcontrol/translations/index.cache.bz2 share/doc/HTML/en/kcontrol/translations/index.docbook share/doc/HTML/en/kcontrol/translations/list-remove.png share/doc/HTML/en/klipper/index.cache.bz2 share/doc/HTML/en/klipper/index.docbook share/doc/HTML/en/klipper/klipper-application.png share/doc/HTML/en/klipper/klipper-widget.png share/doc/HTML/en/klipper/screenshot.png share/doc/HTML/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/kcmstyle/index.cache.bz2 share/doc/HTML/es/kcontrol/kcmstyle/index.docbook share/doc/HTML/id/kcontrol/colors/index.cache.bz2 share/doc/HTML/id/kcontrol/colors/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/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/screenlocker/index.cache.bz2 share/doc/HTML/id/kcontrol/screenlocker/index.docbook share/doc/HTML/id/kcontrol/translations/index.cache.bz2 share/doc/HTML/id/kcontrol/translations/index.docbook share/doc/HTML/id/klipper/index.cache.bz2 share/doc/HTML/id/klipper/index.docbook share/doc/HTML/it/kcontrol/colors/index.cache.bz2 share/doc/HTML/it/kcontrol/colors/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/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/screenlocker/index.cache.bz2 share/doc/HTML/it/kcontrol/screenlocker/index.docbook share/doc/HTML/it/kcontrol/translations/index.cache.bz2 share/doc/HTML/it/kcontrol/translations/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/colors/index.cache.bz2 share/doc/HTML/nl/kcontrol/colors/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/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/screenlocker/index.cache.bz2 share/doc/HTML/nl/kcontrol/screenlocker/index.docbook share/doc/HTML/nl/kcontrol/translations/index.cache.bz2 share/doc/HTML/nl/kcontrol/translations/index.docbook share/doc/HTML/nl/klipper/index.cache.bz2 share/doc/HTML/nl/klipper/index.docbook share/doc/HTML/pt/kcontrol/colors/index.cache.bz2 share/doc/HTML/pt/kcontrol/colors/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/kcmstyle/index.cache.bz2 share/doc/HTML/pt/kcontrol/kcmstyle/index.docbook share/doc/HTML/pt/kcontrol/screenlocker/index.cache.bz2 share/doc/HTML/pt/kcontrol/screenlocker/index.docbook share/doc/HTML/pt/kcontrol/translations/index.cache.bz2 share/doc/HTML/pt/kcontrol/translations/index.docbook share/doc/HTML/pt/klipper/index.cache.bz2 share/doc/HTML/pt/klipper/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/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/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/screenlocker/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/screenlocker/index.docbook share/doc/HTML/pt_BR/kcontrol/translations/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/translations/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/colors/index.cache.bz2 share/doc/HTML/ru/kcontrol/colors/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/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/screenlocker/index.cache.bz2 share/doc/HTML/ru/kcontrol/screenlocker/index.docbook share/doc/HTML/ru/kcontrol/translations/index.cache.bz2 share/doc/HTML/ru/kcontrol/translations/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/icons/index.cache.bz2 share/doc/HTML/sr@latin/kcontrol/icons/index.docbook share/doc/HTML/uk/kcontrol/colors/index.cache.bz2 share/doc/HTML/uk/kcontrol/colors/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/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/screenlocker/index.cache.bz2 share/doc/HTML/uk/kcontrol/screenlocker/index.docbook share/doc/HTML/uk/kcontrol/translations/index.cache.bz2 share/doc/HTML/uk/kcontrol/translations/index.docbook share/doc/HTML/uk/klipper/index.cache.bz2 share/doc/HTML/uk/klipper/index.docbook share/doc/HTML/uk/klipper/klipper-widget.png share/doc/HTML/uk/klipper/screenshot.png share/icons/hicolor/128x128/mimetypes/fonts-package.png share/icons/hicolor/16x16/apps/kfontview.png share/icons/hicolor/16x16/mimetypes/fonts-package.png share/icons/hicolor/22x22/apps/kfontview.png share/icons/hicolor/22x22/mimetypes/fonts-package.png share/icons/hicolor/32x32/apps/kfontview.png share/icons/hicolor/32x32/mimetypes/fonts-package.png share/icons/hicolor/48x48/apps/kfontview.png share/icons/hicolor/48x48/mimetypes/fonts-package.png share/icons/hicolor/64x64/apps/kfontview.png share/icons/hicolor/64x64/mimetypes/fonts-package.png share/icons/hicolor/scalable/apps/preferences-desktop-font-installer.svgz share/kconf_update/delete_cursor_old_default_size.pl share/kconf_update/delete_cursor_old_default_size.upd share/kconf_update/icons_remove_effects.upd share/kconf_update/krdb_libpathwipe.upd share/kconf_update/krunnerglobalshortcuts.upd share/kconf_update/krunnerplugins.upd share/kconf_update/style_widgetstyle_default_breeze.pl share/kconf_update/style_widgetstyle_default_breeze.upd share/kcontrol/pics/logo.png share/kcontrol/pics/mini-world.png share/kdevappwizard/templates/ion-dataengine.tar.bz2 share/kdisplay/app-defaults/AAAAAAGeneral.ad share/kdisplay/app-defaults/AAAMotif.ad share/kdisplay/app-defaults/AAATk.ad share/kdisplay/app-defaults/AAAXaw.ad share/kdisplay/app-defaults/AcroRead.ad share/kdisplay/app-defaults/Editres.ad share/kdisplay/app-defaults/Emacs.ad share/kdisplay/app-defaults/GV.ad share/kdisplay/app-defaults/ML.ad share/kdisplay/app-defaults/Nedit.ad share/kdisplay/app-defaults/Netscape.ad share/kdisplay/app-defaults/RVPlayer.ad share/kdisplay/app-defaults/WPerfect.ad share/kdisplay/app-defaults/XCalc.ad share/kdisplay/app-defaults/XOsview.ad share/kdisplay/app-defaults/XTerm.ad share/kdisplay/app-defaults/XV.ad share/kdisplay/app-defaults/Xawtv.ad share/kdisplay/app-defaults/Xdvi.ad share/kdisplay/app-defaults/Xpdf.ad share/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/krunner.desktop share/kio_desktop/directory.desktop share/kio_desktop/directory.trash share/knotifications5/freespacenotifier.notifyrc share/knotifications5/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.knsrc share/knsrcfiles/wallpaperplugin.knsrc share/knsrcfiles/xcursor.knsrc share/konqsidebartng/virtual_folders/services/fonts.desktop share/kpackage/kcms/kcm5_icons/contents/ui/IconSizePopup.qml share/kpackage/kcms/kcm5_icons/contents/ui/main.qml share/kpackage/kcms/kcm5_icons/metadata.desktop share/kpackage/kcms/kcm5_icons/metadata.json share/kpackage/kcms/kcm_colors/contents/ui/main.qml share/kpackage/kcms/kcm_colors/metadata.desktop share/kpackage/kcms/kcm_colors/metadata.json share/kpackage/kcms/kcm_cursortheme/contents/ui/Delegate.qml share/kpackage/kcms/kcm_cursortheme/contents/ui/main.qml share/kpackage/kcms/kcm_cursortheme/metadata.desktop share/kpackage/kcms/kcm_cursortheme/metadata.json share/kpackage/kcms/kcm_desktoptheme/contents/ui/Hand.qml share/kpackage/kcms/kcm_desktoptheme/contents/ui/ThemePreview.qml share/kpackage/kcms/kcm_desktoptheme/contents/ui/main.qml share/kpackage/kcms/kcm_desktoptheme/metadata.desktop share/kpackage/kcms/kcm_desktoptheme/metadata.json share/kpackage/kcms/kcm_fonts/contents/ui/ContextualHelpButton.qml share/kpackage/kcms/kcm_fonts/contents/ui/FontWidget.qml share/kpackage/kcms/kcm_fonts/contents/ui/main.qml share/kpackage/kcms/kcm_fonts/metadata.desktop share/kpackage/kcms/kcm_fonts/metadata.json share/kpackage/kcms/kcm_lookandfeel/contents/ui/main.qml share/kpackage/kcms/kcm_lookandfeel/metadata.desktop share/kpackage/kcms/kcm_lookandfeel/metadata.json share/kpackage/kcms/kcm_style/contents/ui/EffectSettingsPopup.qml share/kpackage/kcms/kcm_style/contents/ui/GtkStylePage.qml share/kpackage/kcms/kcm_style/contents/ui/main.qml share/kpackage/kcms/kcm_style/metadata.desktop share/kpackage/kcms/kcm_style/metadata.json share/kpackage/kcms/kcm_translations/contents/ui/main.qml share/kpackage/kcms/kcm_translations/metadata.desktop share/kpackage/kcms/kcm_translations/metadata.json share/krunner/dbusplugins/plasma-runner-baloosearch.desktop share/kservices5/ServiceMenus/installfont.desktop share/kservices5/applications.protocol share/kservices5/desktop.protocol share/kservices5/fontinst.desktop share/kservices5/fonts.protocol share/kservices5/fontthumbnail.desktop share/kservices5/ion-bbcukmet.desktop share/kservices5/ion-envcan.desktop share/kservices5/ion-noaa.desktop share/kservices5/ion-wettercom.desktop share/kservices5/kcm_colors.desktop share/kservices5/kcm_cursortheme.desktop share/kservices5/kcm_desktoptheme.desktop share/kservices5/kcm_fonts.desktop share/kservices5/kcm_icons.desktop share/kservices5/kcm_lookandfeel.desktop share/kservices5/kcm_style.desktop share/kservices5/kcm_translations.desktop share/kservices5/kfontviewpart.desktop share/kservices5/plasma-applet-org.kde.plasma.activitybar.desktop share/kservices5/plasma-applet-org.kde.plasma.analogclock.desktop share/kservices5/plasma-applet-org.kde.plasma.appmenu.desktop share/kservices5/plasma-applet-org.kde.plasma.battery.desktop share/kservices5/plasma-applet-org.kde.plasma.calendar.desktop share/kservices5/plasma-applet-org.kde.plasma.clipboard.desktop share/kservices5/plasma-applet-org.kde.plasma.devicenotifier.desktop share/kservices5/plasma-applet-org.kde.plasma.digitalclock.desktop share/kservices5/plasma-applet-org.kde.plasma.icon.desktop share/kservices5/plasma-applet-org.kde.plasma.lock_logout.desktop share/kservices5/plasma-applet-org.kde.plasma.mediacontroller.desktop share/kservices5/plasma-applet-org.kde.plasma.notifications.desktop share/kservices5/plasma-applet-org.kde.plasma.panelspacer.desktop share/kservices5/plasma-applet-org.kde.plasma.private.systemtray.desktop share/kservices5/plasma-applet-org.kde.plasma.systemmonitor.cpu.desktop share/kservices5/plasma-applet-org.kde.plasma.systemmonitor.cpucore.desktop share/kservices5/plasma-applet-org.kde.plasma.systemmonitor.desktop share/kservices5/plasma-applet-org.kde.plasma.systemmonitor.diskactivity.desktop share/kservices5/plasma-applet-org.kde.plasma.systemmonitor.diskusage.desktop share/kservices5/plasma-applet-org.kde.plasma.systemmonitor.memory.desktop share/kservices5/plasma-applet-org.kde.plasma.systemmonitor.net.desktop share/kservices5/plasma-applet-org.kde.plasma.systemtray.desktop share/kservices5/plasma-containmentactions-switchactivity.desktop share/kservices5/plasma-dataengine-activities.desktop share/kservices5/plasma-dataengine-applicationjobs.desktop share/kservices5/plasma-dataengine-apps.desktop share/kservices5/plasma-dataengine-clipboard.desktop share/kservices5/plasma-dataengine-devicenotifications.desktop share/kservices5/plasma-dataengine-dict.desktop share/kservices5/plasma-dataengine-executable.desktop share/kservices5/plasma-dataengine-favicons.desktop share/kservices5/plasma-dataengine-filebrowser.desktop share/kservices5/plasma-dataengine-hotplug.desktop share/kservices5/plasma-dataengine-keystate.desktop share/kservices5/plasma-dataengine-mouse.desktop share/kservices5/plasma-dataengine-mpris2.desktop share/kservices5/plasma-dataengine-notifications.desktop share/kservices5/plasma-dataengine-packagekit.desktop share/kservices5/plasma-dataengine-places.desktop share/kservices5/plasma-dataengine-powermanagement.desktop share/kservices5/plasma-dataengine-soliddevice.desktop share/kservices5/plasma-dataengine-statusnotifieritem.desktop share/kservices5/plasma-dataengine-systemmonitor.desktop share/kservices5/plasma-dataengine-time.desktop share/kservices5/plasma-dataengine-weather.desktop share/kservices5/plasma-lookandfeel-org.kde.breeze.desktop.desktop share/kservices5/plasma-runner-kill_config.desktop share/kservices5/plasma-runner-webshortcuts_config.desktop share/kservices5/plasma-wallpaper-org.kde.color.desktop share/kservices5/plasma-wallpaper-org.kde.image.desktop share/kservices5/plasma-wallpaper-org.kde.slideshow.desktop share/kservices5/programs.protocol share/kservicetypes5/phononbackend.desktop share/kservicetypes5/plasma-layouttemplate.desktop share/ksplash/Themes/Classic/FadeIn.qml share/ksplash/Themes/Classic/Preview.png share/ksplash/Themes/Classic/Theme.rc share/ksplash/Themes/Classic/images/background.png share/ksplash/Themes/Classic/images/icon1.png share/ksplash/Themes/Classic/images/icon2.png share/ksplash/Themes/Classic/images/icon3.png share/ksplash/Themes/Classic/images/icon4.png share/ksplash/Themes/Classic/images/icon5.png share/ksplash/Themes/Classic/images/rectangle.png share/ksplash/Themes/Classic/main.qml share/ksplash/Themes/Minimalistic/Preview.png share/ksplash/Themes/Minimalistic/Theme.rc share/ksplash/Themes/Minimalistic/images/kdegear.png share/ksplash/Themes/Minimalistic/images/kdeletter.png share/ksplash/Themes/Minimalistic/images/kdelogo-contrast.png share/ksplash/Themes/Minimalistic/images/kdelogo.png share/ksplash/Themes/Minimalistic/images/kdemask.png share/ksplash/Themes/Minimalistic/main.qml share/ksplash/Themes/None/Theme.rc share/kstyle/themes/qtcde.themerc share/kstyle/themes/qtcleanlooks.themerc share/kstyle/themes/qtgtk.themerc share/kstyle/themes/qtmotif.themerc share/kstyle/themes/qtplastique.themerc share/kstyle/themes/qtwindows.themerc share/kxmlgui5/kfontinst/kfontviewpart.rc share/kxmlgui5/kfontview/kfontviewui.rc share/locale/af/LC_MESSAGES/kcm5_icons.mo 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_style.mo share/locale/af/LC_MESSAGES/kfontinst.mo share/locale/af/LC_MESSAGES/kio5_applications.mo share/locale/af/LC_MESSAGES/klipper.mo share/locale/af/LC_MESSAGES/krdb.mo share/locale/af/LC_MESSAGES/ksmserver.mo share/locale/ar/LC_MESSAGES/freespacenotifier.mo share/locale/ar/LC_MESSAGES/kcm5_icons.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_fonts.mo share/locale/ar/LC_MESSAGES/kcm_lookandfeel.mo share/locale/ar/LC_MESSAGES/kcm_style.mo share/locale/ar/LC_MESSAGES/kcm_translations.mo share/locale/ar/LC_MESSAGES/kcminit.mo share/locale/ar/LC_MESSAGES/kfontinst.mo share/locale/ar/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/ar/LC_MESSAGES/kio5_applications.mo share/locale/ar/LC_MESSAGES/klipper.mo share/locale/ar/LC_MESSAGES/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/phonon_kde_plugin.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/ar/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/ar/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/ar/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/ar/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/ar/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/ar/LC_MESSAGES/plasma_engine_keystate.mo share/locale/ar/LC_MESSAGES/plasma_engine_mpris2.mo share/locale/ar/LC_MESSAGES/plasma_engine_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_package_plasmashell.mo share/locale/ar/LC_MESSAGES/plasma_runner_activities.mo share/locale/ar/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/ar/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/ar/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/ar/LC_MESSAGES/plasma_runner_kill.mo share/locale/ar/LC_MESSAGES/plasma_runner_locations.mo share/locale/ar/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/ar/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/ar/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/ar/LC_MESSAGES/plasma_runner_services.mo share/locale/ar/LC_MESSAGES/plasma_runner_sessions.mo share/locale/ar/LC_MESSAGES/plasma_runner_shell.mo share/locale/ar/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/ar/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/ar/LC_MESSAGES/plasma_runner_windows.mo share/locale/ar/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/ar/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/ar/LC_MESSAGES/plasmashell.mo share/locale/ar/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/ar/LC_MESSAGES/soliduiserver5.mo share/locale/ar/LC_MESSAGES/systemmonitor.mo share/locale/ast/LC_MESSAGES/kcm5_icons.mo share/locale/ast/LC_MESSAGES/kcm_cursortheme.mo share/locale/ast/LC_MESSAGES/kcm_feedback.mo share/locale/ast/LC_MESSAGES/kcm_translations.mo share/locale/ast/LC_MESSAGES/kcminit.mo share/locale/ast/LC_MESSAGES/krunner.mo share/locale/ast/LC_MESSAGES/libkicker.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.analogclock.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/ast/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/ast/LC_MESSAGES/plasma_engine_keystate.mo share/locale/ast/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/ast/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/ast/LC_MESSAGES/plasma_runner_services.mo share/locale/az/LC_MESSAGES/freespacenotifier.mo share/locale/az/LC_MESSAGES/kcm_feedback.mo share/locale/az/LC_MESSAGES/kcm_translations.mo share/locale/az/LC_MESSAGES/kcminit.mo share/locale/az/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/az/LC_MESSAGES/kio5_applications.mo share/locale/az/LC_MESSAGES/kio_desktop.mo share/locale/az/LC_MESSAGES/klipper.mo share/locale/az/LC_MESSAGES/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.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.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_mpris2.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_package_plasmashell.mo share/locale/az/LC_MESSAGES/plasma_runner_activities.mo share/locale/az/LC_MESSAGES/plasma_runner_appstream.mo share/locale/az/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/az/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/az/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/az/LC_MESSAGES/plasma_runner_kill.mo share/locale/az/LC_MESSAGES/plasma_runner_locations.mo share/locale/az/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/az/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/az/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/az/LC_MESSAGES/plasma_runner_services.mo share/locale/az/LC_MESSAGES/plasma_runner_sessions.mo share/locale/az/LC_MESSAGES/plasma_runner_shell.mo share/locale/az/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/az/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/az/LC_MESSAGES/plasma_runner_windows.mo share/locale/az/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/az/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/az/LC_MESSAGES/plasmashell.mo share/locale/az/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/az/LC_MESSAGES/soliduiserver5.mo share/locale/az/LC_MESSAGES/systemmonitor.mo share/locale/be/LC_MESSAGES/kcm5_icons.mo share/locale/be/LC_MESSAGES/kcm_colors.mo share/locale/be/LC_MESSAGES/kcm_cursortheme.mo share/locale/be/LC_MESSAGES/kcm_fonts.mo share/locale/be/LC_MESSAGES/kcm_style.mo share/locale/be/LC_MESSAGES/kcminit.mo share/locale/be/LC_MESSAGES/kfontinst.mo share/locale/be/LC_MESSAGES/kio5_applications.mo share/locale/be/LC_MESSAGES/klipper.mo share/locale/be/LC_MESSAGES/krdb.mo share/locale/be/LC_MESSAGES/ksmserver.mo share/locale/be/LC_MESSAGES/libkworkspace.mo share/locale/be/LC_MESSAGES/phonon_kde_plugin.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/be/LC_MESSAGES/plasma_engine_weather.mo share/locale/be/LC_MESSAGES/plasma_runner_locations.mo share/locale/be/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/be/LC_MESSAGES/soliduiserver5.mo share/locale/be@latin/LC_MESSAGES/kcm5_icons.mo share/locale/be@latin/LC_MESSAGES/kcm_colors.mo share/locale/be@latin/LC_MESSAGES/kcminit.mo share/locale/be@latin/LC_MESSAGES/kio5_applications.mo share/locale/be@latin/LC_MESSAGES/klipper.mo share/locale/be@latin/LC_MESSAGES/krdb.mo share/locale/be@latin/LC_MESSAGES/libkworkspace.mo share/locale/be@latin/LC_MESSAGES/phonon_kde_plugin.mo share/locale/be@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/be@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/be@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/be@latin/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/be@latin/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/be@latin/LC_MESSAGES/soliduiserver5.mo share/locale/bg/LC_MESSAGES/freespacenotifier.mo share/locale/bg/LC_MESSAGES/kcm5_icons.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_fonts.mo share/locale/bg/LC_MESSAGES/kcm_style.mo share/locale/bg/LC_MESSAGES/kcminit.mo share/locale/bg/LC_MESSAGES/kfontinst.mo share/locale/bg/LC_MESSAGES/kio5_applications.mo share/locale/bg/LC_MESSAGES/klipper.mo share/locale/bg/LC_MESSAGES/krdb.mo share/locale/bg/LC_MESSAGES/ksmserver.mo share/locale/bg/LC_MESSAGES/libkworkspace.mo share/locale/bg/LC_MESSAGES/phonon_kde_plugin.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/bg/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/bg/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/bg/LC_MESSAGES/plasma_engine_notifications.mo share/locale/bg/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/bg/LC_MESSAGES/plasma_engine_weather.mo share/locale/bg/LC_MESSAGES/plasma_runner_activities.mo share/locale/bg/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/bg/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/bg/LC_MESSAGES/plasma_runner_locations.mo share/locale/bg/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/bg/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/bg/LC_MESSAGES/plasma_runner_services.mo share/locale/bg/LC_MESSAGES/plasma_runner_sessions.mo share/locale/bg/LC_MESSAGES/plasma_runner_shell.mo share/locale/bg/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/bg/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/bg/LC_MESSAGES/soliduiserver5.mo share/locale/bn/LC_MESSAGES/kcm5_icons.mo share/locale/bn/LC_MESSAGES/kcm_fonts.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/kcm5_icons.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_style.mo share/locale/bn_IN/LC_MESSAGES/kcminit.mo share/locale/bn_IN/LC_MESSAGES/kfontinst.mo share/locale/bn_IN/LC_MESSAGES/kio5_applications.mo share/locale/bn_IN/LC_MESSAGES/klipper.mo share/locale/bn_IN/LC_MESSAGES/krdb.mo share/locale/bn_IN/LC_MESSAGES/ksmserver.mo share/locale/bn_IN/LC_MESSAGES/libkworkspace.mo share/locale/bn_IN/LC_MESSAGES/phonon_kde_plugin.mo share/locale/bn_IN/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/bn_IN/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/bn_IN/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/bn_IN/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/bn_IN/LC_MESSAGES/plasma_engine_weather.mo share/locale/bn_IN/LC_MESSAGES/plasma_runner_locations.mo share/locale/bn_IN/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/bn_IN/LC_MESSAGES/plasma_runner_sessions.mo share/locale/bn_IN/LC_MESSAGES/plasma_runner_shell.mo share/locale/bn_IN/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/bn_IN/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/bn_IN/LC_MESSAGES/soliduiserver5.mo share/locale/br/LC_MESSAGES/kcm5_icons.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_style.mo share/locale/br/LC_MESSAGES/kfontinst.mo share/locale/br/LC_MESSAGES/kio5_applications.mo share/locale/br/LC_MESSAGES/klipper.mo share/locale/br/LC_MESSAGES/ksmserver.mo share/locale/bs/LC_MESSAGES/freespacenotifier.mo share/locale/bs/LC_MESSAGES/kcm5_icons.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_lookandfeel.mo share/locale/bs/LC_MESSAGES/kcm_style.mo share/locale/bs/LC_MESSAGES/kcm_translations.mo share/locale/bs/LC_MESSAGES/kcminit.mo share/locale/bs/LC_MESSAGES/kfontinst.mo share/locale/bs/LC_MESSAGES/kio5_applications.mo share/locale/bs/LC_MESSAGES/klipper.mo share/locale/bs/LC_MESSAGES/krdb.mo share/locale/bs/LC_MESSAGES/krunner.mo share/locale/bs/LC_MESSAGES/ksmserver.mo share/locale/bs/LC_MESSAGES/libkicker.mo share/locale/bs/LC_MESSAGES/libkworkspace.mo share/locale/bs/LC_MESSAGES/phonon_kde_plugin.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/bs/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/bs/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/bs/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/bs/LC_MESSAGES/plasma_engine_keystate.mo share/locale/bs/LC_MESSAGES/plasma_engine_mpris2.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_package_plasmashell.mo share/locale/bs/LC_MESSAGES/plasma_runner_activities.mo share/locale/bs/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/bs/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/bs/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/bs/LC_MESSAGES/plasma_runner_kill.mo share/locale/bs/LC_MESSAGES/plasma_runner_locations.mo share/locale/bs/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/bs/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/bs/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/bs/LC_MESSAGES/plasma_runner_services.mo share/locale/bs/LC_MESSAGES/plasma_runner_sessions.mo share/locale/bs/LC_MESSAGES/plasma_runner_shell.mo share/locale/bs/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/bs/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/bs/LC_MESSAGES/plasma_runner_windows.mo share/locale/bs/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/bs/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/bs/LC_MESSAGES/plasmashell.mo share/locale/bs/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/bs/LC_MESSAGES/soliduiserver5.mo share/locale/bs/LC_MESSAGES/systemmonitor.mo share/locale/ca/LC_MESSAGES/freespacenotifier.mo share/locale/ca/LC_MESSAGES/kcm5_icons.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_lookandfeel.mo share/locale/ca/LC_MESSAGES/kcm_style.mo share/locale/ca/LC_MESSAGES/kcm_translations.mo share/locale/ca/LC_MESSAGES/kcminit.mo share/locale/ca/LC_MESSAGES/kfontinst.mo share/locale/ca/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/ca/LC_MESSAGES/kio5_applications.mo share/locale/ca/LC_MESSAGES/kio_desktop.mo share/locale/ca/LC_MESSAGES/klipper.mo share/locale/ca/LC_MESSAGES/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/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.analogclock.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.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_mpris2.mo share/locale/ca/LC_MESSAGES/plasma_engine_notifications.mo share/locale/ca/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/ca/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/ca/LC_MESSAGES/plasma_engine_time.mo share/locale/ca/LC_MESSAGES/plasma_engine_weather.mo share/locale/ca/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/ca/LC_MESSAGES/plasma_package_plasmashell.mo share/locale/ca/LC_MESSAGES/plasma_runner_activities.mo share/locale/ca/LC_MESSAGES/plasma_runner_appstream.mo share/locale/ca/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/ca/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/ca/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/ca/LC_MESSAGES/plasma_runner_kill.mo share/locale/ca/LC_MESSAGES/plasma_runner_locations.mo share/locale/ca/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/ca/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/ca/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/ca/LC_MESSAGES/plasma_runner_services.mo share/locale/ca/LC_MESSAGES/plasma_runner_sessions.mo share/locale/ca/LC_MESSAGES/plasma_runner_shell.mo share/locale/ca/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/ca/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/ca/LC_MESSAGES/plasma_runner_windows.mo share/locale/ca/LC_MESSAGES/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/soliduiserver5.mo share/locale/ca/LC_MESSAGES/systemmonitor.mo share/locale/ca@valencia/LC_MESSAGES/freespacenotifier.mo share/locale/ca@valencia/LC_MESSAGES/kcm5_icons.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_lookandfeel.mo share/locale/ca@valencia/LC_MESSAGES/kcm_style.mo share/locale/ca@valencia/LC_MESSAGES/kcm_translations.mo share/locale/ca@valencia/LC_MESSAGES/kcminit.mo share/locale/ca@valencia/LC_MESSAGES/kfontinst.mo share/locale/ca@valencia/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/ca@valencia/LC_MESSAGES/kio5_applications.mo share/locale/ca@valencia/LC_MESSAGES/kio_desktop.mo share/locale/ca@valencia/LC_MESSAGES/klipper.mo share/locale/ca@valencia/LC_MESSAGES/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/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.analogclock.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.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_mpris2.mo share/locale/ca@valencia/LC_MESSAGES/plasma_engine_notifications.mo share/locale/ca@valencia/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/ca@valencia/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/ca@valencia/LC_MESSAGES/plasma_engine_time.mo share/locale/ca@valencia/LC_MESSAGES/plasma_engine_weather.mo share/locale/ca@valencia/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/ca@valencia/LC_MESSAGES/plasma_package_plasmashell.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_activities.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_appstream.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_kill.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_locations.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_services.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_sessions.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_shell.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_windows.mo share/locale/ca@valencia/LC_MESSAGES/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/soliduiserver5.mo share/locale/ca@valencia/LC_MESSAGES/systemmonitor.mo share/locale/cs/LC_MESSAGES/freespacenotifier.mo share/locale/cs/LC_MESSAGES/kcm5_icons.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_lookandfeel.mo share/locale/cs/LC_MESSAGES/kcm_style.mo share/locale/cs/LC_MESSAGES/kcm_translations.mo share/locale/cs/LC_MESSAGES/kcminit.mo share/locale/cs/LC_MESSAGES/kfontinst.mo share/locale/cs/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/cs/LC_MESSAGES/kio5_applications.mo share/locale/cs/LC_MESSAGES/kio_desktop.mo share/locale/cs/LC_MESSAGES/klipper.mo share/locale/cs/LC_MESSAGES/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/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.analogclock.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.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_mpris2.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_package_plasmashell.mo share/locale/cs/LC_MESSAGES/plasma_runner_activities.mo share/locale/cs/LC_MESSAGES/plasma_runner_appstream.mo share/locale/cs/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/cs/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/cs/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/cs/LC_MESSAGES/plasma_runner_kill.mo share/locale/cs/LC_MESSAGES/plasma_runner_locations.mo share/locale/cs/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/cs/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/cs/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/cs/LC_MESSAGES/plasma_runner_services.mo share/locale/cs/LC_MESSAGES/plasma_runner_sessions.mo share/locale/cs/LC_MESSAGES/plasma_runner_shell.mo share/locale/cs/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/cs/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/cs/LC_MESSAGES/plasma_runner_windows.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/soliduiserver5.mo share/locale/cs/LC_MESSAGES/systemmonitor.mo share/locale/csb/LC_MESSAGES/kcm5_icons.mo share/locale/csb/LC_MESSAGES/kcm_colors.mo share/locale/csb/LC_MESSAGES/kcm_fonts.mo share/locale/csb/LC_MESSAGES/kcm_style.mo share/locale/csb/LC_MESSAGES/kcminit.mo share/locale/csb/LC_MESSAGES/kfontinst.mo share/locale/csb/LC_MESSAGES/kio5_applications.mo share/locale/csb/LC_MESSAGES/klipper.mo share/locale/csb/LC_MESSAGES/krdb.mo share/locale/csb/LC_MESSAGES/ksmserver.mo share/locale/csb/LC_MESSAGES/libkworkspace.mo share/locale/csb/LC_MESSAGES/phonon_kde_plugin.mo share/locale/csb/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/csb/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/csb/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/csb/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/csb/LC_MESSAGES/plasma_engine_notifications.mo share/locale/csb/LC_MESSAGES/plasma_engine_weather.mo share/locale/csb/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/csb/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/csb/LC_MESSAGES/plasma_runner_locations.mo share/locale/csb/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/csb/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/csb/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/csb/LC_MESSAGES/plasma_runner_services.mo share/locale/csb/LC_MESSAGES/plasma_runner_sessions.mo share/locale/csb/LC_MESSAGES/plasma_runner_shell.mo share/locale/csb/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/csb/LC_MESSAGES/plasma_runner_windows.mo share/locale/csb/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/csb/LC_MESSAGES/soliduiserver5.mo share/locale/cy/LC_MESSAGES/kcm5_icons.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_style.mo share/locale/cy/LC_MESSAGES/kfontinst.mo share/locale/cy/LC_MESSAGES/kio5_applications.mo share/locale/cy/LC_MESSAGES/klipper.mo share/locale/cy/LC_MESSAGES/krdb.mo share/locale/cy/LC_MESSAGES/ksmserver.mo share/locale/da/LC_MESSAGES/freespacenotifier.mo share/locale/da/LC_MESSAGES/kcm5_icons.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_lookandfeel.mo share/locale/da/LC_MESSAGES/kcm_style.mo share/locale/da/LC_MESSAGES/kcm_translations.mo share/locale/da/LC_MESSAGES/kcminit.mo share/locale/da/LC_MESSAGES/kfontinst.mo share/locale/da/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/da/LC_MESSAGES/kio5_applications.mo share/locale/da/LC_MESSAGES/kio_desktop.mo share/locale/da/LC_MESSAGES/klipper.mo share/locale/da/LC_MESSAGES/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_mpris2.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_package_plasmashell.mo share/locale/da/LC_MESSAGES/plasma_runner_activities.mo share/locale/da/LC_MESSAGES/plasma_runner_appstream.mo share/locale/da/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/da/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/da/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/da/LC_MESSAGES/plasma_runner_kill.mo share/locale/da/LC_MESSAGES/plasma_runner_locations.mo share/locale/da/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/da/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/da/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/da/LC_MESSAGES/plasma_runner_services.mo share/locale/da/LC_MESSAGES/plasma_runner_sessions.mo share/locale/da/LC_MESSAGES/plasma_runner_shell.mo share/locale/da/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/da/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/da/LC_MESSAGES/plasma_runner_windows.mo share/locale/da/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/da/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/da/LC_MESSAGES/plasmashell.mo share/locale/da/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/da/LC_MESSAGES/soliduiserver5.mo share/locale/da/LC_MESSAGES/systemmonitor.mo share/locale/de/LC_MESSAGES/freespacenotifier.mo share/locale/de/LC_MESSAGES/kcm5_icons.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_lookandfeel.mo share/locale/de/LC_MESSAGES/kcm_style.mo share/locale/de/LC_MESSAGES/kcm_translations.mo share/locale/de/LC_MESSAGES/kcminit.mo share/locale/de/LC_MESSAGES/kfontinst.mo share/locale/de/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/de/LC_MESSAGES/kio5_applications.mo share/locale/de/LC_MESSAGES/kio_desktop.mo share/locale/de/LC_MESSAGES/klipper.mo share/locale/de/LC_MESSAGES/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/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.analogclock.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.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_mpris2.mo share/locale/de/LC_MESSAGES/plasma_engine_notifications.mo share/locale/de/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/de/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/de/LC_MESSAGES/plasma_engine_time.mo share/locale/de/LC_MESSAGES/plasma_engine_weather.mo share/locale/de/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/de/LC_MESSAGES/plasma_package_plasmashell.mo share/locale/de/LC_MESSAGES/plasma_runner_activities.mo share/locale/de/LC_MESSAGES/plasma_runner_appstream.mo share/locale/de/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/de/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/de/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/de/LC_MESSAGES/plasma_runner_kill.mo share/locale/de/LC_MESSAGES/plasma_runner_locations.mo share/locale/de/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/de/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/de/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/de/LC_MESSAGES/plasma_runner_services.mo share/locale/de/LC_MESSAGES/plasma_runner_sessions.mo share/locale/de/LC_MESSAGES/plasma_runner_shell.mo share/locale/de/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/de/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/de/LC_MESSAGES/plasma_runner_windows.mo share/locale/de/LC_MESSAGES/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/soliduiserver5.mo share/locale/de/LC_MESSAGES/systemmonitor.mo share/locale/el/LC_MESSAGES/freespacenotifier.mo share/locale/el/LC_MESSAGES/kcm5_icons.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_lookandfeel.mo share/locale/el/LC_MESSAGES/kcm_style.mo share/locale/el/LC_MESSAGES/kcm_translations.mo share/locale/el/LC_MESSAGES/kcminit.mo share/locale/el/LC_MESSAGES/kfontinst.mo share/locale/el/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/el/LC_MESSAGES/kio5_applications.mo share/locale/el/LC_MESSAGES/kio_desktop.mo share/locale/el/LC_MESSAGES/klipper.mo share/locale/el/LC_MESSAGES/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_mpris2.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_activities.mo share/locale/el/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/el/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/el/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/el/LC_MESSAGES/plasma_runner_kill.mo share/locale/el/LC_MESSAGES/plasma_runner_locations.mo share/locale/el/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/el/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/el/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/el/LC_MESSAGES/plasma_runner_services.mo share/locale/el/LC_MESSAGES/plasma_runner_sessions.mo share/locale/el/LC_MESSAGES/plasma_runner_shell.mo share/locale/el/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/el/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/el/LC_MESSAGES/plasma_runner_windows.mo share/locale/el/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/el/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/el/LC_MESSAGES/plasmashell.mo share/locale/el/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/el/LC_MESSAGES/soliduiserver5.mo share/locale/el/LC_MESSAGES/systemmonitor.mo share/locale/en_GB/LC_MESSAGES/freespacenotifier.mo share/locale/en_GB/LC_MESSAGES/kcm5_icons.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_lookandfeel.mo share/locale/en_GB/LC_MESSAGES/kcm_style.mo share/locale/en_GB/LC_MESSAGES/kcm_translations.mo share/locale/en_GB/LC_MESSAGES/kcminit.mo share/locale/en_GB/LC_MESSAGES/kfontinst.mo share/locale/en_GB/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/en_GB/LC_MESSAGES/kio5_applications.mo share/locale/en_GB/LC_MESSAGES/kio_desktop.mo share/locale/en_GB/LC_MESSAGES/klipper.mo share/locale/en_GB/LC_MESSAGES/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.analogclock.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.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_mpris2.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_package_plasmashell.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_activities.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_appstream.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_kill.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_locations.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_services.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_sessions.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_shell.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_windows.mo share/locale/en_GB/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/en_GB/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/en_GB/LC_MESSAGES/plasmashell.mo share/locale/en_GB/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/en_GB/LC_MESSAGES/soliduiserver5.mo share/locale/en_GB/LC_MESSAGES/systemmonitor.mo share/locale/eo/LC_MESSAGES/freespacenotifier.mo share/locale/eo/LC_MESSAGES/kcm5_icons.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_fonts.mo share/locale/eo/LC_MESSAGES/kcm_style.mo share/locale/eo/LC_MESSAGES/kcminit.mo share/locale/eo/LC_MESSAGES/kfontinst.mo share/locale/eo/LC_MESSAGES/kio5_applications.mo share/locale/eo/LC_MESSAGES/klipper.mo share/locale/eo/LC_MESSAGES/krdb.mo share/locale/eo/LC_MESSAGES/ksmserver.mo share/locale/eo/LC_MESSAGES/libkworkspace.mo share/locale/eo/LC_MESSAGES/phonon_kde_plugin.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/eo/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/eo/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/eo/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/eo/LC_MESSAGES/plasma_engine_keystate.mo share/locale/eo/LC_MESSAGES/plasma_engine_notifications.mo share/locale/eo/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/eo/LC_MESSAGES/plasma_engine_weather.mo share/locale/eo/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/eo/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/eo/LC_MESSAGES/plasma_runner_kill.mo share/locale/eo/LC_MESSAGES/plasma_runner_locations.mo share/locale/eo/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/eo/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/eo/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/eo/LC_MESSAGES/plasma_runner_services.mo share/locale/eo/LC_MESSAGES/plasma_runner_sessions.mo share/locale/eo/LC_MESSAGES/plasma_runner_shell.mo share/locale/eo/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/eo/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/eo/LC_MESSAGES/plasma_runner_windows.mo share/locale/eo/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/eo/LC_MESSAGES/soliduiserver5.mo share/locale/es/LC_MESSAGES/freespacenotifier.mo share/locale/es/LC_MESSAGES/kcm5_icons.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_lookandfeel.mo share/locale/es/LC_MESSAGES/kcm_style.mo share/locale/es/LC_MESSAGES/kcm_translations.mo share/locale/es/LC_MESSAGES/kcminit.mo share/locale/es/LC_MESSAGES/kfontinst.mo share/locale/es/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/es/LC_MESSAGES/kio5_applications.mo share/locale/es/LC_MESSAGES/kio_desktop.mo share/locale/es/LC_MESSAGES/klipper.mo share/locale/es/LC_MESSAGES/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/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.analogclock.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.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_mpris2.mo share/locale/es/LC_MESSAGES/plasma_engine_notifications.mo share/locale/es/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/es/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/es/LC_MESSAGES/plasma_engine_time.mo share/locale/es/LC_MESSAGES/plasma_engine_weather.mo share/locale/es/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/es/LC_MESSAGES/plasma_package_plasmashell.mo share/locale/es/LC_MESSAGES/plasma_runner_activities.mo share/locale/es/LC_MESSAGES/plasma_runner_appstream.mo share/locale/es/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/es/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/es/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/es/LC_MESSAGES/plasma_runner_kill.mo share/locale/es/LC_MESSAGES/plasma_runner_locations.mo share/locale/es/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/es/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/es/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/es/LC_MESSAGES/plasma_runner_services.mo share/locale/es/LC_MESSAGES/plasma_runner_sessions.mo share/locale/es/LC_MESSAGES/plasma_runner_shell.mo share/locale/es/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/es/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/es/LC_MESSAGES/plasma_runner_windows.mo share/locale/es/LC_MESSAGES/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/soliduiserver5.mo share/locale/es/LC_MESSAGES/systemmonitor.mo share/locale/et/LC_MESSAGES/freespacenotifier.mo share/locale/et/LC_MESSAGES/kcm5_icons.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_lookandfeel.mo share/locale/et/LC_MESSAGES/kcm_style.mo share/locale/et/LC_MESSAGES/kcm_translations.mo share/locale/et/LC_MESSAGES/kcminit.mo share/locale/et/LC_MESSAGES/kfontinst.mo share/locale/et/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/et/LC_MESSAGES/kio5_applications.mo share/locale/et/LC_MESSAGES/kio_desktop.mo share/locale/et/LC_MESSAGES/klipper.mo share/locale/et/LC_MESSAGES/krdb.mo share/locale/et/LC_MESSAGES/krunner.mo share/locale/et/LC_MESSAGES/ksmserver.mo share/locale/et/LC_MESSAGES/libkicker.mo share/locale/et/LC_MESSAGES/libkworkspace.mo share/locale/et/LC_MESSAGES/libnotificationmanager.mo share/locale/et/LC_MESSAGES/phonon_kde_plugin.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/et/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/et/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/et/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/et/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/et/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/et/LC_MESSAGES/plasma_engine_dict.mo share/locale/et/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/et/LC_MESSAGES/plasma_engine_keystate.mo share/locale/et/LC_MESSAGES/plasma_engine_mpris2.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_package_plasmashell.mo share/locale/et/LC_MESSAGES/plasma_runner_activities.mo share/locale/et/LC_MESSAGES/plasma_runner_appstream.mo share/locale/et/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/et/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/et/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/et/LC_MESSAGES/plasma_runner_kill.mo share/locale/et/LC_MESSAGES/plasma_runner_locations.mo share/locale/et/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/et/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/et/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/et/LC_MESSAGES/plasma_runner_services.mo share/locale/et/LC_MESSAGES/plasma_runner_sessions.mo share/locale/et/LC_MESSAGES/plasma_runner_shell.mo share/locale/et/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/et/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/et/LC_MESSAGES/plasma_runner_windows.mo share/locale/et/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/et/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/et/LC_MESSAGES/plasmashell.mo share/locale/et/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/et/LC_MESSAGES/soliduiserver5.mo share/locale/et/LC_MESSAGES/systemmonitor.mo share/locale/eu/LC_MESSAGES/freespacenotifier.mo share/locale/eu/LC_MESSAGES/kcm5_icons.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_lookandfeel.mo share/locale/eu/LC_MESSAGES/kcm_style.mo share/locale/eu/LC_MESSAGES/kcm_translations.mo share/locale/eu/LC_MESSAGES/kcminit.mo share/locale/eu/LC_MESSAGES/kfontinst.mo share/locale/eu/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/eu/LC_MESSAGES/kio5_applications.mo share/locale/eu/LC_MESSAGES/kio_desktop.mo share/locale/eu/LC_MESSAGES/klipper.mo share/locale/eu/LC_MESSAGES/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/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.analogclock.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.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_mpris2.mo share/locale/eu/LC_MESSAGES/plasma_engine_notifications.mo share/locale/eu/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/eu/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/eu/LC_MESSAGES/plasma_engine_time.mo share/locale/eu/LC_MESSAGES/plasma_engine_weather.mo share/locale/eu/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/eu/LC_MESSAGES/plasma_package_plasmashell.mo share/locale/eu/LC_MESSAGES/plasma_runner_activities.mo share/locale/eu/LC_MESSAGES/plasma_runner_appstream.mo share/locale/eu/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/eu/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/eu/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/eu/LC_MESSAGES/plasma_runner_kill.mo share/locale/eu/LC_MESSAGES/plasma_runner_locations.mo share/locale/eu/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/eu/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/eu/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/eu/LC_MESSAGES/plasma_runner_services.mo share/locale/eu/LC_MESSAGES/plasma_runner_sessions.mo share/locale/eu/LC_MESSAGES/plasma_runner_shell.mo share/locale/eu/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/eu/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/eu/LC_MESSAGES/plasma_runner_windows.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/soliduiserver5.mo share/locale/eu/LC_MESSAGES/systemmonitor.mo share/locale/fa/LC_MESSAGES/freespacenotifier.mo share/locale/fa/LC_MESSAGES/kcm5_icons.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_style.mo share/locale/fa/LC_MESSAGES/kcminit.mo share/locale/fa/LC_MESSAGES/kfontinst.mo share/locale/fa/LC_MESSAGES/kio5_applications.mo share/locale/fa/LC_MESSAGES/klipper.mo share/locale/fa/LC_MESSAGES/krdb.mo share/locale/fa/LC_MESSAGES/ksmserver.mo share/locale/fa/LC_MESSAGES/libkworkspace.mo share/locale/fa/LC_MESSAGES/phonon_kde_plugin.mo share/locale/fa/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/fa/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/fa/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/fa/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/fa/LC_MESSAGES/plasma_runner_locations.mo share/locale/fa/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/fa/LC_MESSAGES/soliduiserver5.mo share/locale/fi/LC_MESSAGES/freespacenotifier.mo share/locale/fi/LC_MESSAGES/kcm5_icons.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_lookandfeel.mo share/locale/fi/LC_MESSAGES/kcm_style.mo share/locale/fi/LC_MESSAGES/kcm_translations.mo share/locale/fi/LC_MESSAGES/kcminit.mo share/locale/fi/LC_MESSAGES/kfontinst.mo share/locale/fi/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/fi/LC_MESSAGES/kio5_applications.mo share/locale/fi/LC_MESSAGES/kio_desktop.mo share/locale/fi/LC_MESSAGES/klipper.mo share/locale/fi/LC_MESSAGES/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/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.analogclock.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.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_mpris2.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_package_plasmashell.mo share/locale/fi/LC_MESSAGES/plasma_runner_activities.mo share/locale/fi/LC_MESSAGES/plasma_runner_appstream.mo share/locale/fi/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/fi/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/fi/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/fi/LC_MESSAGES/plasma_runner_kill.mo share/locale/fi/LC_MESSAGES/plasma_runner_locations.mo share/locale/fi/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/fi/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/fi/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/fi/LC_MESSAGES/plasma_runner_services.mo share/locale/fi/LC_MESSAGES/plasma_runner_sessions.mo share/locale/fi/LC_MESSAGES/plasma_runner_shell.mo share/locale/fi/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/fi/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/fi/LC_MESSAGES/plasma_runner_windows.mo share/locale/fi/LC_MESSAGES/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/soliduiserver5.mo share/locale/fi/LC_MESSAGES/systemmonitor.mo share/locale/fr/LC_MESSAGES/freespacenotifier.mo share/locale/fr/LC_MESSAGES/kcm5_icons.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_lookandfeel.mo share/locale/fr/LC_MESSAGES/kcm_style.mo share/locale/fr/LC_MESSAGES/kcm_translations.mo share/locale/fr/LC_MESSAGES/kcminit.mo share/locale/fr/LC_MESSAGES/kfontinst.mo share/locale/fr/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/fr/LC_MESSAGES/kio5_applications.mo share/locale/fr/LC_MESSAGES/kio_desktop.mo share/locale/fr/LC_MESSAGES/klipper.mo share/locale/fr/LC_MESSAGES/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/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.analogclock.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.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_mpris2.mo share/locale/fr/LC_MESSAGES/plasma_engine_notifications.mo share/locale/fr/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/fr/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/fr/LC_MESSAGES/plasma_engine_time.mo share/locale/fr/LC_MESSAGES/plasma_engine_weather.mo share/locale/fr/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/fr/LC_MESSAGES/plasma_package_plasmashell.mo share/locale/fr/LC_MESSAGES/plasma_runner_activities.mo share/locale/fr/LC_MESSAGES/plasma_runner_appstream.mo share/locale/fr/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/fr/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/fr/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/fr/LC_MESSAGES/plasma_runner_kill.mo share/locale/fr/LC_MESSAGES/plasma_runner_locations.mo share/locale/fr/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/fr/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/fr/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/fr/LC_MESSAGES/plasma_runner_services.mo share/locale/fr/LC_MESSAGES/plasma_runner_sessions.mo share/locale/fr/LC_MESSAGES/plasma_runner_shell.mo share/locale/fr/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/fr/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/fr/LC_MESSAGES/plasma_runner_windows.mo share/locale/fr/LC_MESSAGES/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/soliduiserver5.mo share/locale/fr/LC_MESSAGES/systemmonitor.mo share/locale/fy/LC_MESSAGES/kcm5_icons.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_style.mo share/locale/fy/LC_MESSAGES/kcminit.mo share/locale/fy/LC_MESSAGES/kfontinst.mo share/locale/fy/LC_MESSAGES/kio5_applications.mo share/locale/fy/LC_MESSAGES/klipper.mo share/locale/fy/LC_MESSAGES/krdb.mo share/locale/fy/LC_MESSAGES/ksmserver.mo share/locale/fy/LC_MESSAGES/libkworkspace.mo share/locale/fy/LC_MESSAGES/phonon_kde_plugin.mo share/locale/fy/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/fy/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/fy/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/fy/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/fy/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/fy/LC_MESSAGES/plasma_engine_keystate.mo share/locale/fy/LC_MESSAGES/plasma_engine_notifications.mo share/locale/fy/LC_MESSAGES/plasma_engine_weather.mo share/locale/fy/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/fy/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/fy/LC_MESSAGES/plasma_runner_locations.mo share/locale/fy/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/fy/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/fy/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/fy/LC_MESSAGES/plasma_runner_services.mo share/locale/fy/LC_MESSAGES/plasma_runner_sessions.mo share/locale/fy/LC_MESSAGES/plasma_runner_shell.mo share/locale/fy/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/fy/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/fy/LC_MESSAGES/soliduiserver5.mo share/locale/ga/LC_MESSAGES/freespacenotifier.mo share/locale/ga/LC_MESSAGES/kcm5_icons.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_style.mo share/locale/ga/LC_MESSAGES/kcminit.mo share/locale/ga/LC_MESSAGES/kfontinst.mo share/locale/ga/LC_MESSAGES/kio5_applications.mo share/locale/ga/LC_MESSAGES/klipper.mo share/locale/ga/LC_MESSAGES/krdb.mo share/locale/ga/LC_MESSAGES/ksmserver.mo share/locale/ga/LC_MESSAGES/libkicker.mo share/locale/ga/LC_MESSAGES/libkworkspace.mo share/locale/ga/LC_MESSAGES/phonon_kde_plugin.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/ga/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/ga/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/ga/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/ga/LC_MESSAGES/plasma_engine_keystate.mo share/locale/ga/LC_MESSAGES/plasma_engine_mpris2.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_activities.mo share/locale/ga/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/ga/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/ga/LC_MESSAGES/plasma_runner_kill.mo share/locale/ga/LC_MESSAGES/plasma_runner_locations.mo share/locale/ga/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/ga/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/ga/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/ga/LC_MESSAGES/plasma_runner_services.mo share/locale/ga/LC_MESSAGES/plasma_runner_sessions.mo share/locale/ga/LC_MESSAGES/plasma_runner_shell.mo share/locale/ga/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/ga/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/ga/LC_MESSAGES/plasma_runner_windows.mo share/locale/ga/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/ga/LC_MESSAGES/soliduiserver5.mo share/locale/gl/LC_MESSAGES/freespacenotifier.mo share/locale/gl/LC_MESSAGES/kcm5_icons.mo share/locale/gl/LC_MESSAGES/kcm_colors.mo share/locale/gl/LC_MESSAGES/kcm_cursortheme.mo share/locale/gl/LC_MESSAGES/kcm_desktoptheme.mo share/locale/gl/LC_MESSAGES/kcm_fonts.mo share/locale/gl/LC_MESSAGES/kcm_lookandfeel.mo share/locale/gl/LC_MESSAGES/kcm_style.mo share/locale/gl/LC_MESSAGES/kcm_translations.mo share/locale/gl/LC_MESSAGES/kcminit.mo share/locale/gl/LC_MESSAGES/kfontinst.mo share/locale/gl/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/gl/LC_MESSAGES/kio5_applications.mo share/locale/gl/LC_MESSAGES/kio_desktop.mo share/locale/gl/LC_MESSAGES/klipper.mo share/locale/gl/LC_MESSAGES/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/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.analogclock.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/gl/LC_MESSAGES/plasma_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_mpris2.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_package_plasmashell.mo share/locale/gl/LC_MESSAGES/plasma_runner_activities.mo share/locale/gl/LC_MESSAGES/plasma_runner_appstream.mo share/locale/gl/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/gl/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/gl/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/gl/LC_MESSAGES/plasma_runner_kill.mo share/locale/gl/LC_MESSAGES/plasma_runner_locations.mo share/locale/gl/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/gl/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/gl/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/gl/LC_MESSAGES/plasma_runner_services.mo share/locale/gl/LC_MESSAGES/plasma_runner_sessions.mo share/locale/gl/LC_MESSAGES/plasma_runner_shell.mo share/locale/gl/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/gl/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/gl/LC_MESSAGES/plasma_runner_windows.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/soliduiserver5.mo share/locale/gl/LC_MESSAGES/systemmonitor.mo share/locale/gu/LC_MESSAGES/freespacenotifier.mo share/locale/gu/LC_MESSAGES/kcm5_icons.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_style.mo share/locale/gu/LC_MESSAGES/kcminit.mo share/locale/gu/LC_MESSAGES/kfontinst.mo share/locale/gu/LC_MESSAGES/kio5_applications.mo share/locale/gu/LC_MESSAGES/klipper.mo share/locale/gu/LC_MESSAGES/krdb.mo share/locale/gu/LC_MESSAGES/ksmserver.mo share/locale/gu/LC_MESSAGES/libkworkspace.mo share/locale/gu/LC_MESSAGES/phonon_kde_plugin.mo share/locale/gu/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/gu/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/gu/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/gu/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/gu/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/gu/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/gu/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/gu/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/gu/LC_MESSAGES/plasma_engine_keystate.mo share/locale/gu/LC_MESSAGES/plasma_engine_notifications.mo share/locale/gu/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/gu/LC_MESSAGES/plasma_engine_weather.mo share/locale/gu/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/gu/LC_MESSAGES/plasma_runner_kill.mo share/locale/gu/LC_MESSAGES/plasma_runner_locations.mo share/locale/gu/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/gu/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/gu/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/gu/LC_MESSAGES/plasma_runner_services.mo share/locale/gu/LC_MESSAGES/plasma_runner_sessions.mo share/locale/gu/LC_MESSAGES/plasma_runner_shell.mo share/locale/gu/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/gu/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/gu/LC_MESSAGES/plasma_runner_windows.mo share/locale/gu/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/gu/LC_MESSAGES/soliduiserver5.mo share/locale/he/LC_MESSAGES/freespacenotifier.mo share/locale/he/LC_MESSAGES/kcm5_icons.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_fonts.mo share/locale/he/LC_MESSAGES/kcm_lookandfeel.mo share/locale/he/LC_MESSAGES/kcm_style.mo share/locale/he/LC_MESSAGES/kcm_translations.mo share/locale/he/LC_MESSAGES/kcminit.mo share/locale/he/LC_MESSAGES/kfontinst.mo share/locale/he/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/he/LC_MESSAGES/kio5_applications.mo share/locale/he/LC_MESSAGES/kio_desktop.mo share/locale/he/LC_MESSAGES/klipper.mo share/locale/he/LC_MESSAGES/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/libkworkspace.mo share/locale/he/LC_MESSAGES/phonon_kde_plugin.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/he/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/he/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/he/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/he/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/he/LC_MESSAGES/plasma_engine_keystate.mo share/locale/he/LC_MESSAGES/plasma_engine_mpris2.mo share/locale/he/LC_MESSAGES/plasma_engine_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_activities.mo share/locale/he/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/he/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/he/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/he/LC_MESSAGES/plasma_runner_kill.mo share/locale/he/LC_MESSAGES/plasma_runner_locations.mo share/locale/he/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/he/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/he/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/he/LC_MESSAGES/plasma_runner_services.mo share/locale/he/LC_MESSAGES/plasma_runner_sessions.mo share/locale/he/LC_MESSAGES/plasma_runner_shell.mo share/locale/he/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/he/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/he/LC_MESSAGES/plasma_runner_windows.mo share/locale/he/LC_MESSAGES/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/soliduiserver5.mo share/locale/he/LC_MESSAGES/systemmonitor.mo share/locale/hi/LC_MESSAGES/freespacenotifier.mo share/locale/hi/LC_MESSAGES/kcm5_icons.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_fonts.mo share/locale/hi/LC_MESSAGES/kcm_style.mo share/locale/hi/LC_MESSAGES/kcminit.mo share/locale/hi/LC_MESSAGES/kfontinst.mo share/locale/hi/LC_MESSAGES/kio5_applications.mo share/locale/hi/LC_MESSAGES/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/libkworkspace.mo share/locale/hi/LC_MESSAGES/phonon_kde_plugin.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/hi/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/hi/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/hi/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/hi/LC_MESSAGES/plasma_engine_keystate.mo share/locale/hi/LC_MESSAGES/plasma_engine_notifications.mo share/locale/hi/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/hi/LC_MESSAGES/plasma_engine_weather.mo share/locale/hi/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/hi/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/hi/LC_MESSAGES/plasma_runner_kill.mo share/locale/hi/LC_MESSAGES/plasma_runner_locations.mo share/locale/hi/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/hi/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/hi/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/hi/LC_MESSAGES/plasma_runner_services.mo share/locale/hi/LC_MESSAGES/plasma_runner_sessions.mo share/locale/hi/LC_MESSAGES/plasma_runner_shell.mo share/locale/hi/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/hi/LC_MESSAGES/plasma_runner_windows.mo share/locale/hi/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/hi/LC_MESSAGES/soliduiserver5.mo share/locale/hne/LC_MESSAGES/kcm5_icons.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_style.mo share/locale/hne/LC_MESSAGES/kcminit.mo share/locale/hne/LC_MESSAGES/kfontinst.mo share/locale/hne/LC_MESSAGES/kio5_applications.mo share/locale/hne/LC_MESSAGES/krdb.mo share/locale/hne/LC_MESSAGES/ksmserver.mo share/locale/hne/LC_MESSAGES/libkworkspace.mo share/locale/hne/LC_MESSAGES/phonon_kde_plugin.mo share/locale/hne/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/hne/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/hne/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/hne/LC_MESSAGES/plasma_runner_locations.mo share/locale/hne/LC_MESSAGES/plasma_runner_sessions.mo share/locale/hne/LC_MESSAGES/plasma_runner_shell.mo share/locale/hne/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/hne/LC_MESSAGES/soliduiserver5.mo share/locale/hr/LC_MESSAGES/freespacenotifier.mo share/locale/hr/LC_MESSAGES/kcm5_icons.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_style.mo share/locale/hr/LC_MESSAGES/kcminit.mo share/locale/hr/LC_MESSAGES/kfontinst.mo share/locale/hr/LC_MESSAGES/kio5_applications.mo share/locale/hr/LC_MESSAGES/klipper.mo share/locale/hr/LC_MESSAGES/krdb.mo share/locale/hr/LC_MESSAGES/ksmserver.mo share/locale/hr/LC_MESSAGES/libkworkspace.mo share/locale/hr/LC_MESSAGES/phonon_kde_plugin.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/hr/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/hr/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/hr/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/hr/LC_MESSAGES/plasma_engine_keystate.mo share/locale/hr/LC_MESSAGES/plasma_engine_notifications.mo share/locale/hr/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/hr/LC_MESSAGES/plasma_engine_weather.mo share/locale/hr/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/hr/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/hr/LC_MESSAGES/plasma_runner_kill.mo share/locale/hr/LC_MESSAGES/plasma_runner_locations.mo share/locale/hr/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/hr/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/hr/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/hr/LC_MESSAGES/plasma_runner_services.mo share/locale/hr/LC_MESSAGES/plasma_runner_sessions.mo share/locale/hr/LC_MESSAGES/plasma_runner_shell.mo share/locale/hr/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/hr/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/hr/LC_MESSAGES/plasma_runner_windows.mo share/locale/hr/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/hr/LC_MESSAGES/soliduiserver5.mo share/locale/hsb/LC_MESSAGES/kcm5_icons.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_style.mo share/locale/hsb/LC_MESSAGES/kcminit.mo share/locale/hsb/LC_MESSAGES/kfontinst.mo share/locale/hsb/LC_MESSAGES/kio5_applications.mo share/locale/hsb/LC_MESSAGES/klipper.mo share/locale/hsb/LC_MESSAGES/krdb.mo share/locale/hsb/LC_MESSAGES/ksmserver.mo share/locale/hsb/LC_MESSAGES/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.battery.mo share/locale/hsb/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/hsb/LC_MESSAGES/plasma_runner_locations.mo share/locale/hsb/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/hsb/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/hsb/LC_MESSAGES/plasma_runner_sessions.mo share/locale/hsb/LC_MESSAGES/plasma_runner_shell.mo share/locale/hsb/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/hsb/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/hsb/LC_MESSAGES/soliduiserver5.mo share/locale/hu/LC_MESSAGES/freespacenotifier.mo share/locale/hu/LC_MESSAGES/kcm5_icons.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_lookandfeel.mo share/locale/hu/LC_MESSAGES/kcm_style.mo share/locale/hu/LC_MESSAGES/kcm_translations.mo share/locale/hu/LC_MESSAGES/kcminit.mo share/locale/hu/LC_MESSAGES/kfontinst.mo share/locale/hu/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/hu/LC_MESSAGES/kio5_applications.mo share/locale/hu/LC_MESSAGES/kio_desktop.mo share/locale/hu/LC_MESSAGES/klipper.mo share/locale/hu/LC_MESSAGES/krdb.mo share/locale/hu/LC_MESSAGES/krunner.mo share/locale/hu/LC_MESSAGES/ksmserver.mo share/locale/hu/LC_MESSAGES/libkicker.mo share/locale/hu/LC_MESSAGES/libkworkspace.mo share/locale/hu/LC_MESSAGES/phonon_kde_plugin.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.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_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_mpris2.mo share/locale/hu/LC_MESSAGES/plasma_engine_notifications.mo share/locale/hu/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/hu/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/hu/LC_MESSAGES/plasma_engine_time.mo share/locale/hu/LC_MESSAGES/plasma_engine_weather.mo share/locale/hu/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/hu/LC_MESSAGES/plasma_package_plasmashell.mo share/locale/hu/LC_MESSAGES/plasma_runner_activities.mo share/locale/hu/LC_MESSAGES/plasma_runner_appstream.mo share/locale/hu/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/hu/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/hu/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/hu/LC_MESSAGES/plasma_runner_kill.mo share/locale/hu/LC_MESSAGES/plasma_runner_locations.mo share/locale/hu/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/hu/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/hu/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/hu/LC_MESSAGES/plasma_runner_services.mo share/locale/hu/LC_MESSAGES/plasma_runner_sessions.mo share/locale/hu/LC_MESSAGES/plasma_runner_shell.mo share/locale/hu/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/hu/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/hu/LC_MESSAGES/plasma_runner_windows.mo share/locale/hu/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/hu/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/hu/LC_MESSAGES/plasmashell.mo share/locale/hu/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/hu/LC_MESSAGES/soliduiserver5.mo share/locale/hu/LC_MESSAGES/systemmonitor.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/kcm5_icons.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_lookandfeel.mo share/locale/ia/LC_MESSAGES/kcm_style.mo share/locale/ia/LC_MESSAGES/kcm_translations.mo share/locale/ia/LC_MESSAGES/kcminit.mo share/locale/ia/LC_MESSAGES/kfontinst.mo share/locale/ia/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/ia/LC_MESSAGES/kio5_applications.mo share/locale/ia/LC_MESSAGES/kio_desktop.mo share/locale/ia/LC_MESSAGES/klipper.mo share/locale/ia/LC_MESSAGES/krdb.mo share/locale/ia/LC_MESSAGES/krunner.mo share/locale/ia/LC_MESSAGES/ksmserver.mo share/locale/ia/LC_MESSAGES/libkicker.mo share/locale/ia/LC_MESSAGES/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.analogclock.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/ia/LC_MESSAGES/plasma_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_mpris2.mo share/locale/ia/LC_MESSAGES/plasma_engine_notifications.mo share/locale/ia/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/ia/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/ia/LC_MESSAGES/plasma_engine_time.mo share/locale/ia/LC_MESSAGES/plasma_engine_weather.mo share/locale/ia/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/ia/LC_MESSAGES/plasma_package_plasmashell.mo share/locale/ia/LC_MESSAGES/plasma_runner_activities.mo share/locale/ia/LC_MESSAGES/plasma_runner_appstream.mo share/locale/ia/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/ia/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/ia/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/ia/LC_MESSAGES/plasma_runner_kill.mo share/locale/ia/LC_MESSAGES/plasma_runner_locations.mo share/locale/ia/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/ia/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/ia/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/ia/LC_MESSAGES/plasma_runner_services.mo share/locale/ia/LC_MESSAGES/plasma_runner_sessions.mo share/locale/ia/LC_MESSAGES/plasma_runner_shell.mo share/locale/ia/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/ia/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/ia/LC_MESSAGES/plasma_runner_windows.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/soliduiserver5.mo share/locale/ia/LC_MESSAGES/systemmonitor.mo share/locale/id/LC_MESSAGES/freespacenotifier.mo share/locale/id/LC_MESSAGES/kcm5_icons.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_lookandfeel.mo share/locale/id/LC_MESSAGES/kcm_style.mo share/locale/id/LC_MESSAGES/kcm_translations.mo share/locale/id/LC_MESSAGES/kcminit.mo share/locale/id/LC_MESSAGES/kfontinst.mo share/locale/id/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/id/LC_MESSAGES/kio5_applications.mo share/locale/id/LC_MESSAGES/kio_desktop.mo share/locale/id/LC_MESSAGES/klipper.mo share/locale/id/LC_MESSAGES/krdb.mo share/locale/id/LC_MESSAGES/krunner.mo share/locale/id/LC_MESSAGES/ksmserver.mo share/locale/id/LC_MESSAGES/libkicker.mo share/locale/id/LC_MESSAGES/libkworkspace.mo share/locale/id/LC_MESSAGES/libnotificationmanager.mo share/locale/id/LC_MESSAGES/phonon_kde_plugin.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.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.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_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_mpris2.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_package_plasmashell.mo share/locale/id/LC_MESSAGES/plasma_runner_activities.mo share/locale/id/LC_MESSAGES/plasma_runner_appstream.mo share/locale/id/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/id/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/id/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/id/LC_MESSAGES/plasma_runner_kill.mo share/locale/id/LC_MESSAGES/plasma_runner_locations.mo share/locale/id/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/id/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/id/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/id/LC_MESSAGES/plasma_runner_services.mo share/locale/id/LC_MESSAGES/plasma_runner_sessions.mo share/locale/id/LC_MESSAGES/plasma_runner_shell.mo share/locale/id/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/id/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/id/LC_MESSAGES/plasma_runner_windows.mo share/locale/id/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/id/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/id/LC_MESSAGES/plasmashell.mo share/locale/id/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/id/LC_MESSAGES/soliduiserver5.mo share/locale/id/LC_MESSAGES/systemmonitor.mo share/locale/is/LC_MESSAGES/freespacenotifier.mo share/locale/is/LC_MESSAGES/kcm5_icons.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_fonts.mo share/locale/is/LC_MESSAGES/kcm_style.mo share/locale/is/LC_MESSAGES/kcminit.mo share/locale/is/LC_MESSAGES/kfontinst.mo share/locale/is/LC_MESSAGES/kio5_applications.mo share/locale/is/LC_MESSAGES/klipper.mo share/locale/is/LC_MESSAGES/krdb.mo share/locale/is/LC_MESSAGES/ksmserver.mo share/locale/is/LC_MESSAGES/libkworkspace.mo share/locale/is/LC_MESSAGES/phonon_kde_plugin.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/is/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/is/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/is/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/is/LC_MESSAGES/plasma_engine_notifications.mo share/locale/is/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/is/LC_MESSAGES/plasma_engine_weather.mo share/locale/is/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/is/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/is/LC_MESSAGES/plasma_runner_kill.mo share/locale/is/LC_MESSAGES/plasma_runner_locations.mo share/locale/is/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/is/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/is/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/is/LC_MESSAGES/plasma_runner_services.mo share/locale/is/LC_MESSAGES/plasma_runner_sessions.mo share/locale/is/LC_MESSAGES/plasma_runner_shell.mo share/locale/is/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/is/LC_MESSAGES/plasma_runner_windows.mo share/locale/is/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/is/LC_MESSAGES/soliduiserver5.mo share/locale/it/LC_MESSAGES/freespacenotifier.mo share/locale/it/LC_MESSAGES/kcm5_icons.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_lookandfeel.mo share/locale/it/LC_MESSAGES/kcm_style.mo share/locale/it/LC_MESSAGES/kcm_translations.mo share/locale/it/LC_MESSAGES/kcminit.mo share/locale/it/LC_MESSAGES/kfontinst.mo share/locale/it/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/it/LC_MESSAGES/kio5_applications.mo share/locale/it/LC_MESSAGES/kio_desktop.mo share/locale/it/LC_MESSAGES/klipper.mo share/locale/it/LC_MESSAGES/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/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.analogclock.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.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_mpris2.mo share/locale/it/LC_MESSAGES/plasma_engine_notifications.mo share/locale/it/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/it/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/it/LC_MESSAGES/plasma_engine_time.mo share/locale/it/LC_MESSAGES/plasma_engine_weather.mo share/locale/it/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/it/LC_MESSAGES/plasma_package_plasmashell.mo share/locale/it/LC_MESSAGES/plasma_runner_activities.mo share/locale/it/LC_MESSAGES/plasma_runner_appstream.mo share/locale/it/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/it/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/it/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/it/LC_MESSAGES/plasma_runner_kill.mo share/locale/it/LC_MESSAGES/plasma_runner_locations.mo share/locale/it/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/it/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/it/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/it/LC_MESSAGES/plasma_runner_services.mo share/locale/it/LC_MESSAGES/plasma_runner_sessions.mo share/locale/it/LC_MESSAGES/plasma_runner_shell.mo share/locale/it/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/it/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/it/LC_MESSAGES/plasma_runner_windows.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/soliduiserver5.mo share/locale/it/LC_MESSAGES/systemmonitor.mo share/locale/ja/LC_MESSAGES/freespacenotifier.mo share/locale/ja/LC_MESSAGES/kcm5_icons.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_lookandfeel.mo share/locale/ja/LC_MESSAGES/kcm_style.mo share/locale/ja/LC_MESSAGES/kcm_translations.mo share/locale/ja/LC_MESSAGES/kcminit.mo share/locale/ja/LC_MESSAGES/kfontinst.mo share/locale/ja/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/ja/LC_MESSAGES/kio5_applications.mo share/locale/ja/LC_MESSAGES/kio_desktop.mo share/locale/ja/LC_MESSAGES/klipper.mo share/locale/ja/LC_MESSAGES/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/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.analogclock.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/ja/LC_MESSAGES/plasma_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_mpris2.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_package_plasmashell.mo share/locale/ja/LC_MESSAGES/plasma_runner_activities.mo share/locale/ja/LC_MESSAGES/plasma_runner_appstream.mo share/locale/ja/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/ja/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/ja/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/ja/LC_MESSAGES/plasma_runner_kill.mo share/locale/ja/LC_MESSAGES/plasma_runner_locations.mo share/locale/ja/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/ja/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/ja/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/ja/LC_MESSAGES/plasma_runner_services.mo share/locale/ja/LC_MESSAGES/plasma_runner_sessions.mo share/locale/ja/LC_MESSAGES/plasma_runner_shell.mo share/locale/ja/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/ja/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/ja/LC_MESSAGES/plasma_runner_windows.mo share/locale/ja/LC_MESSAGES/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/soliduiserver5.mo share/locale/ja/LC_MESSAGES/systemmonitor.mo share/locale/kk/LC_MESSAGES/freespacenotifier.mo share/locale/kk/LC_MESSAGES/kcm5_icons.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_style.mo share/locale/kk/LC_MESSAGES/kcminit.mo share/locale/kk/LC_MESSAGES/kfontinst.mo share/locale/kk/LC_MESSAGES/kio5_applications.mo share/locale/kk/LC_MESSAGES/klipper.mo share/locale/kk/LC_MESSAGES/krdb.mo share/locale/kk/LC_MESSAGES/ksmserver.mo share/locale/kk/LC_MESSAGES/libkworkspace.mo share/locale/kk/LC_MESSAGES/phonon_kde_plugin.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/kk/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/kk/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/kk/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/kk/LC_MESSAGES/plasma_engine_keystate.mo share/locale/kk/LC_MESSAGES/plasma_engine_mpris2.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_activities.mo share/locale/kk/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/kk/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/kk/LC_MESSAGES/plasma_runner_kill.mo share/locale/kk/LC_MESSAGES/plasma_runner_locations.mo share/locale/kk/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/kk/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/kk/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/kk/LC_MESSAGES/plasma_runner_services.mo share/locale/kk/LC_MESSAGES/plasma_runner_sessions.mo share/locale/kk/LC_MESSAGES/plasma_runner_shell.mo share/locale/kk/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/kk/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/kk/LC_MESSAGES/plasma_runner_windows.mo share/locale/kk/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/kk/LC_MESSAGES/soliduiserver5.mo share/locale/km/LC_MESSAGES/freespacenotifier.mo share/locale/km/LC_MESSAGES/kcm5_icons.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_style.mo share/locale/km/LC_MESSAGES/kcminit.mo share/locale/km/LC_MESSAGES/kfontinst.mo share/locale/km/LC_MESSAGES/kio5_applications.mo share/locale/km/LC_MESSAGES/klipper.mo share/locale/km/LC_MESSAGES/krdb.mo share/locale/km/LC_MESSAGES/ksmserver.mo share/locale/km/LC_MESSAGES/libkworkspace.mo share/locale/km/LC_MESSAGES/phonon_kde_plugin.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/km/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/km/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/km/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/km/LC_MESSAGES/plasma_engine_keystate.mo share/locale/km/LC_MESSAGES/plasma_engine_mpris2.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_activities.mo share/locale/km/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/km/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/km/LC_MESSAGES/plasma_runner_kill.mo share/locale/km/LC_MESSAGES/plasma_runner_locations.mo share/locale/km/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/km/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/km/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/km/LC_MESSAGES/plasma_runner_services.mo share/locale/km/LC_MESSAGES/plasma_runner_sessions.mo share/locale/km/LC_MESSAGES/plasma_runner_shell.mo share/locale/km/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/km/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/km/LC_MESSAGES/plasma_runner_windows.mo share/locale/km/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/km/LC_MESSAGES/soliduiserver5.mo share/locale/kn/LC_MESSAGES/freespacenotifier.mo share/locale/kn/LC_MESSAGES/kcm5_icons.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_style.mo share/locale/kn/LC_MESSAGES/kcminit.mo share/locale/kn/LC_MESSAGES/kfontinst.mo share/locale/kn/LC_MESSAGES/kio5_applications.mo share/locale/kn/LC_MESSAGES/klipper.mo share/locale/kn/LC_MESSAGES/krdb.mo share/locale/kn/LC_MESSAGES/ksmserver.mo share/locale/kn/LC_MESSAGES/libkworkspace.mo share/locale/kn/LC_MESSAGES/phonon_kde_plugin.mo share/locale/kn/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/kn/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/kn/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/kn/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/kn/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/kn/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/kn/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/kn/LC_MESSAGES/plasma_engine_keystate.mo share/locale/kn/LC_MESSAGES/plasma_engine_notifications.mo share/locale/kn/LC_MESSAGES/plasma_engine_weather.mo share/locale/kn/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/kn/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/kn/LC_MESSAGES/plasma_runner_kill.mo share/locale/kn/LC_MESSAGES/plasma_runner_locations.mo share/locale/kn/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/kn/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/kn/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/kn/LC_MESSAGES/plasma_runner_services.mo share/locale/kn/LC_MESSAGES/plasma_runner_sessions.mo share/locale/kn/LC_MESSAGES/plasma_runner_shell.mo share/locale/kn/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/kn/LC_MESSAGES/plasma_runner_windows.mo share/locale/kn/LC_MESSAGES/soliduiserver5.mo share/locale/ko/LC_MESSAGES/freespacenotifier.mo share/locale/ko/LC_MESSAGES/kcm5_icons.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_lookandfeel.mo share/locale/ko/LC_MESSAGES/kcm_style.mo share/locale/ko/LC_MESSAGES/kcm_translations.mo share/locale/ko/LC_MESSAGES/kcminit.mo share/locale/ko/LC_MESSAGES/kfontinst.mo share/locale/ko/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/ko/LC_MESSAGES/kio5_applications.mo share/locale/ko/LC_MESSAGES/kio_desktop.mo share/locale/ko/LC_MESSAGES/klipper.mo share/locale/ko/LC_MESSAGES/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/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.analogclock.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.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_mpris2.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_package_plasmashell.mo share/locale/ko/LC_MESSAGES/plasma_runner_activities.mo share/locale/ko/LC_MESSAGES/plasma_runner_appstream.mo share/locale/ko/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/ko/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/ko/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/ko/LC_MESSAGES/plasma_runner_kill.mo share/locale/ko/LC_MESSAGES/plasma_runner_locations.mo share/locale/ko/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/ko/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/ko/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/ko/LC_MESSAGES/plasma_runner_services.mo share/locale/ko/LC_MESSAGES/plasma_runner_sessions.mo share/locale/ko/LC_MESSAGES/plasma_runner_shell.mo share/locale/ko/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/ko/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/ko/LC_MESSAGES/plasma_runner_windows.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/soliduiserver5.mo share/locale/ko/LC_MESSAGES/systemmonitor.mo share/locale/ku/LC_MESSAGES/kcm5_icons.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_style.mo share/locale/ku/LC_MESSAGES/kcminit.mo share/locale/ku/LC_MESSAGES/kfontinst.mo share/locale/ku/LC_MESSAGES/kio5_applications.mo share/locale/ku/LC_MESSAGES/klipper.mo share/locale/ku/LC_MESSAGES/krdb.mo share/locale/ku/LC_MESSAGES/ksmserver.mo share/locale/ku/LC_MESSAGES/libkworkspace.mo share/locale/ku/LC_MESSAGES/phonon_kde_plugin.mo share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/ku/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/ku/LC_MESSAGES/plasma_runner_locations.mo share/locale/ku/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/ku/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/ku/LC_MESSAGES/plasma_runner_sessions.mo share/locale/ku/LC_MESSAGES/plasma_runner_shell.mo share/locale/ku/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/ku/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/ku/LC_MESSAGES/soliduiserver5.mo share/locale/lb/LC_MESSAGES/kio5_applications.mo share/locale/lt/LC_MESSAGES/freespacenotifier.mo share/locale/lt/LC_MESSAGES/kcm5_icons.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_lookandfeel.mo share/locale/lt/LC_MESSAGES/kcm_style.mo share/locale/lt/LC_MESSAGES/kcm_translations.mo share/locale/lt/LC_MESSAGES/kcminit.mo share/locale/lt/LC_MESSAGES/kfontinst.mo share/locale/lt/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/lt/LC_MESSAGES/kio5_applications.mo share/locale/lt/LC_MESSAGES/kio_desktop.mo share/locale/lt/LC_MESSAGES/klipper.mo share/locale/lt/LC_MESSAGES/krdb.mo share/locale/lt/LC_MESSAGES/krunner.mo share/locale/lt/LC_MESSAGES/ksmserver.mo share/locale/lt/LC_MESSAGES/libkicker.mo share/locale/lt/LC_MESSAGES/libkworkspace.mo share/locale/lt/LC_MESSAGES/libnotificationmanager.mo share/locale/lt/LC_MESSAGES/phonon_kde_plugin.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.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.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_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_mpris2.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_package_plasmashell.mo share/locale/lt/LC_MESSAGES/plasma_runner_activities.mo share/locale/lt/LC_MESSAGES/plasma_runner_appstream.mo share/locale/lt/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/lt/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/lt/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/lt/LC_MESSAGES/plasma_runner_kill.mo share/locale/lt/LC_MESSAGES/plasma_runner_locations.mo share/locale/lt/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/lt/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/lt/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/lt/LC_MESSAGES/plasma_runner_services.mo share/locale/lt/LC_MESSAGES/plasma_runner_sessions.mo share/locale/lt/LC_MESSAGES/plasma_runner_shell.mo share/locale/lt/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/lt/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/lt/LC_MESSAGES/plasma_runner_windows.mo share/locale/lt/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/lt/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/lt/LC_MESSAGES/plasmashell.mo share/locale/lt/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/lt/LC_MESSAGES/soliduiserver5.mo share/locale/lt/LC_MESSAGES/systemmonitor.mo share/locale/lv/LC_MESSAGES/freespacenotifier.mo share/locale/lv/LC_MESSAGES/kcm5_icons.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_style.mo share/locale/lv/LC_MESSAGES/kcminit.mo share/locale/lv/LC_MESSAGES/kfontinst.mo share/locale/lv/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/lv/LC_MESSAGES/kio5_applications.mo share/locale/lv/LC_MESSAGES/kio_desktop.mo share/locale/lv/LC_MESSAGES/klipper.mo share/locale/lv/LC_MESSAGES/krdb.mo share/locale/lv/LC_MESSAGES/ksmserver.mo share/locale/lv/LC_MESSAGES/libkicker.mo share/locale/lv/LC_MESSAGES/libkworkspace.mo share/locale/lv/LC_MESSAGES/phonon_kde_plugin.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/lv/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/lv/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/lv/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/lv/LC_MESSAGES/plasma_engine_keystate.mo share/locale/lv/LC_MESSAGES/plasma_engine_notifications.mo share/locale/lv/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/lv/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/lv/LC_MESSAGES/plasma_engine_weather.mo share/locale/lv/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/lv/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/lv/LC_MESSAGES/plasma_runner_kill.mo share/locale/lv/LC_MESSAGES/plasma_runner_locations.mo share/locale/lv/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/lv/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/lv/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/lv/LC_MESSAGES/plasma_runner_services.mo share/locale/lv/LC_MESSAGES/plasma_runner_sessions.mo share/locale/lv/LC_MESSAGES/plasma_runner_shell.mo share/locale/lv/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/lv/LC_MESSAGES/plasma_runner_windows.mo share/locale/lv/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/lv/LC_MESSAGES/plasmashell.mo share/locale/lv/LC_MESSAGES/soliduiserver5.mo share/locale/lv/LC_MESSAGES/systemmonitor.mo share/locale/mai/LC_MESSAGES/freespacenotifier.mo share/locale/mai/LC_MESSAGES/kcm5_icons.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_style.mo share/locale/mai/LC_MESSAGES/kcminit.mo share/locale/mai/LC_MESSAGES/kfontinst.mo share/locale/mai/LC_MESSAGES/kio5_applications.mo share/locale/mai/LC_MESSAGES/klipper.mo share/locale/mai/LC_MESSAGES/krdb.mo share/locale/mai/LC_MESSAGES/ksmserver.mo share/locale/mai/LC_MESSAGES/libkworkspace.mo share/locale/mai/LC_MESSAGES/phonon_kde_plugin.mo share/locale/mai/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/mai/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/mai/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/mai/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/mai/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/mai/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/mai/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/mai/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/mai/LC_MESSAGES/plasma_engine_keystate.mo share/locale/mai/LC_MESSAGES/plasma_engine_notifications.mo share/locale/mai/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/mai/LC_MESSAGES/plasma_engine_weather.mo share/locale/mai/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/mai/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/mai/LC_MESSAGES/plasma_runner_kill.mo share/locale/mai/LC_MESSAGES/plasma_runner_locations.mo share/locale/mai/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/mai/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/mai/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/mai/LC_MESSAGES/plasma_runner_services.mo share/locale/mai/LC_MESSAGES/plasma_runner_sessions.mo share/locale/mai/LC_MESSAGES/plasma_runner_shell.mo share/locale/mai/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/mai/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/mai/LC_MESSAGES/plasma_runner_windows.mo share/locale/mai/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/mai/LC_MESSAGES/soliduiserver5.mo share/locale/mk/LC_MESSAGES/kcm5_icons.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_style.mo share/locale/mk/LC_MESSAGES/kcminit.mo share/locale/mk/LC_MESSAGES/kfontinst.mo share/locale/mk/LC_MESSAGES/kio5_applications.mo share/locale/mk/LC_MESSAGES/klipper.mo share/locale/mk/LC_MESSAGES/krdb.mo share/locale/mk/LC_MESSAGES/ksmserver.mo share/locale/mk/LC_MESSAGES/libkworkspace.mo share/locale/mk/LC_MESSAGES/phonon_kde_plugin.mo share/locale/mk/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/mk/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/mk/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/mk/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/mk/LC_MESSAGES/plasma_runner_locations.mo share/locale/mk/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/mk/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/mk/LC_MESSAGES/plasma_runner_sessions.mo share/locale/mk/LC_MESSAGES/plasma_runner_shell.mo share/locale/mk/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/mk/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/mk/LC_MESSAGES/soliduiserver5.mo share/locale/ml/LC_MESSAGES/freespacenotifier.mo share/locale/ml/LC_MESSAGES/kcm5_icons.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_lookandfeel.mo share/locale/ml/LC_MESSAGES/kcm_style.mo share/locale/ml/LC_MESSAGES/kcm_translations.mo share/locale/ml/LC_MESSAGES/kcminit.mo share/locale/ml/LC_MESSAGES/kfontinst.mo share/locale/ml/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/ml/LC_MESSAGES/kio5_applications.mo share/locale/ml/LC_MESSAGES/kio_desktop.mo share/locale/ml/LC_MESSAGES/klipper.mo share/locale/ml/LC_MESSAGES/krdb.mo share/locale/ml/LC_MESSAGES/krunner.mo share/locale/ml/LC_MESSAGES/ksmserver.mo share/locale/ml/LC_MESSAGES/libkicker.mo share/locale/ml/LC_MESSAGES/libkworkspace.mo share/locale/ml/LC_MESSAGES/libnotificationmanager.mo share/locale/ml/LC_MESSAGES/phonon_kde_plugin.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/ml/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/ml/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/ml/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/ml/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/ml/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/ml/LC_MESSAGES/plasma_engine_dict.mo share/locale/ml/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/ml/LC_MESSAGES/plasma_engine_keystate.mo share/locale/ml/LC_MESSAGES/plasma_engine_mpris2.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_package_plasmashell.mo share/locale/ml/LC_MESSAGES/plasma_runner_activities.mo share/locale/ml/LC_MESSAGES/plasma_runner_appstream.mo share/locale/ml/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/ml/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/ml/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/ml/LC_MESSAGES/plasma_runner_kill.mo share/locale/ml/LC_MESSAGES/plasma_runner_locations.mo share/locale/ml/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/ml/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/ml/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/ml/LC_MESSAGES/plasma_runner_services.mo share/locale/ml/LC_MESSAGES/plasma_runner_sessions.mo share/locale/ml/LC_MESSAGES/plasma_runner_shell.mo share/locale/ml/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/ml/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/ml/LC_MESSAGES/plasma_runner_windows.mo share/locale/ml/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/ml/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/ml/LC_MESSAGES/plasmashell.mo share/locale/ml/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/ml/LC_MESSAGES/soliduiserver5.mo share/locale/ml/LC_MESSAGES/systemmonitor.mo share/locale/mr/LC_MESSAGES/freespacenotifier.mo share/locale/mr/LC_MESSAGES/kcm5_icons.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_style.mo share/locale/mr/LC_MESSAGES/kcminit.mo share/locale/mr/LC_MESSAGES/kfontinst.mo share/locale/mr/LC_MESSAGES/kio5_applications.mo share/locale/mr/LC_MESSAGES/klipper.mo share/locale/mr/LC_MESSAGES/krdb.mo share/locale/mr/LC_MESSAGES/ksmserver.mo share/locale/mr/LC_MESSAGES/libkicker.mo share/locale/mr/LC_MESSAGES/libkworkspace.mo share/locale/mr/LC_MESSAGES/phonon_kde_plugin.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/mr/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/mr/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/mr/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/mr/LC_MESSAGES/plasma_engine_keystate.mo share/locale/mr/LC_MESSAGES/plasma_engine_mpris2.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_activities.mo share/locale/mr/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/mr/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/mr/LC_MESSAGES/plasma_runner_kill.mo share/locale/mr/LC_MESSAGES/plasma_runner_locations.mo share/locale/mr/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/mr/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/mr/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/mr/LC_MESSAGES/plasma_runner_services.mo share/locale/mr/LC_MESSAGES/plasma_runner_sessions.mo share/locale/mr/LC_MESSAGES/plasma_runner_shell.mo share/locale/mr/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/mr/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/mr/LC_MESSAGES/plasma_runner_windows.mo share/locale/mr/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/mr/LC_MESSAGES/soliduiserver5.mo share/locale/ms/LC_MESSAGES/freespacenotifier.mo share/locale/ms/LC_MESSAGES/kcm5_icons.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_style.mo share/locale/ms/LC_MESSAGES/kcminit.mo share/locale/ms/LC_MESSAGES/kfontinst.mo share/locale/ms/LC_MESSAGES/kio5_applications.mo share/locale/ms/LC_MESSAGES/klipper.mo share/locale/ms/LC_MESSAGES/krdb.mo share/locale/ms/LC_MESSAGES/ksmserver.mo share/locale/ms/LC_MESSAGES/libkworkspace.mo share/locale/ms/LC_MESSAGES/phonon_kde_plugin.mo share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/ms/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/ms/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/ms/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/ms/LC_MESSAGES/plasma_engine_keystate.mo share/locale/ms/LC_MESSAGES/plasma_engine_notifications.mo share/locale/ms/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/ms/LC_MESSAGES/plasma_engine_weather.mo share/locale/ms/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/ms/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/ms/LC_MESSAGES/plasma_runner_kill.mo share/locale/ms/LC_MESSAGES/plasma_runner_locations.mo share/locale/ms/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/ms/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/ms/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/ms/LC_MESSAGES/plasma_runner_services.mo share/locale/ms/LC_MESSAGES/plasma_runner_sessions.mo share/locale/ms/LC_MESSAGES/plasma_runner_shell.mo share/locale/ms/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/ms/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/ms/LC_MESSAGES/plasma_runner_windows.mo share/locale/ms/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/ms/LC_MESSAGES/soliduiserver5.mo share/locale/nb/LC_MESSAGES/freespacenotifier.mo share/locale/nb/LC_MESSAGES/kcm5_icons.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_lookandfeel.mo share/locale/nb/LC_MESSAGES/kcm_style.mo share/locale/nb/LC_MESSAGES/kcm_translations.mo share/locale/nb/LC_MESSAGES/kcminit.mo share/locale/nb/LC_MESSAGES/kfontinst.mo share/locale/nb/LC_MESSAGES/kio5_applications.mo share/locale/nb/LC_MESSAGES/kio_desktop.mo share/locale/nb/LC_MESSAGES/klipper.mo share/locale/nb/LC_MESSAGES/krdb.mo share/locale/nb/LC_MESSAGES/krunner.mo share/locale/nb/LC_MESSAGES/ksmserver.mo share/locale/nb/LC_MESSAGES/libkicker.mo share/locale/nb/LC_MESSAGES/libkworkspace.mo share/locale/nb/LC_MESSAGES/phonon_kde_plugin.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/nb/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/nb/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/nb/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/nb/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/nb/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/nb/LC_MESSAGES/plasma_engine_dict.mo share/locale/nb/LC_MESSAGES/plasma_engine_keystate.mo share/locale/nb/LC_MESSAGES/plasma_engine_mpris2.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_package_plasmashell.mo share/locale/nb/LC_MESSAGES/plasma_runner_activities.mo share/locale/nb/LC_MESSAGES/plasma_runner_appstream.mo share/locale/nb/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/nb/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/nb/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/nb/LC_MESSAGES/plasma_runner_kill.mo share/locale/nb/LC_MESSAGES/plasma_runner_locations.mo share/locale/nb/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/nb/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/nb/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/nb/LC_MESSAGES/plasma_runner_services.mo share/locale/nb/LC_MESSAGES/plasma_runner_sessions.mo share/locale/nb/LC_MESSAGES/plasma_runner_shell.mo share/locale/nb/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/nb/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/nb/LC_MESSAGES/plasma_runner_windows.mo share/locale/nb/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/nb/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/nb/LC_MESSAGES/plasmashell.mo share/locale/nb/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/nb/LC_MESSAGES/soliduiserver5.mo share/locale/nb/LC_MESSAGES/systemmonitor.mo share/locale/nds/LC_MESSAGES/freespacenotifier.mo share/locale/nds/LC_MESSAGES/kcm5_icons.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_lookandfeel.mo share/locale/nds/LC_MESSAGES/kcm_style.mo share/locale/nds/LC_MESSAGES/kcm_translations.mo share/locale/nds/LC_MESSAGES/kcminit.mo share/locale/nds/LC_MESSAGES/kfontinst.mo share/locale/nds/LC_MESSAGES/kio5_applications.mo share/locale/nds/LC_MESSAGES/klipper.mo share/locale/nds/LC_MESSAGES/krdb.mo share/locale/nds/LC_MESSAGES/krunner.mo share/locale/nds/LC_MESSAGES/ksmserver.mo share/locale/nds/LC_MESSAGES/libkicker.mo share/locale/nds/LC_MESSAGES/libkworkspace.mo share/locale/nds/LC_MESSAGES/phonon_kde_plugin.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/nds/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/nds/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/nds/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/nds/LC_MESSAGES/plasma_engine_keystate.mo share/locale/nds/LC_MESSAGES/plasma_engine_mpris2.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_package_plasmashell.mo share/locale/nds/LC_MESSAGES/plasma_runner_activities.mo share/locale/nds/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/nds/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/nds/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/nds/LC_MESSAGES/plasma_runner_kill.mo share/locale/nds/LC_MESSAGES/plasma_runner_locations.mo share/locale/nds/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/nds/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/nds/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/nds/LC_MESSAGES/plasma_runner_services.mo share/locale/nds/LC_MESSAGES/plasma_runner_sessions.mo share/locale/nds/LC_MESSAGES/plasma_runner_shell.mo share/locale/nds/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/nds/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/nds/LC_MESSAGES/plasma_runner_windows.mo share/locale/nds/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/nds/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/nds/LC_MESSAGES/plasmashell.mo share/locale/nds/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/nds/LC_MESSAGES/soliduiserver5.mo share/locale/nds/LC_MESSAGES/systemmonitor.mo share/locale/ne/LC_MESSAGES/kcm5_icons.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_style.mo share/locale/ne/LC_MESSAGES/kcminit.mo share/locale/ne/LC_MESSAGES/kfontinst.mo share/locale/ne/LC_MESSAGES/kio5_applications.mo share/locale/ne/LC_MESSAGES/klipper.mo share/locale/ne/LC_MESSAGES/krdb.mo share/locale/ne/LC_MESSAGES/ksmserver.mo share/locale/ne/LC_MESSAGES/libkworkspace.mo share/locale/ne/LC_MESSAGES/phonon_kde_plugin.mo share/locale/ne/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/ne/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/ne/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/ne/LC_MESSAGES/soliduiserver5.mo share/locale/nl/LC_MESSAGES/freespacenotifier.mo share/locale/nl/LC_MESSAGES/kcm5_icons.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_lookandfeel.mo share/locale/nl/LC_MESSAGES/kcm_style.mo share/locale/nl/LC_MESSAGES/kcm_translations.mo share/locale/nl/LC_MESSAGES/kcminit.mo share/locale/nl/LC_MESSAGES/kfontinst.mo share/locale/nl/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/nl/LC_MESSAGES/kio5_applications.mo share/locale/nl/LC_MESSAGES/kio_desktop.mo share/locale/nl/LC_MESSAGES/klipper.mo share/locale/nl/LC_MESSAGES/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/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.analogclock.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.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_mpris2.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_package_plasmashell.mo share/locale/nl/LC_MESSAGES/plasma_runner_activities.mo share/locale/nl/LC_MESSAGES/plasma_runner_appstream.mo share/locale/nl/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/nl/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/nl/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/nl/LC_MESSAGES/plasma_runner_kill.mo share/locale/nl/LC_MESSAGES/plasma_runner_locations.mo share/locale/nl/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/nl/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/nl/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/nl/LC_MESSAGES/plasma_runner_services.mo share/locale/nl/LC_MESSAGES/plasma_runner_sessions.mo share/locale/nl/LC_MESSAGES/plasma_runner_shell.mo share/locale/nl/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/nl/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/nl/LC_MESSAGES/plasma_runner_windows.mo share/locale/nl/LC_MESSAGES/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/soliduiserver5.mo share/locale/nl/LC_MESSAGES/systemmonitor.mo share/locale/nn/LC_MESSAGES/freespacenotifier.mo share/locale/nn/LC_MESSAGES/kcm5_icons.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_lookandfeel.mo share/locale/nn/LC_MESSAGES/kcm_style.mo share/locale/nn/LC_MESSAGES/kcm_translations.mo share/locale/nn/LC_MESSAGES/kcminit.mo share/locale/nn/LC_MESSAGES/kfontinst.mo share/locale/nn/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/nn/LC_MESSAGES/kio5_applications.mo share/locale/nn/LC_MESSAGES/kio_desktop.mo share/locale/nn/LC_MESSAGES/klipper.mo share/locale/nn/LC_MESSAGES/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.analogclock.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.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_mpris2.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_package_plasmashell.mo share/locale/nn/LC_MESSAGES/plasma_runner_activities.mo share/locale/nn/LC_MESSAGES/plasma_runner_appstream.mo share/locale/nn/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/nn/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/nn/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/nn/LC_MESSAGES/plasma_runner_kill.mo share/locale/nn/LC_MESSAGES/plasma_runner_locations.mo share/locale/nn/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/nn/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/nn/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/nn/LC_MESSAGES/plasma_runner_services.mo share/locale/nn/LC_MESSAGES/plasma_runner_sessions.mo share/locale/nn/LC_MESSAGES/plasma_runner_shell.mo share/locale/nn/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/nn/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/nn/LC_MESSAGES/plasma_runner_windows.mo share/locale/nn/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/nn/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/nn/LC_MESSAGES/plasmashell.mo share/locale/nn/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/nn/LC_MESSAGES/soliduiserver5.mo share/locale/nn/LC_MESSAGES/systemmonitor.mo share/locale/oc/LC_MESSAGES/kcm5_icons.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_style.mo share/locale/oc/LC_MESSAGES/kcminit.mo share/locale/oc/LC_MESSAGES/kfontinst.mo share/locale/oc/LC_MESSAGES/kio5_applications.mo share/locale/oc/LC_MESSAGES/klipper.mo share/locale/oc/LC_MESSAGES/krdb.mo share/locale/oc/LC_MESSAGES/ksmserver.mo share/locale/oc/LC_MESSAGES/libkworkspace.mo share/locale/oc/LC_MESSAGES/phonon_kde_plugin.mo share/locale/oc/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/oc/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/oc/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/oc/LC_MESSAGES/soliduiserver5.mo share/locale/or/LC_MESSAGES/kcm5_icons.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_style.mo share/locale/or/LC_MESSAGES/kcminit.mo share/locale/or/LC_MESSAGES/kfontinst.mo share/locale/or/LC_MESSAGES/kio5_applications.mo share/locale/or/LC_MESSAGES/klipper.mo share/locale/or/LC_MESSAGES/krdb.mo share/locale/or/LC_MESSAGES/ksmserver.mo share/locale/or/LC_MESSAGES/libkworkspace.mo share/locale/or/LC_MESSAGES/phonon_kde_plugin.mo share/locale/or/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/or/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/or/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/or/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/or/LC_MESSAGES/plasma_runner_locations.mo share/locale/or/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/or/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/or/LC_MESSAGES/plasma_runner_sessions.mo share/locale/or/LC_MESSAGES/plasma_runner_shell.mo share/locale/or/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/or/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/or/LC_MESSAGES/soliduiserver5.mo share/locale/pa/LC_MESSAGES/freespacenotifier.mo share/locale/pa/LC_MESSAGES/kcm5_icons.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_lookandfeel.mo share/locale/pa/LC_MESSAGES/kcm_style.mo share/locale/pa/LC_MESSAGES/kcm_translations.mo share/locale/pa/LC_MESSAGES/kcminit.mo share/locale/pa/LC_MESSAGES/kfontinst.mo share/locale/pa/LC_MESSAGES/kio5_applications.mo share/locale/pa/LC_MESSAGES/kio_desktop.mo share/locale/pa/LC_MESSAGES/klipper.mo share/locale/pa/LC_MESSAGES/krdb.mo share/locale/pa/LC_MESSAGES/krunner.mo share/locale/pa/LC_MESSAGES/ksmserver.mo share/locale/pa/LC_MESSAGES/libkicker.mo share/locale/pa/LC_MESSAGES/libkworkspace.mo share/locale/pa/LC_MESSAGES/libnotificationmanager.mo share/locale/pa/LC_MESSAGES/phonon_kde_plugin.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/pa/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/pa/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/pa/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/pa/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/pa/LC_MESSAGES/plasma_engine_keystate.mo share/locale/pa/LC_MESSAGES/plasma_engine_mpris2.mo share/locale/pa/LC_MESSAGES/plasma_engine_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_package_plasmashell.mo share/locale/pa/LC_MESSAGES/plasma_runner_activities.mo share/locale/pa/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/pa/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/pa/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/pa/LC_MESSAGES/plasma_runner_kill.mo share/locale/pa/LC_MESSAGES/plasma_runner_locations.mo share/locale/pa/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/pa/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/pa/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/pa/LC_MESSAGES/plasma_runner_services.mo share/locale/pa/LC_MESSAGES/plasma_runner_sessions.mo share/locale/pa/LC_MESSAGES/plasma_runner_shell.mo share/locale/pa/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/pa/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/pa/LC_MESSAGES/plasma_runner_windows.mo share/locale/pa/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/pa/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/pa/LC_MESSAGES/plasmashell.mo share/locale/pa/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/pa/LC_MESSAGES/soliduiserver5.mo share/locale/pa/LC_MESSAGES/systemmonitor.mo share/locale/pl/LC_MESSAGES/freespacenotifier.mo share/locale/pl/LC_MESSAGES/kcm5_icons.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_lookandfeel.mo share/locale/pl/LC_MESSAGES/kcm_style.mo share/locale/pl/LC_MESSAGES/kcm_translations.mo share/locale/pl/LC_MESSAGES/kcminit.mo share/locale/pl/LC_MESSAGES/kfontinst.mo share/locale/pl/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/pl/LC_MESSAGES/kio5_applications.mo share/locale/pl/LC_MESSAGES/kio_desktop.mo share/locale/pl/LC_MESSAGES/klipper.mo share/locale/pl/LC_MESSAGES/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/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.analogclock.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.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_mpris2.mo share/locale/pl/LC_MESSAGES/plasma_engine_notifications.mo share/locale/pl/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/pl/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/pl/LC_MESSAGES/plasma_engine_time.mo share/locale/pl/LC_MESSAGES/plasma_engine_weather.mo share/locale/pl/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/pl/LC_MESSAGES/plasma_package_plasmashell.mo share/locale/pl/LC_MESSAGES/plasma_runner_activities.mo share/locale/pl/LC_MESSAGES/plasma_runner_appstream.mo share/locale/pl/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/pl/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/pl/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/pl/LC_MESSAGES/plasma_runner_kill.mo share/locale/pl/LC_MESSAGES/plasma_runner_locations.mo share/locale/pl/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/pl/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/pl/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/pl/LC_MESSAGES/plasma_runner_services.mo share/locale/pl/LC_MESSAGES/plasma_runner_sessions.mo share/locale/pl/LC_MESSAGES/plasma_runner_shell.mo share/locale/pl/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/pl/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/pl/LC_MESSAGES/plasma_runner_windows.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/soliduiserver5.mo share/locale/pl/LC_MESSAGES/systemmonitor.mo share/locale/pt/LC_MESSAGES/freespacenotifier.mo share/locale/pt/LC_MESSAGES/kcm5_icons.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_lookandfeel.mo share/locale/pt/LC_MESSAGES/kcm_style.mo share/locale/pt/LC_MESSAGES/kcm_translations.mo share/locale/pt/LC_MESSAGES/kcminit.mo share/locale/pt/LC_MESSAGES/kfontinst.mo share/locale/pt/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/pt/LC_MESSAGES/kio5_applications.mo share/locale/pt/LC_MESSAGES/kio_desktop.mo share/locale/pt/LC_MESSAGES/klipper.mo share/locale/pt/LC_MESSAGES/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.analogclock.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.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_mpris2.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_package_plasmashell.mo share/locale/pt/LC_MESSAGES/plasma_runner_activities.mo share/locale/pt/LC_MESSAGES/plasma_runner_appstream.mo share/locale/pt/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/pt/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/pt/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/pt/LC_MESSAGES/plasma_runner_kill.mo share/locale/pt/LC_MESSAGES/plasma_runner_locations.mo share/locale/pt/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/pt/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/pt/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/pt/LC_MESSAGES/plasma_runner_services.mo share/locale/pt/LC_MESSAGES/plasma_runner_sessions.mo share/locale/pt/LC_MESSAGES/plasma_runner_shell.mo share/locale/pt/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/pt/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/pt/LC_MESSAGES/plasma_runner_windows.mo share/locale/pt/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/pt/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/pt/LC_MESSAGES/plasmashell.mo share/locale/pt/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/pt/LC_MESSAGES/soliduiserver5.mo share/locale/pt/LC_MESSAGES/systemmonitor.mo share/locale/pt_BR/LC_MESSAGES/freespacenotifier.mo share/locale/pt_BR/LC_MESSAGES/kcm5_icons.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_lookandfeel.mo share/locale/pt_BR/LC_MESSAGES/kcm_style.mo share/locale/pt_BR/LC_MESSAGES/kcm_translations.mo share/locale/pt_BR/LC_MESSAGES/kcminit.mo share/locale/pt_BR/LC_MESSAGES/kfontinst.mo share/locale/pt_BR/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/pt_BR/LC_MESSAGES/kio5_applications.mo share/locale/pt_BR/LC_MESSAGES/kio_desktop.mo share/locale/pt_BR/LC_MESSAGES/klipper.mo share/locale/pt_BR/LC_MESSAGES/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/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.analogclock.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.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_mpris2.mo share/locale/pt_BR/LC_MESSAGES/plasma_engine_notifications.mo share/locale/pt_BR/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/pt_BR/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/pt_BR/LC_MESSAGES/plasma_engine_time.mo share/locale/pt_BR/LC_MESSAGES/plasma_engine_weather.mo share/locale/pt_BR/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/pt_BR/LC_MESSAGES/plasma_package_plasmashell.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_activities.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_appstream.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_kill.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_locations.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_services.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_sessions.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_shell.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_windows.mo share/locale/pt_BR/LC_MESSAGES/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/soliduiserver5.mo share/locale/pt_BR/LC_MESSAGES/systemmonitor.mo share/locale/ro/LC_MESSAGES/freespacenotifier.mo share/locale/ro/LC_MESSAGES/kcm5_icons.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_lookandfeel.mo share/locale/ro/LC_MESSAGES/kcm_style.mo share/locale/ro/LC_MESSAGES/kcm_translations.mo share/locale/ro/LC_MESSAGES/kcminit.mo share/locale/ro/LC_MESSAGES/kfontinst.mo share/locale/ro/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/ro/LC_MESSAGES/kio5_applications.mo share/locale/ro/LC_MESSAGES/kio_desktop.mo share/locale/ro/LC_MESSAGES/klipper.mo share/locale/ro/LC_MESSAGES/krdb.mo share/locale/ro/LC_MESSAGES/krunner.mo share/locale/ro/LC_MESSAGES/ksmserver.mo share/locale/ro/LC_MESSAGES/libkicker.mo share/locale/ro/LC_MESSAGES/libkworkspace.mo share/locale/ro/LC_MESSAGES/libnotificationmanager.mo share/locale/ro/LC_MESSAGES/phonon_kde_plugin.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.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_mpris2.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_package_plasmashell.mo share/locale/ro/LC_MESSAGES/plasma_runner_activities.mo share/locale/ro/LC_MESSAGES/plasma_runner_appstream.mo share/locale/ro/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/ro/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/ro/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/ro/LC_MESSAGES/plasma_runner_kill.mo share/locale/ro/LC_MESSAGES/plasma_runner_locations.mo share/locale/ro/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/ro/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/ro/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/ro/LC_MESSAGES/plasma_runner_services.mo share/locale/ro/LC_MESSAGES/plasma_runner_sessions.mo share/locale/ro/LC_MESSAGES/plasma_runner_shell.mo share/locale/ro/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/ro/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/ro/LC_MESSAGES/plasma_runner_windows.mo share/locale/ro/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/ro/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/ro/LC_MESSAGES/plasmashell.mo share/locale/ro/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/ro/LC_MESSAGES/soliduiserver5.mo share/locale/ro/LC_MESSAGES/systemmonitor.mo share/locale/ru/LC_MESSAGES/freespacenotifier.mo share/locale/ru/LC_MESSAGES/kcm5_icons.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_lookandfeel.mo share/locale/ru/LC_MESSAGES/kcm_style.mo share/locale/ru/LC_MESSAGES/kcm_translations.mo share/locale/ru/LC_MESSAGES/kcminit.mo share/locale/ru/LC_MESSAGES/kfontinst.mo share/locale/ru/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/ru/LC_MESSAGES/kio5_applications.mo share/locale/ru/LC_MESSAGES/kio_desktop.mo share/locale/ru/LC_MESSAGES/klipper.mo share/locale/ru/LC_MESSAGES/krdb.mo share/locale/ru/LC_MESSAGES/krunner.mo share/locale/ru/LC_MESSAGES/ksmserver.mo share/locale/ru/LC_MESSAGES/libkicker.mo share/locale/ru/LC_MESSAGES/libkworkspace.mo share/locale/ru/LC_MESSAGES/libnotificationmanager.mo share/locale/ru/LC_MESSAGES/phonon_kde_plugin.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.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_mpris2.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_package_plasmashell.mo share/locale/ru/LC_MESSAGES/plasma_runner_activities.mo share/locale/ru/LC_MESSAGES/plasma_runner_appstream.mo share/locale/ru/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/ru/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/ru/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/ru/LC_MESSAGES/plasma_runner_kill.mo share/locale/ru/LC_MESSAGES/plasma_runner_locations.mo share/locale/ru/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/ru/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/ru/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/ru/LC_MESSAGES/plasma_runner_services.mo share/locale/ru/LC_MESSAGES/plasma_runner_sessions.mo share/locale/ru/LC_MESSAGES/plasma_runner_shell.mo share/locale/ru/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/ru/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/ru/LC_MESSAGES/plasma_runner_windows.mo share/locale/ru/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/ru/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/ru/LC_MESSAGES/plasmashell.mo share/locale/ru/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/ru/LC_MESSAGES/soliduiserver5.mo share/locale/ru/LC_MESSAGES/systemmonitor.mo share/locale/se/LC_MESSAGES/kcm5_icons.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_style.mo share/locale/se/LC_MESSAGES/kcminit.mo share/locale/se/LC_MESSAGES/kfontinst.mo share/locale/se/LC_MESSAGES/kio5_applications.mo share/locale/se/LC_MESSAGES/klipper.mo share/locale/se/LC_MESSAGES/krdb.mo share/locale/se/LC_MESSAGES/krunner.mo share/locale/se/LC_MESSAGES/ksmserver.mo share/locale/se/LC_MESSAGES/libkworkspace.mo share/locale/se/LC_MESSAGES/phonon_kde_plugin.mo share/locale/se/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/se/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/se/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/se/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/se/LC_MESSAGES/soliduiserver5.mo share/locale/si/LC_MESSAGES/kcm5_icons.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_style.mo share/locale/si/LC_MESSAGES/kcminit.mo share/locale/si/LC_MESSAGES/kfontinst.mo share/locale/si/LC_MESSAGES/kio5_applications.mo share/locale/si/LC_MESSAGES/klipper.mo share/locale/si/LC_MESSAGES/krdb.mo share/locale/si/LC_MESSAGES/ksmserver.mo share/locale/si/LC_MESSAGES/libkworkspace.mo share/locale/si/LC_MESSAGES/phonon_kde_plugin.mo share/locale/si/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/si/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/si/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/si/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/si/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/si/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/si/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/si/LC_MESSAGES/plasma_engine_keystate.mo share/locale/si/LC_MESSAGES/plasma_engine_notifications.mo share/locale/si/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/si/LC_MESSAGES/plasma_engine_weather.mo share/locale/si/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/si/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/si/LC_MESSAGES/plasma_runner_locations.mo share/locale/si/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/si/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/si/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/si/LC_MESSAGES/plasma_runner_sessions.mo share/locale/si/LC_MESSAGES/plasma_runner_shell.mo share/locale/si/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/si/LC_MESSAGES/plasma_runner_windows.mo share/locale/si/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/si/LC_MESSAGES/soliduiserver5.mo share/locale/sk/LC_MESSAGES/freespacenotifier.mo share/locale/sk/LC_MESSAGES/kcm5_icons.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_lookandfeel.mo share/locale/sk/LC_MESSAGES/kcm_style.mo share/locale/sk/LC_MESSAGES/kcm_translations.mo share/locale/sk/LC_MESSAGES/kcminit.mo share/locale/sk/LC_MESSAGES/kfontinst.mo share/locale/sk/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/sk/LC_MESSAGES/kio5_applications.mo share/locale/sk/LC_MESSAGES/kio_desktop.mo share/locale/sk/LC_MESSAGES/klipper.mo share/locale/sk/LC_MESSAGES/krdb.mo share/locale/sk/LC_MESSAGES/krunner.mo share/locale/sk/LC_MESSAGES/ksmserver.mo share/locale/sk/LC_MESSAGES/libkicker.mo share/locale/sk/LC_MESSAGES/libkworkspace.mo share/locale/sk/LC_MESSAGES/libnotificationmanager.mo share/locale/sk/LC_MESSAGES/phonon_kde_plugin.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.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_mpris2.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_package_plasmashell.mo share/locale/sk/LC_MESSAGES/plasma_runner_activities.mo share/locale/sk/LC_MESSAGES/plasma_runner_appstream.mo share/locale/sk/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/sk/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/sk/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/sk/LC_MESSAGES/plasma_runner_kill.mo share/locale/sk/LC_MESSAGES/plasma_runner_locations.mo share/locale/sk/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/sk/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/sk/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/sk/LC_MESSAGES/plasma_runner_services.mo share/locale/sk/LC_MESSAGES/plasma_runner_sessions.mo share/locale/sk/LC_MESSAGES/plasma_runner_shell.mo share/locale/sk/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/sk/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/sk/LC_MESSAGES/plasma_runner_windows.mo share/locale/sk/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/sk/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/sk/LC_MESSAGES/plasmashell.mo share/locale/sk/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/sk/LC_MESSAGES/soliduiserver5.mo share/locale/sk/LC_MESSAGES/systemmonitor.mo share/locale/sl/LC_MESSAGES/freespacenotifier.mo share/locale/sl/LC_MESSAGES/kcm5_icons.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_lookandfeel.mo share/locale/sl/LC_MESSAGES/kcm_style.mo share/locale/sl/LC_MESSAGES/kcm_translations.mo share/locale/sl/LC_MESSAGES/kcminit.mo share/locale/sl/LC_MESSAGES/kfontinst.mo share/locale/sl/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/sl/LC_MESSAGES/kio5_applications.mo share/locale/sl/LC_MESSAGES/kio_desktop.mo share/locale/sl/LC_MESSAGES/klipper.mo share/locale/sl/LC_MESSAGES/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/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.analogclock.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.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_mpris2.mo share/locale/sl/LC_MESSAGES/plasma_engine_notifications.mo share/locale/sl/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/sl/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/sl/LC_MESSAGES/plasma_engine_time.mo share/locale/sl/LC_MESSAGES/plasma_engine_weather.mo share/locale/sl/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/sl/LC_MESSAGES/plasma_package_plasmashell.mo share/locale/sl/LC_MESSAGES/plasma_runner_activities.mo share/locale/sl/LC_MESSAGES/plasma_runner_appstream.mo share/locale/sl/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/sl/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/sl/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/sl/LC_MESSAGES/plasma_runner_kill.mo share/locale/sl/LC_MESSAGES/plasma_runner_locations.mo share/locale/sl/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/sl/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/sl/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/sl/LC_MESSAGES/plasma_runner_services.mo share/locale/sl/LC_MESSAGES/plasma_runner_sessions.mo share/locale/sl/LC_MESSAGES/plasma_runner_shell.mo share/locale/sl/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/sl/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/sl/LC_MESSAGES/plasma_runner_windows.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/soliduiserver5.mo share/locale/sl/LC_MESSAGES/systemmonitor.mo share/locale/sq/LC_MESSAGES/kcm5_icons.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_style.mo share/locale/sq/LC_MESSAGES/kcminit.mo share/locale/sq/LC_MESSAGES/kfontinst.mo share/locale/sq/LC_MESSAGES/kio5_applications.mo share/locale/sq/LC_MESSAGES/klipper.mo share/locale/sq/LC_MESSAGES/krdb.mo share/locale/sq/LC_MESSAGES/ksmserver.mo share/locale/sq/LC_MESSAGES/libkworkspace.mo share/locale/sq/LC_MESSAGES/phonon_kde_plugin.mo share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/sq/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/sq/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/sq/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/sq/LC_MESSAGES/plasma_engine_keystate.mo share/locale/sq/LC_MESSAGES/plasma_engine_notifications.mo share/locale/sq/LC_MESSAGES/plasma_engine_weather.mo share/locale/sq/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/sq/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/sq/LC_MESSAGES/plasma_runner_locations.mo share/locale/sq/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/sq/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/sq/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/sq/LC_MESSAGES/plasma_runner_services.mo share/locale/sq/LC_MESSAGES/plasma_runner_sessions.mo share/locale/sq/LC_MESSAGES/plasma_runner_shell.mo share/locale/sq/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/sq/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/sq/LC_MESSAGES/soliduiserver5.mo share/locale/sr/LC_MESSAGES/freespacenotifier.mo share/locale/sr/LC_MESSAGES/kcm5_icons.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_lookandfeel.mo share/locale/sr/LC_MESSAGES/kcm_style.mo share/locale/sr/LC_MESSAGES/kcm_translations.mo share/locale/sr/LC_MESSAGES/kcminit.mo share/locale/sr/LC_MESSAGES/kfontinst.mo share/locale/sr/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/sr/LC_MESSAGES/kio5_applications.mo share/locale/sr/LC_MESSAGES/kio_desktop.mo share/locale/sr/LC_MESSAGES/klipper.mo share/locale/sr/LC_MESSAGES/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_mpris2.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_package_plasmashell.mo share/locale/sr/LC_MESSAGES/plasma_runner_activities.mo share/locale/sr/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/sr/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/sr/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/sr/LC_MESSAGES/plasma_runner_kill.mo share/locale/sr/LC_MESSAGES/plasma_runner_locations.mo share/locale/sr/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/sr/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/sr/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/sr/LC_MESSAGES/plasma_runner_services.mo share/locale/sr/LC_MESSAGES/plasma_runner_sessions.mo share/locale/sr/LC_MESSAGES/plasma_runner_shell.mo share/locale/sr/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/sr/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/sr/LC_MESSAGES/plasma_runner_windows.mo share/locale/sr/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/sr/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/sr/LC_MESSAGES/plasmashell.mo share/locale/sr/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/sr/LC_MESSAGES/soliduiserver5.mo share/locale/sr/LC_MESSAGES/systemmonitor.mo share/locale/sr@ijekavian/LC_MESSAGES/freespacenotifier.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm5_icons.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_lookandfeel.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_style.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_translations.mo share/locale/sr@ijekavian/LC_MESSAGES/kcminit.mo share/locale/sr@ijekavian/LC_MESSAGES/kfontinst.mo share/locale/sr@ijekavian/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/sr@ijekavian/LC_MESSAGES/kio5_applications.mo share/locale/sr@ijekavian/LC_MESSAGES/kio_desktop.mo share/locale/sr@ijekavian/LC_MESSAGES/klipper.mo share/locale/sr@ijekavian/LC_MESSAGES/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_mpris2.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_package_plasmashell.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_activities.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_kill.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_locations.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_services.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_sessions.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_shell.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_windows.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/sr@ijekavian/LC_MESSAGES/plasmashell.mo share/locale/sr@ijekavian/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/sr@ijekavian/LC_MESSAGES/soliduiserver5.mo share/locale/sr@ijekavian/LC_MESSAGES/systemmonitor.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/freespacenotifier.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm5_icons.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_lookandfeel.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_style.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_translations.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcminit.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kfontinst.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kio5_applications.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kio_desktop.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/klipper.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/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_mpris2.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_package_plasmashell.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_activities.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_kill.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_locations.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_services.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_sessions.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_shell.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_windows.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasmashell.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/soliduiserver5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/systemmonitor.mo share/locale/sr@latin/LC_MESSAGES/freespacenotifier.mo share/locale/sr@latin/LC_MESSAGES/kcm5_icons.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_lookandfeel.mo share/locale/sr@latin/LC_MESSAGES/kcm_style.mo share/locale/sr@latin/LC_MESSAGES/kcm_translations.mo share/locale/sr@latin/LC_MESSAGES/kcminit.mo share/locale/sr@latin/LC_MESSAGES/kfontinst.mo share/locale/sr@latin/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/sr@latin/LC_MESSAGES/kio5_applications.mo share/locale/sr@latin/LC_MESSAGES/kio_desktop.mo share/locale/sr@latin/LC_MESSAGES/klipper.mo share/locale/sr@latin/LC_MESSAGES/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_mpris2.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_package_plasmashell.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_activities.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_kill.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_locations.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_services.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_sessions.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_shell.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_windows.mo share/locale/sr@latin/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/sr@latin/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/sr@latin/LC_MESSAGES/plasmashell.mo share/locale/sr@latin/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/sr@latin/LC_MESSAGES/soliduiserver5.mo share/locale/sr@latin/LC_MESSAGES/systemmonitor.mo share/locale/ta/LC_MESSAGES/kcm5_icons.mo share/locale/ta/LC_MESSAGES/kcm_colors.mo share/locale/ta/LC_MESSAGES/kcm_cursortheme.mo share/locale/ta/LC_MESSAGES/kcm_fonts.mo share/locale/ta/LC_MESSAGES/kcm_style.mo share/locale/ta/LC_MESSAGES/kcminit.mo share/locale/ta/LC_MESSAGES/kfontinst.mo share/locale/ta/LC_MESSAGES/kio5_applications.mo share/locale/ta/LC_MESSAGES/klipper.mo share/locale/ta/LC_MESSAGES/krdb.mo share/locale/ta/LC_MESSAGES/ksmserver.mo share/locale/ta/LC_MESSAGES/libkworkspace.mo share/locale/ta/LC_MESSAGES/phonon_kde_plugin.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/ta/LC_MESSAGES/plasma_runner_locations.mo share/locale/ta/LC_MESSAGES/plasma_runner_shell.mo share/locale/ta/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/ta/LC_MESSAGES/soliduiserver5.mo share/locale/te/LC_MESSAGES/kcm5_icons.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_style.mo share/locale/te/LC_MESSAGES/kcminit.mo share/locale/te/LC_MESSAGES/kfontinst.mo share/locale/te/LC_MESSAGES/kio5_applications.mo share/locale/te/LC_MESSAGES/klipper.mo share/locale/te/LC_MESSAGES/krdb.mo share/locale/te/LC_MESSAGES/ksmserver.mo share/locale/te/LC_MESSAGES/libkworkspace.mo share/locale/te/LC_MESSAGES/phonon_kde_plugin.mo share/locale/te/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/te/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/te/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/te/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/te/LC_MESSAGES/plasma_runner_locations.mo share/locale/te/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/te/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/te/LC_MESSAGES/plasma_runner_sessions.mo share/locale/te/LC_MESSAGES/plasma_runner_shell.mo share/locale/te/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/te/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/te/LC_MESSAGES/soliduiserver5.mo share/locale/tg/LC_MESSAGES/freespacenotifier.mo share/locale/tg/LC_MESSAGES/kcm5_icons.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_lookandfeel.mo share/locale/tg/LC_MESSAGES/kcm_style.mo share/locale/tg/LC_MESSAGES/kcm_translations.mo share/locale/tg/LC_MESSAGES/kcminit.mo share/locale/tg/LC_MESSAGES/kfontinst.mo share/locale/tg/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/tg/LC_MESSAGES/kio5_applications.mo share/locale/tg/LC_MESSAGES/kio_desktop.mo share/locale/tg/LC_MESSAGES/klipper.mo share/locale/tg/LC_MESSAGES/krdb.mo share/locale/tg/LC_MESSAGES/krunner.mo share/locale/tg/LC_MESSAGES/ksmserver.mo share/locale/tg/LC_MESSAGES/libkicker.mo share/locale/tg/LC_MESSAGES/libkworkspace.mo share/locale/tg/LC_MESSAGES/libnotificationmanager.mo share/locale/tg/LC_MESSAGES/phonon_kde_plugin.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/tg/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/tg/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/tg/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/tg/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/tg/LC_MESSAGES/plasma_engine_dict.mo share/locale/tg/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/tg/LC_MESSAGES/plasma_engine_notifications.mo share/locale/tg/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/tg/LC_MESSAGES/plasma_engine_time.mo share/locale/tg/LC_MESSAGES/plasma_engine_weather.mo share/locale/tg/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/tg/LC_MESSAGES/plasma_runner_activities.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_runner_windowedwidgets.mo share/locale/tg/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/tg/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/tg/LC_MESSAGES/plasmashell.mo share/locale/tg/LC_MESSAGES/soliduiserver5.mo share/locale/tg/LC_MESSAGES/systemmonitor.mo share/locale/th/LC_MESSAGES/freespacenotifier.mo share/locale/th/LC_MESSAGES/kcm5_icons.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_style.mo share/locale/th/LC_MESSAGES/kcminit.mo share/locale/th/LC_MESSAGES/kfontinst.mo share/locale/th/LC_MESSAGES/kio5_applications.mo share/locale/th/LC_MESSAGES/klipper.mo share/locale/th/LC_MESSAGES/krdb.mo share/locale/th/LC_MESSAGES/ksmserver.mo share/locale/th/LC_MESSAGES/libkworkspace.mo share/locale/th/LC_MESSAGES/phonon_kde_plugin.mo share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/th/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/th/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/th/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/th/LC_MESSAGES/plasma_engine_keystate.mo share/locale/th/LC_MESSAGES/plasma_engine_notifications.mo share/locale/th/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/th/LC_MESSAGES/plasma_engine_weather.mo share/locale/th/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/th/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/th/LC_MESSAGES/plasma_runner_kill.mo share/locale/th/LC_MESSAGES/plasma_runner_locations.mo share/locale/th/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/th/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/th/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/th/LC_MESSAGES/plasma_runner_services.mo share/locale/th/LC_MESSAGES/plasma_runner_sessions.mo share/locale/th/LC_MESSAGES/plasma_runner_shell.mo share/locale/th/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/th/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/th/LC_MESSAGES/plasma_runner_windows.mo share/locale/th/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/th/LC_MESSAGES/soliduiserver5.mo share/locale/tr/LC_MESSAGES/freespacenotifier.mo share/locale/tr/LC_MESSAGES/kcm5_icons.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_fonts.mo share/locale/tr/LC_MESSAGES/kcm_lookandfeel.mo share/locale/tr/LC_MESSAGES/kcm_style.mo share/locale/tr/LC_MESSAGES/kcm_translations.mo share/locale/tr/LC_MESSAGES/kcminit.mo share/locale/tr/LC_MESSAGES/kfontinst.mo share/locale/tr/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/tr/LC_MESSAGES/kio5_applications.mo share/locale/tr/LC_MESSAGES/kio_desktop.mo share/locale/tr/LC_MESSAGES/klipper.mo share/locale/tr/LC_MESSAGES/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/libkworkspace.mo share/locale/tr/LC_MESSAGES/phonon_kde_plugin.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/tr/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/tr/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/tr/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/tr/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/tr/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/tr/LC_MESSAGES/plasma_engine_keystate.mo share/locale/tr/LC_MESSAGES/plasma_engine_mpris2.mo share/locale/tr/LC_MESSAGES/plasma_engine_notifications.mo share/locale/tr/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/tr/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/tr/LC_MESSAGES/plasma_engine_time.mo share/locale/tr/LC_MESSAGES/plasma_engine_weather.mo share/locale/tr/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/tr/LC_MESSAGES/plasma_package_plasmashell.mo share/locale/tr/LC_MESSAGES/plasma_runner_activities.mo share/locale/tr/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/tr/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/tr/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/tr/LC_MESSAGES/plasma_runner_kill.mo share/locale/tr/LC_MESSAGES/plasma_runner_locations.mo share/locale/tr/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/tr/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/tr/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/tr/LC_MESSAGES/plasma_runner_services.mo share/locale/tr/LC_MESSAGES/plasma_runner_sessions.mo share/locale/tr/LC_MESSAGES/plasma_runner_shell.mo share/locale/tr/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/tr/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/tr/LC_MESSAGES/plasma_runner_windows.mo share/locale/tr/LC_MESSAGES/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/soliduiserver5.mo share/locale/tr/LC_MESSAGES/systemmonitor.mo share/locale/ug/LC_MESSAGES/freespacenotifier.mo share/locale/ug/LC_MESSAGES/kcm5_icons.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_style.mo share/locale/ug/LC_MESSAGES/kcminit.mo share/locale/ug/LC_MESSAGES/kfontinst.mo share/locale/ug/LC_MESSAGES/kio5_applications.mo share/locale/ug/LC_MESSAGES/klipper.mo share/locale/ug/LC_MESSAGES/krdb.mo share/locale/ug/LC_MESSAGES/ksmserver.mo share/locale/ug/LC_MESSAGES/libkicker.mo share/locale/ug/LC_MESSAGES/libkworkspace.mo share/locale/ug/LC_MESSAGES/phonon_kde_plugin.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/ug/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/ug/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/ug/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/ug/LC_MESSAGES/plasma_engine_keystate.mo share/locale/ug/LC_MESSAGES/plasma_engine_mpris2.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_activities.mo share/locale/ug/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/ug/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/ug/LC_MESSAGES/plasma_runner_kill.mo share/locale/ug/LC_MESSAGES/plasma_runner_locations.mo share/locale/ug/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/ug/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/ug/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/ug/LC_MESSAGES/plasma_runner_services.mo share/locale/ug/LC_MESSAGES/plasma_runner_sessions.mo share/locale/ug/LC_MESSAGES/plasma_runner_shell.mo share/locale/ug/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/ug/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/ug/LC_MESSAGES/plasma_runner_windows.mo share/locale/ug/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/ug/LC_MESSAGES/soliduiserver5.mo share/locale/uk/LC_MESSAGES/freespacenotifier.mo share/locale/uk/LC_MESSAGES/kcm5_icons.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_lookandfeel.mo share/locale/uk/LC_MESSAGES/kcm_style.mo share/locale/uk/LC_MESSAGES/kcm_translations.mo share/locale/uk/LC_MESSAGES/kcminit.mo share/locale/uk/LC_MESSAGES/kfontinst.mo share/locale/uk/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/uk/LC_MESSAGES/kio5_applications.mo share/locale/uk/LC_MESSAGES/kio_desktop.mo share/locale/uk/LC_MESSAGES/klipper.mo share/locale/uk/LC_MESSAGES/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/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.analogclock.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.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_mpris2.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_package_plasmashell.mo share/locale/uk/LC_MESSAGES/plasma_runner_activities.mo share/locale/uk/LC_MESSAGES/plasma_runner_appstream.mo share/locale/uk/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/uk/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/uk/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/uk/LC_MESSAGES/plasma_runner_kill.mo share/locale/uk/LC_MESSAGES/plasma_runner_locations.mo share/locale/uk/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/uk/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/uk/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/uk/LC_MESSAGES/plasma_runner_services.mo share/locale/uk/LC_MESSAGES/plasma_runner_sessions.mo share/locale/uk/LC_MESSAGES/plasma_runner_shell.mo share/locale/uk/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/uk/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/uk/LC_MESSAGES/plasma_runner_windows.mo share/locale/uk/LC_MESSAGES/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/soliduiserver5.mo share/locale/uk/LC_MESSAGES/systemmonitor.mo share/locale/uz/LC_MESSAGES/kcm5_icons.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_style.mo share/locale/uz/LC_MESSAGES/kfontinst.mo share/locale/uz/LC_MESSAGES/kio5_applications.mo share/locale/uz/LC_MESSAGES/klipper.mo share/locale/uz/LC_MESSAGES/ksmserver.mo share/locale/uz@cyrillic/LC_MESSAGES/kcm5_icons.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_style.mo share/locale/uz@cyrillic/LC_MESSAGES/kfontinst.mo share/locale/uz@cyrillic/LC_MESSAGES/kio5_applications.mo share/locale/uz@cyrillic/LC_MESSAGES/klipper.mo share/locale/uz@cyrillic/LC_MESSAGES/ksmserver.mo share/locale/uz@cyrillic/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/vi/LC_MESSAGES/freespacenotifier.mo share/locale/vi/LC_MESSAGES/kcm5_icons.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_style.mo share/locale/vi/LC_MESSAGES/kcm_translations.mo share/locale/vi/LC_MESSAGES/kcminit.mo share/locale/vi/LC_MESSAGES/kfontinst.mo share/locale/vi/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/vi/LC_MESSAGES/kio5_applications.mo share/locale/vi/LC_MESSAGES/kio_desktop.mo share/locale/vi/LC_MESSAGES/klipper.mo share/locale/vi/LC_MESSAGES/krdb.mo share/locale/vi/LC_MESSAGES/krunner.mo share/locale/vi/LC_MESSAGES/ksmserver.mo share/locale/vi/LC_MESSAGES/libkicker.mo share/locale/vi/LC_MESSAGES/libkworkspace.mo share/locale/vi/LC_MESSAGES/libnotificationmanager.mo share/locale/vi/LC_MESSAGES/phonon_kde_plugin.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.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.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_wallpaper_org.kde.color.mo share/locale/vi/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/vi/LC_MESSAGES/plasmashell.mo share/locale/vi/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/vi/LC_MESSAGES/soliduiserver5.mo share/locale/vi/LC_MESSAGES/systemmonitor.mo share/locale/wa/LC_MESSAGES/freespacenotifier.mo share/locale/wa/LC_MESSAGES/kcm5_icons.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_style.mo share/locale/wa/LC_MESSAGES/kcminit.mo share/locale/wa/LC_MESSAGES/kfontinst.mo share/locale/wa/LC_MESSAGES/kio5_applications.mo share/locale/wa/LC_MESSAGES/klipper.mo share/locale/wa/LC_MESSAGES/krdb.mo share/locale/wa/LC_MESSAGES/ksmserver.mo share/locale/wa/LC_MESSAGES/libkworkspace.mo share/locale/wa/LC_MESSAGES/phonon_kde_plugin.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/wa/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/wa/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/wa/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/wa/LC_MESSAGES/plasma_engine_keystate.mo share/locale/wa/LC_MESSAGES/plasma_engine_notifications.mo share/locale/wa/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/wa/LC_MESSAGES/plasma_engine_weather.mo share/locale/wa/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/wa/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/wa/LC_MESSAGES/plasma_runner_kill.mo share/locale/wa/LC_MESSAGES/plasma_runner_locations.mo share/locale/wa/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/wa/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/wa/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/wa/LC_MESSAGES/plasma_runner_services.mo share/locale/wa/LC_MESSAGES/plasma_runner_sessions.mo share/locale/wa/LC_MESSAGES/plasma_runner_shell.mo share/locale/wa/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/wa/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/wa/LC_MESSAGES/plasma_runner_windows.mo share/locale/wa/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/wa/LC_MESSAGES/soliduiserver5.mo share/locale/xh/LC_MESSAGES/kcm5_icons.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_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/kcm5_icons.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_lookandfeel.mo share/locale/zh_CN/LC_MESSAGES/kcm_style.mo share/locale/zh_CN/LC_MESSAGES/kcm_translations.mo share/locale/zh_CN/LC_MESSAGES/kcminit.mo share/locale/zh_CN/LC_MESSAGES/kfontinst.mo share/locale/zh_CN/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/zh_CN/LC_MESSAGES/kio5_applications.mo share/locale/zh_CN/LC_MESSAGES/kio_desktop.mo share/locale/zh_CN/LC_MESSAGES/klipper.mo share/locale/zh_CN/LC_MESSAGES/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/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.analogclock.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.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_mpris2.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_package_plasmashell.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_activities.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_appstream.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_kill.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_locations.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_services.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_sessions.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_shell.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_windows.mo share/locale/zh_CN/LC_MESSAGES/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/soliduiserver5.mo share/locale/zh_CN/LC_MESSAGES/systemmonitor.mo share/locale/zh_TW/LC_MESSAGES/freespacenotifier.mo share/locale/zh_TW/LC_MESSAGES/kcm5_icons.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_lookandfeel.mo share/locale/zh_TW/LC_MESSAGES/kcm_style.mo share/locale/zh_TW/LC_MESSAGES/kcm_translations.mo share/locale/zh_TW/LC_MESSAGES/kcminit.mo share/locale/zh_TW/LC_MESSAGES/kfontinst.mo share/locale/zh_TW/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/zh_TW/LC_MESSAGES/kio5_applications.mo share/locale/zh_TW/LC_MESSAGES/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/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.analogclock.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/zh_TW/LC_MESSAGES/plasma_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_mpris2.mo share/locale/zh_TW/LC_MESSAGES/plasma_engine_notifications.mo share/locale/zh_TW/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/zh_TW/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/zh_TW/LC_MESSAGES/plasma_engine_time.mo share/locale/zh_TW/LC_MESSAGES/plasma_engine_weather.mo share/locale/zh_TW/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/zh_TW/LC_MESSAGES/plasma_package_plasmashell.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_activities.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_appstream.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_kill.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_locations.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_services.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_sessions.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_shell.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_windows.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/soliduiserver5.mo share/locale/zh_TW/LC_MESSAGES/systemmonitor.mo share/metainfo/org.kde.breeze.desktop.appdata.xml share/metainfo/org.kde.color.appdata.xml share/metainfo/org.kde.image.appdata.xml share/metainfo/org.kde.plasma.activitybar.appdata.xml share/metainfo/org.kde.plasma.analogclock.appdata.xml share/metainfo/org.kde.plasma.appmenu.appdata.xml share/metainfo/org.kde.plasma.battery.appdata.xml share/metainfo/org.kde.plasma.calendar.appdata.xml share/metainfo/org.kde.plasma.clipboard.appdata.xml share/metainfo/org.kde.plasma.devicenotifier.appdata.xml share/metainfo/org.kde.plasma.digitalclock.appdata.xml share/metainfo/org.kde.plasma.lock_logout.appdata.xml share/metainfo/org.kde.plasma.mediacontroller.appdata.xml share/metainfo/org.kde.plasma.notifications.appdata.xml share/metainfo/org.kde.plasma.systemmonitor.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/look-and-feel/org.kde.breeze.desktop/contents/components/ActionButton.qml share/plasma/look-and-feel/org.kde.breeze.desktop/contents/components/Battery.qml share/plasma/look-and-feel/org.kde.breeze.desktop/contents/components/Clock.qml share/plasma/look-and-feel/org.kde.breeze.desktop/contents/components/KeyboardLayoutButton.qml share/plasma/look-and-feel/org.kde.breeze.desktop/contents/components/SessionManagementScreen.qml share/plasma/look-and-feel/org.kde.breeze.desktop/contents/components/UserDelegate.qml share/plasma/look-and-feel/org.kde.breeze.desktop/contents/components/UserList.qml share/plasma/look-and-feel/org.kde.breeze.desktop/contents/components/VirtualKeyboard.qml share/plasma/look-and-feel/org.kde.breeze.desktop/contents/components/WallpaperFader.qml share/plasma/look-and-feel/org.kde.breeze.desktop/contents/components/artwork/README.txt share/plasma/look-and-feel/org.kde.breeze.desktop/contents/components/artwork/logout_primary.svgz share/plasma/look-and-feel/org.kde.breeze.desktop/contents/components/artwork/restart_primary.svgz share/plasma/look-and-feel/org.kde.breeze.desktop/contents/components/artwork/shutdown_primary.svgz share/plasma/look-and-feel/org.kde.breeze.desktop/contents/defaults share/plasma/look-and-feel/org.kde.breeze.desktop/contents/desktopswitcher/DesktopSwitcher.qml share/plasma/look-and-feel/org.kde.breeze.desktop/contents/lockscreen/LockOsd.qml share/plasma/look-and-feel/org.kde.breeze.desktop/contents/lockscreen/LockScreen.qml share/plasma/look-and-feel/org.kde.breeze.desktop/contents/lockscreen/LockScreenUi.qml share/plasma/look-and-feel/org.kde.breeze.desktop/contents/lockscreen/MainBlock.qml share/plasma/look-and-feel/org.kde.breeze.desktop/contents/lockscreen/MediaControls.qml share/plasma/look-and-feel/org.kde.breeze.desktop/contents/lockscreen/config.qml share/plasma/look-and-feel/org.kde.breeze.desktop/contents/lockscreen/config.xml share/plasma/look-and-feel/org.kde.breeze.desktop/contents/logout/Logout.qml share/plasma/look-and-feel/org.kde.breeze.desktop/contents/logout/LogoutButton.qml share/plasma/look-and-feel/org.kde.breeze.desktop/contents/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/desktopswitcher.png share/plasma/look-and-feel/org.kde.breeze.desktop/contents/previews/fullscreenpreview.jpg share/plasma/look-and-feel/org.kde.breeze.desktop/contents/previews/lockscreen.png share/plasma/look-and-feel/org.kde.breeze.desktop/contents/previews/loginmanager.png share/plasma/look-and-feel/org.kde.breeze.desktop/contents/previews/preview.png share/plasma/look-and-feel/org.kde.breeze.desktop/contents/previews/runcommand.png share/plasma/look-and-feel/org.kde.breeze.desktop/contents/previews/splash.png share/plasma/look-and-feel/org.kde.breeze.desktop/contents/previews/userswitcher.png share/plasma/look-and-feel/org.kde.breeze.desktop/contents/previews/windowdecoration.png share/plasma/look-and-feel/org.kde.breeze.desktop/contents/previews/windowswitcher.png share/plasma/look-and-feel/org.kde.breeze.desktop/contents/runcommand/RunCommand.qml share/plasma/look-and-feel/org.kde.breeze.desktop/contents/splash/Splash.qml share/plasma/look-and-feel/org.kde.breeze.desktop/contents/splash/images/busywidget.svgz share/plasma/look-and-feel/org.kde.breeze.desktop/contents/splash/images/kde.svgz share/plasma/look-and-feel/org.kde.breeze.desktop/contents/splash/images/plasma.svgz share/plasma/look-and-feel/org.kde.breeze.desktop/contents/windowdecoration/WindowDecoration.qml share/plasma/look-and-feel/org.kde.breeze.desktop/contents/windowswitcher/WindowSwitcher.qml share/plasma/look-and-feel/org.kde.breeze.desktop/metadata.desktop share/plasma/look-and-feel/org.kde.breeze.desktop/metadata.json share/plasma/plasmoids/org.kde.plasma.activitybar/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.activitybar/metadata.desktop share/plasma/plasmoids/org.kde.plasma.activitybar/metadata.json share/plasma/plasmoids/org.kde.plasma.analogclock/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.analogclock/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.analogclock/contents/ui/Hand.qml share/plasma/plasmoids/org.kde.plasma.analogclock/contents/ui/analogclock.qml share/plasma/plasmoids/org.kde.plasma.analogclock/contents/ui/configGeneral.qml share/plasma/plasmoids/org.kde.plasma.analogclock/metadata.desktop share/plasma/plasmoids/org.kde.plasma.analogclock/metadata.json share/plasma/plasmoids/org.kde.plasma.appmenu/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.appmenu/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.appmenu/contents/ui/configGeneral.qml share/plasma/plasmoids/org.kde.plasma.appmenu/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.appmenu/metadata.desktop share/plasma/plasmoids/org.kde.plasma.appmenu/metadata.json share/plasma/plasmoids/org.kde.plasma.battery/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.battery/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.battery/contents/ui/BadgeOverlay.qml share/plasma/plasmoids/org.kde.plasma.battery/contents/ui/BatteryItem.qml share/plasma/plasmoids/org.kde.plasma.battery/contents/ui/BrightnessItem.qml share/plasma/plasmoids/org.kde.plasma.battery/contents/ui/CompactRepresentation.qml share/plasma/plasmoids/org.kde.plasma.battery/contents/ui/ConfigGeneral.qml share/plasma/plasmoids/org.kde.plasma.battery/contents/ui/InhibitionHint.qml share/plasma/plasmoids/org.kde.plasma.battery/contents/ui/PopupDialog.qml share/plasma/plasmoids/org.kde.plasma.battery/contents/ui/PowerManagementItem.qml share/plasma/plasmoids/org.kde.plasma.battery/contents/ui/batterymonitor.qml share/plasma/plasmoids/org.kde.plasma.battery/contents/ui/logic.js share/plasma/plasmoids/org.kde.plasma.battery/metadata.desktop share/plasma/plasmoids/org.kde.plasma.battery/metadata.json share/plasma/plasmoids/org.kde.plasma.calendar/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.calendar/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.calendar/contents/images/mini-calendar.svgz share/plasma/plasmoids/org.kde.plasma.calendar/contents/ui/configAgenda.qml share/plasma/plasmoids/org.kde.plasma.calendar/contents/ui/configGeneral.qml share/plasma/plasmoids/org.kde.plasma.calendar/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.calendar/metadata.desktop share/plasma/plasmoids/org.kde.plasma.calendar/metadata.json share/plasma/plasmoids/org.kde.plasma.clipboard/contents/ui/BarcodePage.qml share/plasma/plasmoids/org.kde.plasma.clipboard/contents/ui/ClipboardItemDelegate.qml share/plasma/plasmoids/org.kde.plasma.clipboard/contents/ui/ClipboardPage.qml share/plasma/plasmoids/org.kde.plasma.clipboard/contents/ui/DelegateToolButtons.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/clipboard.qml share/plasma/plasmoids/org.kde.plasma.clipboard/metadata.desktop share/plasma/plasmoids/org.kde.plasma.clipboard/metadata.json share/plasma/plasmoids/org.kde.plasma.devicenotifier/contents/config/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/devicenotifier.qml share/plasma/plasmoids/org.kde.plasma.devicenotifier/metadata.desktop share/plasma/plasmoids/org.kde.plasma.devicenotifier/metadata.json share/plasma/plasmoids/org.kde.plasma.digitalclock/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.digitalclock/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.digitalclock/contents/ui/CalendarView.qml share/plasma/plasmoids/org.kde.plasma.digitalclock/contents/ui/DigitalClock.qml share/plasma/plasmoids/org.kde.plasma.digitalclock/contents/ui/MonthMenu.qml share/plasma/plasmoids/org.kde.plasma.digitalclock/contents/ui/Tooltip.qml share/plasma/plasmoids/org.kde.plasma.digitalclock/contents/ui/configAppearance.qml share/plasma/plasmoids/org.kde.plasma.digitalclock/contents/ui/configCalendar.qml share/plasma/plasmoids/org.kde.plasma.digitalclock/contents/ui/configTimeZones.qml share/plasma/plasmoids/org.kde.plasma.digitalclock/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.digitalclock/metadata.desktop share/plasma/plasmoids/org.kde.plasma.digitalclock/metadata.json share/plasma/plasmoids/org.kde.plasma.icon/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.icon/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.icon/metadata.desktop share/plasma/plasmoids/org.kde.plasma.icon/metadata.json share/plasma/plasmoids/org.kde.plasma.lock_logout/contents/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/lockout.qml share/plasma/plasmoids/org.kde.plasma.lock_logout/metadata.desktop share/plasma/plasmoids/org.kde.plasma.lock_logout/metadata.json share/plasma/plasmoids/org.kde.plasma.mediacontroller/contents/ui/ExpandedRepresentation.qml share/plasma/plasmoids/org.kde.plasma.mediacontroller/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.mediacontroller/metadata.desktop share/plasma/plasmoids/org.kde.plasma.mediacontroller/metadata.json share/plasma/plasmoids/org.kde.plasma.notifications/contents/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.desktop share/plasma/plasmoids/org.kde.plasma.notifications/metadata.json share/plasma/plasmoids/org.kde.plasma.panelspacer/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.panelspacer/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.panelspacer/metadata.desktop share/plasma/plasmoids/org.kde.plasma.panelspacer/metadata.json share/plasma/plasmoids/org.kde.plasma.private.systemtray/contents/applet/CompactApplet.qml share/plasma/plasmoids/org.kde.plasma.private.systemtray/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.private.systemtray/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.private.systemtray/contents/ui/ConfigEntries.qml share/plasma/plasmoids/org.kde.plasma.private.systemtray/contents/ui/ConfigGeneral.qml share/plasma/plasmoids/org.kde.plasma.private.systemtray/contents/ui/CurrentItemHighLight.qml share/plasma/plasmoids/org.kde.plasma.private.systemtray/contents/ui/ExpandedRepresentation.qml share/plasma/plasmoids/org.kde.plasma.private.systemtray/contents/ui/ExpanderArrow.qml share/plasma/plasmoids/org.kde.plasma.private.systemtray/contents/ui/HiddenItemsView.qml share/plasma/plasmoids/org.kde.plasma.private.systemtray/contents/ui/PlasmoidPopupsContainer.qml share/plasma/plasmoids/org.kde.plasma.private.systemtray/contents/ui/items/AbstractItem.qml share/plasma/plasmoids/org.kde.plasma.private.systemtray/contents/ui/items/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.desktop 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.desktop 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.desktop 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.desktop 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.desktop 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.desktop 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.desktop 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.desktop 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.desktop share/plasma/plasmoids/org.kde.plasma.systemtray/metadata.json share/plasma/services/activities.operations share/plasma/services/applicationjobs.operations share/plasma/services/apps.operations share/plasma/services/hotplug.operations share/plasma/services/modifierkeystate.operations share/plasma/services/mpris2.operations share/plasma/services/notifications.operations share/plasma/services/org.kde.places.operations share/plasma/services/org.kde.plasma.clipboard.operations share/plasma/services/packagekit.operations share/plasma/services/powermanagementservice.operations share/plasma/services/soliddevice.operations share/plasma/services/statusnotifieritem.operations share/plasma/wallpapers/org.kde.color/contents/config/main.xml share/plasma/wallpapers/org.kde.color/contents/ui/config.qml share/plasma/wallpapers/org.kde.color/contents/ui/main.qml share/plasma/wallpapers/org.kde.color/metadata.desktop share/plasma/wallpapers/org.kde.color/metadata.json share/plasma/wallpapers/org.kde.color/plasma-wallpaper-color.desktop share/plasma/wallpapers/org.kde.image/contents/config/main.xml share/plasma/wallpapers/org.kde.image/contents/ui/WallpaperDelegate.qml share/plasma/wallpapers/org.kde.image/contents/ui/config.qml share/plasma/wallpapers/org.kde.image/contents/ui/main.qml share/plasma/wallpapers/org.kde.image/metadata.desktop share/plasma/wallpapers/org.kde.image/metadata.json share/plasma/wallpapers/org.kde.image/platformcontents/phone/ui/WallpaperDelegate.qml share/plasma/wallpapers/org.kde.image/platformcontents/phone/ui/config.qml share/plasma/wallpapers/org.kde.image/platformcontents/phone/ui/customwallpaper.qml share/plasma/wallpapers/org.kde.image/platformcontents/touch/ui/WallpaperDelegate.qml share/plasma/wallpapers/org.kde.image/platformcontents/touch/ui/config.qml share/plasma/wallpapers/org.kde.slideshow/contents/config/main.xml share/plasma/wallpapers/org.kde.slideshow/contents/ui/WallpaperDelegate.qml share/plasma/wallpapers/org.kde.slideshow/contents/ui/config.qml share/plasma/wallpapers/org.kde.slideshow/contents/ui/main.qml share/plasma/wallpapers/org.kde.slideshow/metadata.desktop share/plasma/wallpapers/org.kde.slideshow/metadata.json share/polkit-1/actions/org.kde.fontinst.policy share/qlogging-categories5/klipper.categories share/qlogging-categories5/libnotificationmanager.categories share/qlogging-categories5/plasma-workspace.categories share/sddm/themes/breeze/Background.qml share/sddm/themes/breeze/BreezeMenuStyle.qml share/sddm/themes/breeze/KeyboardButton.qml share/sddm/themes/breeze/Login.qml share/sddm/themes/breeze/Main.qml share/sddm/themes/breeze/SessionButton.qml share/sddm/themes/breeze/components/ActionButton.qml share/sddm/themes/breeze/components/Battery.qml share/sddm/themes/breeze/components/Clock.qml share/sddm/themes/breeze/components/KeyboardLayoutButton.qml share/sddm/themes/breeze/components/SessionManagementScreen.qml share/sddm/themes/breeze/components/UserDelegate.qml share/sddm/themes/breeze/components/UserList.qml share/sddm/themes/breeze/components/VirtualKeyboard.qml share/sddm/themes/breeze/components/WallpaperFader.qml share/sddm/themes/breeze/components/artwork/logout_primary.svgz share/sddm/themes/breeze/components/artwork/restart_primary.svgz share/sddm/themes/breeze/components/artwork/shutdown_primary.svgz share/sddm/themes/breeze/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/test-predicate-openinwindow.desktop share/wayland-sessions/plasmawayland.desktop share/xsessions/plasma.desktop Index: head/x11-themes/plasma5-breeze/distinfo =================================================================== --- head/x11-themes/plasma5-breeze/distinfo (revision 553023) +++ head/x11-themes/plasma5-breeze/distinfo (revision 553024) @@ -1,3 +1,3 @@ -TIMESTAMP = 1602198214 -SHA256 (KDE/plasma/5.20.0/breeze-5.20.0.tar.xz) = f360c5803c434b8ce771232b030779d8c92b3bcb5b7c940f3524d6e9afb05db1 -SIZE (KDE/plasma/5.20.0/breeze-5.20.0.tar.xz) = 38490700 +TIMESTAMP = 1603378853 +SHA256 (KDE/plasma/5.20.1/breeze-5.20.1.tar.xz) = 14e6e973f9e5ced3a690bf4a570399acec70ed3db23a8d1ef79e1920ff129c6b +SIZE (KDE/plasma/5.20.1/breeze-5.20.1.tar.xz) = 15687172 Index: head/x11-themes/plasma5-breeze-gtk/distinfo =================================================================== --- head/x11-themes/plasma5-breeze-gtk/distinfo (revision 553023) +++ head/x11-themes/plasma5-breeze-gtk/distinfo (revision 553024) @@ -1,3 +1,3 @@ -TIMESTAMP = 1602198215 -SHA256 (KDE/plasma/5.20.0/breeze-gtk-5.20.0.tar.xz) = 52f643d03db5fa7b154c502e741af33e9903b31f19ad4328ede84e10f7a36c74 -SIZE (KDE/plasma/5.20.0/breeze-gtk-5.20.0.tar.xz) = 43060 +TIMESTAMP = 1603378854 +SHA256 (KDE/plasma/5.20.1/breeze-gtk-5.20.1.tar.xz) = cf24e12b8948becd08368304c285cce8d6bb99db151f89d4029e7dafac8a273e +SIZE (KDE/plasma/5.20.1/breeze-gtk-5.20.1.tar.xz) = 43084 Index: head/x11-themes/plasma5-kde-gtk-config/distinfo =================================================================== --- head/x11-themes/plasma5-kde-gtk-config/distinfo (revision 553023) +++ head/x11-themes/plasma5-kde-gtk-config/distinfo (revision 553024) @@ -1,3 +1,3 @@ -TIMESTAMP = 1602198216 -SHA256 (KDE/plasma/5.20.0/kde-gtk-config-5.20.0.tar.xz) = 89590b6950c343e67a15d89058461eef6379e824861197f525e2678d0e901df2 -SIZE (KDE/plasma/5.20.0/kde-gtk-config-5.20.0.tar.xz) = 68040 +TIMESTAMP = 1603378856 +SHA256 (KDE/plasma/5.20.1/kde-gtk-config-5.20.1.tar.xz) = f82c7b4236937d455adaac98e2db434c4cc2e4120c3dc9b5ab41c893316e6f35 +SIZE (KDE/plasma/5.20.1/kde-gtk-config-5.20.1.tar.xz) = 68084 Index: head/x11-themes/plasma5-oxygen/distinfo =================================================================== --- head/x11-themes/plasma5-oxygen/distinfo (revision 553023) +++ head/x11-themes/plasma5-oxygen/distinfo (revision 553024) @@ -1,3 +1,3 @@ -TIMESTAMP = 1602198217 -SHA256 (KDE/plasma/5.20.0/oxygen-5.20.0.tar.xz) = d01f9ca96d7693c02e97ee9b6a8c55c47ef96b4bde7a7c159813ff41ce0d3d09 -SIZE (KDE/plasma/5.20.0/oxygen-5.20.0.tar.xz) = 4459544 +TIMESTAMP = 1603378859 +SHA256 (KDE/plasma/5.20.1/oxygen-5.20.1.tar.xz) = 2067f6e7a8a08a9267187c7b4e3e0baa18da630798fff43aea149ca3108bb47b +SIZE (KDE/plasma/5.20.1/oxygen-5.20.1.tar.xz) = 4460788 Index: head/x11-themes/plasma5-oxygen/pkg-plist =================================================================== --- head/x11-themes/plasma5-oxygen/pkg-plist (revision 553023) +++ head/x11-themes/plasma5-oxygen/pkg-plist (revision 553024) @@ -1,766 +1,802 @@ bin/oxygen-demo5 bin/oxygen-settings5 lib/liboxygenstyle5.so.5 lib/liboxygenstyle5.so.%%KDE_PLASMA_VERSION%% lib/liboxygenstyleconfig5.so.5 lib/liboxygenstyleconfig5.so.%%KDE_PLASMA_VERSION%% %%QT_PLUGINDIR%%/kstyle_oxygen_config.so %%QT_PLUGINDIR%%/org.kde.kdecoration2/oxygendecoration.so %%QT_PLUGINDIR%%/styles/oxygen.so share/color-schemes/Oxygen.colors share/color-schemes/OxygenCold.colors share/icons/KDE_Classic/cursors/00000000000000020006000e7e9ffc3f share/icons/KDE_Classic/cursors/00008160000006810000408080010102 share/icons/KDE_Classic/cursors/08e8e1c95fe2fc01f976f1e063a24ccd share/icons/KDE_Classic/cursors/3ecb610c1bf2410f44200f48c40d3599 share/icons/KDE_Classic/cursors/4498f0e0c1937ffe01fd06f973665830 share/icons/KDE_Classic/cursors/5c6cd98b3f3ebcb1f9c7f1c204630408 share/icons/KDE_Classic/cursors/9081237383d90e509aa00f00170e968f share/icons/KDE_Classic/cursors/9d800788f1b08800ae810202380a0822 share/icons/KDE_Classic/cursors/X_cursor share/icons/KDE_Classic/cursors/all-scroll share/icons/KDE_Classic/cursors/bottom_left_corner share/icons/KDE_Classic/cursors/bottom_right_corner share/icons/KDE_Classic/cursors/bottom_side share/icons/KDE_Classic/cursors/center_ptr share/icons/KDE_Classic/cursors/closedhand share/icons/KDE_Classic/cursors/col-resize share/icons/KDE_Classic/cursors/cross share/icons/KDE_Classic/cursors/crossed_circle share/icons/KDE_Classic/cursors/crosshair share/icons/KDE_Classic/cursors/d9ce0ab605698f320427677b458ad60b share/icons/KDE_Classic/cursors/dnd-move share/icons/KDE_Classic/cursors/dnd-no-drop share/icons/KDE_Classic/cursors/dnd-none share/icons/KDE_Classic/cursors/e-resize share/icons/KDE_Classic/cursors/e29285e634086352946a0e7090d73106 share/icons/KDE_Classic/cursors/fcf21c00b30f7e3f83fe0dfd12e71cff share/icons/KDE_Classic/cursors/fleur share/icons/KDE_Classic/cursors/forbidden share/icons/KDE_Classic/cursors/half-busy share/icons/KDE_Classic/cursors/hand1 share/icons/KDE_Classic/cursors/hand2 share/icons/KDE_Classic/cursors/help share/icons/KDE_Classic/cursors/ibeam share/icons/KDE_Classic/cursors/left_ptr share/icons/KDE_Classic/cursors/left_ptr_watch share/icons/KDE_Classic/cursors/left_side share/icons/KDE_Classic/cursors/move share/icons/KDE_Classic/cursors/n-resize +share/icons/KDE_Classic/cursors/ne-resize +share/icons/KDE_Classic/cursors/nesw-resize share/icons/KDE_Classic/cursors/not-allowed +share/icons/KDE_Classic/cursors/nw-resize +share/icons/KDE_Classic/cursors/nwse-resize share/icons/KDE_Classic/cursors/openhand share/icons/KDE_Classic/cursors/pirate share/icons/KDE_Classic/cursors/pointer share/icons/KDE_Classic/cursors/pointing_hand share/icons/KDE_Classic/cursors/progress share/icons/KDE_Classic/cursors/question_arrow share/icons/KDE_Classic/cursors/right_ptr share/icons/KDE_Classic/cursors/right_side share/icons/KDE_Classic/cursors/row-resize share/icons/KDE_Classic/cursors/s-resize share/icons/KDE_Classic/cursors/sb_h_double_arrow share/icons/KDE_Classic/cursors/sb_v_double_arrow +share/icons/KDE_Classic/cursors/se-resize share/icons/KDE_Classic/cursors/size_all share/icons/KDE_Classic/cursors/size_bdiag share/icons/KDE_Classic/cursors/size_fdiag share/icons/KDE_Classic/cursors/size_hor share/icons/KDE_Classic/cursors/size_ver share/icons/KDE_Classic/cursors/split_h share/icons/KDE_Classic/cursors/split_v +share/icons/KDE_Classic/cursors/sw-resize share/icons/KDE_Classic/cursors/text share/icons/KDE_Classic/cursors/top_left_corner share/icons/KDE_Classic/cursors/top_right_corner share/icons/KDE_Classic/cursors/top_side share/icons/KDE_Classic/cursors/up_arrow share/icons/KDE_Classic/cursors/v_double_arrow share/icons/KDE_Classic/cursors/w-resize share/icons/KDE_Classic/cursors/wait share/icons/KDE_Classic/cursors/watch share/icons/KDE_Classic/cursors/whats_this share/icons/KDE_Classic/cursors/xcursorconfig share/icons/KDE_Classic/cursors/xterm share/icons/KDE_Classic/index.theme share/icons/Oxygen_Black/cursors/00000000000000020006000e7e9ffc3f share/icons/Oxygen_Black/cursors/00008160000006810000408080010102 share/icons/Oxygen_Black/cursors/03b6e0fcb3499374a867c041f52298f0 share/icons/Oxygen_Black/cursors/08e8e1c95fe2fc01f976f1e063a24ccd share/icons/Oxygen_Black/cursors/1081e37283d90000800003c07f3ef6bf share/icons/Oxygen_Black/cursors/3085a0e285430894940527032f8b26df share/icons/Oxygen_Black/cursors/3ecb610c1bf2410f44200f48c40d3599 share/icons/Oxygen_Black/cursors/4498f0e0c1937ffe01fd06f973665830 share/icons/Oxygen_Black/cursors/5c6cd98b3f3ebcb1f9c7f1c204630408 share/icons/Oxygen_Black/cursors/6407b0e94181790501fd1e167b474872 share/icons/Oxygen_Black/cursors/640fb0e74195791501fd1ed57b41487f share/icons/Oxygen_Black/cursors/9081237383d90e509aa00f00170e968f share/icons/Oxygen_Black/cursors/9d800788f1b08800ae810202380a0822 share/icons/Oxygen_Black/cursors/X_cursor share/icons/Oxygen_Black/cursors/a2a266d0498c3104214a47bd64ab0fc8 share/icons/Oxygen_Black/cursors/alias share/icons/Oxygen_Black/cursors/all-scroll share/icons/Oxygen_Black/cursors/b66166c04f8c3109214a4fbd64a50fc8 share/icons/Oxygen_Black/cursors/circle share/icons/Oxygen_Black/cursors/closedhand share/icons/Oxygen_Black/cursors/col-resize share/icons/Oxygen_Black/cursors/color-picker share/icons/Oxygen_Black/cursors/copy share/icons/Oxygen_Black/cursors/cross share/icons/Oxygen_Black/cursors/crossed_circle share/icons/Oxygen_Black/cursors/d9ce0ab605698f320427677b458ad60b share/icons/Oxygen_Black/cursors/dnd-copy share/icons/Oxygen_Black/cursors/dnd-link share/icons/Oxygen_Black/cursors/dnd-move share/icons/Oxygen_Black/cursors/dnd-no-drop share/icons/Oxygen_Black/cursors/dnd-none share/icons/Oxygen_Black/cursors/e-resize share/icons/Oxygen_Black/cursors/e29285e634086352946a0e7090d73106 share/icons/Oxygen_Black/cursors/fcf21c00b30f7e3f83fe0dfd12e71cff share/icons/Oxygen_Black/cursors/fleur share/icons/Oxygen_Black/cursors/forbidden share/icons/Oxygen_Black/cursors/half-busy share/icons/Oxygen_Black/cursors/hand1 share/icons/Oxygen_Black/cursors/hand2 share/icons/Oxygen_Black/cursors/help share/icons/Oxygen_Black/cursors/ibeam share/icons/Oxygen_Black/cursors/left_ptr share/icons/Oxygen_Black/cursors/left_ptr_watch share/icons/Oxygen_Black/cursors/link share/icons/Oxygen_Black/cursors/move share/icons/Oxygen_Black/cursors/n-resize +share/icons/Oxygen_Black/cursors/ne-resize +share/icons/Oxygen_Black/cursors/nesw-resize share/icons/Oxygen_Black/cursors/not-allowed +share/icons/Oxygen_Black/cursors/nw-resize +share/icons/Oxygen_Black/cursors/nwse-resize share/icons/Oxygen_Black/cursors/openhand share/icons/Oxygen_Black/cursors/pencil share/icons/Oxygen_Black/cursors/pirate share/icons/Oxygen_Black/cursors/plus share/icons/Oxygen_Black/cursors/pointer share/icons/Oxygen_Black/cursors/pointing_hand share/icons/Oxygen_Black/cursors/progress share/icons/Oxygen_Black/cursors/question_arrow share/icons/Oxygen_Black/cursors/row-resize share/icons/Oxygen_Black/cursors/s-resize share/icons/Oxygen_Black/cursors/sb_h_double_arrow share/icons/Oxygen_Black/cursors/sb_v_double_arrow +share/icons/Oxygen_Black/cursors/se-resize share/icons/Oxygen_Black/cursors/size_all share/icons/Oxygen_Black/cursors/size_bdiag share/icons/Oxygen_Black/cursors/size_fdiag share/icons/Oxygen_Black/cursors/size_hor share/icons/Oxygen_Black/cursors/size_ver share/icons/Oxygen_Black/cursors/split_h share/icons/Oxygen_Black/cursors/split_v +share/icons/Oxygen_Black/cursors/sw-resize share/icons/Oxygen_Black/cursors/text share/icons/Oxygen_Black/cursors/up_arrow share/icons/Oxygen_Black/cursors/v_double_arrow share/icons/Oxygen_Black/cursors/w-resize share/icons/Oxygen_Black/cursors/wait share/icons/Oxygen_Black/cursors/watch share/icons/Oxygen_Black/cursors/whats_this share/icons/Oxygen_Black/cursors/xterm share/icons/Oxygen_Black/index.theme share/icons/Oxygen_Blue/cursors/00000000000000020006000e7e9ffc3f share/icons/Oxygen_Blue/cursors/00008160000006810000408080010102 share/icons/Oxygen_Blue/cursors/03b6e0fcb3499374a867c041f52298f0 share/icons/Oxygen_Blue/cursors/08e8e1c95fe2fc01f976f1e063a24ccd share/icons/Oxygen_Blue/cursors/1081e37283d90000800003c07f3ef6bf share/icons/Oxygen_Blue/cursors/3085a0e285430894940527032f8b26df share/icons/Oxygen_Blue/cursors/3ecb610c1bf2410f44200f48c40d3599 share/icons/Oxygen_Blue/cursors/4498f0e0c1937ffe01fd06f973665830 share/icons/Oxygen_Blue/cursors/5c6cd98b3f3ebcb1f9c7f1c204630408 share/icons/Oxygen_Blue/cursors/6407b0e94181790501fd1e167b474872 share/icons/Oxygen_Blue/cursors/640fb0e74195791501fd1ed57b41487f share/icons/Oxygen_Blue/cursors/9081237383d90e509aa00f00170e968f share/icons/Oxygen_Blue/cursors/9d800788f1b08800ae810202380a0822 share/icons/Oxygen_Blue/cursors/X_cursor share/icons/Oxygen_Blue/cursors/a2a266d0498c3104214a47bd64ab0fc8 share/icons/Oxygen_Blue/cursors/alias share/icons/Oxygen_Blue/cursors/all-scroll share/icons/Oxygen_Blue/cursors/b66166c04f8c3109214a4fbd64a50fc8 share/icons/Oxygen_Blue/cursors/circle share/icons/Oxygen_Blue/cursors/closedhand share/icons/Oxygen_Blue/cursors/col-resize share/icons/Oxygen_Blue/cursors/color-picker share/icons/Oxygen_Blue/cursors/copy share/icons/Oxygen_Blue/cursors/cross share/icons/Oxygen_Blue/cursors/crossed_circle share/icons/Oxygen_Blue/cursors/d9ce0ab605698f320427677b458ad60b share/icons/Oxygen_Blue/cursors/dnd-copy share/icons/Oxygen_Blue/cursors/dnd-link share/icons/Oxygen_Blue/cursors/dnd-move share/icons/Oxygen_Blue/cursors/dnd-no-drop share/icons/Oxygen_Blue/cursors/dnd-none share/icons/Oxygen_Blue/cursors/e-resize share/icons/Oxygen_Blue/cursors/e29285e634086352946a0e7090d73106 share/icons/Oxygen_Blue/cursors/fcf21c00b30f7e3f83fe0dfd12e71cff share/icons/Oxygen_Blue/cursors/fleur share/icons/Oxygen_Blue/cursors/forbidden share/icons/Oxygen_Blue/cursors/half-busy share/icons/Oxygen_Blue/cursors/hand1 share/icons/Oxygen_Blue/cursors/hand2 share/icons/Oxygen_Blue/cursors/help share/icons/Oxygen_Blue/cursors/ibeam share/icons/Oxygen_Blue/cursors/left_ptr share/icons/Oxygen_Blue/cursors/left_ptr_watch share/icons/Oxygen_Blue/cursors/link share/icons/Oxygen_Blue/cursors/move share/icons/Oxygen_Blue/cursors/n-resize +share/icons/Oxygen_Blue/cursors/ne-resize +share/icons/Oxygen_Blue/cursors/nesw-resize share/icons/Oxygen_Blue/cursors/not-allowed +share/icons/Oxygen_Blue/cursors/nw-resize +share/icons/Oxygen_Blue/cursors/nwse-resize share/icons/Oxygen_Blue/cursors/openhand share/icons/Oxygen_Blue/cursors/pencil share/icons/Oxygen_Blue/cursors/pirate share/icons/Oxygen_Blue/cursors/plus share/icons/Oxygen_Blue/cursors/pointer share/icons/Oxygen_Blue/cursors/pointing_hand share/icons/Oxygen_Blue/cursors/progress share/icons/Oxygen_Blue/cursors/question_arrow share/icons/Oxygen_Blue/cursors/row-resize share/icons/Oxygen_Blue/cursors/s-resize share/icons/Oxygen_Blue/cursors/sb_h_double_arrow share/icons/Oxygen_Blue/cursors/sb_v_double_arrow +share/icons/Oxygen_Blue/cursors/se-resize share/icons/Oxygen_Blue/cursors/size_all share/icons/Oxygen_Blue/cursors/size_bdiag share/icons/Oxygen_Blue/cursors/size_fdiag share/icons/Oxygen_Blue/cursors/size_hor share/icons/Oxygen_Blue/cursors/size_ver share/icons/Oxygen_Blue/cursors/split_h share/icons/Oxygen_Blue/cursors/split_v +share/icons/Oxygen_Blue/cursors/sw-resize share/icons/Oxygen_Blue/cursors/text share/icons/Oxygen_Blue/cursors/up_arrow share/icons/Oxygen_Blue/cursors/v_double_arrow share/icons/Oxygen_Blue/cursors/w-resize share/icons/Oxygen_Blue/cursors/wait share/icons/Oxygen_Blue/cursors/watch share/icons/Oxygen_Blue/cursors/whats_this share/icons/Oxygen_Blue/cursors/xterm share/icons/Oxygen_Blue/index.theme share/icons/Oxygen_White/cursors/00000000000000020006000e7e9ffc3f share/icons/Oxygen_White/cursors/00008160000006810000408080010102 share/icons/Oxygen_White/cursors/03b6e0fcb3499374a867c041f52298f0 share/icons/Oxygen_White/cursors/08e8e1c95fe2fc01f976f1e063a24ccd share/icons/Oxygen_White/cursors/1081e37283d90000800003c07f3ef6bf share/icons/Oxygen_White/cursors/3085a0e285430894940527032f8b26df share/icons/Oxygen_White/cursors/3ecb610c1bf2410f44200f48c40d3599 share/icons/Oxygen_White/cursors/4498f0e0c1937ffe01fd06f973665830 share/icons/Oxygen_White/cursors/5c6cd98b3f3ebcb1f9c7f1c204630408 share/icons/Oxygen_White/cursors/6407b0e94181790501fd1e167b474872 share/icons/Oxygen_White/cursors/640fb0e74195791501fd1ed57b41487f share/icons/Oxygen_White/cursors/9081237383d90e509aa00f00170e968f share/icons/Oxygen_White/cursors/9d800788f1b08800ae810202380a0822 share/icons/Oxygen_White/cursors/X_cursor share/icons/Oxygen_White/cursors/a2a266d0498c3104214a47bd64ab0fc8 share/icons/Oxygen_White/cursors/alias share/icons/Oxygen_White/cursors/all-scroll share/icons/Oxygen_White/cursors/b66166c04f8c3109214a4fbd64a50fc8 share/icons/Oxygen_White/cursors/circle share/icons/Oxygen_White/cursors/closedhand share/icons/Oxygen_White/cursors/col-resize share/icons/Oxygen_White/cursors/color-picker share/icons/Oxygen_White/cursors/copy share/icons/Oxygen_White/cursors/cross share/icons/Oxygen_White/cursors/crossed_circle share/icons/Oxygen_White/cursors/d9ce0ab605698f320427677b458ad60b share/icons/Oxygen_White/cursors/dnd-copy share/icons/Oxygen_White/cursors/dnd-link share/icons/Oxygen_White/cursors/dnd-move share/icons/Oxygen_White/cursors/dnd-no-drop share/icons/Oxygen_White/cursors/dnd-none share/icons/Oxygen_White/cursors/e-resize share/icons/Oxygen_White/cursors/e29285e634086352946a0e7090d73106 share/icons/Oxygen_White/cursors/fcf21c00b30f7e3f83fe0dfd12e71cff share/icons/Oxygen_White/cursors/fleur share/icons/Oxygen_White/cursors/forbidden share/icons/Oxygen_White/cursors/half-busy share/icons/Oxygen_White/cursors/hand1 share/icons/Oxygen_White/cursors/hand2 share/icons/Oxygen_White/cursors/help share/icons/Oxygen_White/cursors/ibeam share/icons/Oxygen_White/cursors/left_ptr share/icons/Oxygen_White/cursors/left_ptr_watch share/icons/Oxygen_White/cursors/link share/icons/Oxygen_White/cursors/move share/icons/Oxygen_White/cursors/n-resize +share/icons/Oxygen_White/cursors/ne-resize +share/icons/Oxygen_White/cursors/nesw-resize share/icons/Oxygen_White/cursors/not-allowed +share/icons/Oxygen_White/cursors/nw-resize +share/icons/Oxygen_White/cursors/nwse-resize share/icons/Oxygen_White/cursors/openhand share/icons/Oxygen_White/cursors/pencil share/icons/Oxygen_White/cursors/pirate share/icons/Oxygen_White/cursors/plus share/icons/Oxygen_White/cursors/pointer share/icons/Oxygen_White/cursors/pointing_hand share/icons/Oxygen_White/cursors/progress share/icons/Oxygen_White/cursors/question_arrow share/icons/Oxygen_White/cursors/row-resize share/icons/Oxygen_White/cursors/s-resize share/icons/Oxygen_White/cursors/sb_h_double_arrow share/icons/Oxygen_White/cursors/sb_v_double_arrow +share/icons/Oxygen_White/cursors/se-resize share/icons/Oxygen_White/cursors/size_all share/icons/Oxygen_White/cursors/size_bdiag share/icons/Oxygen_White/cursors/size_fdiag share/icons/Oxygen_White/cursors/size_hor share/icons/Oxygen_White/cursors/size_ver share/icons/Oxygen_White/cursors/split_h share/icons/Oxygen_White/cursors/split_v +share/icons/Oxygen_White/cursors/sw-resize share/icons/Oxygen_White/cursors/text share/icons/Oxygen_White/cursors/up_arrow share/icons/Oxygen_White/cursors/v_double_arrow share/icons/Oxygen_White/cursors/w-resize share/icons/Oxygen_White/cursors/wait share/icons/Oxygen_White/cursors/watch share/icons/Oxygen_White/cursors/whats_this share/icons/Oxygen_White/cursors/xterm share/icons/Oxygen_White/index.theme share/icons/Oxygen_Yellow/cursors/00000000000000020006000e7e9ffc3f share/icons/Oxygen_Yellow/cursors/00008160000006810000408080010102 share/icons/Oxygen_Yellow/cursors/03b6e0fcb3499374a867c041f52298f0 share/icons/Oxygen_Yellow/cursors/08e8e1c95fe2fc01f976f1e063a24ccd share/icons/Oxygen_Yellow/cursors/1081e37283d90000800003c07f3ef6bf share/icons/Oxygen_Yellow/cursors/3085a0e285430894940527032f8b26df share/icons/Oxygen_Yellow/cursors/3ecb610c1bf2410f44200f48c40d3599 share/icons/Oxygen_Yellow/cursors/4498f0e0c1937ffe01fd06f973665830 share/icons/Oxygen_Yellow/cursors/5c6cd98b3f3ebcb1f9c7f1c204630408 share/icons/Oxygen_Yellow/cursors/6407b0e94181790501fd1e167b474872 share/icons/Oxygen_Yellow/cursors/640fb0e74195791501fd1ed57b41487f share/icons/Oxygen_Yellow/cursors/9081237383d90e509aa00f00170e968f share/icons/Oxygen_Yellow/cursors/9d800788f1b08800ae810202380a0822 share/icons/Oxygen_Yellow/cursors/X_cursor share/icons/Oxygen_Yellow/cursors/a2a266d0498c3104214a47bd64ab0fc8 share/icons/Oxygen_Yellow/cursors/alias share/icons/Oxygen_Yellow/cursors/all-scroll share/icons/Oxygen_Yellow/cursors/b66166c04f8c3109214a4fbd64a50fc8 share/icons/Oxygen_Yellow/cursors/circle share/icons/Oxygen_Yellow/cursors/closedhand share/icons/Oxygen_Yellow/cursors/col-resize share/icons/Oxygen_Yellow/cursors/color-picker share/icons/Oxygen_Yellow/cursors/copy share/icons/Oxygen_Yellow/cursors/cross share/icons/Oxygen_Yellow/cursors/crossed_circle share/icons/Oxygen_Yellow/cursors/d9ce0ab605698f320427677b458ad60b share/icons/Oxygen_Yellow/cursors/dnd-copy share/icons/Oxygen_Yellow/cursors/dnd-link share/icons/Oxygen_Yellow/cursors/dnd-move share/icons/Oxygen_Yellow/cursors/dnd-no-drop share/icons/Oxygen_Yellow/cursors/dnd-none share/icons/Oxygen_Yellow/cursors/e-resize share/icons/Oxygen_Yellow/cursors/e29285e634086352946a0e7090d73106 share/icons/Oxygen_Yellow/cursors/fcf21c00b30f7e3f83fe0dfd12e71cff share/icons/Oxygen_Yellow/cursors/fleur share/icons/Oxygen_Yellow/cursors/forbidden share/icons/Oxygen_Yellow/cursors/half-busy share/icons/Oxygen_Yellow/cursors/hand1 share/icons/Oxygen_Yellow/cursors/hand2 share/icons/Oxygen_Yellow/cursors/help share/icons/Oxygen_Yellow/cursors/ibeam share/icons/Oxygen_Yellow/cursors/left_ptr share/icons/Oxygen_Yellow/cursors/left_ptr_watch share/icons/Oxygen_Yellow/cursors/link share/icons/Oxygen_Yellow/cursors/move share/icons/Oxygen_Yellow/cursors/n-resize +share/icons/Oxygen_Yellow/cursors/ne-resize +share/icons/Oxygen_Yellow/cursors/nesw-resize share/icons/Oxygen_Yellow/cursors/not-allowed +share/icons/Oxygen_Yellow/cursors/nw-resize +share/icons/Oxygen_Yellow/cursors/nwse-resize share/icons/Oxygen_Yellow/cursors/openhand share/icons/Oxygen_Yellow/cursors/pencil share/icons/Oxygen_Yellow/cursors/pirate share/icons/Oxygen_Yellow/cursors/plus share/icons/Oxygen_Yellow/cursors/pointer share/icons/Oxygen_Yellow/cursors/pointing_hand share/icons/Oxygen_Yellow/cursors/progress share/icons/Oxygen_Yellow/cursors/question_arrow share/icons/Oxygen_Yellow/cursors/row-resize share/icons/Oxygen_Yellow/cursors/s-resize share/icons/Oxygen_Yellow/cursors/sb_h_double_arrow share/icons/Oxygen_Yellow/cursors/sb_v_double_arrow +share/icons/Oxygen_Yellow/cursors/se-resize share/icons/Oxygen_Yellow/cursors/size_all share/icons/Oxygen_Yellow/cursors/size_bdiag share/icons/Oxygen_Yellow/cursors/size_fdiag share/icons/Oxygen_Yellow/cursors/size_hor share/icons/Oxygen_Yellow/cursors/size_ver share/icons/Oxygen_Yellow/cursors/split_h share/icons/Oxygen_Yellow/cursors/split_v +share/icons/Oxygen_Yellow/cursors/sw-resize share/icons/Oxygen_Yellow/cursors/text share/icons/Oxygen_Yellow/cursors/up_arrow share/icons/Oxygen_Yellow/cursors/v_double_arrow share/icons/Oxygen_Yellow/cursors/w-resize share/icons/Oxygen_Yellow/cursors/wait share/icons/Oxygen_Yellow/cursors/watch share/icons/Oxygen_Yellow/cursors/whats_this share/icons/Oxygen_Yellow/cursors/xterm share/icons/Oxygen_Yellow/index.theme share/icons/Oxygen_Zion/cursors/00000000000000020006000e7e9ffc3f share/icons/Oxygen_Zion/cursors/00008160000006810000408080010102 share/icons/Oxygen_Zion/cursors/03b6e0fcb3499374a867c041f52298f0 share/icons/Oxygen_Zion/cursors/08e8e1c95fe2fc01f976f1e063a24ccd share/icons/Oxygen_Zion/cursors/1081e37283d90000800003c07f3ef6bf share/icons/Oxygen_Zion/cursors/3085a0e285430894940527032f8b26df share/icons/Oxygen_Zion/cursors/3ecb610c1bf2410f44200f48c40d3599 share/icons/Oxygen_Zion/cursors/4498f0e0c1937ffe01fd06f973665830 share/icons/Oxygen_Zion/cursors/5c6cd98b3f3ebcb1f9c7f1c204630408 share/icons/Oxygen_Zion/cursors/6407b0e94181790501fd1e167b474872 share/icons/Oxygen_Zion/cursors/640fb0e74195791501fd1ed57b41487f share/icons/Oxygen_Zion/cursors/9081237383d90e509aa00f00170e968f share/icons/Oxygen_Zion/cursors/9d800788f1b08800ae810202380a0822 share/icons/Oxygen_Zion/cursors/X_cursor share/icons/Oxygen_Zion/cursors/a2a266d0498c3104214a47bd64ab0fc8 share/icons/Oxygen_Zion/cursors/alias share/icons/Oxygen_Zion/cursors/all-scroll share/icons/Oxygen_Zion/cursors/b66166c04f8c3109214a4fbd64a50fc8 share/icons/Oxygen_Zion/cursors/circle share/icons/Oxygen_Zion/cursors/closedhand share/icons/Oxygen_Zion/cursors/col-resize share/icons/Oxygen_Zion/cursors/color-picker share/icons/Oxygen_Zion/cursors/copy share/icons/Oxygen_Zion/cursors/cross share/icons/Oxygen_Zion/cursors/crossed_circle share/icons/Oxygen_Zion/cursors/d9ce0ab605698f320427677b458ad60b share/icons/Oxygen_Zion/cursors/dnd-copy share/icons/Oxygen_Zion/cursors/dnd-link share/icons/Oxygen_Zion/cursors/dnd-move share/icons/Oxygen_Zion/cursors/dnd-no-drop share/icons/Oxygen_Zion/cursors/dnd-none share/icons/Oxygen_Zion/cursors/e-resize share/icons/Oxygen_Zion/cursors/e29285e634086352946a0e7090d73106 share/icons/Oxygen_Zion/cursors/fcf21c00b30f7e3f83fe0dfd12e71cff share/icons/Oxygen_Zion/cursors/fleur share/icons/Oxygen_Zion/cursors/forbidden share/icons/Oxygen_Zion/cursors/half-busy share/icons/Oxygen_Zion/cursors/hand1 share/icons/Oxygen_Zion/cursors/hand2 share/icons/Oxygen_Zion/cursors/help share/icons/Oxygen_Zion/cursors/ibeam share/icons/Oxygen_Zion/cursors/left_ptr share/icons/Oxygen_Zion/cursors/left_ptr_watch share/icons/Oxygen_Zion/cursors/link share/icons/Oxygen_Zion/cursors/move share/icons/Oxygen_Zion/cursors/n-resize +share/icons/Oxygen_Zion/cursors/ne-resize +share/icons/Oxygen_Zion/cursors/nesw-resize share/icons/Oxygen_Zion/cursors/not-allowed +share/icons/Oxygen_Zion/cursors/nw-resize +share/icons/Oxygen_Zion/cursors/nwse-resize share/icons/Oxygen_Zion/cursors/openhand share/icons/Oxygen_Zion/cursors/pencil share/icons/Oxygen_Zion/cursors/pirate share/icons/Oxygen_Zion/cursors/plus share/icons/Oxygen_Zion/cursors/pointer share/icons/Oxygen_Zion/cursors/pointing_hand share/icons/Oxygen_Zion/cursors/progress share/icons/Oxygen_Zion/cursors/question_arrow share/icons/Oxygen_Zion/cursors/row-resize share/icons/Oxygen_Zion/cursors/s-resize share/icons/Oxygen_Zion/cursors/sb_h_double_arrow share/icons/Oxygen_Zion/cursors/sb_v_double_arrow +share/icons/Oxygen_Zion/cursors/se-resize share/icons/Oxygen_Zion/cursors/size_all share/icons/Oxygen_Zion/cursors/size_bdiag share/icons/Oxygen_Zion/cursors/size_fdiag share/icons/Oxygen_Zion/cursors/size_hor share/icons/Oxygen_Zion/cursors/size_ver share/icons/Oxygen_Zion/cursors/split_h share/icons/Oxygen_Zion/cursors/split_v +share/icons/Oxygen_Zion/cursors/sw-resize share/icons/Oxygen_Zion/cursors/text share/icons/Oxygen_Zion/cursors/up_arrow share/icons/Oxygen_Zion/cursors/v_double_arrow share/icons/Oxygen_Zion/cursors/w-resize share/icons/Oxygen_Zion/cursors/wait share/icons/Oxygen_Zion/cursors/watch share/icons/Oxygen_Zion/cursors/whats_this share/icons/Oxygen_Zion/cursors/xterm share/icons/Oxygen_Zion/index.theme share/icons/hicolor/256x256/apps/oxygen-settings.png share/kservices5/oxygendecorationconfig.desktop share/kservices5/oxygenstyleconfig.desktop share/kstyle/themes/oxygen.themerc share/locale/af/LC_MESSAGES/oxygen_style_config.mo share/locale/af/LC_MESSAGES/oxygen_style_demo.mo share/locale/ar/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/ar/LC_MESSAGES/oxygen_kdecoration.mo share/locale/ar/LC_MESSAGES/oxygen_style_config.mo share/locale/ar/LC_MESSAGES/oxygen_style_demo.mo share/locale/be/LC_MESSAGES/oxygen_style_config.mo share/locale/be/LC_MESSAGES/oxygen_style_demo.mo share/locale/be@latin/LC_MESSAGES/oxygen_style_config.mo share/locale/be@latin/LC_MESSAGES/oxygen_style_demo.mo share/locale/bg/LC_MESSAGES/oxygen_style_config.mo share/locale/bg/LC_MESSAGES/oxygen_style_demo.mo share/locale/bn_IN/LC_MESSAGES/oxygen_style_config.mo share/locale/bn_IN/LC_MESSAGES/oxygen_style_demo.mo share/locale/bs/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/bs/LC_MESSAGES/oxygen_kdecoration.mo share/locale/bs/LC_MESSAGES/oxygen_style_config.mo share/locale/bs/LC_MESSAGES/oxygen_style_demo.mo share/locale/ca/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/ca/LC_MESSAGES/oxygen_kdecoration.mo share/locale/ca/LC_MESSAGES/oxygen_style_config.mo share/locale/ca/LC_MESSAGES/oxygen_style_demo.mo share/locale/ca@valencia/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/ca@valencia/LC_MESSAGES/oxygen_kdecoration.mo share/locale/ca@valencia/LC_MESSAGES/oxygen_style_config.mo share/locale/ca@valencia/LC_MESSAGES/oxygen_style_demo.mo share/locale/cs/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/cs/LC_MESSAGES/oxygen_kdecoration.mo share/locale/cs/LC_MESSAGES/oxygen_style_config.mo share/locale/cs/LC_MESSAGES/oxygen_style_demo.mo share/locale/csb/LC_MESSAGES/oxygen_style_config.mo share/locale/csb/LC_MESSAGES/oxygen_style_demo.mo share/locale/da/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/da/LC_MESSAGES/oxygen_kdecoration.mo share/locale/da/LC_MESSAGES/oxygen_style_config.mo share/locale/da/LC_MESSAGES/oxygen_style_demo.mo share/locale/de/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/de/LC_MESSAGES/oxygen_kdecoration.mo share/locale/de/LC_MESSAGES/oxygen_style_config.mo share/locale/de/LC_MESSAGES/oxygen_style_demo.mo share/locale/el/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/el/LC_MESSAGES/oxygen_kdecoration.mo share/locale/el/LC_MESSAGES/oxygen_style_config.mo share/locale/el/LC_MESSAGES/oxygen_style_demo.mo share/locale/en_GB/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/en_GB/LC_MESSAGES/oxygen_kdecoration.mo share/locale/en_GB/LC_MESSAGES/oxygen_style_config.mo share/locale/en_GB/LC_MESSAGES/oxygen_style_demo.mo share/locale/eo/LC_MESSAGES/oxygen_style_config.mo share/locale/eo/LC_MESSAGES/oxygen_style_demo.mo share/locale/es/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/es/LC_MESSAGES/oxygen_kdecoration.mo share/locale/es/LC_MESSAGES/oxygen_style_config.mo share/locale/es/LC_MESSAGES/oxygen_style_demo.mo share/locale/et/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/et/LC_MESSAGES/oxygen_kdecoration.mo share/locale/et/LC_MESSAGES/oxygen_style_config.mo share/locale/et/LC_MESSAGES/oxygen_style_demo.mo share/locale/eu/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/eu/LC_MESSAGES/oxygen_kdecoration.mo share/locale/eu/LC_MESSAGES/oxygen_style_config.mo share/locale/eu/LC_MESSAGES/oxygen_style_demo.mo share/locale/fa/LC_MESSAGES/oxygen_style_config.mo share/locale/fa/LC_MESSAGES/oxygen_style_demo.mo share/locale/fi/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/fi/LC_MESSAGES/oxygen_kdecoration.mo share/locale/fi/LC_MESSAGES/oxygen_style_config.mo share/locale/fi/LC_MESSAGES/oxygen_style_demo.mo share/locale/fr/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/fr/LC_MESSAGES/oxygen_kdecoration.mo share/locale/fr/LC_MESSAGES/oxygen_style_config.mo share/locale/fr/LC_MESSAGES/oxygen_style_demo.mo share/locale/fy/LC_MESSAGES/oxygen_style_config.mo share/locale/fy/LC_MESSAGES/oxygen_style_demo.mo share/locale/ga/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/ga/LC_MESSAGES/oxygen_style_config.mo share/locale/ga/LC_MESSAGES/oxygen_style_demo.mo share/locale/gl/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/gl/LC_MESSAGES/oxygen_kdecoration.mo share/locale/gl/LC_MESSAGES/oxygen_style_config.mo share/locale/gl/LC_MESSAGES/oxygen_style_demo.mo share/locale/gu/LC_MESSAGES/oxygen_style_config.mo share/locale/gu/LC_MESSAGES/oxygen_style_demo.mo share/locale/he/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/he/LC_MESSAGES/oxygen_style_config.mo share/locale/he/LC_MESSAGES/oxygen_style_demo.mo share/locale/hi/LC_MESSAGES/oxygen_style_config.mo share/locale/hi/LC_MESSAGES/oxygen_style_demo.mo share/locale/hne/LC_MESSAGES/oxygen_style_config.mo share/locale/hne/LC_MESSAGES/oxygen_style_demo.mo share/locale/hr/LC_MESSAGES/oxygen_style_config.mo share/locale/hr/LC_MESSAGES/oxygen_style_demo.mo share/locale/hsb/LC_MESSAGES/oxygen_style_config.mo share/locale/hsb/LC_MESSAGES/oxygen_style_demo.mo share/locale/hu/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/hu/LC_MESSAGES/oxygen_kdecoration.mo share/locale/hu/LC_MESSAGES/oxygen_style_config.mo share/locale/hu/LC_MESSAGES/oxygen_style_demo.mo share/locale/ia/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/ia/LC_MESSAGES/oxygen_kdecoration.mo share/locale/ia/LC_MESSAGES/oxygen_style_config.mo share/locale/ia/LC_MESSAGES/oxygen_style_demo.mo share/locale/id/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/id/LC_MESSAGES/oxygen_kdecoration.mo share/locale/id/LC_MESSAGES/oxygen_style_config.mo share/locale/id/LC_MESSAGES/oxygen_style_demo.mo share/locale/is/LC_MESSAGES/oxygen_style_config.mo share/locale/is/LC_MESSAGES/oxygen_style_demo.mo share/locale/it/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/it/LC_MESSAGES/oxygen_kdecoration.mo share/locale/it/LC_MESSAGES/oxygen_style_config.mo share/locale/it/LC_MESSAGES/oxygen_style_demo.mo share/locale/ja/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/ja/LC_MESSAGES/oxygen_kdecoration.mo share/locale/ja/LC_MESSAGES/oxygen_style_config.mo share/locale/ja/LC_MESSAGES/oxygen_style_demo.mo share/locale/kk/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/kk/LC_MESSAGES/oxygen_style_config.mo share/locale/kk/LC_MESSAGES/oxygen_style_demo.mo share/locale/km/LC_MESSAGES/oxygen_style_config.mo share/locale/km/LC_MESSAGES/oxygen_style_demo.mo share/locale/ko/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/ko/LC_MESSAGES/oxygen_kdecoration.mo share/locale/ko/LC_MESSAGES/oxygen_style_config.mo share/locale/ko/LC_MESSAGES/oxygen_style_demo.mo share/locale/ku/LC_MESSAGES/oxygen_style_config.mo share/locale/ku/LC_MESSAGES/oxygen_style_demo.mo share/locale/lt/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/lt/LC_MESSAGES/oxygen_kdecoration.mo share/locale/lt/LC_MESSAGES/oxygen_style_config.mo share/locale/lt/LC_MESSAGES/oxygen_style_demo.mo share/locale/lv/LC_MESSAGES/oxygen_style_config.mo share/locale/lv/LC_MESSAGES/oxygen_style_demo.mo share/locale/mai/LC_MESSAGES/oxygen_style_config.mo share/locale/mai/LC_MESSAGES/oxygen_style_demo.mo share/locale/mk/LC_MESSAGES/oxygen_style_config.mo share/locale/mk/LC_MESSAGES/oxygen_style_demo.mo share/locale/ml/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/ml/LC_MESSAGES/oxygen_kdecoration.mo share/locale/ml/LC_MESSAGES/oxygen_style_config.mo share/locale/ml/LC_MESSAGES/oxygen_style_demo.mo share/locale/mr/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/mr/LC_MESSAGES/oxygen_style_config.mo share/locale/mr/LC_MESSAGES/oxygen_style_demo.mo share/locale/ms/LC_MESSAGES/oxygen_style_config.mo share/locale/ms/LC_MESSAGES/oxygen_style_demo.mo share/locale/nb/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/nb/LC_MESSAGES/oxygen_kdecoration.mo share/locale/nb/LC_MESSAGES/oxygen_style_config.mo share/locale/nb/LC_MESSAGES/oxygen_style_demo.mo share/locale/nds/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/nds/LC_MESSAGES/oxygen_kdecoration.mo share/locale/nds/LC_MESSAGES/oxygen_style_config.mo share/locale/nds/LC_MESSAGES/oxygen_style_demo.mo share/locale/ne/LC_MESSAGES/oxygen_style_config.mo share/locale/ne/LC_MESSAGES/oxygen_style_demo.mo share/locale/nl/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/nl/LC_MESSAGES/oxygen_kdecoration.mo share/locale/nl/LC_MESSAGES/oxygen_style_config.mo share/locale/nl/LC_MESSAGES/oxygen_style_demo.mo share/locale/nn/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/nn/LC_MESSAGES/oxygen_kdecoration.mo share/locale/nn/LC_MESSAGES/oxygen_style_config.mo share/locale/nn/LC_MESSAGES/oxygen_style_demo.mo share/locale/pa/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/pa/LC_MESSAGES/oxygen_kdecoration.mo share/locale/pa/LC_MESSAGES/oxygen_style_config.mo share/locale/pa/LC_MESSAGES/oxygen_style_demo.mo share/locale/pl/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/pl/LC_MESSAGES/oxygen_kdecoration.mo share/locale/pl/LC_MESSAGES/oxygen_style_config.mo share/locale/pl/LC_MESSAGES/oxygen_style_demo.mo share/locale/pt/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/pt/LC_MESSAGES/oxygen_kdecoration.mo share/locale/pt/LC_MESSAGES/oxygen_style_config.mo share/locale/pt/LC_MESSAGES/oxygen_style_demo.mo share/locale/pt_BR/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/pt_BR/LC_MESSAGES/oxygen_kdecoration.mo share/locale/pt_BR/LC_MESSAGES/oxygen_style_config.mo share/locale/pt_BR/LC_MESSAGES/oxygen_style_demo.mo share/locale/ro/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/ro/LC_MESSAGES/oxygen_kdecoration.mo share/locale/ro/LC_MESSAGES/oxygen_style_config.mo share/locale/ro/LC_MESSAGES/oxygen_style_demo.mo share/locale/ru/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/ru/LC_MESSAGES/oxygen_kdecoration.mo share/locale/ru/LC_MESSAGES/oxygen_style_config.mo share/locale/ru/LC_MESSAGES/oxygen_style_demo.mo share/locale/se/LC_MESSAGES/oxygen_kdecoration.mo share/locale/se/LC_MESSAGES/oxygen_style_config.mo share/locale/se/LC_MESSAGES/oxygen_style_demo.mo share/locale/si/LC_MESSAGES/oxygen_style_config.mo share/locale/si/LC_MESSAGES/oxygen_style_demo.mo share/locale/sk/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/sk/LC_MESSAGES/oxygen_kdecoration.mo share/locale/sk/LC_MESSAGES/oxygen_style_config.mo share/locale/sk/LC_MESSAGES/oxygen_style_demo.mo share/locale/sl/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/sl/LC_MESSAGES/oxygen_kdecoration.mo share/locale/sl/LC_MESSAGES/oxygen_style_config.mo share/locale/sl/LC_MESSAGES/oxygen_style_demo.mo share/locale/sq/LC_MESSAGES/oxygen_style_config.mo share/locale/sq/LC_MESSAGES/oxygen_style_demo.mo share/locale/sr/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/sr/LC_MESSAGES/oxygen_kdecoration.mo share/locale/sr/LC_MESSAGES/oxygen_style_config.mo share/locale/sr/LC_MESSAGES/oxygen_style_demo.mo share/locale/sr@ijekavian/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/sr@ijekavian/LC_MESSAGES/oxygen_kdecoration.mo share/locale/sr@ijekavian/LC_MESSAGES/oxygen_style_config.mo share/locale/sr@ijekavian/LC_MESSAGES/oxygen_style_demo.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/oxygen_kdecoration.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/oxygen_style_config.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/oxygen_style_demo.mo share/locale/sr@latin/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/sr@latin/LC_MESSAGES/oxygen_kdecoration.mo share/locale/sr@latin/LC_MESSAGES/oxygen_style_config.mo share/locale/sr@latin/LC_MESSAGES/oxygen_style_demo.mo share/locale/ta/LC_MESSAGES/oxygen_style_config.mo share/locale/ta/LC_MESSAGES/oxygen_style_demo.mo share/locale/tg/LC_MESSAGES/oxygen_style_config.mo share/locale/tg/LC_MESSAGES/oxygen_style_demo.mo share/locale/th/LC_MESSAGES/oxygen_style_config.mo share/locale/th/LC_MESSAGES/oxygen_style_demo.mo share/locale/tr/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/tr/LC_MESSAGES/oxygen_kdecoration.mo share/locale/tr/LC_MESSAGES/oxygen_style_config.mo share/locale/tr/LC_MESSAGES/oxygen_style_demo.mo share/locale/ug/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/ug/LC_MESSAGES/oxygen_style_config.mo share/locale/ug/LC_MESSAGES/oxygen_style_demo.mo share/locale/uk/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/uk/LC_MESSAGES/oxygen_kdecoration.mo share/locale/uk/LC_MESSAGES/oxygen_style_config.mo share/locale/uk/LC_MESSAGES/oxygen_style_demo.mo share/locale/vi/LC_MESSAGES/oxygen_style_config.mo share/locale/vi/LC_MESSAGES/oxygen_style_demo.mo share/locale/wa/LC_MESSAGES/oxygen_style_config.mo share/locale/wa/LC_MESSAGES/oxygen_style_demo.mo share/locale/zh_CN/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/zh_CN/LC_MESSAGES/oxygen_kdecoration.mo share/locale/zh_CN/LC_MESSAGES/oxygen_style_config.mo share/locale/zh_CN/LC_MESSAGES/oxygen_style_demo.mo share/locale/zh_TW/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/zh_TW/LC_MESSAGES/oxygen_kdecoration.mo share/locale/zh_TW/LC_MESSAGES/oxygen_style_config.mo share/locale/zh_TW/LC_MESSAGES/oxygen_style_demo.mo share/plasma/look-and-feel/org.kde.oxygen/contents/defaults share/plasma/look-and-feel/org.kde.oxygen/contents/previews/preview.png share/plasma/look-and-feel/org.kde.oxygen/contents/previews/splash.png share/plasma/look-and-feel/org.kde.oxygen/contents/splash/Splash.qml share/plasma/look-and-feel/org.kde.oxygen/contents/splash/images/background.png share/plasma/look-and-feel/org.kde.oxygen/contents/splash/images/kde.png share/plasma/look-and-feel/org.kde.oxygen/contents/splash/images/rectangle.png share/plasma/look-and-feel/org.kde.oxygen/metadata.desktop share/sounds/Oxygen-Im-Cant-Connect.ogg share/sounds/Oxygen-Im-Connection-Lost.ogg share/sounds/Oxygen-Im-Contact-In.ogg share/sounds/Oxygen-Im-Contact-Out.ogg share/sounds/Oxygen-Im-Error-On-Connection.ogg share/sounds/Oxygen-Im-Highlight-Msg.ogg share/sounds/Oxygen-Im-Internal-Error.ogg share/sounds/Oxygen-Im-Irc-Event.ogg share/sounds/Oxygen-Im-Low-Priority-Message.ogg share/sounds/Oxygen-Im-Message-In.ogg share/sounds/Oxygen-Im-Message-Out.ogg share/sounds/Oxygen-Im-Network-Problems.ogg share/sounds/Oxygen-Im-New-Mail.ogg share/sounds/Oxygen-Im-Nudge.ogg share/sounds/Oxygen-Im-Phone-Ring.ogg share/sounds/Oxygen-Im-Sms.ogg share/sounds/Oxygen-Im-User-Auth.ogg share/sounds/Oxygen-K3B-Finish-Error.ogg share/sounds/Oxygen-K3B-Finish-Success.ogg share/sounds/Oxygen-K3B-Insert-Medium.ogg share/sounds/Oxygen-Sys-App-Error-Critical.ogg share/sounds/Oxygen-Sys-App-Error-Serious-Very.ogg share/sounds/Oxygen-Sys-App-Error-Serious.ogg share/sounds/Oxygen-Sys-App-Error.ogg share/sounds/Oxygen-Sys-App-Message.ogg share/sounds/Oxygen-Sys-App-Negative.ogg share/sounds/Oxygen-Sys-App-Positive.ogg share/sounds/Oxygen-Sys-Error-Printing.ogg share/sounds/Oxygen-Sys-File-Open-Foes.ogg share/sounds/Oxygen-Sys-List-End.ogg share/sounds/Oxygen-Sys-List-Match-Multiple.ogg share/sounds/Oxygen-Sys-List-Match-No.ogg share/sounds/Oxygen-Sys-Log-In-Long.ogg share/sounds/Oxygen-Sys-Log-In-Short.ogg share/sounds/Oxygen-Sys-Log-In.ogg share/sounds/Oxygen-Sys-Log-Out.ogg share/sounds/Oxygen-Sys-Question.ogg share/sounds/Oxygen-Sys-Special.ogg share/sounds/Oxygen-Sys-Trash-Emptied.ogg share/sounds/Oxygen-Sys-Warning.ogg share/sounds/Oxygen-Window-All-Desktops-Not.ogg share/sounds/Oxygen-Window-All-Desktops.ogg share/sounds/Oxygen-Window-Close.ogg share/sounds/Oxygen-Window-Maximize.ogg share/sounds/Oxygen-Window-Minimize.ogg share/sounds/Oxygen-Window-Move-Stop.ogg share/sounds/Oxygen-Window-Move.ogg share/sounds/Oxygen-Window-Shade-Down.ogg share/sounds/Oxygen-Window-Shade-Up.ogg Index: head/x11-themes/plasma5-plasma-workspace-wallpapers/distinfo =================================================================== --- head/x11-themes/plasma5-plasma-workspace-wallpapers/distinfo (revision 553023) +++ head/x11-themes/plasma5-plasma-workspace-wallpapers/distinfo (revision 553024) @@ -1,3 +1,3 @@ -TIMESTAMP = 1602198218 -SHA256 (KDE/plasma/5.20.0/plasma-workspace-wallpapers-5.20.0.tar.xz) = 23f7b0b795c702f834dfb737e19d3a4f48a906471cdec98ec1248d4c970532ef -SIZE (KDE/plasma/5.20.0/plasma-workspace-wallpapers-5.20.0.tar.xz) = 45931236 +TIMESTAMP = 1603378863 +SHA256 (KDE/plasma/5.20.1/plasma-workspace-wallpapers-5.20.1.tar.xz) = 31ae24e50aef8086bbd61a331f2bf7a9b844af41ad928f36d097de3358dd7bd6 +SIZE (KDE/plasma/5.20.1/plasma-workspace-wallpapers-5.20.1.tar.xz) = 45931260 Index: head/x11-toolkits/plasma5-kdeplasma-addons/distinfo =================================================================== --- head/x11-toolkits/plasma5-kdeplasma-addons/distinfo (revision 553023) +++ head/x11-toolkits/plasma5-kdeplasma-addons/distinfo (revision 553024) @@ -1,3 +1,3 @@ -TIMESTAMP = 1602198219 -SHA256 (KDE/plasma/5.20.0/kdeplasma-addons-5.20.0.tar.xz) = e1a8b6e9d8ae044590ca6a6f0f97922d8f2ea0bd626c8108e2a8553caf22ff97 -SIZE (KDE/plasma/5.20.0/kdeplasma-addons-5.20.0.tar.xz) = 626868 +TIMESTAMP = 1603378865 +SHA256 (KDE/plasma/5.20.1/kdeplasma-addons-5.20.1.tar.xz) = 1a25926ced1555418fea53afff50ef9218d9c73e22c285e7ced89a56bfa24e2e +SIZE (KDE/plasma/5.20.1/kdeplasma-addons-5.20.1.tar.xz) = 627464 Index: head/x11-toolkits/plasma5-kdeplasma-addons/pkg-plist =================================================================== --- head/x11-toolkits/plasma5-kdeplasma-addons/pkg-plist (revision 553023) +++ head/x11-toolkits/plasma5-kdeplasma-addons/pkg-plist (revision 553024) @@ -1,1876 +1,1877 @@ 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/libplasmacomicprovidercore.so.1 lib/libplasmacomicprovidercore.so.1.0.0 lib/libplasmapotdprovidercore.so lib/libplasmapotdprovidercore.so.1 lib/libplasmapotdprovidercore.so.1.0.0 %%QT_PLUGINDIR%%/kcm_krunner_charrunner.so %%QT_PLUGINDIR%%/kcm_krunner_dictionary.so %%QT_PLUGINDIR%%/kcm_krunner_spellcheck.so %%QT_PLUGINDIR%%/kf5/krunner/krunner_charrunner.so %%QT_PLUGINDIR%%/kf5/krunner/krunner_converter.so %%QT_PLUGINDIR%%/kf5/krunner/krunner_datetime.so %%QT_PLUGINDIR%%/kf5/krunner/krunner_dictionary.so %%QT_PLUGINDIR%%/kf5/krunner/krunner_katesessions.so %%QT_PLUGINDIR%%/kf5/krunner/krunner_konsoleprofiles.so %%QT_PLUGINDIR%%/kf5/krunner/krunner_spellcheck.so %%QT_PLUGINDIR%%/kpackage/packagestructure/plasma_packagestructure_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/plasma_applet_comic.so %%QT_PLUGINDIR%%/plasma/applets/plasma_applet_weather.so %%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_comic.so %%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_konsoleprofiles.so %%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_potd.so %%QT_PLUGINDIR%%/plasma_comic_krossprovider.so %%QT_PLUGINDIR%%/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_unsplashprovider.so %%QT_PLUGINDIR%%/potd/plasma_potd_wcpotdprovider.so %%QT_QMLDIR%%/org/kde/plasma/private/colorpicker/libcolorpickerplugin.so %%QTWEBENGINE%%%%QT_QMLDIR%%/org/kde/plasma/private/colorpicker/qmldir %%QTWEBENGINE%%%%QT_QMLDIR%%/org/kde/plasma/private/dict/libdictplugin.so %%QTWEBENGINE%%%%QT_QMLDIR%%/org/kde/plasma/private/dict/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/diskquota/libdiskquotaplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/diskquota/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/fifteenpuzzle/libfifteenpuzzleplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/fifteenpuzzle/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/mediaframe/libmediaframeplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/mediaframe/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/nightcolorcontrol/libnightcolorcontrolplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/nightcolorcontrol/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/notes/libnotesplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/notes/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/purpose/libpurposeplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/purpose/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/quicklaunch/libquicklaunchplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/quicklaunch/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/timer/libtimerplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/timer/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/weather/libweatherplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/weather/qmldir %%QT_QMLDIR%%/org/kde/plasmacalendar/astronomicaleventsconfig/libplasmacalendarastronomicaleventsconfig.so %%QT_QMLDIR%%/org/kde/plasmacalendar/astronomicaleventsconfig/qmldir %%QTWEBENGINE%%share/icons/hicolor/scalable/apps/accessories-dictionary.svgz share/icons/hicolor/scalable/apps/fifteenpuzzle.svgz share/kdevappwizard/templates/plasmapotdprovider.tar.bz2 share/knsrcfiles/comic.knsrc share/kservices5/kwin/kwin4_desktop_switcher_previews.desktop share/kservices5/kwin/kwin4_window_switcher_big_icons.desktop share/kservices5/kwin/kwin4_window_switcher_compact.desktop share/kservices5/kwin/kwin4_window_switcher_informative.desktop share/kservices5/kwin/kwin4_window_switcher_present_windows.desktop share/kservices5/kwin/kwin4_window_switcher_small_icons.desktop share/kservices5/kwin/kwin4_window_switcher_text.desktop share/kservices5/kwin/kwin4_window_switcher_thumbnail_grid.desktop share/kservices5/kwin/kwin4_window_switcher_thumbnails.desktop share/kservices5/plasma-applet-org.kde.plasma.activitypager.desktop share/kservices5/plasma-applet-org.kde.plasma.binaryclock.desktop share/kservices5/plasma-applet-org.kde.plasma.calculator.desktop share/kservices5/plasma-applet-org.kde.plasma.colorpicker.desktop share/kservices5/plasma-applet-org.kde.plasma.comic.desktop share/kservices5/plasma-applet-org.kde.plasma.diskquota.desktop share/kservices5/plasma-applet-org.kde.plasma.fifteenpuzzle.desktop share/kservices5/plasma-applet-org.kde.plasma.fuzzyclock.desktop share/kservices5/plasma-applet-org.kde.plasma.grouping.desktop share/kservices5/plasma-applet-org.kde.plasma.keyboardindicator.desktop share/kservices5/plasma-applet-org.kde.plasma.kickerdash.desktop share/kservices5/plasma-applet-org.kde.plasma.konsoleprofiles.desktop share/kservices5/plasma-applet-org.kde.plasma.mediaframe.desktop share/kservices5/plasma-applet-org.kde.plasma.notes.desktop share/kservices5/plasma-applet-org.kde.plasma.private.grouping.desktop share/kservices5/plasma-applet-org.kde.plasma.quicklaunch.desktop share/kservices5/plasma-applet-org.kde.plasma.quickshare.desktop share/kservices5/plasma-applet-org.kde.plasma.systemloadviewer.desktop share/kservices5/plasma-applet-org.kde.plasma.timer.desktop share/kservices5/plasma-applet-org.kde.plasma.userswitcher.desktop share/kservices5/plasma-applet-org.kde.plasma.weather.desktop %%QTWEBENGINE%%share/kservices5/plasma-applet-org.kde.plasma.webbrowser.desktop %%QTWEBENGINE%%share/kservices5/plasma-applet-org.kde.plasma_applet_dict.desktop share/kservices5/plasma-applet-org.kde.plasma.nightcolorcontrol.desktop share/kservices5/plasma-dataengine-comic.desktop share/kservices5/plasma-dataengine-konsoleprofiles.desktop share/kservices5/plasma-dataengine-potd.desktop share/kservices5/plasma-runner-character_config.desktop share/kservices5/plasma-runner-dictionary_config.desktop share/kservices5/plasma-runner-spellchecker_config.desktop share/kservices5/plasma-wallpaper-org.kde.haenau.desktop share/kservices5/plasma-wallpaper-org.kde.hunyango.desktop share/kservices5/plasma-wallpaper-org.kde.potd.desktop share/kservicetypes5/plasma_comicprovider.desktop share/kwin/desktoptabbox/previews/contents/ui/main.qml share/kwin/desktoptabbox/previews/metadata.desktop share/kwin/tabbox/big_icons/contents/ui/IconTabBox.qml share/kwin/tabbox/big_icons/contents/ui/main.qml share/kwin/tabbox/big_icons/metadata.desktop share/kwin/tabbox/compact/contents/ui/main.qml share/kwin/tabbox/compact/metadata.desktop share/kwin/tabbox/informative/contents/ui/main.qml share/kwin/tabbox/informative/metadata.desktop share/kwin/tabbox/present_windows/contents/ui/main.qml share/kwin/tabbox/present_windows/metadata.desktop share/kwin/tabbox/small_icons/contents/ui/IconTabBox.qml share/kwin/tabbox/small_icons/contents/ui/main.qml share/kwin/tabbox/small_icons/metadata.desktop share/kwin/tabbox/text/contents/ui/main.qml share/kwin/tabbox/text/metadata.desktop share/kwin/tabbox/thumbnail_grid/contents/ui/main.qml share/kwin/tabbox/thumbnail_grid/metadata.desktop share/kwin/tabbox/thumbnails/contents/ui/main.qml share/kwin/tabbox/thumbnails/metadata.desktop share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/ar/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/ar/LC_MESSAGES/plasma_runner_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_krunner_dictionary.mo share/locale/ar/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/ar/LC_MESSAGES/plasma_runner_spellcheckrunner.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.keyboardindicator.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.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/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/bs/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/bs/LC_MESSAGES/plasma_runner_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_mediawiki.mo share/locale/bs/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.nightcolorcontrol.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/ca/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/ca/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/ca/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/ca/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/ca/LC_MESSAGES/plasma_runner_datetime.mo share/locale/ca/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/ca/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/ca/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/ca/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/ca/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/ca/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.nightcolorcontrol.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/ca@valencia/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/ca@valencia/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_datetime.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/ca@valencia/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.nightcolorcontrol.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/cs/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/cs/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/cs/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/cs/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/cs/LC_MESSAGES/plasma_runner_datetime.mo share/locale/cs/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/cs/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/cs/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/cs/LC_MESSAGES/plasma_runner_mediawiki.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.binaryclock.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.nightcolorcontrol.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/da/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/da/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/da/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/da/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/da/LC_MESSAGES/plasma_runner_datetime.mo share/locale/da/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/da/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/da/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/da/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/da/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/da/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.nightcolorcontrol.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/de/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/de/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/de/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/de/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/de/LC_MESSAGES/plasma_runner_datetime.mo share/locale/de/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/de/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/de/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/de/LC_MESSAGES/plasma_runner_mediawiki.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.binaryclock.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/el/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/el/LC_MESSAGES/plasma_runner_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_mediawiki.mo share/locale/el/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.nightcolorcontrol.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/en_GB/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/en_GB/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_datetime.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/en_GB/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/eo/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/eo/LC_MESSAGES/plasma_runner_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_mediawiki.mo share/locale/eo/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.nightcolorcontrol.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/es/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/es/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/es/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/es/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/es/LC_MESSAGES/plasma_runner_datetime.mo share/locale/es/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/es/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/es/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/es/LC_MESSAGES/plasma_runner_mediawiki.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.binaryclock.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.nightcolorcontrol.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/et/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/et/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/et/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/et/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/et/LC_MESSAGES/plasma_runner_datetime.mo share/locale/et/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/et/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/et/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/et/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/et/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/et/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.nightcolorcontrol.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/eu/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/eu/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/eu/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/eu/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/eu/LC_MESSAGES/plasma_runner_datetime.mo share/locale/eu/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/eu/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/eu/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/eu/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/eu/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/eu/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.nightcolorcontrol.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/fi/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/fi/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/fi/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/fi/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/fi/LC_MESSAGES/plasma_runner_datetime.mo share/locale/fi/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/fi/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/fi/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/fi/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/fi/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/fi/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.nightcolorcontrol.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/fr/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/fr/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/fr/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/fr/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/fr/LC_MESSAGES/plasma_runner_datetime.mo share/locale/fr/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/fr/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/fr/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/fr/LC_MESSAGES/plasma_runner_mediawiki.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.systemloadviewer.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/ga/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/ga/LC_MESSAGES/plasma_runner_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_mediawiki.mo share/locale/ga/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/gl/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/gl/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/gl/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/gl/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/gl/LC_MESSAGES/plasma_runner_datetime.mo share/locale/gl/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/gl/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/gl/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/gl/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/gl/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/gl/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/he/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/he/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/he/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/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.systemloadviewer.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/hr/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/hr/LC_MESSAGES/plasma_runner_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_mediawiki.mo share/locale/hr/LC_MESSAGES/plasma_runner_spellcheckrunner.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.quickshare.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/hu/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/hu/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/hu/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/hu/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/hu/LC_MESSAGES/plasma_runner_datetime.mo share/locale/hu/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/hu/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/hu/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/hu/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/hu/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/hu/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.nightcolorcontrol.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/ia/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/ia/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/ia/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/ia/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/ia/LC_MESSAGES/plasma_runner_datetime.mo share/locale/ia/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/ia/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/ia/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/ia/LC_MESSAGES/plasma_runner_mediawiki.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_applet_org.kde.plasma.binaryclock.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.nightcolorcontrol.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.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_astronomicalevents.mo share/locale/id/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/id/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/id/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/id/LC_MESSAGES/plasma_runner_datetime.mo share/locale/id/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/id/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/id/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/id/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/id/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/id/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/is/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/is/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/is/LC_MESSAGES/plasma_runner_datetime.mo share/locale/is/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/is/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/is/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.nightcolorcontrol.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/it/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/it/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/it/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/it/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/it/LC_MESSAGES/plasma_runner_datetime.mo share/locale/it/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/it/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/it/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/it/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/it/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/it/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.nightcolorcontrol.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/ja/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/ja/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/ja/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/ja/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/ja/LC_MESSAGES/plasma_runner_datetime.mo share/locale/ja/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/ja/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/ja/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/ja/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/ja/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/ja/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.systemloadviewer.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/kk/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/kk/LC_MESSAGES/plasma_runner_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_mediawiki.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.systemloadviewer.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/km/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/km/LC_MESSAGES/plasma_runner_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_mediawiki.mo share/locale/km/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.nightcolorcontrol.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/ko/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/ko/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/ko/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/ko/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/ko/LC_MESSAGES/plasma_runner_datetime.mo share/locale/ko/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/ko/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/ko/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/ko/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/ko/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/ko/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/ku/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/ku/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/ku/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.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.quickshare.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/lt/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/lt/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/lt/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/lt/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/lt/LC_MESSAGES/plasma_runner_datetime.mo share/locale/lt/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/lt/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/lt/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/lt/LC_MESSAGES/plasma_runner_mediawiki.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.systemloadviewer.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/lv/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/lv/LC_MESSAGES/plasma_runner_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_mediawiki.mo share/locale/lv/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/ml/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/ml/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/ml/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/ml/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/ml/LC_MESSAGES/plasma_runner_datetime.mo share/locale/ml/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/ml/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/ml/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/ml/LC_MESSAGES/plasma_runner_mediawiki.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.systemloadviewer.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/mr/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/mr/LC_MESSAGES/plasma_runner_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_mediawiki.mo share/locale/mr/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/nb/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/nb/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/nb/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/nb/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/nb/LC_MESSAGES/plasma_runner_datetime.mo share/locale/nb/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/nb/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/nb/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/nb/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/nb/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/nds/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/nds/LC_MESSAGES/plasma_runner_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_mediawiki.mo share/locale/nds/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.nightcolorcontrol.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/nl/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/nl/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/nl/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/nl/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/nl/LC_MESSAGES/plasma_runner_datetime.mo share/locale/nl/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/nl/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/nl/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/nl/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/nl/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/nl/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.nightcolorcontrol.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/nn/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/nn/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/nn/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/nn/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/nn/LC_MESSAGES/plasma_runner_datetime.mo share/locale/nn/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/nn/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/nn/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/nn/LC_MESSAGES/plasma_runner_mediawiki.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.binaryclock.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/pa/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/pa/LC_MESSAGES/plasma_runner_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_mediawiki.mo share/locale/pa/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo +share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.nightcolorcontrol.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/pl/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/pl/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/pl/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/pl/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/pl/LC_MESSAGES/plasma_runner_datetime.mo share/locale/pl/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/pl/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/pl/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/pl/LC_MESSAGES/plasma_runner_mediawiki.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_applet_org.kde.plasma.binaryclock.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.nightcolorcontrol.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/pt/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/pt/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/pt/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/pt/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/pt/LC_MESSAGES/plasma_runner_datetime.mo share/locale/pt/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/pt/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/pt/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/pt/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/pt/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/pt/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.nightcolorcontrol.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/pt_BR/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/pt_BR/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_datetime.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/pt_BR/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.nightcolorcontrol.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/ro/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/ro/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/ro/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/ro/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/ro/LC_MESSAGES/plasma_runner_datetime.mo share/locale/ro/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/ro/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/ro/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/ro/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/ro/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/ro/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.nightcolorcontrol.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/ru/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/ru/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/ru/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/ru/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/ru/LC_MESSAGES/plasma_runner_datetime.mo share/locale/ru/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/ru/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/ru/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/ru/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/ru/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/ru/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.nightcolorcontrol.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/sk/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/sk/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/sk/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/sk/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/sk/LC_MESSAGES/plasma_runner_datetime.mo share/locale/sk/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/sk/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/sk/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/sk/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/sk/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/sk/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.nightcolorcontrol.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/sl/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/sl/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/sl/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/sl/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/sl/LC_MESSAGES/plasma_runner_datetime.mo share/locale/sl/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/sl/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/sl/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/sl/LC_MESSAGES/plasma_runner_mediawiki.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.systemloadviewer.mo share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/sq/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/sq/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/sq/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/sq/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/sq/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/sr/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/sr/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/sr/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/sr/LC_MESSAGES/plasma_runner_datetime.mo share/locale/sr/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/sr/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/sr/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/sr/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_datetime.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_datetime.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/sr@latin/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_datetime.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/tg/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/tg/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/tg/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/tg/LC_MESSAGES/plasma_runner_datetime.mo share/locale/tg/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/tg/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/tg/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/tg/LC_MESSAGES/plasma_runner_mediawiki.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_mediawiki.mo share/locale/th/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/tr/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/tr/LC_MESSAGES/plasma_runner_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_krunner_dictionary.mo share/locale/tr/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/tr/LC_MESSAGES/plasma_runner_spellcheckrunner.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.systemloadviewer.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/ug/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/ug/LC_MESSAGES/plasma_runner_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_mediawiki.mo share/locale/ug/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.nightcolorcontrol.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/uk/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/uk/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/uk/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/uk/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/uk/LC_MESSAGES/plasma_runner_datetime.mo share/locale/uk/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/uk/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/uk/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/uk/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/uk/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/uk/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/wa/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/wa/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/wa/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.nightcolorcontrol.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/zh_CN/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/zh_CN/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_datetime.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/zh_CN/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.nightcolorcontrol.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/zh_TW/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/zh_TW/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_datetime.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_mediawiki.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.activitypager.appdata.xml %%QTWEBENGINE%%share/metainfo/org.kde.plasma_applet_dict.appdata.xml share/metainfo/org.kde.plasma.binaryclock.appdata.xml share/metainfo/org.kde.plasma.calculator.appdata.xml share/metainfo/org.kde.plasma.colorpicker.appdata.xml share/metainfo/org.kde.plasma.comic.appdata.xml share/metainfo/org.kde.plasma.diskquota.appdata.xml share/metainfo/org.kde.plasma.fifteenpuzzle.appdata.xml share/metainfo/org.kde.plasma.fuzzyclock.appdata.xml share/metainfo/org.kde.plasma.grouping.appdata.xml share/metainfo/org.kde.plasma.keyboardindicator.appdata.xml share/metainfo/org.kde.plasma.kickerdash.appdata.xml share/metainfo/org.kde.plasma.konsoleprofiles.appdata.xml share/metainfo/org.kde.plasma.mediaframe.appdata.xml share/metainfo/org.kde.plasma.nightcolorcontrol.appdata.xml share/metainfo/org.kde.plasma.notes.appdata.xml share/metainfo/org.kde.plasma.quicklaunch.appdata.xml share/metainfo/org.kde.plasma.quickshare.appdata.xml share/metainfo/org.kde.plasma.systemloadviewer.appdata.xml share/metainfo/org.kde.plasma.timer.appdata.xml share/metainfo/org.kde.plasma.userswitcher.appdata.xml share/metainfo/org.kde.plasma.weather.appdata.xml %%QTWEBENGINE%%share/metainfo/org.kde.plasma.webbrowser.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.activitypager/metadata.desktop share/plasma/plasmoids/org.kde.plasma.activitypager/metadata.json share/plasma/plasmoids/org.kde.plasma.binaryclock/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.binaryclock/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.binaryclock/contents/ui/BinaryClock.qml share/plasma/plasmoids/org.kde.plasma.binaryclock/contents/ui/Dot.qml share/plasma/plasmoids/org.kde.plasma.binaryclock/contents/ui/DotColumn.qml share/plasma/plasmoids/org.kde.plasma.binaryclock/contents/ui/configGeneral.qml share/plasma/plasmoids/org.kde.plasma.binaryclock/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.binaryclock/metadata.desktop share/plasma/plasmoids/org.kde.plasma.binaryclock/metadata.json share/plasma/plasmoids/org.kde.plasma.calculator/contents/ui/calculator.qml share/plasma/plasmoids/org.kde.plasma.calculator/metadata.desktop share/plasma/plasmoids/org.kde.plasma.calculator/metadata.json share/plasma/plasmoids/org.kde.plasma.colorpicker/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.colorpicker/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.colorpicker/contents/ui/configGeneral.qml share/plasma/plasmoids/org.kde.plasma.colorpicker/contents/ui/logic.js share/plasma/plasmoids/org.kde.plasma.colorpicker/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.colorpicker/metadata.desktop share/plasma/plasmoids/org.kde.plasma.colorpicker/metadata.json share/plasma/plasmoids/org.kde.plasma.comic/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.comic/contents/ui/ButtonBar.qml share/plasma/plasmoids/org.kde.plasma.comic/contents/ui/ComicBottomInfo.qml share/plasma/plasmoids/org.kde.plasma.comic/contents/ui/ComicCentralView.qml share/plasma/plasmoids/org.kde.plasma.comic/contents/ui/FullViewWidget.qml share/plasma/plasmoids/org.kde.plasma.comic/contents/ui/ImageWidget.qml share/plasma/plasmoids/org.kde.plasma.comic/contents/ui/configAdvanced.qml share/plasma/plasmoids/org.kde.plasma.comic/contents/ui/configAppearance.qml share/plasma/plasmoids/org.kde.plasma.comic/contents/ui/configGeneral.qml share/plasma/plasmoids/org.kde.plasma.comic/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.comic/metadata.desktop share/plasma/plasmoids/org.kde.plasma.comic/metadata.json share/plasma/plasmoids/org.kde.plasma.diskquota/contents/ui/ListDelegateItem.qml share/plasma/plasmoids/org.kde.plasma.diskquota/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.diskquota/metadata.desktop share/plasma/plasmoids/org.kde.plasma.diskquota/metadata.json share/plasma/plasmoids/org.kde.plasma.fifteenpuzzle/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.fifteenpuzzle/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.fifteenpuzzle/contents/ui/FifteenPuzzle.qml share/plasma/plasmoids/org.kde.plasma.fifteenpuzzle/contents/ui/Piece.qml share/plasma/plasmoids/org.kde.plasma.fifteenpuzzle/contents/ui/blanksquare.svg share/plasma/plasmoids/org.kde.plasma.fifteenpuzzle/contents/ui/configAppearance.qml share/plasma/plasmoids/org.kde.plasma.fifteenpuzzle/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.fifteenpuzzle/metadata.desktop share/plasma/plasmoids/org.kde.plasma.fifteenpuzzle/metadata.json share/plasma/plasmoids/org.kde.plasma.fuzzyclock/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.fuzzyclock/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.fuzzyclock/contents/ui/FuzzyClock.qml share/plasma/plasmoids/org.kde.plasma.fuzzyclock/contents/ui/configAppearance.qml share/plasma/plasmoids/org.kde.plasma.fuzzyclock/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.fuzzyclock/metadata.desktop share/plasma/plasmoids/org.kde.plasma.fuzzyclock/metadata.json share/plasma/plasmoids/org.kde.plasma.grouping/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.grouping/metadata.desktop share/plasma/plasmoids/org.kde.plasma.grouping/metadata.json share/plasma/plasmoids/org.kde.plasma.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.desktop share/plasma/plasmoids/org.kde.plasma.keyboardindicator/metadata.json share/plasma/plasmoids/org.kde.plasma.kickerdash/metadata.desktop share/plasma/plasmoids/org.kde.plasma.kickerdash/metadata.json share/plasma/plasmoids/org.kde.plasma.konsoleprofiles/contents/ui/konsoleprofiles.qml share/plasma/plasmoids/org.kde.plasma.konsoleprofiles/metadata.desktop share/plasma/plasmoids/org.kde.plasma.konsoleprofiles/metadata.json share/plasma/plasmoids/org.kde.plasma.mediaframe/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.mediaframe/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.mediaframe/contents/ui/ConfigGeneral.qml share/plasma/plasmoids/org.kde.plasma.mediaframe/contents/ui/ConfigPaths.qml share/plasma/plasmoids/org.kde.plasma.mediaframe/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.mediaframe/metadata.desktop share/plasma/plasmoids/org.kde.plasma.mediaframe/metadata.json share/plasma/plasmoids/org.kde.plasma.nightcolorcontrol/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.nightcolorcontrol/metadata.desktop share/plasma/plasmoids/org.kde.plasma.nightcolorcontrol/metadata.json share/plasma/plasmoids/org.kde.plasma.notes/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.notes/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.notes/contents/ui/ShortcutMenuItem.qml share/plasma/plasmoids/org.kde.plasma.notes/contents/ui/configAppearance.qml share/plasma/plasmoids/org.kde.plasma.notes/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.notes/metadata.desktop share/plasma/plasmoids/org.kde.plasma.notes/metadata.json share/plasma/plasmoids/org.kde.plasma.private.grouping/contents/applet/CompactApplet.qml share/plasma/plasmoids/org.kde.plasma.private.grouping/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.private.grouping/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.private.grouping/contents/ui/items/AbstractItem.qml share/plasma/plasmoids/org.kde.plasma.private.grouping/contents/ui/items/PlasmoidItem.qml share/plasma/plasmoids/org.kde.plasma.private.grouping/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.private.grouping/metadata.desktop share/plasma/plasmoids/org.kde.plasma.private.grouping/metadata.json share/plasma/plasmoids/org.kde.plasma.quicklaunch/contents/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.desktop share/plasma/plasmoids/org.kde.plasma.quicklaunch/metadata.json share/plasma/plasmoids/org.kde.plasma.quickshare/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.quickshare/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.quickshare/contents/ui/PasteMenuItem.qml share/plasma/plasmoids/org.kde.plasma.quickshare/contents/ui/ShareDialog.qml share/plasma/plasmoids/org.kde.plasma.quickshare/contents/ui/ShowUrlDialog.qml share/plasma/plasmoids/org.kde.plasma.quickshare/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.quickshare/contents/ui/settingsGeneral.qml share/plasma/plasmoids/org.kde.plasma.quickshare/metadata.desktop share/plasma/plasmoids/org.kde.plasma.quickshare/metadata.json share/plasma/plasmoids/org.kde.plasma.systemloadviewer/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.systemloadviewer/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.systemloadviewer/contents/ui/BarMonitor.qml share/plasma/plasmoids/org.kde.plasma.systemloadviewer/contents/ui/CircularMonitor.qml share/plasma/plasmoids/org.kde.plasma.systemloadviewer/contents/ui/ColorSettings.qml share/plasma/plasmoids/org.kde.plasma.systemloadviewer/contents/ui/CompactBarMonitor.qml share/plasma/plasmoids/org.kde.plasma.systemloadviewer/contents/ui/ConditionallyLoadedMonitors.qml share/plasma/plasmoids/org.kde.plasma.systemloadviewer/contents/ui/ConditionallyRoundedRectangle.qml share/plasma/plasmoids/org.kde.plasma.systemloadviewer/contents/ui/GeneralSettings.qml share/plasma/plasmoids/org.kde.plasma.systemloadviewer/contents/ui/SystemLoadViewer.qml share/plasma/plasmoids/org.kde.plasma.systemloadviewer/metadata.desktop share/plasma/plasmoids/org.kde.plasma.systemloadviewer/metadata.json share/plasma/plasmoids/org.kde.plasma.timer/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.timer/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.timer/contents/ui/TimerDigit.qml share/plasma/plasmoids/org.kde.plasma.timer/contents/ui/TimerView.qml share/plasma/plasmoids/org.kde.plasma.timer/contents/ui/configAdvanced.qml share/plasma/plasmoids/org.kde.plasma.timer/contents/ui/configAppearance.qml share/plasma/plasmoids/org.kde.plasma.timer/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.timer/metadata.desktop share/plasma/plasmoids/org.kde.plasma.timer/metadata.json share/plasma/plasmoids/org.kde.plasma.userswitcher/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.userswitcher/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.userswitcher/contents/ui/ListDelegate.qml share/plasma/plasmoids/org.kde.plasma.userswitcher/contents/ui/configGeneral.qml share/plasma/plasmoids/org.kde.plasma.userswitcher/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.userswitcher/metadata.desktop share/plasma/plasmoids/org.kde.plasma.userswitcher/metadata.json share/plasma/plasmoids/org.kde.plasma.weather/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.weather/contents/ui/CompactRepresentation.qml share/plasma/plasmoids/org.kde.plasma.weather/contents/ui/DetailsView.qml share/plasma/plasmoids/org.kde.plasma.weather/contents/ui/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/config/WeatherStationPicker.qml share/plasma/plasmoids/org.kde.plasma.weather/contents/ui/config/WeatherStationPickerDialog.qml share/plasma/plasmoids/org.kde.plasma.weather/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.weather/metadata.desktop share/plasma/plasmoids/org.kde.plasma.weather/metadata.json %%QTWEBENGINE%%share/plasma/plasmoids/org.kde.plasma.webbrowser/contents/config/config.qml %%QTWEBENGINE%%share/plasma/plasmoids/org.kde.plasma.webbrowser/contents/config/main.xml %%QTWEBENGINE%%share/plasma/plasmoids/org.kde.plasma.webbrowser/contents/ui/ConfigGeneral.qml %%QTWEBENGINE%%share/plasma/plasmoids/org.kde.plasma.webbrowser/contents/ui/main.qml %%QTWEBENGINE%%share/plasma/plasmoids/org.kde.plasma.webbrowser/metadata.desktop %%QTWEBENGINE%%share/plasma/plasmoids/org.kde.plasma.webbrowser/metadata.json %%QTWEBENGINE%%share/plasma/plasmoids/org.kde.plasma_applet_dict/contents/config/config.qml %%QTWEBENGINE%%share/plasma/plasmoids/org.kde.plasma_applet_dict/contents/ui/ConfigDictionaries.qml %%QTWEBENGINE%%share/plasma/plasmoids/org.kde.plasma_applet_dict/contents/ui/main.qml %%QTWEBENGINE%%share/plasma/plasmoids/org.kde.plasma_applet_dict/metadata.desktop %%QTWEBENGINE%%share/plasma/plasmoids/org.kde.plasma_applet_dict/metadata.json share/plasma/services/org.kde.plasma.dataengine.konsoleprofiles.operations share/plasma/wallpapers/org.kde.haenau/contents/ui/BackgroundElement.qml share/plasma/wallpapers/org.kde.haenau/contents/ui/BottomBackgroundElement.qml share/plasma/wallpapers/org.kde.haenau/contents/ui/RightBackgroundElement.qml share/plasma/wallpapers/org.kde.haenau/contents/ui/main.qml share/plasma/wallpapers/org.kde.haenau/contents/ui/wallpaper.svgz share/plasma/wallpapers/org.kde.haenau/metadata.desktop share/plasma/wallpapers/org.kde.haenau/metadata.json share/plasma/wallpapers/org.kde.hunyango/contents/ui/main.qml share/plasma/wallpapers/org.kde.hunyango/contents/ui/wallpaper.svgz share/plasma/wallpapers/org.kde.hunyango/metadata.desktop share/plasma/wallpapers/org.kde.hunyango/metadata.json share/plasma/wallpapers/org.kde.potd/contents/config/main.xml share/plasma/wallpapers/org.kde.potd/contents/ui/config.qml share/plasma/wallpapers/org.kde.potd/contents/ui/main.qml share/plasma/wallpapers/org.kde.potd/metadata.desktop share/plasma/wallpapers/org.kde.potd/metadata.json Index: head/x11-wm/plasma5-kdecoration/distinfo =================================================================== --- head/x11-wm/plasma5-kdecoration/distinfo (revision 553023) +++ head/x11-wm/plasma5-kdecoration/distinfo (revision 553024) @@ -1,3 +1,3 @@ -TIMESTAMP = 1602198219 -SHA256 (KDE/plasma/5.20.0/kdecoration-5.20.0.tar.xz) = 3dd92c7384fd2665af13715b4073eeee9d6c5969d578049c6ae72dc4c287a747 -SIZE (KDE/plasma/5.20.0/kdecoration-5.20.0.tar.xz) = 45680 +TIMESTAMP = 1603378867 +SHA256 (KDE/plasma/5.20.1/kdecoration-5.20.1.tar.xz) = 70b5c516fde18edc706525d8cc27f1dd7bf4f1bef666745b9d4aa83c4c8eaa45 +SIZE (KDE/plasma/5.20.1/kdecoration-5.20.1.tar.xz) = 45664 Index: head/x11-wm/plasma5-kwin/distinfo =================================================================== --- head/x11-wm/plasma5-kwin/distinfo (revision 553023) +++ head/x11-wm/plasma5-kwin/distinfo (revision 553024) @@ -1,3 +1,3 @@ -TIMESTAMP = 1602521941 -SHA256 (KDE/plasma/5.20.0/kwin-5.20.0.tar.xz) = b91d6101d0a303d42ce05c1a04d7e2e2b0c91ecde3153dac36b17e73cd1a9c96 -SIZE (KDE/plasma/5.20.0/kwin-5.20.0.tar.xz) = 6310596 +TIMESTAMP = 1603378869 +SHA256 (KDE/plasma/5.20.1/kwin-5.20.1.tar.xz) = 709aa4ef600ef28c26175a3eccc5114f9ff1b6b9757c02e50503595180e02ef0 +SIZE (KDE/plasma/5.20.1/kwin-5.20.1.tar.xz) = 6311252