diff --git a/Mk/Uses/kde.mk b/Mk/Uses/kde.mk index 9d82d37551e5..ed2cabb9e59e 100644 --- a/Mk/Uses/kde.mk +++ b/Mk/Uses/kde.mk @@ -1,909 +1,909 @@ # Provides support for KDE and KF5-based ports. # # Feature: kde # Valid ARGS: 5 # # 5: Depend on KDE Frameworks 5 components and variables. # # Variables that can be set by a port: # # USE_KDE List of KF5/Plasma5 components (other ports) that this # port depends on. # * foo_build Add a build-time dependency (BUILD_DEPENDS) # * foo_run Add a run-time dependency (RUN_DEPENDS) # * foo (default) Add both dependencies on component , or # a LIB_DEPENDS if applicable. # # To simplify the ports, also: # CATEGORIES If the port is part of one of the KDE Software distribution, # it can add, in addition to 'kde' one of the following: # kde-applications: part of applications release # kde-frameworks: part of frameworks release # kde-plasma: part of plasma release # this will then set default values for MASTER_SITES and DIST_SUBDIR # as well as CPE_VENDOR and LICENSE. # # option DOCS If the port is part of kde-applications (see CATEGORIES, # above) and has an option defined for DOCS then a dependency # for doctools_build is added. The option itself doesn't # have to do anything -- the dependency is always there. # # KDE_INVENT If the port does not have a regular release, and should # be fetched from KDE Invent (a GitLab instance) it can set # KDE_INVENT to 3 space-separated values: # * a full 40-character commit hash # * a category name inside KDE Invent # * a repository name inside KDE Invent # Default values for category and name are: # * the first item in CATEGORIES that is not "kde"; this # is useful when the FreeBSD ports category and the KDE # category are the same (which happens sometimes) # * PORTNAME, often the FreeBSD port name is the same # as the upstream name and it will not need to be specified. # Sometimes `KDE_INVENT=` will do and often # `KDE_INVENT= ` is enough. # # Setting KDE_INVENT is the equivalent of a handful of USE_GITLAB # and related settings. # # MAINTAINER: kde@FreeBSD.org .if !defined(_INCLUDE_USES_KDE_MK) _INCLUDE_USES_KDE_MK= yes _KDE_SUPPORTED= 5 . if empty(kde_ARGS) IGNORE= kde needs a version (${_KDE_SUPPORTED}) . endif . for ver in ${_KDE_SUPPORTED:O:u} . if ${kde_ARGS:M${ver}} . if !defined(_KDE_VERSION) _KDE_VERSION= ${ver} . else IGNORE?= cannot be installed: different KDE versions specified via kde:[${_KDE_SUPPORTED:S/ //g}] #' . endif . endif . endfor . if empty(_KDE_VERSION) IGNORE?= kde:[${_KDE_SUPPORTED:S/ //g}] needs an argument #' . else _KDE_RELNAME= KDE${_KDE_VERSION} # === VERSIONS OF THE DIFFERENT COMPONENTS ===================================== # Current KDE desktop. -KDE_PLASMA_VERSION?= 5.22.3 +KDE_PLASMA_VERSION?= 5.22.4 KDE_PLASMA_BRANCH?= stable # Current KDE frameworks. KDE_FRAMEWORKS_VERSION?= 5.83.0 KDE_FRAMEWORKS_BRANCH?= stable # Current KDE applications. KDE_APPLICATIONS_VERSION?= 21.04.3 KDE_APPLICATIONS_SHLIB_VER?= 5.17.3 KDE_APPLICATIONS_BRANCH?= stable # Extended KDE universe applications. CALLIGRA_VERSION?= 2.9.11 CALLIGRA_BRANCH?= stable # ============================================================================== # === INSTALLATION PREFIXES AND HEADER LOCATION ================================ # Define unversioned prefix variable. KDE_PREFIX= ${LOCALBASE} # ============================================================================== # === CATEGORIES HANDLING -- SETTING DEFAULT VALUES ============================ # Doing MASTER_SITES magic based on the category of the port _KDE_CATEGORIES_SUPPORTED= kde-applications kde-frameworks kde-plasma . for cat in ${_KDE_CATEGORIES_SUPPORTED} . if ${CATEGORIES:M${cat}} . if !defined(_KDE_CATEGORY) _KDE_CATEGORY= ${cat} . else IGNORE?= cannot be installed: multiple kde-<...> categories specified via CATEGORIES=${CATEGORIES} #' . endif . endif . endfor # Doing source-selection if the sources are on KDE invent . if defined(KDE_INVENT) _invent_hash= ${KDE_INVENT:[1]} _invent_category= ${KDE_INVENT:[2]} _invent_name= ${KDE_INVENT:[3]} # Fill in default values if bits are missing . if empty(_invent_category) _invent_category= ${CATEGORIES:Nkde:[1]} . endif . if empty(_invent_name) _invent_name= ${PORTNAME} . endif # If valid, use it for GitLab . if empty(_invent_hash) || empty(_invent_category) || empty(_invent_name) IGNORE?= invalid KDE_INVENT value '${KDE_INVENT}' . else USE_GITLAB= yes GL_SITE= https://invent.kde.org GL_ACCOUNT= ${_invent_category} GL_PROJECT= ${_invent_name} GL_COMMIT= ${_invent_hash} . endif . endif . if defined(_KDE_CATEGORY) # KDE is normally licensed under the LGPL 2.0. LICENSE?= LGPL20 # Set CPE Vendor Information # As _KDE_CATEGORY is set we can assume it is port release by KDE and the # vendor is therefore kde. CPE_VENDOR?= kde . if ${_KDE_CATEGORY:Mkde-applications} PORTVERSION?= ${KDE_APPLICATIONS_VERSION} MASTER_SITES?= KDE/${KDE_APPLICATIONS_BRANCH}/release-service/${KDE_APPLICATIONS_VERSION}/src # Let bsd.port.mk create the plist-entries for the documentation. # KDE Applications ports install their documentation to # ${PREFIX}/share/doc. This is only done if the port # defines OPTION DOCS -- the _KDE_OPTIONS here is to # avoid make errors when there are no options defined at all. _KDE_OPTIONS= bogus ${OPTIONS_DEFINE} . if ${_KDE_OPTIONS:MDOCS} DOCSDIR= ${PREFIX}/share/doc PORTDOCS?= HTML/* USE_KDE+= doctools_build . endif # Further pass along a SHLIB_VER PLIST_SUB PLIST_SUB+= KDE_APPLICATIONS_SHLIB_VER=${KDE_APPLICATIONS_SHLIB_VER} \ KDE_APPLICATIONS_VERSION_SHORT="${KDE_APPLICATIONS_VERSION:R:R}" DIST_SUBDIR?= KDE/release-service/${KDE_APPLICATIONS_VERSION} . elif ${_KDE_CATEGORY:Mkde-plasma} PORTVERSION?= ${KDE_PLASMA_VERSION} PKGNAMEPREFIX?= plasma5- MASTER_SITES?= KDE/${KDE_PLASMA_BRANCH}/plasma/${KDE_PLASMA_VERSION} DIST_SUBDIR?= KDE/plasma/${KDE_PLASMA_VERSION} . elif ${_KDE_CATEGORY:Mkde-frameworks} PORTVERSION?= ${KDE_FRAMEWORKS_VERSION} PKGNAMEPREFIX?= kf5- # This is a slight duplication of _USE_FRAMEWORKS_PORTING -- it maybe would be # better to rely on ${_USE_FRAMEWORKS_PORTING:S/^/k/g} _PORTINGAIDS= kjs kjsembed kdelibs4support kdesignerplugin kdewebkit khtml kmediaplayer kross kxmlrpcclient . if ${_PORTINGAIDS:M*${PORTNAME}*} MASTER_SITES?= KDE/${KDE_FRAMEWORKS_BRANCH}/frameworks/${KDE_FRAMEWORKS_VERSION:R}/portingAids . else MASTER_SITES?= KDE/${KDE_FRAMEWORKS_BRANCH}/frameworks/${KDE_FRAMEWORKS_VERSION:R} . endif DIST_SUBDIR?= KDE/frameworks/${KDE_FRAMEWORKS_VERSION} . else IGNORE?= unknown CATEGORY value '${_KDE_CATEGORY}' #' . endif . endif #defined(_KDE_CATEGORY) # ============================================================================== # === SET UP CMAKE ENVIRONMENT ================================================= # Help cmake to find files when testing ports with non-default PREFIX. CMAKE_ARGS+= -DCMAKE_PREFIX_PATH="${LOCALBASE}" # We set KDE_INSTALL_USE_QT_SYS_PATHS to install mkspecs files, plugins and # imports to the Qt 5 install directory. CMAKE_ARGS+= -DCMAKE_MODULE_PATH="${LOCALBASE};${KDE_PREFIX}" \ -DCMAKE_INSTALL_PREFIX="${KDE_PREFIX}" \ -DKDE_INSTALL_USE_QT_SYS_PATHS:BOOL=true # Set man-page installation prefix. CMAKE_ARGS+= -DKDE_INSTALL_MANDIR:PATH="${KDE_PREFIX}/man" \ -DMAN_INSTALL_DIR:PATH="${KDE_PREFIX}/man" # Disable autotests unless TEST_TARGET is defined. . if !defined(TEST_TARGET) CMAKE_ARGS+= -DBUILD_TESTING:BOOL=false . endif # ============================================================================== # === SET UP PLIST_SUB ========================================================= # Prefix and include directory. PLIST_SUB+= KDE_PREFIX="${KDE_PREFIX}" # KDE Applications version. PLIST_SUB+= KDE_APPLICATIONS_VERSION="${KDE_APPLICATIONS_VERSION}" \ KDE_FRAMEWORKS_VERSION="${KDE_FRAMEWORKS_VERSION}" \ KDE_PLASMA_VERSION="${KDE_PLASMA_VERSION}" # ============================================================================== _USE_KDE_BOTH= akonadi attica libkcddb libkcompactdisc libkdcraw libkdegames \ libkeduvocdocument libkexiv2 libkipi libksane okular \ baloo baloo-widgets kate marble # List of components of the KDE Frameworks distribution. # The *_TIER variables are internal, primarily for checking # that our list of frameworks matches the structure offered upstream. _USE_FRAMEWORKS_TIER1= apidox archive attica5 breeze-icons codecs config \ coreaddons dbusaddons dnssd holidays i18n idletime itemmodels \ itemviews kirigami2 kquickcharts oxygen-icons5 plotting prison \ qqc2-desktop-style solid sonnet syntaxhighlighting \ threadweaver wayland widgetsaddons windowsystem # NOT LISTED TIER1: modemmanagerqt networkmanagerqt (not applicable) _USE_FRAMEWORKS_TIER2= auth completion crash doctools \ filemetadata kimageformats jobwidgets notifications \ package pty syndication unitconversion _USE_FRAMEWORKS_TIER3= activities activities-stats baloo5 bookmarks configwidgets \ designerplugin emoticons globalaccel guiaddons \ iconthemes init kcmutils kdav kdeclarative \ kded kdesu kdewebkit kio kwayland-server newstuff notifyconfig parts \ people plasma-framework purpose runner service texteditor \ textwidgets wallet xmlgui xmlrpcclient _USE_FRAMEWORKS_TIER4= frameworkintegration calendarcore contacts # Porting Aids frameworks provide code and utilities to ease the transition from # kdelibs 4 to KDE Frameworks 5. Code should aim to port away from this framework, # new projects should avoid using these libraries. _USE_FRAMEWORKS_PORTING=js jsembed kdelibs4support khtml mediaplayer kross _USE_FRAMEWORKS_ALL= ecm \ ${_USE_FRAMEWORKS_TIER1} \ ${_USE_FRAMEWORKS_TIER2} \ ${_USE_FRAMEWORKS_TIER3} \ ${_USE_FRAMEWORKS_TIER4} \ ${_USE_FRAMEWORKS_PORTING} \ ${_USE_FRAMEWORKS_EXTRA} \ kpublictransport kosm \ plasma-wayland-protocols # List of components of the KDE Plasma distribution. _USE_PLASMA_ALL= activitymanagerd breeze breeze-gtk \ decoration discover drkonqi hotkeys \ infocenter kde-cli-tools kde-gtk-config \ kdeplasma-addons kgamma5 kmenuedit kscreen \ kscreenlocker ksshaskpass ksysguard kwallet-pam \ kwayland-integration kwin kwrited layer-shell-qt libkscreen \ libksysguard milou oxygen plasma-browser-integration \ plasma-desktop plasma-disks plasma-integration plasma-pa \ plasma-sdk plasma-workspace plasma-workspace-wallpapers \ polkit-kde-agent-1 powerdevil systemsettings # List of components of the KDE PIM distribution (part of applications). _USE_KDEPIM5_ALL= akonadicontacts akonadiimportwizard akonadimime akonadinotes \ akonadicalendar akonadisearch alarmcalendar \ calendarcore calendarsupport calendarutils \ contacts eventviews gapi grantleetheme \ gravatar identitymanagement imap \ incidenceeditor kdepim-addons \ kdepim-runtime5 kitinerary kontactinterface kpkpass \ ksmtp ldap libkdepim libkleo libksieve mailcommon \ mailimporter mailtransport mbox messagelib \ mime pimcommon pimtextedit tnef \ kalarm kontact kmail mbox-importer \ akonadiconsole akregator grantlee-editor kaddressbook \ kalarm kmail-account-wizard kmail knotes kontact \ korganizer pim-data-exporter _USE_KDE5_ALL= ${_USE_FRAMEWORKS_ALL} \ ${_USE_PLASMA_ALL} \ ${_USE_KDEPIM5_ALL} \ ${_USE_KDE_BOTH} # ====================== frameworks components ================================= kde-activities_PORT= x11/kf5-kactivities kde-activities_LIB= libKF5Activities.so kde-activities-stats_PORT= x11/kf5-kactivities-stats kde-activities-stats_LIB= libKF5ActivitiesStats.so kde-apidox_PORT= devel/kf5-kapidox kde-apidox_PATH= ${KDE_PREFIX}/bin/kapidox_generate kde-apidox_TYPE= run kde-archive_PORT= archivers/kf5-karchive kde-archive_LIB= libKF5Archive.so kde-attica5_PORT= x11-toolkits/kf5-attica kde-attica5_LIB= libKF5Attica.so kde-auth_PORT= devel/kf5-kauth kde-auth_LIB= libKF5Auth.so kde-baloo5_PORT= sysutils/kf5-baloo kde-baloo5_LIB= libKF5Baloo.so kde-bookmarks_PORT= devel/kf5-kbookmarks kde-bookmarks_LIB= libKF5Bookmarks.so kde-breeze-icons_PORT= x11-themes/kf5-breeze-icons kde-breeze-icons_PATH= ${KDE_PREFIX}/share/icons/breeze/index.theme kde-breeze-icons_TYPE= run kde-codecs_PORT= textproc/kf5-kcodecs kde-codecs_LIB= libKF5Codecs.so kde-completion_PORT= x11-toolkits/kf5-kcompletion kde-completion_LIB= libKF5Completion.so kde-config_PORT= devel/kf5-kconfig kde-config_LIB= libKF5ConfigCore.so kde-configwidgets_PORT= x11-toolkits/kf5-kconfigwidgets kde-configwidgets_LIB= libKF5ConfigWidgets.so kde-coreaddons_PORT= devel/kf5-kcoreaddons kde-coreaddons_LIB= libKF5CoreAddons.so kde-crash_PORT= devel/kf5-kcrash kde-crash_LIB= libKF5Crash.so kde-dbusaddons_PORT= devel/kf5-kdbusaddons kde-dbusaddons_LIB= libKF5DBusAddons.so kde-designerplugin_PORT= x11-toolkits/kf5-kdesignerplugin kde-designerplugin_PATH= ${KDE_PREFIX}/bin/kgendesignerplugin kde-designerplugin_TYPE= run kde-dnssd_PORT= dns/kf5-kdnssd kde-dnssd_LIB= libKF5DNSSD.so kde-doctools_PORT= devel/kf5-kdoctools kde-doctools_PATH= ${KDE_PREFIX}/bin/meinproc5 kde-ecm_PORT= devel/kf5-extra-cmake-modules kde-ecm_PATH= ${LOCALBASE}/share/ECM/cmake/ECMConfig.cmake kde-emoticons_PORT= x11-themes/kf5-kemoticons kde-emoticons_LIB= libKF5Emoticons.so kde-filemetadata_PORT= devel/kf5-kfilemetadata kde-filemetadata_LIB= libKF5FileMetaData.so kde-frameworkintegration_PORT= x11/kf5-frameworkintegration kde-frameworkintegration_LIB= libKF5Style.so kde-globalaccel_PORT= x11/kf5-kglobalaccel kde-globalaccel_LIB= libKF5GlobalAccel.so kde-guiaddons_PORT= x11-toolkits/kf5-kguiaddons kde-guiaddons_LIB= libKF5GuiAddons.so kde-holidays_PORT= net/kf5-kholidays kde-holidays_LIB= libKF5Holidays.so kde-i18n_PORT= devel/kf5-ki18n kde-i18n_LIB= libKF5I18n.so kde-iconthemes_PORT= x11-themes/kf5-kiconthemes kde-iconthemes_LIB= libKF5IconThemes.so kde-idletime_PORT= devel/kf5-kidletime kde-idletime_LIB= libKF5IdleTime.so kde-init_PORT= x11/kf5-kinit kde-init_PATH= ${KDE_PREFIX}/bin/kdeinit5 kde-itemmodels_PORT= devel/kf5-kitemmodels kde-itemmodels_LIB= libKF5ItemModels.so kde-itemviews_PORT= x11-toolkits/kf5-kitemviews kde-itemviews_LIB= libKF5ItemViews.so kde-jobwidgets_PORT= x11-toolkits/kf5-kjobwidgets kde-jobwidgets_LIB= libKF5JobWidgets.so kde-js_PORT= www/kf5-kjs kde-js_LIB= libKF5JS.so kde-jsembed_PORT= www/kf5-kjsembed kde-jsembed_LIB= libKF5JsEmbed.so kde-kcmutils_PORT= devel/kf5-kcmutils kde-kcmutils_LIB= libKF5KCMUtils.so kde-kdeclarative_PORT= devel/kf5-kdeclarative kde-kdeclarative_LIB= libKF5Declarative.so kde-kded_PORT= x11/kf5-kded kde-kded_PATH= ${KDE_PREFIX}/bin/kded5 kde-kdelibs4support_PORT= x11/kf5-kdelibs4support kde-kdelibs4support_LIB= libKF5KDELibs4Support.so kde-kdesu_PORT= security/kf5-kdesu kde-kdesu_LIB= libKF5Su.so kde-kdewebkit_PORT= www/kf5-kdewebkit kde-kdewebkit_LIB= libKF5WebKit.so kde-khtml_PORT= www/kf5-khtml kde-khtml_LIB= libKF5KHtml.so kde-kimageformats_PORT= graphics/kf5-kimageformats kde-kimageformats_PATH= ${QT_PLUGINDIR}/imageformats/kimg_xcf.so kde-kimageformats_TYPE= run kde-kio_PORT= devel/kf5-kio kde-kio_LIB= libKF5KIOCore.so kde-kirigami2_PORT= x11-toolkits/kf5-kirigami2 kde-kirigami2_PATH= ${QT_QMLDIR}/org/kde/kirigami.2/libkirigamiplugin.so kde-kquickcharts_PORT= graphics/kf5-kquickcharts kde-kquickcharts_PATH= ${QT_QMLDIR}/org/kde/quickcharts/controls/libchartscontrolsplugin.so kde-kross_PORT= lang/kf5-kross kde-kross_LIB= libKF5KrossCore.so kde-kwayland-server_PORT= x11/plasma5-kwayland-server kde-kwayland-server_LIB= libKWaylandServer.so kde-layer-shell-qt_PORT= x11/plasma5-layer-shell-qt kde-layer-shell-qt_LIB= libLayerShellQtInterface.so kde-mediaplayer_PORT= multimedia/kf5-kmediaplayer kde-mediaplayer_LIB= libKF5MediaPlayer.so.5 kde-newstuff_PORT= devel/kf5-knewstuff kde-newstuff_LIB= libKF5NewStuff.so kde-notifications_PORT= devel/kf5-knotifications kde-notifications_LIB= libKF5Notifications.so kde-notifyconfig_PORT= devel/kf5-knotifyconfig kde-notifyconfig_LIB= libKF5NotifyConfig.so kde-oxygen-icons5_PORT= x11-themes/kf5-oxygen-icons5 kde-oxygen-icons5_PATH= ${KDE_PREFIX}/share/icons/oxygen/index.theme kde-oxygen-icons5_TYPE= run kde-package_PORT= devel/kf5-kpackage kde-package_LIB= libKF5Package.so kde-parts_PORT= devel/kf5-kparts kde-parts_LIB= libKF5Parts.so kde-people_PORT= devel/kf5-kpeople kde-people_LIB= libKF5People.so kde-plasma-framework_PORT= x11/kf5-plasma-framework kde-plasma-framework_LIB= libKF5Plasma.so kde-plasma-wayland-protocols_PORT= x11/plasma-wayland-protocols kde-plasma-wayland-protocols_PATH= ${KDE_PREFIX}/lib/cmake/PlasmaWaylandProtocols/PlasmaWaylandProtocolsConfig.cmake kde-plotting_PORT= graphics/kf5-kplotting kde-plotting_LIB= libKF5Plotting.so kde-prison_PORT= graphics/kf5-prison kde-prison_LIB= libKF5Prison.so kde-pty_PORT= devel/kf5-kpty kde-pty_LIB= libKF5Pty.so kde-purpose_PORT= misc/kf5-purpose kde-purpose_LIB= libKF5Purpose.so kde-qqc2-desktop-style_PORT= x11-themes/kf5-qqc2-desktop-style kde-qqc2-desktop-style_PATH= ${QT_PLUGINDIR}/kf5/kirigami/org.kde.desktop.so kde-runner_PORT= x11/kf5-krunner kde-runner_LIB= libKF5Runner.so kde-service_PORT= devel/kf5-kservice kde-service_PATH= ${KDE_PREFIX}/bin/kbuildsycoca5 kde-solid_PORT= devel/kf5-solid kde-solid_LIB= libKF5Solid.so kde-sonnet_PORT= textproc/kf5-sonnet kde-sonnet_LIB= libKF5SonnetCore.so kde-syndication_PORT= net/kf5-syndication kde-syndication_LIB= libKF5Syndication.so kde-syntaxhighlighting_PORT= textproc/kf5-syntax-highlighting kde-syntaxhighlighting_LIB= libKF5SyntaxHighlighting.so kde-texteditor_PORT= devel/kf5-ktexteditor kde-texteditor_LIB= libKF5TextEditor.so kde-textwidgets_PORT= x11-toolkits/kf5-ktextwidgets kde-textwidgets_LIB= libKF5TextWidgets.so kde-threadweaver_PORT= devel/kf5-threadweaver kde-threadweaver_LIB= libKF5ThreadWeaver.so kde-unitconversion_PORT= devel/kf5-kunitconversion kde-unitconversion_LIB= libKF5UnitConversion.so kde-wallet_PORT= sysutils/kf5-kwallet kde-wallet_LIB= libKF5Wallet.so kde-wayland_PORT= x11/kf5-kwayland kde-wayland_LIB= libKF5WaylandClient.so kde-widgetsaddons_PORT= x11-toolkits/kf5-kwidgetsaddons kde-widgetsaddons_LIB= libKF5WidgetsAddons.so kde-windowsystem_PORT= x11/kf5-kwindowsystem kde-windowsystem_LIB= libKF5WindowSystem.so kde-xmlgui_PORT= x11-toolkits/kf5-kxmlgui kde-xmlgui_LIB= libKF5XmlGui.so kde-xmlrpcclient_PORT= net/kf5-kxmlrpcclient kde-xmlrpcclient_LIB= libKF5XmlRpcClient.so # ====================== end of frameworks components ========================== # ====================== plasma components ===================================== kde-activitymanagerd_PORT= x11/plasma5-kactivitymanagerd kde-activitymanagerd_LIB= libkactivitymanagerd_plugin.so kde-breeze_PORT= x11-themes/plasma5-breeze kde-breeze_PATH= ${KDE_PREFIX}/share/QtCurve/Breeze.qtcurve kde-breeze-gtk_PORT= x11-themes/plasma5-breeze-gtk kde-breeze-gtk_PATH= ${KDE_PREFIX}/share/themes/Breeze/gtk-2.0/gtkrc kde-decoration_PORT= x11-wm/plasma5-kdecoration kde-decoration_LIB= libkdecorations2.so kde-discover_PORT= sysutils/plasma5-discover kde-discover_PATH= ${KDE_PREFIX}/bin/plasma-discover kde-drkonqi_PORT= sysutils/plasma5-drkonqi kde-drkonqi_PATH= ${KDE_PREFIX}/lib/libexec/drkonqi kde-hotkeys_PORT= devel/plasma5-khotkeys kde-hotkeys_LIB= libkhotkeysprivate.so.5 kde-infocenter_PORT= sysutils/plasma5-kinfocenter kde-infocenter_PATH= ${KDE_PREFIX}/bin/kinfocenter kde-kde-cli-tools_PORT= sysutils/plasma5-kde-cli-tools kde-kde-cli-tools_PATH= ${KDE_PREFIX}/bin/kcmshell5 kde-kde-gtk-config_PORT= x11-themes/plasma5-kde-gtk-config kde-kde-gtk-config_PATH= ${KDE_PREFIX}/lib/kconf_update_bin/gtk_theme kde-kdeplasma-addons_PORT= x11-toolkits/plasma5-kdeplasma-addons kde-kdeplasma-addons_PATH= ${QT_PLUGINDIR}/kcm_krunner_dictionary.so kde-kgamma5_PORT= x11/plasma5-kgamma5 kde-kgamma5_PATH= ${QT_PLUGINDIR}/kcm_kgamma.so kde-kmenuedit_PORT= sysutils/plasma5-kmenuedit kde-kmenuedit_PATH= ${KDE_PREFIX}/bin/kmenuedit kde-kscreen_PORT= x11/plasma5-kscreen kde-kscreen_PATH= ${KDE_PREFIX}/bin/kscreen-console kde-kscreenlocker_PORT= security/plasma5-kscreenlocker kde-kscreenlocker_LIB= libKScreenLocker.so kde-ksshaskpass_PORT= security/plasma5-ksshaskpass kde-ksshaskpass_PATH= ${KDE_PREFIX}/bin/ksshaskpass kde-ksysguard_PORT= sysutils/plasma5-ksysguard kde-ksysguard_PATH= ${KDE_PREFIX}/bin/ksysguard kde-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-runtime5_PORT= deskutils/kdepim-runtime kde-kdepim-runtime5_PATH= ${KDE_PREFIX}/bin/gidmigrator kde-kitinerary_PORT= net/kitinerary kde-kitinerary_LIB= libKPimItinerary.so kde-kontactinterface_PORT= net/kontactinterface kde-kontactinterface_LIB= libKF5KontactInterface.so kde-kpkpass_PORT= security/kpkpass kde-kpkpass_LIB= libKPimPkPass.so kde-ksmtp_PORT= net/ksmtp kde-ksmtp_LIB= libKPimSMTP.so kde-ldap_PORT= net/kldap kde-ldap_LIB= libKF5Ldap.so kde-libkdepim_PORT= deskutils/libkdepim kde-libkdepim_LIB= libKF5Libkdepim.so kde-libkleo_PORT= security/libkleo kde-libkleo_LIB= libKF5Libkleo.so kde-libksieve_PORT= net/libksieve kde-libksieve_LIB= libKF5KSieve.so kde-mailcommon_PORT= net/mailcommon kde-mailcommon_LIB= libKF5MailCommon.so kde-mailimporter_PORT= net/mailimporter kde-mailimporter_LIB= libKF5MailImporter.so kde-mailtransport_PORT= net/kmailtransport kde-mailtransport_LIB= libKF5MailTransport.so kde-mbox_PORT= net/kmbox kde-mbox_LIB= libKF5Mbox.so kde-messagelib_PORT= net/messagelib kde-messagelib_LIB= libKF5MessageList.so kde-mime_PORT= net/kmime kde-mime_LIB= libKF5Mime.so kde-pimcommon_PORT= net/pimcommon kde-pimcommon_LIB= libKF5PimCommon.so kde-pimtextedit_PORT= net/kpimtextedit kde-pimtextedit_LIB= libKF5PimTextEdit.so kde-tnef_PORT= net/ktnef kde-tnef_LIB= libKF5Tnef.so # PIM Applications kde-akonadiconsole_PORT= deskutils/akonadiconsole kde-akonadiconsole_PATH= ${KDE_PREFIX}/bin/akonadiconsole kde-akregator_PORT= deskutils/akregator kde-akregator_PATH= ${KDE_PREFIX}/bin/akregator kde-grantlee-editor_PORT= deskutils/grantlee-editor kde-grantlee-editor_PATH= ${KDE_PREFIX}/bin/contactthemeeditor kde-kaddressbook_PORT= deskutils/kaddressbook kde-kaddressbook_PATH= ${KDE_PREFIX}/bin/kaddressbook kde-kalarm_PORT= deskutils/kalarm kde-kalarm_PATH= ${KDE_PREFIX}/bin/kalarm kde-kmail_PORT= deskutils/kmail kde-kmail_PATH= ${KDE_PREFIX}/bin/kmail kde-kmail-account-wizard_PORT= deskutils/kmail-account-wizard kde-kmail-account-wizard_PATH= ${KDE_PREFIX}/bin/accountwizard kde-knotes_PORT= deskutils/knotes kde-knotex_PATH= ${KDE_PREFIX}/bin/knotes kde-kontact_PORT= deskutils/kontact kde-kontact_PATH= ${KDE_PREFIX}/bin/kontact kde-korganizer_PORT= deskutils/korganizer kde-korganizer_PATH= ${KDE_PREFIX}/bin/korganizer kde-mbox-importer_PORT= deskutils/mbox-importer kde-mbox-importer_PATH= ${KDE_PREFIX}/bin/mboximporter kde-pim-data-exporter_PORT= deskutils/pim-data-exporter kde-pim-data-exporter_PATH= ${KDE_PREFIX}/bin/pimdataexporter # ====================== end of pim5 components ================================ # ====================== multiversion component ================================ kde-akonadi5_PORT= databases/akonadi kde-akonadi5_LIB= libKF5AkonadiPrivate.so kde-baloo-widgets5_PORT= sysutils/baloo-widgets kde-baloo-widgets5_LIB= libKF5BalooWidgets.so kde-kate5_PORT= editors/kate kde-kate5_PATH= ${QT_PLUGINDIR}/ktexteditor/katebacktracebrowserplugin.so kde-libkcddb5_PORT= audio/libkcddb kde-libkcddb5_LIB= libKF5Cddb.so kde-libkcompactdisc5_PORT= audio/libkcompactdisc kde-libkcompactdisc5_LIB= libKF5CompactDisc.so kde-libkdcraw5_PORT= graphics/libkdcraw kde-libkdcraw5_LIB= libKF5KDcraw.so kde-libkdegames5_PORT= games/libkdegames kde-libkdegames5_LIB= libKF5KDEGames.so kde-libkeduvocdocument5_PORT= misc/libkeduvocdocument kde-libkeduvocdocument5_LIB= libKEduVocDocument.so kde-libkexiv25_PORT= graphics/libkexiv2 kde-libkexiv25_LIB= libKF5KExiv2.so kde-libkipi5_PORT= graphics/libkipi kde-libkipi5_LIB= libKF5Kipi.so kde-libksane5_PORT= graphics/libksane kde-libksane5_LIB= libKF5Sane.so kde-marble5_PORT= astro/marble kde-marble5_LIB= libmarblewidget-qt5.so kde-kpublictransport_PORT= devel/kpublictransport kde-kpublictransport_LIB= libKPublicTransport.so kde-kosm_PORT= astro/kosmindoormap kde-kosm_LIB= libKOSM.so kde-okular5_PORT= graphics/okular kde-okular5_LIB= libOkular5Core.so # ====================== end of multiversion components ======================== # ====================== select the proper multiversion component ============== . for comp in ${_USE_KDE_BOTH} kde-${comp}_PORT= ${kde-${comp}${_KDE_VERSION}_PORT} . if defined(kde-${comp}${_KDE_VERSION}_LIB) kde-${comp}_LIB= ${kde-${comp}${_KDE_VERSION}_LIB} . else . if defined(kde-${comp}${_KDE_VERSION}_PATH}) kde-${comp}_PATH= ${kde-${comp}${_KDE_VERSION}_LIB} . endif # If neither is defined, this gets caught below when checking components . endif . endfor #=============================================================================== # end of component list ######################################################## _USE_KDE_ALL= ${_USE_${_KDE_RELNAME}_ALL} # Iterate through components deprived of suffix. . for component in ${USE_KDE:O:u:C/_.+//} # Check that the component is valid. . if ${_USE_KDE_ALL:M${component}} != "" # Skip meta-components (currently none). . if defined(kde-${component}_PORT) && (defined(kde-${component}_PATH) || defined(kde-${component}_LIB)) # Check if a dependency type is explicitly requested. . if ${USE_KDE:M${component}_*} != "" && ${USE_KDE:M${component}} == "" kde-${component}_TYPE= # empty . if ${USE_KDE:M${component}_build} != "" kde-${component}_TYPE+= build . endif . if ${USE_KDE:M${component}_run} != "" kde-${component}_TYPE+= run . endif . endif # ${USE_KDE:M${component}_*} != "" && ${USE_KDE:M${component}} == "" # If no dependency type is set, default to full dependency. . if !defined(kde-${component}_TYPE) kde-${component}_TYPE= build run . endif # Set real dependencies. . if defined(kde-${component}_LIB) && ${kde-${component}_TYPE:Mbuild} && ${kde-${component}_TYPE:Mrun} LIB_DEPENDS+= ${kde-${component}_LIB}:${kde-${component}_PORT} . else kde-${component}_PATH?= ${KDE_PREFIX}/lib/${kde-${component}_LIB} kde-${component}_DEPENDS= ${kde-${component}_PATH}:${kde-${component}_PORT} . if ${kde-${component}_TYPE:Mbuild} != "" BUILD_DEPENDS+= ${kde-${component}_DEPENDS} . endif . if ${kde-${component}_TYPE:Mrun} != "" RUN_DEPENDS+= ${kde-${component}_DEPENDS} . endif . endif # ${kde-${component}_LIB} && ${kde-${component}_TYPE:Mbuild} && ${kde-${component}_TYPE:Mrun} . endif # defined(kde-${component}_PORT) && defined(kde-${component}_PATH) . else # ! ${_USE_KDE_ALL:M${component}} != "" IGNORE= cannot be installed: unknown USE_KDE component '${component}' . endif # ${_USE_KDE_ALL:M${component}} != "" . endfor . endif .endif diff --git a/audio/plasma5-plasma-pa/distinfo b/audio/plasma5-plasma-pa/distinfo index 7fbcf7a93ccf..d6f0bea7dfca 100644 --- a/audio/plasma5-plasma-pa/distinfo +++ b/audio/plasma5-plasma-pa/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1625602683 -SHA256 (KDE/plasma/5.22.3/plasma-pa-5.22.3.tar.xz) = 0ad82a275abfb7fe2519e5d3591064db4e62c725a24089a7a21e15eb70428aa0 -SIZE (KDE/plasma/5.22.3/plasma-pa-5.22.3.tar.xz) = 127344 +TIMESTAMP = 1627399161 +SHA256 (KDE/plasma/5.22.4/plasma-pa-5.22.4.tar.xz) = 8a5b5b212c0f08e2c5e9f0ee7f5d62b0adf6008b69d337cede3ca18b800700dc +SIZE (KDE/plasma/5.22.4/plasma-pa-5.22.4.tar.xz) = 127416 diff --git a/deskutils/plasma5-milou/Makefile b/deskutils/plasma5-milou/Makefile index f9c0242377a4..019a76e459bc 100644 --- a/deskutils/plasma5-milou/Makefile +++ b/deskutils/plasma5-milou/Makefile @@ -1,15 +1,14 @@ PORTNAME= milou DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= deskutils kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 Plasmoid for search USES= cmake compiler:c++11-lib cpe gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs config coreaddons i18n itemmodels kdeclarative package \ plasma-framework runner service USE_QT= core declarative gui network script widgets \ buildtools_build qmake_build testlib_build .include diff --git a/deskutils/plasma5-milou/distinfo b/deskutils/plasma5-milou/distinfo index dbcabd8441da..f3e55e3194b3 100644 --- a/deskutils/plasma5-milou/distinfo +++ b/deskutils/plasma5-milou/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1625602683 -SHA256 (KDE/plasma/5.22.3/milou-5.22.3.tar.xz) = 3901b6e320c5f0618b112d27ec6e31854aeb80d9fd94ef37e826e461ad3e9e61 -SIZE (KDE/plasma/5.22.3/milou-5.22.3.tar.xz) = 52680 +TIMESTAMP = 1627399163 +SHA256 (KDE/plasma/5.22.4/milou-5.22.4.tar.xz) = 7aa04f355c7a9ac6ee089a17aa34d0607b230c9b09a3e99a57317f3fe44aca85 +SIZE (KDE/plasma/5.22.4/milou-5.22.4.tar.xz) = 52956 diff --git a/deskutils/plasma5-milou/pkg-plist b/deskutils/plasma5-milou/pkg-plist index 83e351cdb474..83a2571d362e 100644 --- a/deskutils/plasma5-milou/pkg-plist +++ b/deskutils/plasma5-milou/pkg-plist @@ -1,99 +1,101 @@ lib/libmilou.so.5 lib/libmilou.so.%%KDE_PLASMA_VERSION%% %%QT_PLUGINDIR%%/miloutextplugin.so %%QT_QMLDIR%%/org/kde/milou/ResultDelegate.qml %%QT_QMLDIR%%/org/kde/milou/ResultsListView.qml %%QT_QMLDIR%%/org/kde/milou/ResultsListViewDelegate.qml %%QT_QMLDIR%%/org/kde/milou/ResultsView.qml %%QT_QMLDIR%%/org/kde/milou/globals.js %%QT_QMLDIR%%/org/kde/milou/libmilouqmlplugin.so %%QT_QMLDIR%%/org/kde/milou/qmldir share/kservices5/miloutextpreview.desktop share/kservices5/plasma-applet-org.kde.milou.desktop share/kservicetypes5/miloupreviewplugin.desktop share/locale/ast/LC_MESSAGES/milou.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/ca/LC_MESSAGES/milou.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/ca@valencia/LC_MESSAGES/milou.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/cs/LC_MESSAGES/milou.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/da/LC_MESSAGES/milou.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/de/LC_MESSAGES/milou.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/el/LC_MESSAGES/milou.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/en_GB/LC_MESSAGES/milou.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/es/LC_MESSAGES/milou.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/et/LC_MESSAGES/milou.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/eu/LC_MESSAGES/milou.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/fi/LC_MESSAGES/milou.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/fr/LC_MESSAGES/milou.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/gl/LC_MESSAGES/milou.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/he/LC_MESSAGES/milou.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.milou.mo +share/locale/hi/LC_MESSAGES/milou.mo +share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/hu/LC_MESSAGES/milou.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/ia/LC_MESSAGES/milou.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/id/LC_MESSAGES/milou.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/it/LC_MESSAGES/milou.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/ko/LC_MESSAGES/milou.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/lt/LC_MESSAGES/milou.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/ml/LC_MESSAGES/milou.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/nl/LC_MESSAGES/milou.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/nn/LC_MESSAGES/milou.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/pl/LC_MESSAGES/milou.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/pt/LC_MESSAGES/milou.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/pt_BR/LC_MESSAGES/milou.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/ru/LC_MESSAGES/milou.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/sk/LC_MESSAGES/milou.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/sl/LC_MESSAGES/milou.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/sr/LC_MESSAGES/milou.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/sr@ijekavian/LC_MESSAGES/milou.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/milou.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/sr@latin/LC_MESSAGES/milou.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/sv/LC_MESSAGES/milou.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/tr/LC_MESSAGES/milou.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/uk/LC_MESSAGES/milou.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/zh_CN/LC_MESSAGES/milou.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/zh_TW/LC_MESSAGES/milou.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/metainfo/org.kde.milou.appdata.xml share/plasma/plasmoids/org.kde.milou/contents/ui/SearchField.qml share/plasma/plasmoids/org.kde.milou/contents/ui/globals.js share/plasma/plasmoids/org.kde.milou/contents/ui/main.qml share/plasma/plasmoids/org.kde.milou/contents/ui/previews/TextPreview.qml share/plasma/plasmoids/org.kde.milou/metadata.desktop share/plasma/plasmoids/org.kde.milou/metadata.json diff --git a/deskutils/plasma5-sddm-kcm/distinfo b/deskutils/plasma5-sddm-kcm/distinfo index ea858a02e657..98e15a21e615 100644 --- a/deskutils/plasma5-sddm-kcm/distinfo +++ b/deskutils/plasma5-sddm-kcm/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1625602684 -SHA256 (KDE/plasma/5.22.3/sddm-kcm-5.22.3.tar.xz) = f705397b66dae8c3ddeb0787d9831c0c8beae6347b7c00070597de327110e4b2 -SIZE (KDE/plasma/5.22.3/sddm-kcm-5.22.3.tar.xz) = 64460 +TIMESTAMP = 1627399164 +SHA256 (KDE/plasma/5.22.4/sddm-kcm-5.22.4.tar.xz) = e4845375ded8d8b1279a340f8c9feed573c301cf1c2b7f9fd2b5288444c34022 +SIZE (KDE/plasma/5.22.4/sddm-kcm-5.22.4.tar.xz) = 64540 diff --git a/deskutils/plasma5-xdg-desktop-portal-kde/distinfo b/deskutils/plasma5-xdg-desktop-portal-kde/distinfo index 22b7876c6630..6b7a3edd1e37 100644 --- a/deskutils/plasma5-xdg-desktop-portal-kde/distinfo +++ b/deskutils/plasma5-xdg-desktop-portal-kde/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1626959018 -SHA256 (KDE/plasma/5.22.3/xdg-desktop-portal-kde-5.22.3.tar.xz) = b8285db377708f90e8f9471d8cc2e4d3141248099e8af8a408498c7b37b7ecbd -SIZE (KDE/plasma/5.22.3/xdg-desktop-portal-kde-5.22.3.tar.xz) = 87028 +TIMESTAMP = 1627399165 +SHA256 (KDE/plasma/5.22.4/xdg-desktop-portal-kde-5.22.4.tar.xz) = f5fc9eb06d63d7a4c057b2c6cb496c66e7491e5a4a4a0846a10c18be8ce1b4f6 +SIZE (KDE/plasma/5.22.4/xdg-desktop-portal-kde-5.22.4.tar.xz) = 87076 diff --git a/devel/plasma5-khotkeys/Makefile b/devel/plasma5-khotkeys/Makefile index a8b7ae208a1a..27045a54bed8 100644 --- a/devel/plasma5-khotkeys/Makefile +++ b/devel/plasma5-khotkeys/Makefile @@ -1,22 +1,21 @@ PORTNAME= khotkeys DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= devel kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 library for hotkeys USES= cmake compiler:c++11-lib cpe gettext kde:5 qt:5 tar:xz xorg # kdelibs4support needs doctools USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons emoticons globalaccel \ guiaddons i18n iconthemes init itemmodels itemviews jobwidgets \ kcmutils kdelibs4support kio notifications parts \ plasma-framework plasma-workspace service solid sonnet \ textwidgets unitconversion widgetsaddons windowsystem xmlgui \ doctools_build ecm_build USE_QT= concurrent core dbus gui network printsupport widgets x11extras xml \ buildtools_build qmake_build USE_XORG= x11 xtst .include diff --git a/devel/plasma5-khotkeys/distinfo b/devel/plasma5-khotkeys/distinfo index 4ef174b0cb95..320b93ddedfb 100644 --- a/devel/plasma5-khotkeys/distinfo +++ b/devel/plasma5-khotkeys/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1625602686 -SHA256 (KDE/plasma/5.22.3/khotkeys-5.22.3.tar.xz) = 854edb9feca05ac891e13a6cbfadd9eecede38e0121fb767b44b732bc0b4e000 -SIZE (KDE/plasma/5.22.3/khotkeys-5.22.3.tar.xz) = 1858436 +TIMESTAMP = 1627399166 +SHA256 (KDE/plasma/5.22.4/khotkeys-5.22.4.tar.xz) = e8e191cbfc5b9b59e428aa3d08e2f8482b6d4b7e4dd26f37b4a7fa9b57eea1d2 +SIZE (KDE/plasma/5.22.4/khotkeys-5.22.4.tar.xz) = 1858380 diff --git a/devel/plasma5-kwrited/distinfo b/devel/plasma5-kwrited/distinfo index 5e1b28122b0a..d74ef2bcf363 100644 --- a/devel/plasma5-kwrited/distinfo +++ b/devel/plasma5-kwrited/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1625602687 -SHA256 (KDE/plasma/5.22.3/kwrited-5.22.3.tar.xz) = 56daefff0fe0bdff3801393904be93325d63a9291acbcf0d571b8e4884ac7018 -SIZE (KDE/plasma/5.22.3/kwrited-5.22.3.tar.xz) = 20468 +TIMESTAMP = 1627399167 +SHA256 (KDE/plasma/5.22.4/kwrited-5.22.4.tar.xz) = 9158fb7dc963e01c356cf5572910d72e2914a749e3dd46956898a35d1c5e73e5 +SIZE (KDE/plasma/5.22.4/kwrited-5.22.4.tar.xz) = 20512 diff --git a/devel/plasma5-plasma-sdk/distinfo b/devel/plasma5-plasma-sdk/distinfo index e6e7b62d1c78..26a858805e37 100644 --- a/devel/plasma5-plasma-sdk/distinfo +++ b/devel/plasma5-plasma-sdk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1625602688 -SHA256 (KDE/plasma/5.22.3/plasma-sdk-5.22.3.tar.xz) = d26ad80dcb1ec504327339ccdb550600589461bafe9517b050538ac54b8dc742 -SIZE (KDE/plasma/5.22.3/plasma-sdk-5.22.3.tar.xz) = 269476 +TIMESTAMP = 1627399168 +SHA256 (KDE/plasma/5.22.4/plasma-sdk-5.22.4.tar.xz) = 0e5accaaf28de37240c95597d432d2ca941ee5f379eb0553c9bc08e7d61f305b +SIZE (KDE/plasma/5.22.4/plasma-sdk-5.22.4.tar.xz) = 269548 diff --git a/security/plasma5-kscreenlocker/Makefile b/security/plasma5-kscreenlocker/Makefile index ee5e3649172a..5f1d71159220 100644 --- a/security/plasma5-kscreenlocker/Makefile +++ b/security/plasma5-kscreenlocker/Makefile @@ -1,29 +1,28 @@ PORTNAME= kscreenlocker DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= security kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 secure lock screen architecture BUILD_DEPENDS= ck-list-sessions:sysutils/consolekit2 LIB_DEPENDS= libwayland-client.so:graphics/wayland \ libxcb-keysyms.so:x11/xcb-util-keysyms RUN_DEPENDS= ck-list-sessions:sysutils/consolekit2\ dbus-send:devel/dbus USES= cmake compiler:c++11-lib cpe gettext kde:5 pkgconfig \ qt:5 shebangfix tar:xz xorg USE_KDE= auth codecs config configwidgets coreaddons crash \ emoticons globalaccel i18n idletime init itemmodels kcmutils \ kdeclarative layer-shell-qt notifications package \ plasma-framework sonnet textwidgets wayland widgetsaddons \ windowsystem xmlgui \ ecm_build USE_QT= core dbus declarative gui network qdbus widgets x11extras xml \ buildtools_build qmake_build testlib_build USE_XORG= ice sm x11 xcb xcursor xext xi SHEBANG_FILES= updaters/ksreenlocker_5_3_separate_autologin.pl .include diff --git a/security/plasma5-kscreenlocker/distinfo b/security/plasma5-kscreenlocker/distinfo index fa2ce1f6654c..325ee2f26216 100644 --- a/security/plasma5-kscreenlocker/distinfo +++ b/security/plasma5-kscreenlocker/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1625602689 -SHA256 (KDE/plasma/5.22.3/kscreenlocker-5.22.3.tar.xz) = d71992dbd57a1c7f3051a5b98898d791e9ae2db128b63843332d9e68f75d3285 -SIZE (KDE/plasma/5.22.3/kscreenlocker-5.22.3.tar.xz) = 116924 +TIMESTAMP = 1627399170 +SHA256 (KDE/plasma/5.22.4/kscreenlocker-5.22.4.tar.xz) = 328570e8f08fc2a92fb4ce67e57e53ecf4cc6b28a0507ba031e340748632ec44 +SIZE (KDE/plasma/5.22.4/kscreenlocker-5.22.4.tar.xz) = 117112 diff --git a/security/plasma5-ksshaskpass/Makefile b/security/plasma5-ksshaskpass/Makefile index becb5d1d439a..322752f675c8 100644 --- a/security/plasma5-ksshaskpass/Makefile +++ b/security/plasma5-ksshaskpass/Makefile @@ -1,15 +1,14 @@ PORTNAME= ksshaskpass DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= security kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 ssh-add frontend USES= cmake compiler:c++11-lib cpe gettext kde:5 qt:5 tar:xz USE_KDE= coreaddons i18n wallet widgetsaddons \ doctools_build ecm_build USE_QT= core gui widgets \ buildtools_build qmake_build .include diff --git a/security/plasma5-ksshaskpass/distinfo b/security/plasma5-ksshaskpass/distinfo index ce288116368e..3ff868499018 100644 --- a/security/plasma5-ksshaskpass/distinfo +++ b/security/plasma5-ksshaskpass/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1625602690 -SHA256 (KDE/plasma/5.22.3/ksshaskpass-5.22.3.tar.xz) = d935bccdd20c18eefee7ce4f25d0c56a3ffe491839c58f79f5d7fb81e4f8f6ed -SIZE (KDE/plasma/5.22.3/ksshaskpass-5.22.3.tar.xz) = 24084 +TIMESTAMP = 1627399171 +SHA256 (KDE/plasma/5.22.4/ksshaskpass-5.22.4.tar.xz) = cea4f3e8fd496cc92701b562e1dedcf1a8b174cdc71d4106f2322cdcc3cfc205 +SIZE (KDE/plasma/5.22.4/ksshaskpass-5.22.4.tar.xz) = 24088 diff --git a/security/plasma5-kwallet-pam/distinfo b/security/plasma5-kwallet-pam/distinfo index 8720d8da703f..d4403458580b 100644 --- a/security/plasma5-kwallet-pam/distinfo +++ b/security/plasma5-kwallet-pam/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1625602691 -SHA256 (KDE/plasma/5.22.3/kwallet-pam-5.22.3.tar.xz) = af217af41ea10eb65e9ed171d84328b04f4e3ab6a791b69af61064fc72e14d74 -SIZE (KDE/plasma/5.22.3/kwallet-pam-5.22.3.tar.xz) = 20140 +TIMESTAMP = 1627399171 +SHA256 (KDE/plasma/5.22.4/kwallet-pam-5.22.4.tar.xz) = 984b805808640771795524a7e1a3862edc0f05925d3d19a37643efb9e5cb59d2 +SIZE (KDE/plasma/5.22.4/kwallet-pam-5.22.4.tar.xz) = 20144 diff --git a/sysutils/plasma5-discover/Makefile b/sysutils/plasma5-discover/Makefile index a12816d959c4..fc7e85b28c98 100644 --- a/sysutils/plasma5-discover/Makefile +++ b/sysutils/plasma5-discover/Makefile @@ -1,24 +1,23 @@ PORTNAME= discover DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= sysutils kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 package management tools # TODO: update packagekit-qt5 #LIB_DEPENDS= libpackagekit-qt.so:ports-mgmt/packagekit-qt5 USES= cmake compiler:c++11-lib cpe desktop-file-utils \ gettext kde:5 pkgconfig qt:5 tar:xz USE_KDE= archive attica auth codecs completion config configwidgets \ coreaddons crash dbusaddons i18n iconthemes idletime itemmodels \ itemviews jobwidgets kcmutils kdeclarative kio kirigami2 newstuff \ notifications package plasma-framework service solid \ textwidgets wallet windowsystem widgetsaddons xmlgui \ ecm_build USE_QT= concurrent core dbus declarative gui network svg \ widgets x11extras xml \ buildtools_build qmake_build testlib_build .include diff --git a/sysutils/plasma5-discover/distinfo b/sysutils/plasma5-discover/distinfo index 619312ad4265..e8f250dfd38c 100644 --- a/sysutils/plasma5-discover/distinfo +++ b/sysutils/plasma5-discover/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1625602696 -SHA256 (KDE/plasma/5.22.3/discover-5.22.3.tar.xz) = 1e293d000afdb3db8066a5164c385c8f7138fbc3fb244bcc341f904a30e723a1 -SIZE (KDE/plasma/5.22.3/discover-5.22.3.tar.xz) = 8457300 +TIMESTAMP = 1627399173 +SHA256 (KDE/plasma/5.22.4/discover-5.22.4.tar.xz) = 6ff39f2dfd898af867c55fdac1cf48a3adc4ca90bf3fee0d8f2fa7ed5d584746 +SIZE (KDE/plasma/5.22.4/discover-5.22.4.tar.xz) = 8459460 diff --git a/sysutils/plasma5-discover/pkg-plist b/sysutils/plasma5-discover/pkg-plist index 739157596af0..e8a40a304fef 100644 --- a/sysutils/plasma5-discover/pkg-plist +++ b/sysutils/plasma5-discover/pkg-plist @@ -1,209 +1,208 @@ bin/plasma-discover bin/plasma-discover-update etc/xdg/autostart/org.kde.discover.notifier.desktop lib/libexec/DiscoverNotifier lib/plasma-discover/libDiscoverCommon.so lib/plasma-discover/libDiscoverNotifiers.so %%QT_PLUGINDIR%%/discover/kns-backend.so %%QT_PLUGINDIR%%/kcms/kcm_updates.so share/applications/org.kde.discover.desktop share/applications/org.kde.discover.notifier.desktop share/applications/org.kde.discover.snap.desktop share/applications/org.kde.discover.urlhandler.desktop share/icons/hicolor/128x128/apps/plasmadiscover.png share/icons/hicolor/16x16/apps/plasmadiscover.png share/icons/hicolor/22x22/apps/plasmadiscover.png share/icons/hicolor/32x32/apps/plasmadiscover.png share/icons/hicolor/48x48/apps/plasmadiscover.png share/icons/hicolor/scalable/apps/plasmadiscover.svgz share/knotifications5/discoverabstractnotifier.notifyrc -share/knsrcfiles/discover_ktexteditor_codesnippets_core.knsrc share/kpackage/kcms/kcm_updates/contents/ui/main.qml share/kpackage/kcms/kcm_updates/metadata.desktop share/kpackage/kcms/kcm_updates/metadata.json share/kservices5/kcm_updates.desktop share/kxmlgui5/plasmadiscover/plasmadiscoverui.rc share/locale/ar/LC_MESSAGES/libdiscover.mo share/locale/ar/LC_MESSAGES/plasma-discover-notifier.mo share/locale/ar/LC_MESSAGES/plasma-discover.mo share/locale/ast/LC_MESSAGES/libdiscover.mo share/locale/ast/LC_MESSAGES/plasma-discover-notifier.mo share/locale/ast/LC_MESSAGES/plasma-discover.mo share/locale/az/LC_MESSAGES/kcm_updates.mo share/locale/az/LC_MESSAGES/libdiscover.mo share/locale/az/LC_MESSAGES/plasma-discover-notifier.mo share/locale/az/LC_MESSAGES/plasma-discover.mo share/locale/bg/LC_MESSAGES/libdiscover.mo share/locale/bs/LC_MESSAGES/libdiscover.mo share/locale/bs/LC_MESSAGES/plasma-discover.mo share/locale/ca/LC_MESSAGES/kcm_updates.mo share/locale/ca/LC_MESSAGES/libdiscover.mo share/locale/ca/LC_MESSAGES/plasma-discover-notifier.mo share/locale/ca/LC_MESSAGES/plasma-discover.mo share/locale/ca@valencia/LC_MESSAGES/kcm_updates.mo share/locale/ca@valencia/LC_MESSAGES/libdiscover.mo share/locale/ca@valencia/LC_MESSAGES/plasma-discover-notifier.mo share/locale/ca@valencia/LC_MESSAGES/plasma-discover.mo share/locale/cs/LC_MESSAGES/kcm_updates.mo share/locale/cs/LC_MESSAGES/libdiscover.mo share/locale/cs/LC_MESSAGES/plasma-discover-notifier.mo share/locale/cs/LC_MESSAGES/plasma-discover.mo share/locale/da/LC_MESSAGES/libdiscover.mo share/locale/da/LC_MESSAGES/plasma-discover-notifier.mo share/locale/da/LC_MESSAGES/plasma-discover.mo share/locale/de/LC_MESSAGES/kcm_updates.mo share/locale/de/LC_MESSAGES/libdiscover.mo share/locale/de/LC_MESSAGES/plasma-discover-notifier.mo share/locale/de/LC_MESSAGES/plasma-discover.mo share/locale/el/LC_MESSAGES/libdiscover.mo share/locale/el/LC_MESSAGES/plasma-discover-notifier.mo share/locale/el/LC_MESSAGES/plasma-discover.mo share/locale/en_GB/LC_MESSAGES/kcm_updates.mo share/locale/en_GB/LC_MESSAGES/libdiscover.mo share/locale/en_GB/LC_MESSAGES/plasma-discover-notifier.mo share/locale/en_GB/LC_MESSAGES/plasma-discover.mo share/locale/es/LC_MESSAGES/kcm_updates.mo share/locale/es/LC_MESSAGES/libdiscover.mo share/locale/es/LC_MESSAGES/plasma-discover-notifier.mo share/locale/es/LC_MESSAGES/plasma-discover.mo share/locale/et/LC_MESSAGES/libdiscover.mo share/locale/et/LC_MESSAGES/plasma-discover-notifier.mo share/locale/et/LC_MESSAGES/plasma-discover.mo share/locale/eu/LC_MESSAGES/kcm_updates.mo share/locale/eu/LC_MESSAGES/libdiscover.mo share/locale/eu/LC_MESSAGES/plasma-discover-notifier.mo share/locale/eu/LC_MESSAGES/plasma-discover.mo share/locale/fi/LC_MESSAGES/kcm_updates.mo share/locale/fi/LC_MESSAGES/libdiscover.mo share/locale/fi/LC_MESSAGES/plasma-discover-notifier.mo share/locale/fi/LC_MESSAGES/plasma-discover.mo share/locale/fr/LC_MESSAGES/kcm_updates.mo share/locale/fr/LC_MESSAGES/libdiscover.mo share/locale/fr/LC_MESSAGES/plasma-discover-notifier.mo share/locale/fr/LC_MESSAGES/plasma-discover.mo share/locale/ga/LC_MESSAGES/libdiscover.mo share/locale/ga/LC_MESSAGES/plasma-discover.mo share/locale/gl/LC_MESSAGES/libdiscover.mo share/locale/gl/LC_MESSAGES/plasma-discover-notifier.mo share/locale/gl/LC_MESSAGES/plasma-discover.mo share/locale/he/LC_MESSAGES/libdiscover.mo share/locale/he/LC_MESSAGES/plasma-discover-notifier.mo share/locale/he/LC_MESSAGES/plasma-discover.mo share/locale/hu/LC_MESSAGES/kcm_updates.mo share/locale/hu/LC_MESSAGES/libdiscover.mo share/locale/hu/LC_MESSAGES/plasma-discover-notifier.mo share/locale/hu/LC_MESSAGES/plasma-discover.mo share/locale/ia/LC_MESSAGES/kcm_updates.mo share/locale/ia/LC_MESSAGES/libdiscover.mo share/locale/ia/LC_MESSAGES/plasma-discover-notifier.mo share/locale/ia/LC_MESSAGES/plasma-discover.mo share/locale/id/LC_MESSAGES/kcm_updates.mo share/locale/id/LC_MESSAGES/libdiscover.mo share/locale/id/LC_MESSAGES/plasma-discover-notifier.mo share/locale/id/LC_MESSAGES/plasma-discover.mo share/locale/it/LC_MESSAGES/kcm_updates.mo share/locale/it/LC_MESSAGES/libdiscover.mo share/locale/it/LC_MESSAGES/plasma-discover-notifier.mo share/locale/it/LC_MESSAGES/plasma-discover.mo share/locale/ja/LC_MESSAGES/kcm_updates.mo share/locale/ja/LC_MESSAGES/libdiscover.mo share/locale/ja/LC_MESSAGES/plasma-discover-notifier.mo share/locale/ja/LC_MESSAGES/plasma-discover.mo share/locale/kk/LC_MESSAGES/libdiscover.mo share/locale/kk/LC_MESSAGES/plasma-discover.mo share/locale/ko/LC_MESSAGES/kcm_updates.mo share/locale/ko/LC_MESSAGES/libdiscover.mo share/locale/ko/LC_MESSAGES/plasma-discover-notifier.mo share/locale/ko/LC_MESSAGES/plasma-discover.mo share/locale/lt/LC_MESSAGES/libdiscover.mo share/locale/lt/LC_MESSAGES/plasma-discover-notifier.mo share/locale/lt/LC_MESSAGES/plasma-discover.mo share/locale/ml/LC_MESSAGES/libdiscover.mo share/locale/ml/LC_MESSAGES/plasma-discover-notifier.mo share/locale/ml/LC_MESSAGES/plasma-discover.mo share/locale/mr/LC_MESSAGES/libdiscover.mo share/locale/mr/LC_MESSAGES/plasma-discover.mo share/locale/nb/LC_MESSAGES/libdiscover.mo share/locale/nb/LC_MESSAGES/plasma-discover-notifier.mo share/locale/nb/LC_MESSAGES/plasma-discover.mo share/locale/nds/LC_MESSAGES/libdiscover.mo share/locale/nds/LC_MESSAGES/plasma-discover.mo share/locale/nl/LC_MESSAGES/kcm_updates.mo share/locale/nl/LC_MESSAGES/libdiscover.mo share/locale/nl/LC_MESSAGES/plasma-discover-notifier.mo share/locale/nl/LC_MESSAGES/plasma-discover.mo share/locale/nn/LC_MESSAGES/kcm_updates.mo share/locale/nn/LC_MESSAGES/libdiscover.mo share/locale/nn/LC_MESSAGES/plasma-discover-notifier.mo share/locale/nn/LC_MESSAGES/plasma-discover.mo share/locale/pa/LC_MESSAGES/kcm_updates.mo share/locale/pa/LC_MESSAGES/libdiscover.mo share/locale/pa/LC_MESSAGES/plasma-discover-notifier.mo share/locale/pa/LC_MESSAGES/plasma-discover.mo share/locale/pl/LC_MESSAGES/kcm_updates.mo share/locale/pl/LC_MESSAGES/libdiscover.mo share/locale/pl/LC_MESSAGES/plasma-discover-notifier.mo share/locale/pl/LC_MESSAGES/plasma-discover.mo share/locale/pt/LC_MESSAGES/kcm_updates.mo share/locale/pt/LC_MESSAGES/libdiscover.mo share/locale/pt/LC_MESSAGES/plasma-discover-notifier.mo share/locale/pt/LC_MESSAGES/plasma-discover.mo share/locale/pt_BR/LC_MESSAGES/kcm_updates.mo share/locale/pt_BR/LC_MESSAGES/libdiscover.mo share/locale/pt_BR/LC_MESSAGES/plasma-discover-notifier.mo share/locale/pt_BR/LC_MESSAGES/plasma-discover.mo share/locale/ro/LC_MESSAGES/kcm_updates.mo share/locale/ro/LC_MESSAGES/libdiscover.mo share/locale/ro/LC_MESSAGES/plasma-discover-notifier.mo share/locale/ro/LC_MESSAGES/plasma-discover.mo share/locale/ru/LC_MESSAGES/kcm_updates.mo share/locale/ru/LC_MESSAGES/libdiscover.mo share/locale/ru/LC_MESSAGES/plasma-discover-notifier.mo share/locale/ru/LC_MESSAGES/plasma-discover.mo share/locale/sk/LC_MESSAGES/kcm_updates.mo share/locale/sk/LC_MESSAGES/libdiscover.mo share/locale/sk/LC_MESSAGES/plasma-discover-notifier.mo share/locale/sk/LC_MESSAGES/plasma-discover.mo share/locale/sl/LC_MESSAGES/kcm_updates.mo share/locale/sl/LC_MESSAGES/libdiscover.mo share/locale/sl/LC_MESSAGES/plasma-discover-notifier.mo share/locale/sl/LC_MESSAGES/plasma-discover.mo share/locale/sr/LC_MESSAGES/libdiscover.mo share/locale/sr/LC_MESSAGES/plasma-discover-notifier.mo share/locale/sr/LC_MESSAGES/plasma-discover.mo share/locale/sr@ijekavian/LC_MESSAGES/libdiscover.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma-discover-notifier.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma-discover.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libdiscover.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma-discover-notifier.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma-discover.mo share/locale/sr@latin/LC_MESSAGES/libdiscover.mo share/locale/sr@latin/LC_MESSAGES/plasma-discover-notifier.mo share/locale/sr@latin/LC_MESSAGES/plasma-discover.mo share/locale/sv/LC_MESSAGES/kcm_updates.mo share/locale/sv/LC_MESSAGES/libdiscover.mo share/locale/sv/LC_MESSAGES/plasma-discover-notifier.mo share/locale/sv/LC_MESSAGES/plasma-discover.mo share/locale/tg/LC_MESSAGES/libdiscover.mo share/locale/tg/LC_MESSAGES/plasma-discover-notifier.mo share/locale/tg/LC_MESSAGES/plasma-discover.mo share/locale/tr/LC_MESSAGES/libdiscover.mo share/locale/tr/LC_MESSAGES/plasma-discover-notifier.mo share/locale/tr/LC_MESSAGES/plasma-discover.mo share/locale/ug/LC_MESSAGES/libdiscover.mo share/locale/ug/LC_MESSAGES/plasma-discover.mo share/locale/uk/LC_MESSAGES/kcm_updates.mo share/locale/uk/LC_MESSAGES/libdiscover.mo share/locale/uk/LC_MESSAGES/plasma-discover-notifier.mo share/locale/uk/LC_MESSAGES/plasma-discover.mo share/locale/vi/LC_MESSAGES/libdiscover.mo share/locale/vi/LC_MESSAGES/plasma-discover.mo share/locale/zh_CN/LC_MESSAGES/kcm_updates.mo share/locale/zh_CN/LC_MESSAGES/libdiscover.mo share/locale/zh_CN/LC_MESSAGES/plasma-discover-notifier.mo share/locale/zh_CN/LC_MESSAGES/plasma-discover.mo share/locale/zh_TW/LC_MESSAGES/libdiscover.mo share/locale/zh_TW/LC_MESSAGES/plasma-discover-notifier.mo share/locale/zh_TW/LC_MESSAGES/plasma-discover.mo share/metainfo/org.kde.discover.appdata.xml share/qlogging-categories5/discover.categories diff --git a/sysutils/plasma5-drkonqi/Makefile b/sysutils/plasma5-drkonqi/Makefile index 525697a16fec..ac2878fe2186 100644 --- a/sysutils/plasma5-drkonqi/Makefile +++ b/sysutils/plasma5-drkonqi/Makefile @@ -1,18 +1,17 @@ PORTNAME= drkonqi DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= sysutils kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 crash handler USES= cmake compiler:c++11-lang kde:5 pkgconfig qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons \ crash i18n idletime jobwidgets kio notifications \ service syntaxhighlighting wallet widgetsaddons \ windowsystem xmlrpcclient \ ecm_build USE_QT= concurrent core dbus gui network widgets x11extras xml \ buildtools_build qmake_build testlib_build .include diff --git a/sysutils/plasma5-drkonqi/distinfo b/sysutils/plasma5-drkonqi/distinfo index 30b29a849f39..140ca30be84f 100644 --- a/sysutils/plasma5-drkonqi/distinfo +++ b/sysutils/plasma5-drkonqi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1625602697 -SHA256 (KDE/plasma/5.22.3/drkonqi-5.22.3.tar.xz) = 63e9de390c595b7833623ff41434b5e24279e6f5e58e87d7726286755b064e26 -SIZE (KDE/plasma/5.22.3/drkonqi-5.22.3.tar.xz) = 781516 +TIMESTAMP = 1627399174 +SHA256 (KDE/plasma/5.22.4/drkonqi-5.22.4.tar.xz) = 7c50683a24c6d50021123ebe9ba9fd4b8bbd54c160fc422f519c5a1641d9c5b7 +SIZE (KDE/plasma/5.22.4/drkonqi-5.22.4.tar.xz) = 781472 diff --git a/sysutils/plasma5-kde-cli-tools/Makefile b/sysutils/plasma5-kde-cli-tools/Makefile index 1abf6aedb3dd..716ea7c65802 100644 --- a/sysutils/plasma5-kde-cli-tools/Makefile +++ b/sysutils/plasma5-kde-cli-tools/Makefile @@ -1,22 +1,21 @@ PORTNAME= kde-cli-tools DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= sysutils kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 non-interactive system tools USES= cmake compiler:c++11-lib cpe gettext kde:5 qt:5 tar:xz xorg USE_KDE= activities auth bookmarks codecs completion config configwidgets \ coreaddons crash emoticons guiaddons i18n iconthemes init \ itemmodels itemviews jobwidgets kcmutils kdeclarative kdesu \ kio notifications parts plasma-workspace pty service solid sonnet \ textwidgets unitconversion widgetsaddons windowsystem xmlgui \ doctools_build ecm_build USE_QT= concurrent core dbus declarative gui network printsupport svg widgets \ x11extras xml \ buildtools_build qmake_build testlib_build USE_XORG= x11 .include diff --git a/sysutils/plasma5-kde-cli-tools/distinfo b/sysutils/plasma5-kde-cli-tools/distinfo index 7553d98bf690..60e8d43584ce 100644 --- a/sysutils/plasma5-kde-cli-tools/distinfo +++ b/sysutils/plasma5-kde-cli-tools/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1625602698 -SHA256 (KDE/plasma/5.22.3/kde-cli-tools-5.22.3.tar.xz) = 040f75a3ec3cda88090edbade9b4e2c333a0bdc979e65b50f85d5cd05c31acf0 -SIZE (KDE/plasma/5.22.3/kde-cli-tools-5.22.3.tar.xz) = 626516 +TIMESTAMP = 1627399176 +SHA256 (KDE/plasma/5.22.4/kde-cli-tools-5.22.4.tar.xz) = 44e2e379ef8e3d09cc8ec4db5564dec3d42a48dfb690c4ae9438189cd4ba08ce +SIZE (KDE/plasma/5.22.4/kde-cli-tools-5.22.4.tar.xz) = 626520 diff --git a/sysutils/plasma5-kinfocenter/Makefile b/sysutils/plasma5-kinfocenter/Makefile index 05f7549cb1e7..e588f0103956 100644 --- a/sysutils/plasma5-kinfocenter/Makefile +++ b/sysutils/plasma5-kinfocenter/Makefile @@ -1,37 +1,36 @@ PORTNAME= kinfocenter DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= sysutils kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 utility providing system information LIB_DEPENDS= libpci.so:devel/libpci USES= cmake compiler:c++11-lib cpe gettext gl kde:5 pkgconfig \ qt:5 tar:xz xorg USE_GL= egl gl glu USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons emoticons guiaddons \ i18n iconthemes jobwidgets kcmutils kdeclarative \ kio notifications package parts init \ itemmodels itemviews service solid sonnet textwidgets \ unitconversion wayland wayland widgetsaddons windowsystem xmlgui \ doctools_build ecm_build \ systemsettings_run USE_QT= concurrent core dbus declarative gui network printsupport widgets xml \ buildtools_build qmake_build USE_XORG= ice sm x11 xext # TODO -- this should be handled correctly... LDFLAGS+=-ldevinfo # install freebsd-logo and distrorc post-install: ${MKDIR} ${STAGEDIR}/${DATADIR}/images ${INSTALL_DATA} ${FILESDIR}/freebsd_logo.svg ${STAGEDIR}/${DATADIR}/images/ ${MKDIR} ${STAGEDIR}/${PREFIX}/etc/xdg ${INSTALL_DATA} ${FILESDIR}/kcm-about-distrorc ${STAGEDIR}/${PREFIX}/etc/xdg/ ${REINPLACE_CMD} -i "" -e "s#%%DATADIR%%#${DATADIR}#" ${STAGEDIR}/${PREFIX}/etc/xdg/kcm-about-distrorc .include diff --git a/sysutils/plasma5-kinfocenter/distinfo b/sysutils/plasma5-kinfocenter/distinfo index 9f265799a961..c0f9409ed0e1 100644 --- a/sysutils/plasma5-kinfocenter/distinfo +++ b/sysutils/plasma5-kinfocenter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1625602700 -SHA256 (KDE/plasma/5.22.3/kinfocenter-5.22.3.tar.xz) = 6b3009206f0a44c4f93bfa89c1ad6a5ef8387de8d06e3e7e29adb59458846be2 -SIZE (KDE/plasma/5.22.3/kinfocenter-5.22.3.tar.xz) = 1163596 +TIMESTAMP = 1627399177 +SHA256 (KDE/plasma/5.22.4/kinfocenter-5.22.4.tar.xz) = 7cff6a49506f9dce828c486be0a473893533d37b0e801b5d580e763764f96e93 +SIZE (KDE/plasma/5.22.4/kinfocenter-5.22.4.tar.xz) = 1164096 diff --git a/sysutils/plasma5-kmenuedit/Makefile b/sysutils/plasma5-kmenuedit/Makefile index fd235d555abf..b00fb8bc84c9 100644 --- a/sysutils/plasma5-kmenuedit/Makefile +++ b/sysutils/plasma5-kmenuedit/Makefile @@ -1,19 +1,18 @@ PORTNAME= kmenuedit DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= sysutils kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 menu editor USES= cmake compiler:c++11-lib cpe gettext kde:5 qt:5 tar:xz USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons emoticons globalaccel guiaddons \ hotkeys i18n iconthemes init itemmodels itemviews jobwidgets \ kio notifications parts service solid sonnet \ textwidgets unitconversion widgetsaddons windowsystem xmlgui \ doctools_build ecm_build USE_QT= concurrent core dbus gui network printsupport widgets xml\ buildtools_build qmake_build .include diff --git a/sysutils/plasma5-kmenuedit/distinfo b/sysutils/plasma5-kmenuedit/distinfo index dd19a2f118e3..c74768feef09 100644 --- a/sysutils/plasma5-kmenuedit/distinfo +++ b/sysutils/plasma5-kmenuedit/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1625602701 -SHA256 (KDE/plasma/5.22.3/kmenuedit-5.22.3.tar.xz) = bd8330bdf10e453ed13ee5c055ec496b0c6b090113a68fd5a97ef4bf2be8bbd1 -SIZE (KDE/plasma/5.22.3/kmenuedit-5.22.3.tar.xz) = 899324 +TIMESTAMP = 1627399178 +SHA256 (KDE/plasma/5.22.4/kmenuedit-5.22.4.tar.xz) = 0b243bc8bb2cba4eebff55e7a01be5c7790da1fafd88d17bad808e5ffc44d2a0 +SIZE (KDE/plasma/5.22.4/kmenuedit-5.22.4.tar.xz) = 899440 diff --git a/sysutils/plasma5-ksysguard/Makefile b/sysutils/plasma5-ksysguard/Makefile index d9905e9db971..2434a8a98e8f 100644 --- a/sysutils/plasma5-ksysguard/Makefile +++ b/sysutils/plasma5-ksysguard/Makefile @@ -1,33 +1,32 @@ PORTNAME= ksysguard DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 PKGNAMEPREFIX= plasma5- CATEGORIES= sysutils kde MASTER_SITES= KDE/stable/${PORTNAME}/${DISTVERSION}/ DIST_SUBDIR= KDE/plasma/${KDE_PLASMA_VERSION} MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 utility to track and control the running processes USES= cmake compiler:c++11-lib cpe desktop-file-utils \ gettext kde:5 localbase pathfix qt:5 tar:xz USE_KDE= attica auth codecs completion config configwidgets coreaddons \ dbusaddons emoticons i18n iconthemes init itemmodels \ itemviews jobwidgets kio libksysguard \ newstuff notifications service widgetsaddons windowsystem \ xmlgui \ doctools_build ecm_build USE_QT= concurrent core dbus gui network widgets xml \ buildtools_build qmake_build testlib_build OPTIONS_DEFINE= INOTIFY OPTIONS_DEFAULT= ${OPTIONS_DEFINE} OPTIONS_SUB= yes INOTIFY_DESC= Filesystem alteration notifications using inotify INOTIFY_LIB_DEPENDS= libinotify.so:devel/libinotify INOTIFY_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_Inotify KDE_PLASMA_VERSION= 5.22.0 .include diff --git a/sysutils/plasma5-libksysguard/distinfo b/sysutils/plasma5-libksysguard/distinfo index cec631d38c51..b37bc9934b99 100644 --- a/sysutils/plasma5-libksysguard/distinfo +++ b/sysutils/plasma5-libksysguard/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1625602703 -SHA256 (KDE/plasma/5.22.3/libksysguard-5.22.3.tar.xz) = 50b6f881483f3c66843a8506f66cd5bec190b7b980cf9d2ed84c774edea8596a -SIZE (KDE/plasma/5.22.3/libksysguard-5.22.3.tar.xz) = 737164 +TIMESTAMP = 1627399181 +SHA256 (KDE/plasma/5.22.4/libksysguard-5.22.4.tar.xz) = 80b1fb5ba0a2482700d46ecfb3e915380c120c09edc276333fee997ff4330692 +SIZE (KDE/plasma/5.22.4/libksysguard-5.22.4.tar.xz) = 737212 diff --git a/sysutils/plasma5-plasma-disks/distinfo b/sysutils/plasma5-plasma-disks/distinfo index bcf7cba3bd03..265f64a3db7e 100644 --- a/sysutils/plasma5-plasma-disks/distinfo +++ b/sysutils/plasma5-plasma-disks/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1625602704 -SHA256 (KDE/plasma/5.22.3/plasma-disks-5.22.3.tar.xz) = 14106642d667a6b10e02587279ffd937a2e74b4fec89156d95831c31daab66a8 -SIZE (KDE/plasma/5.22.3/plasma-disks-5.22.3.tar.xz) = 84248 +TIMESTAMP = 1627399182 +SHA256 (KDE/plasma/5.22.4/plasma-disks-5.22.4.tar.xz) = 57f915c51e07741d7084fe729a337da4a465a58deefbefd297d0e1a9cca87909 +SIZE (KDE/plasma/5.22.4/plasma-disks-5.22.4.tar.xz) = 84496 diff --git a/sysutils/plasma5-plasma-systemmonitor/distinfo b/sysutils/plasma5-plasma-systemmonitor/distinfo index 1e390ebbd038..0a8bdd343ea1 100644 --- a/sysutils/plasma5-plasma-systemmonitor/distinfo +++ b/sysutils/plasma5-plasma-systemmonitor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1625602705 -SHA256 (KDE/plasma/5.22.3/plasma-systemmonitor-5.22.3.tar.xz) = c9984f0e88a39590ca464e3f3806a3be03c52217a2d045fa72b200b25991e4d3 -SIZE (KDE/plasma/5.22.3/plasma-systemmonitor-5.22.3.tar.xz) = 134032 +TIMESTAMP = 1627399183 +SHA256 (KDE/plasma/5.22.4/plasma-systemmonitor-5.22.4.tar.xz) = 8b0d43e91d8ba368fed96d63b34aee7f401a9c0cc47533b363bca365a69c86be +SIZE (KDE/plasma/5.22.4/plasma-systemmonitor-5.22.4.tar.xz) = 135508 diff --git a/sysutils/plasma5-plasma-systemmonitor/pkg-plist b/sysutils/plasma5-plasma-systemmonitor/pkg-plist index 4bd77c19f5f4..c5c5eb31b58a 100644 --- a/sysutils/plasma5-plasma-systemmonitor/pkg-plist +++ b/sysutils/plasma5-plasma-systemmonitor/pkg-plist @@ -1,146 +1,147 @@ bin/plasma-systemmonitor %%QT_QMLDIR%%/org/kde/ksysguard/page/ColumnControl.qml %%QT_QMLDIR%%/org/kde/ksysguard/page/Container.qml %%QT_QMLDIR%%/org/kde/ksysguard/page/DialogLoader.qml %%QT_QMLDIR%%/org/kde/ksysguard/page/EditablePage.qml %%QT_QMLDIR%%/org/kde/ksysguard/page/EditablePageAction.qml %%QT_QMLDIR%%/org/kde/ksysguard/page/EditorToolBar.qml %%QT_QMLDIR%%/org/kde/ksysguard/page/FaceConfigurationPage.qml %%QT_QMLDIR%%/org/kde/ksysguard/page/FaceControl.qml %%QT_QMLDIR%%/org/kde/ksysguard/page/LoadPresetDialog.qml %%QT_QMLDIR%%/org/kde/ksysguard/page/MoveButton.qml %%QT_QMLDIR%%/org/kde/ksysguard/page/PageContents.qml %%QT_QMLDIR%%/org/kde/ksysguard/page/PageDialog.qml %%QT_QMLDIR%%/org/kde/ksysguard/page/PageEditor.qml %%QT_QMLDIR%%/org/kde/ksysguard/page/PageSortDialog.qml %%QT_QMLDIR%%/org/kde/ksysguard/page/PlaceholderRectangle.qml %%QT_QMLDIR%%/org/kde/ksysguard/page/RowControl.qml %%QT_QMLDIR%%/org/kde/ksysguard/page/SectionControl.qml %%QT_QMLDIR%%/org/kde/ksysguard/page/libPagePlugin.so %%QT_QMLDIR%%/org/kde/ksysguard/page/qmldir %%QT_QMLDIR%%/org/kde/ksysguard/table/BaseCellDelegate.qml %%QT_QMLDIR%%/org/kde/ksysguard/table/BaseTableView.qml %%QT_QMLDIR%%/org/kde/ksysguard/table/ColumnConfigurationDialog.qml %%QT_QMLDIR%%/org/kde/ksysguard/table/FirstCellDelegate.qml %%QT_QMLDIR%%/org/kde/ksysguard/table/KillDialog.qml %%QT_QMLDIR%%/org/kde/ksysguard/table/LineChartCellDelegate.qml %%QT_QMLDIR%%/org/kde/ksysguard/table/TableViewHeader.qml %%QT_QMLDIR%%/org/kde/ksysguard/table/TextCellDelegate.qml %%QT_QMLDIR%%/org/kde/ksysguard/table/TreeDecoration.qml %%QT_QMLDIR%%/org/kde/ksysguard/table/UserCellDelegate.qml %%QT_QMLDIR%%/org/kde/ksysguard/table/libTablePlugin.so %%QT_QMLDIR%%/org/kde/ksysguard/table/qmldir share/applications/org.kde.plasma-systemmonitor.desktop share/config.kcfg/systemmonitor.kcfg share/knsrcfiles/plasma-systemmonitor.knsrc share/ksysguard/sensorfaces/org.kde.ksysguard.applicationstable/contents/config/main.xml share/ksysguard/sensorfaces/org.kde.ksysguard.applicationstable/contents/faceproperties share/ksysguard/sensorfaces/org.kde.ksysguard.applicationstable/contents/ui/ApplicationDetails.qml share/ksysguard/sensorfaces/org.kde.ksysguard.applicationstable/contents/ui/ApplicationInformation.qml share/ksysguard/sensorfaces/org.kde.ksysguard.applicationstable/contents/ui/ApplicationsTableView.qml share/ksysguard/sensorfaces/org.kde.ksysguard.applicationstable/contents/ui/CompactRepresentation.qml share/ksysguard/sensorfaces/org.kde.ksysguard.applicationstable/contents/ui/Config.qml share/ksysguard/sensorfaces/org.kde.ksysguard.applicationstable/contents/ui/FullRepresentation.qml share/ksysguard/sensorfaces/org.kde.ksysguard.applicationstable/contents/ui/LineChartCard.qml share/ksysguard/sensorfaces/org.kde.ksysguard.applicationstable/metadata.desktop share/ksysguard/sensorfaces/org.kde.ksysguard.applicationstable/metadata.json share/ksysguard/sensorfaces/org.kde.ksysguard.processtable/contents/config/main.xml share/ksysguard/sensorfaces/org.kde.ksysguard.processtable/contents/faceproperties share/ksysguard/sensorfaces/org.kde.ksysguard.processtable/contents/ui/CompactRepresentation.qml share/ksysguard/sensorfaces/org.kde.ksysguard.processtable/contents/ui/Config.qml share/ksysguard/sensorfaces/org.kde.ksysguard.processtable/contents/ui/FullRepresentation.qml share/ksysguard/sensorfaces/org.kde.ksysguard.processtable/contents/ui/ProcessTableView.qml share/ksysguard/sensorfaces/org.kde.ksysguard.processtable/metadata.desktop share/ksysguard/sensorfaces/org.kde.ksysguard.processtable/metadata.json share/locale/az/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo share/locale/az/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo share/locale/az/LC_MESSAGES/plasma-systemmonitor.mo share/locale/ca/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo share/locale/ca/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo share/locale/ca/LC_MESSAGES/plasma-systemmonitor.mo share/locale/ca@valencia/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo share/locale/ca@valencia/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo share/locale/ca@valencia/LC_MESSAGES/plasma-systemmonitor.mo share/locale/cs/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo share/locale/cs/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo share/locale/cs/LC_MESSAGES/plasma-systemmonitor.mo share/locale/da/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo share/locale/da/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo share/locale/da/LC_MESSAGES/plasma-systemmonitor.mo share/locale/de/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo share/locale/de/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo share/locale/de/LC_MESSAGES/plasma-systemmonitor.mo share/locale/en_GB/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo share/locale/en_GB/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo share/locale/en_GB/LC_MESSAGES/plasma-systemmonitor.mo share/locale/es/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo share/locale/es/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo share/locale/es/LC_MESSAGES/plasma-systemmonitor.mo share/locale/eu/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo share/locale/eu/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo share/locale/eu/LC_MESSAGES/plasma-systemmonitor.mo share/locale/fi/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo share/locale/fi/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo share/locale/fi/LC_MESSAGES/plasma-systemmonitor.mo share/locale/fr/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo share/locale/fr/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo share/locale/fr/LC_MESSAGES/plasma-systemmonitor.mo share/locale/hu/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo share/locale/hu/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo share/locale/hu/LC_MESSAGES/plasma-systemmonitor.mo share/locale/ia/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo share/locale/ia/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo share/locale/ia/LC_MESSAGES/plasma-systemmonitor.mo +share/locale/id/LC_MESSAGES/plasma-systemmonitor.mo share/locale/it/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo share/locale/it/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo share/locale/it/LC_MESSAGES/plasma-systemmonitor.mo share/locale/ko/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo share/locale/ko/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo share/locale/ko/LC_MESSAGES/plasma-systemmonitor.mo share/locale/lt/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo share/locale/lt/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo share/locale/lt/LC_MESSAGES/plasma-systemmonitor.mo share/locale/nb/LC_MESSAGES/plasma-systemmonitor.mo share/locale/nl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo share/locale/nl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo share/locale/nl/LC_MESSAGES/plasma-systemmonitor.mo share/locale/nn/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo share/locale/nn/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo share/locale/nn/LC_MESSAGES/plasma-systemmonitor.mo share/locale/pa/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo share/locale/pa/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo share/locale/pa/LC_MESSAGES/plasma-systemmonitor.mo share/locale/pl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo share/locale/pl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo share/locale/pl/LC_MESSAGES/plasma-systemmonitor.mo share/locale/pt/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo share/locale/pt/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo share/locale/pt/LC_MESSAGES/plasma-systemmonitor.mo share/locale/pt_BR/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo share/locale/pt_BR/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo share/locale/pt_BR/LC_MESSAGES/plasma-systemmonitor.mo share/locale/ro/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo share/locale/ro/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo share/locale/ro/LC_MESSAGES/plasma-systemmonitor.mo share/locale/ru/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo share/locale/ru/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo share/locale/ru/LC_MESSAGES/plasma-systemmonitor.mo share/locale/sk/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo share/locale/sk/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo share/locale/sk/LC_MESSAGES/plasma-systemmonitor.mo share/locale/sl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo share/locale/sl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo share/locale/sl/LC_MESSAGES/plasma-systemmonitor.mo share/locale/sv/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo share/locale/sv/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo share/locale/sv/LC_MESSAGES/plasma-systemmonitor.mo share/locale/uk/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo share/locale/uk/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo share/locale/uk/LC_MESSAGES/plasma-systemmonitor.mo share/locale/zh_CN/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo share/locale/zh_CN/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo share/locale/zh_CN/LC_MESSAGES/plasma-systemmonitor.mo %%DATADIR%%/applications.page %%DATADIR%%/history.page %%DATADIR%%/overview.page %%DATADIR%%/processes.page diff --git a/sysutils/plasma5-polkit-kde-agent-1/distinfo b/sysutils/plasma5-polkit-kde-agent-1/distinfo index 517af839b268..c3cbb29de7c3 100644 --- a/sysutils/plasma5-polkit-kde-agent-1/distinfo +++ b/sysutils/plasma5-polkit-kde-agent-1/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1625602706 -SHA256 (KDE/plasma/5.22.3/polkit-kde-agent-1-5.22.3.tar.xz) = 9c49d885df54a8edf931b859f677c5126b82cf4436d17d64d831d5151fce4d9a -SIZE (KDE/plasma/5.22.3/polkit-kde-agent-1-5.22.3.tar.xz) = 45792 +TIMESTAMP = 1627399184 +SHA256 (KDE/plasma/5.22.4/polkit-kde-agent-1-5.22.4.tar.xz) = e2836b462261351cd920a61473c5812a9d2770db20a1cbd22dca248d89cdb95f +SIZE (KDE/plasma/5.22.4/polkit-kde-agent-1-5.22.4.tar.xz) = 45764 diff --git a/sysutils/plasma5-powerdevil/Makefile b/sysutils/plasma5-powerdevil/Makefile index 33504de053f5..4b92d60a1a11 100644 --- a/sysutils/plasma5-powerdevil/Makefile +++ b/sysutils/plasma5-powerdevil/Makefile @@ -1,25 +1,24 @@ PORTNAME= powerdevil DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 2 CATEGORIES= sysutils kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 tool to manage the power consumption settings LIB_DEPENDS= libudev.so:devel/libudev-devd RUN_DEPENDS= ${LOCALBASE}/libexec/upowerd:sysutils/upower USES= cmake compiler:c++11-lib cpe gettext kde:5 pkgconfig qt:5 tar:xz xorg USE_KDE= activities auth bookmarks codecs completion configwidgets \ coreaddons crash config dbusaddons emoticons globalaccel \ guiaddons i18n idletime iconthemes init itemmodels itemviews \ jobwidgets kio libkscreen notifications \ notifyconfig parts plasma-workspace service solid sonnet \ textwidgets unitconversion wayland widgetsaddons windowsystem \ xmlgui \ doctools_build ecm_build USE_QT= concurrent core dbus gui network printsupport widgets x11extras xml \ buildtools_build qmake_build USE_XORG= xcb .include diff --git a/sysutils/plasma5-powerdevil/distinfo b/sysutils/plasma5-powerdevil/distinfo index 874e01fff16c..b9e2507a5e68 100644 --- a/sysutils/plasma5-powerdevil/distinfo +++ b/sysutils/plasma5-powerdevil/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1625602707 -SHA256 (KDE/plasma/5.22.3/powerdevil-5.22.3.tar.xz) = 64ed0741308c4e488e9fc049bde5a7c391ef7e8c12cdb055456f9c3b3deaffc4 -SIZE (KDE/plasma/5.22.3/powerdevil-5.22.3.tar.xz) = 617804 +TIMESTAMP = 1627399186 +SHA256 (KDE/plasma/5.22.4/powerdevil-5.22.4.tar.xz) = d5d01e5017306aff215e6ba3be21c940b7771a599e92445f8526406fb63e829c +SIZE (KDE/plasma/5.22.4/powerdevil-5.22.4.tar.xz) = 618088 diff --git a/sysutils/plasma5-systemsettings/Makefile b/sysutils/plasma5-systemsettings/Makefile index 7c6427a12add..a0a3d4992576 100644 --- a/sysutils/plasma5-systemsettings/Makefile +++ b/sysutils/plasma5-systemsettings/Makefile @@ -1,19 +1,18 @@ PORTNAME= systemsettings DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 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 guiaddons \ i18n iconthemes itemmodels itemviews jobwidgets js kcmutils \ kdeclarative khtml kio kirigami2 package parts plasma-workspace \ service sonnet textwidgets widgetsaddons windowsystem xmlgui \ doctools_build ecm_build USE_QT= concurrent core dbus declarative gui network widgets xml \ buildtools_build qmake_build .include diff --git a/sysutils/plasma5-systemsettings/distinfo b/sysutils/plasma5-systemsettings/distinfo index 0dab6cdaf186..43b4e36f0700 100644 --- a/sysutils/plasma5-systemsettings/distinfo +++ b/sysutils/plasma5-systemsettings/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1625602708 -SHA256 (KDE/plasma/5.22.3/systemsettings-5.22.3.tar.xz) = 7817cbfd957221d1d638c087d60f93a93db6000cbe7240fd85885b32774ae941 -SIZE (KDE/plasma/5.22.3/systemsettings-5.22.3.tar.xz) = 204492 +TIMESTAMP = 1627399187 +SHA256 (KDE/plasma/5.22.4/systemsettings-5.22.4.tar.xz) = 10ed28d66aa7419210013f8a71cf43acdf82155cc47f6a1c9caa41a37480e2aa +SIZE (KDE/plasma/5.22.4/systemsettings-5.22.4.tar.xz) = 205644 diff --git a/www/plasma5-plasma-browser-integration/distinfo b/www/plasma5-plasma-browser-integration/distinfo index ea1526244183..6d44db6425c2 100644 --- a/www/plasma5-plasma-browser-integration/distinfo +++ b/www/plasma5-plasma-browser-integration/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1625602709 -SHA256 (KDE/plasma/5.22.3/plasma-browser-integration-5.22.3.tar.xz) = baf3839e5f40395761e515e1837ba5bc685bf62b794767a821e9a9db99ffb79a -SIZE (KDE/plasma/5.22.3/plasma-browser-integration-5.22.3.tar.xz) = 213104 +TIMESTAMP = 1627399188 +SHA256 (KDE/plasma/5.22.4/plasma-browser-integration-5.22.4.tar.xz) = 0b22ec790f9a5ab1afad4ba1828fdaa57729d33e838c0e215d12a877ce5d7808 +SIZE (KDE/plasma/5.22.4/plasma-browser-integration-5.22.4.tar.xz) = 214528 diff --git a/x11-themes/plasma5-breeze-gtk/distinfo b/x11-themes/plasma5-breeze-gtk/distinfo index f15b8fc7d588..6a9bae24ebf0 100644 --- a/x11-themes/plasma5-breeze-gtk/distinfo +++ b/x11-themes/plasma5-breeze-gtk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1625602728 -SHA256 (KDE/plasma/5.22.3/breeze-gtk-5.22.3.tar.xz) = cff20c1605a09a85966a5d03f323fd8ad6b94828c347b68cbc874d896e0c7dbf -SIZE (KDE/plasma/5.22.3/breeze-gtk-5.22.3.tar.xz) = 47680 +TIMESTAMP = 1627399193 +SHA256 (KDE/plasma/5.22.4/breeze-gtk-5.22.4.tar.xz) = 8b69b4e74594b49e3cee62fbffab875442f6b9d0d6432972b800c82eb2de87dc +SIZE (KDE/plasma/5.22.4/breeze-gtk-5.22.4.tar.xz) = 47688 diff --git a/x11-themes/plasma5-breeze/distinfo b/x11-themes/plasma5-breeze/distinfo index bcdb7aac9c0b..7432ac90d869 100644 --- a/x11-themes/plasma5-breeze/distinfo +++ b/x11-themes/plasma5-breeze/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1625602727 -SHA256 (KDE/plasma/5.22.3/breeze-5.22.3.tar.xz) = 2b8c20e9bea767ed796e0ba5adee30812c73591c000bbf79855d504303f120e4 -SIZE (KDE/plasma/5.22.3/breeze-5.22.3.tar.xz) = 34545872 +TIMESTAMP = 1627399192 +SHA256 (KDE/plasma/5.22.4/breeze-5.22.4.tar.xz) = 7d792b7f97e6d5854d81b4098edefd62a8e5b309e471ab39ada679a52ecf9fac +SIZE (KDE/plasma/5.22.4/breeze-5.22.4.tar.xz) = 34548204 diff --git a/x11-themes/plasma5-breeze/pkg-plist b/x11-themes/plasma5-breeze/pkg-plist index 6b48a22c5a13..9ea87a1feb55 100644 --- a/x11-themes/plasma5-breeze/pkg-plist +++ b/x11-themes/plasma5-breeze/pkg-plist @@ -1,378 +1,380 @@ bin/breeze-settings5 lib/cmake/Breeze/BreezeConfig.cmake lib/cmake/Breeze/BreezeConfigVersion.cmake lib/kconf_update_bin/breezetobreezelight lib/kconf_update_bin/kde4breeze lib/libbreezecommon5.so.%%KDE_PLASMA_VERSION%% lib/libbreezecommon5.so.5 %%QT_PLUGINDIR%%/kstyle_breeze_config.so %%QT_PLUGINDIR%%/org.kde.kdecoration2/breezedecoration.so %%QT_PLUGINDIR%%/styles/breeze.so share/QtCurve/Breeze.qtcurve share/color-schemes/Breeze.colors share/color-schemes/BreezeDark.colors share/color-schemes/BreezeHighContrast.colors share/color-schemes/BreezeLight.colors share/icons/Breeze_Snow/cursors/00000000000000020006000e7e9ffc3f share/icons/Breeze_Snow/cursors/00008160000006810000408080010102 share/icons/Breeze_Snow/cursors/03b6e0fcb3499374a867c041f52298f0 share/icons/Breeze_Snow/cursors/08e8e1c95fe2fc01f976f1e063a24ccd share/icons/Breeze_Snow/cursors/1081e37283d90000800003c07f3ef6bf share/icons/Breeze_Snow/cursors/3085a0e285430894940527032f8b26df share/icons/Breeze_Snow/cursors/3ecb610c1bf2410f44200f48c40d3599 share/icons/Breeze_Snow/cursors/4498f0e0c1937ffe01fd06f973665830 share/icons/Breeze_Snow/cursors/5c6cd98b3f3ebcb1f9c7f1c204630408 share/icons/Breeze_Snow/cursors/6407b0e94181790501fd1e167b474872 share/icons/Breeze_Snow/cursors/640fb0e74195791501fd1ed57b41487f share/icons/Breeze_Snow/cursors/9081237383d90e509aa00f00170e968f share/icons/Breeze_Snow/cursors/9d800788f1b08800ae810202380a0822 share/icons/Breeze_Snow/cursors/a2a266d0498c3104214a47bd64ab0fc8 share/icons/Breeze_Snow/cursors/alias share/icons/Breeze_Snow/cursors/all-scroll share/icons/Breeze_Snow/cursors/arrow share/icons/Breeze_Snow/cursors/b66166c04f8c3109214a4fbd64a50fc8 share/icons/Breeze_Snow/cursors/bottom_left_corner share/icons/Breeze_Snow/cursors/bottom_right_corner share/icons/Breeze_Snow/cursors/bottom_side share/icons/Breeze_Snow/cursors/cell share/icons/Breeze_Snow/cursors/center_ptr share/icons/Breeze_Snow/cursors/circle share/icons/Breeze_Snow/cursors/closedhand share/icons/Breeze_Snow/cursors/col-resize share/icons/Breeze_Snow/cursors/color-picker share/icons/Breeze_Snow/cursors/context-menu share/icons/Breeze_Snow/cursors/copy share/icons/Breeze_Snow/cursors/cross share/icons/Breeze_Snow/cursors/crossed_circle share/icons/Breeze_Snow/cursors/crosshair share/icons/Breeze_Snow/cursors/d9ce0ab605698f320427677b458ad60b share/icons/Breeze_Snow/cursors/default share/icons/Breeze_Snow/cursors/dnd-copy share/icons/Breeze_Snow/cursors/dnd-move share/icons/Breeze_Snow/cursors/dnd-no-drop share/icons/Breeze_Snow/cursors/dnd-none share/icons/Breeze_Snow/cursors/down-arrow share/icons/Breeze_Snow/cursors/draft share/icons/Breeze_Snow/cursors/e-resize share/icons/Breeze_Snow/cursors/e29285e634086352946a0e7090d73106 share/icons/Breeze_Snow/cursors/ew-resize share/icons/Breeze_Snow/cursors/fcf21c00b30f7e3f83fe0dfd12e71cff share/icons/Breeze_Snow/cursors/fleur share/icons/Breeze_Snow/cursors/forbidden share/icons/Breeze_Snow/cursors/grab share/icons/Breeze_Snow/cursors/grabbing share/icons/Breeze_Snow/cursors/h_double_arrow share/icons/Breeze_Snow/cursors/half-busy share/icons/Breeze_Snow/cursors/hand1 share/icons/Breeze_Snow/cursors/hand2 share/icons/Breeze_Snow/cursors/help share/icons/Breeze_Snow/cursors/ibeam share/icons/Breeze_Snow/cursors/left-arrow share/icons/Breeze_Snow/cursors/left_ptr share/icons/Breeze_Snow/cursors/left_ptr_help share/icons/Breeze_Snow/cursors/left_ptr_watch share/icons/Breeze_Snow/cursors/left_side share/icons/Breeze_Snow/cursors/link share/icons/Breeze_Snow/cursors/move share/icons/Breeze_Snow/cursors/n-resize share/icons/Breeze_Snow/cursors/ne-resize share/icons/Breeze_Snow/cursors/nesw-resize share/icons/Breeze_Snow/cursors/no-drop share/icons/Breeze_Snow/cursors/not-allowed share/icons/Breeze_Snow/cursors/ns-resize share/icons/Breeze_Snow/cursors/nw-resize share/icons/Breeze_Snow/cursors/nwse-resize share/icons/Breeze_Snow/cursors/openhand share/icons/Breeze_Snow/cursors/pencil share/icons/Breeze_Snow/cursors/pirate share/icons/Breeze_Snow/cursors/plus share/icons/Breeze_Snow/cursors/pointer share/icons/Breeze_Snow/cursors/pointing_hand share/icons/Breeze_Snow/cursors/progress share/icons/Breeze_Snow/cursors/question_arrow share/icons/Breeze_Snow/cursors/right-arrow share/icons/Breeze_Snow/cursors/right_ptr share/icons/Breeze_Snow/cursors/right_side share/icons/Breeze_Snow/cursors/row-resize share/icons/Breeze_Snow/cursors/s-resize share/icons/Breeze_Snow/cursors/sb_h_double_arrow share/icons/Breeze_Snow/cursors/sb_v_double_arrow share/icons/Breeze_Snow/cursors/se-resize share/icons/Breeze_Snow/cursors/size-bdiag share/icons/Breeze_Snow/cursors/size-fdiag share/icons/Breeze_Snow/cursors/size-hor share/icons/Breeze_Snow/cursors/size-ver share/icons/Breeze_Snow/cursors/size_all share/icons/Breeze_Snow/cursors/size_bdiag share/icons/Breeze_Snow/cursors/size_fdiag share/icons/Breeze_Snow/cursors/size_hor share/icons/Breeze_Snow/cursors/size_ver share/icons/Breeze_Snow/cursors/split_h share/icons/Breeze_Snow/cursors/split_v share/icons/Breeze_Snow/cursors/sw-resize share/icons/Breeze_Snow/cursors/text share/icons/Breeze_Snow/cursors/top_left_arrow share/icons/Breeze_Snow/cursors/top_left_corner share/icons/Breeze_Snow/cursors/top_right_corner share/icons/Breeze_Snow/cursors/top_side share/icons/Breeze_Snow/cursors/up-arrow share/icons/Breeze_Snow/cursors/v_double_arrow share/icons/Breeze_Snow/cursors/vertical-text share/icons/Breeze_Snow/cursors/w-resize share/icons/Breeze_Snow/cursors/wait share/icons/Breeze_Snow/cursors/watch share/icons/Breeze_Snow/cursors/wayland-cursor share/icons/Breeze_Snow/cursors/whats_this share/icons/Breeze_Snow/cursors/x-cursor share/icons/Breeze_Snow/cursors/xterm share/icons/Breeze_Snow/cursors/zoom-in share/icons/Breeze_Snow/cursors/zoom-out share/icons/Breeze_Snow/index.theme share/icons/breeze_cursors/cursors/00000000000000020006000e7e9ffc3f share/icons/breeze_cursors/cursors/00008160000006810000408080010102 share/icons/breeze_cursors/cursors/03b6e0fcb3499374a867c041f52298f0 share/icons/breeze_cursors/cursors/08e8e1c95fe2fc01f976f1e063a24ccd share/icons/breeze_cursors/cursors/1081e37283d90000800003c07f3ef6bf share/icons/breeze_cursors/cursors/3085a0e285430894940527032f8b26df share/icons/breeze_cursors/cursors/3ecb610c1bf2410f44200f48c40d3599 share/icons/breeze_cursors/cursors/4498f0e0c1937ffe01fd06f973665830 share/icons/breeze_cursors/cursors/5c6cd98b3f3ebcb1f9c7f1c204630408 share/icons/breeze_cursors/cursors/6407b0e94181790501fd1e167b474872 share/icons/breeze_cursors/cursors/640fb0e74195791501fd1ed57b41487f share/icons/breeze_cursors/cursors/9081237383d90e509aa00f00170e968f share/icons/breeze_cursors/cursors/9d800788f1b08800ae810202380a0822 share/icons/breeze_cursors/cursors/a2a266d0498c3104214a47bd64ab0fc8 share/icons/breeze_cursors/cursors/alias share/icons/breeze_cursors/cursors/all-scroll share/icons/breeze_cursors/cursors/arrow share/icons/breeze_cursors/cursors/b66166c04f8c3109214a4fbd64a50fc8 share/icons/breeze_cursors/cursors/bottom_left_corner share/icons/breeze_cursors/cursors/bottom_right_corner share/icons/breeze_cursors/cursors/bottom_side share/icons/breeze_cursors/cursors/cell share/icons/breeze_cursors/cursors/center_ptr share/icons/breeze_cursors/cursors/circle share/icons/breeze_cursors/cursors/closedhand share/icons/breeze_cursors/cursors/col-resize share/icons/breeze_cursors/cursors/color-picker share/icons/breeze_cursors/cursors/context-menu share/icons/breeze_cursors/cursors/copy share/icons/breeze_cursors/cursors/cross share/icons/breeze_cursors/cursors/crossed_circle share/icons/breeze_cursors/cursors/crosshair share/icons/breeze_cursors/cursors/d9ce0ab605698f320427677b458ad60b share/icons/breeze_cursors/cursors/default share/icons/breeze_cursors/cursors/dnd-copy share/icons/breeze_cursors/cursors/dnd-move share/icons/breeze_cursors/cursors/dnd-no-drop share/icons/breeze_cursors/cursors/dnd-none share/icons/breeze_cursors/cursors/down-arrow share/icons/breeze_cursors/cursors/draft share/icons/breeze_cursors/cursors/e-resize share/icons/breeze_cursors/cursors/e29285e634086352946a0e7090d73106 share/icons/breeze_cursors/cursors/ew-resize share/icons/breeze_cursors/cursors/fcf21c00b30f7e3f83fe0dfd12e71cff share/icons/breeze_cursors/cursors/fleur share/icons/breeze_cursors/cursors/forbidden share/icons/breeze_cursors/cursors/grab share/icons/breeze_cursors/cursors/grabbing share/icons/breeze_cursors/cursors/h_double_arrow share/icons/breeze_cursors/cursors/half-busy share/icons/breeze_cursors/cursors/hand1 share/icons/breeze_cursors/cursors/hand2 share/icons/breeze_cursors/cursors/help share/icons/breeze_cursors/cursors/ibeam share/icons/breeze_cursors/cursors/left-arrow share/icons/breeze_cursors/cursors/left_ptr share/icons/breeze_cursors/cursors/left_ptr_help share/icons/breeze_cursors/cursors/left_ptr_watch share/icons/breeze_cursors/cursors/left_side share/icons/breeze_cursors/cursors/link share/icons/breeze_cursors/cursors/move share/icons/breeze_cursors/cursors/n-resize share/icons/breeze_cursors/cursors/ne-resize share/icons/breeze_cursors/cursors/nesw-resize share/icons/breeze_cursors/cursors/no-drop share/icons/breeze_cursors/cursors/not-allowed share/icons/breeze_cursors/cursors/ns-resize share/icons/breeze_cursors/cursors/nw-resize share/icons/breeze_cursors/cursors/nwse-resize share/icons/breeze_cursors/cursors/openhand share/icons/breeze_cursors/cursors/pencil share/icons/breeze_cursors/cursors/pirate share/icons/breeze_cursors/cursors/plus share/icons/breeze_cursors/cursors/pointer share/icons/breeze_cursors/cursors/pointing_hand share/icons/breeze_cursors/cursors/progress share/icons/breeze_cursors/cursors/question_arrow share/icons/breeze_cursors/cursors/right-arrow share/icons/breeze_cursors/cursors/right_ptr share/icons/breeze_cursors/cursors/right_side share/icons/breeze_cursors/cursors/row-resize share/icons/breeze_cursors/cursors/s-resize share/icons/breeze_cursors/cursors/sb_h_double_arrow share/icons/breeze_cursors/cursors/sb_v_double_arrow share/icons/breeze_cursors/cursors/se-resize share/icons/breeze_cursors/cursors/size-bdiag share/icons/breeze_cursors/cursors/size-fdiag share/icons/breeze_cursors/cursors/size-hor share/icons/breeze_cursors/cursors/size-ver share/icons/breeze_cursors/cursors/size_all share/icons/breeze_cursors/cursors/size_bdiag share/icons/breeze_cursors/cursors/size_fdiag share/icons/breeze_cursors/cursors/size_hor share/icons/breeze_cursors/cursors/size_ver share/icons/breeze_cursors/cursors/split_h share/icons/breeze_cursors/cursors/split_v share/icons/breeze_cursors/cursors/sw-resize share/icons/breeze_cursors/cursors/text share/icons/breeze_cursors/cursors/top_left_arrow share/icons/breeze_cursors/cursors/top_left_corner share/icons/breeze_cursors/cursors/top_right_corner share/icons/breeze_cursors/cursors/top_side share/icons/breeze_cursors/cursors/up-arrow share/icons/breeze_cursors/cursors/v_double_arrow share/icons/breeze_cursors/cursors/vertical-text share/icons/breeze_cursors/cursors/w-resize share/icons/breeze_cursors/cursors/wait share/icons/breeze_cursors/cursors/watch share/icons/breeze_cursors/cursors/wayland-cursor share/icons/breeze_cursors/cursors/whats_this share/icons/breeze_cursors/cursors/x-cursor share/icons/breeze_cursors/cursors/xterm share/icons/breeze_cursors/cursors/zoom-in share/icons/breeze_cursors/cursors/zoom-out share/icons/breeze_cursors/index.theme share/icons/hicolor/scalable/apps/breeze-settings.svgz share/kconf_update/breezetobreezelight.upd share/kconf_update/kde4breeze.upd share/kservices5/breezedecorationconfig.desktop share/kservices5/breezestyleconfig.desktop share/kstyle/themes/breeze.themerc share/locale/ar/LC_MESSAGES/breeze_kwin_deco.mo share/locale/ar/LC_MESSAGES/breeze_style_config.mo share/locale/az/LC_MESSAGES/breeze_kwin_deco.mo share/locale/az/LC_MESSAGES/breeze_style_config.mo share/locale/bs/LC_MESSAGES/breeze_kwin_deco.mo share/locale/bs/LC_MESSAGES/breeze_style_config.mo share/locale/ca/LC_MESSAGES/breeze_kwin_deco.mo share/locale/ca/LC_MESSAGES/breeze_style_config.mo share/locale/ca@valencia/LC_MESSAGES/breeze_kwin_deco.mo share/locale/ca@valencia/LC_MESSAGES/breeze_style_config.mo share/locale/cs/LC_MESSAGES/breeze_kwin_deco.mo share/locale/cs/LC_MESSAGES/breeze_style_config.mo share/locale/da/LC_MESSAGES/breeze_kwin_deco.mo share/locale/da/LC_MESSAGES/breeze_style_config.mo share/locale/de/LC_MESSAGES/breeze_kwin_deco.mo share/locale/de/LC_MESSAGES/breeze_style_config.mo share/locale/el/LC_MESSAGES/breeze_kwin_deco.mo share/locale/el/LC_MESSAGES/breeze_style_config.mo share/locale/en_GB/LC_MESSAGES/breeze_kwin_deco.mo share/locale/en_GB/LC_MESSAGES/breeze_style_config.mo share/locale/es/LC_MESSAGES/breeze_kwin_deco.mo share/locale/es/LC_MESSAGES/breeze_style_config.mo share/locale/et/LC_MESSAGES/breeze_kwin_deco.mo share/locale/et/LC_MESSAGES/breeze_style_config.mo share/locale/eu/LC_MESSAGES/breeze_kwin_deco.mo share/locale/eu/LC_MESSAGES/breeze_style_config.mo share/locale/fi/LC_MESSAGES/breeze_kwin_deco.mo share/locale/fi/LC_MESSAGES/breeze_style_config.mo share/locale/fr/LC_MESSAGES/breeze_kwin_deco.mo share/locale/fr/LC_MESSAGES/breeze_style_config.mo share/locale/gl/LC_MESSAGES/breeze_kwin_deco.mo share/locale/gl/LC_MESSAGES/breeze_style_config.mo share/locale/he/LC_MESSAGES/breeze_kwin_deco.mo share/locale/he/LC_MESSAGES/breeze_style_config.mo +share/locale/hi/LC_MESSAGES/breeze_kwin_deco.mo +share/locale/hi/LC_MESSAGES/breeze_style_config.mo share/locale/hu/LC_MESSAGES/breeze_kwin_deco.mo share/locale/hu/LC_MESSAGES/breeze_style_config.mo share/locale/ia/LC_MESSAGES/breeze_kwin_deco.mo share/locale/ia/LC_MESSAGES/breeze_style_config.mo share/locale/id/LC_MESSAGES/breeze_kwin_deco.mo share/locale/id/LC_MESSAGES/breeze_style_config.mo share/locale/it/LC_MESSAGES/breeze_kwin_deco.mo share/locale/it/LC_MESSAGES/breeze_style_config.mo share/locale/ja/LC_MESSAGES/breeze_kwin_deco.mo share/locale/ja/LC_MESSAGES/breeze_style_config.mo share/locale/ko/LC_MESSAGES/breeze_kwin_deco.mo share/locale/ko/LC_MESSAGES/breeze_style_config.mo share/locale/lt/LC_MESSAGES/breeze_kwin_deco.mo share/locale/lt/LC_MESSAGES/breeze_style_config.mo share/locale/nb/LC_MESSAGES/breeze_kwin_deco.mo share/locale/nb/LC_MESSAGES/breeze_style_config.mo share/locale/nds/LC_MESSAGES/breeze_kwin_deco.mo share/locale/nds/LC_MESSAGES/breeze_style_config.mo share/locale/nl/LC_MESSAGES/breeze_kwin_deco.mo share/locale/nl/LC_MESSAGES/breeze_style_config.mo share/locale/nn/LC_MESSAGES/breeze_kwin_deco.mo share/locale/nn/LC_MESSAGES/breeze_style_config.mo share/locale/pa/LC_MESSAGES/breeze_kwin_deco.mo share/locale/pa/LC_MESSAGES/breeze_style_config.mo share/locale/pl/LC_MESSAGES/breeze_kwin_deco.mo share/locale/pl/LC_MESSAGES/breeze_style_config.mo share/locale/pt/LC_MESSAGES/breeze_kwin_deco.mo share/locale/pt/LC_MESSAGES/breeze_style_config.mo share/locale/pt_BR/LC_MESSAGES/breeze_kwin_deco.mo share/locale/pt_BR/LC_MESSAGES/breeze_style_config.mo share/locale/ro/LC_MESSAGES/breeze_kwin_deco.mo share/locale/ro/LC_MESSAGES/breeze_style_config.mo share/locale/ru/LC_MESSAGES/breeze_kwin_deco.mo share/locale/ru/LC_MESSAGES/breeze_style_config.mo share/locale/se/LC_MESSAGES/breeze_kwin_deco.mo share/locale/sk/LC_MESSAGES/breeze_kwin_deco.mo share/locale/sk/LC_MESSAGES/breeze_style_config.mo share/locale/sl/LC_MESSAGES/breeze_kwin_deco.mo share/locale/sl/LC_MESSAGES/breeze_style_config.mo share/locale/sr/LC_MESSAGES/breeze_kwin_deco.mo share/locale/sr/LC_MESSAGES/breeze_style_config.mo share/locale/sr@ijekavian/LC_MESSAGES/breeze_kwin_deco.mo share/locale/sr@ijekavian/LC_MESSAGES/breeze_style_config.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/breeze_kwin_deco.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/breeze_style_config.mo share/locale/sr@latin/LC_MESSAGES/breeze_kwin_deco.mo share/locale/sr@latin/LC_MESSAGES/breeze_style_config.mo share/locale/sv/LC_MESSAGES/breeze_kwin_deco.mo share/locale/sv/LC_MESSAGES/breeze_style_config.mo share/locale/tg/LC_MESSAGES/breeze_kwin_deco.mo share/locale/tg/LC_MESSAGES/breeze_style_config.mo share/locale/tr/LC_MESSAGES/breeze_kwin_deco.mo share/locale/tr/LC_MESSAGES/breeze_style_config.mo share/locale/uk/LC_MESSAGES/breeze_kwin_deco.mo share/locale/uk/LC_MESSAGES/breeze_style_config.mo share/locale/zh_CN/LC_MESSAGES/breeze_kwin_deco.mo share/locale/zh_CN/LC_MESSAGES/breeze_style_config.mo share/locale/zh_TW/LC_MESSAGES/breeze_kwin_deco.mo share/locale/zh_TW/LC_MESSAGES/breeze_style_config.mo share/metainfo/org.kde.breezedark.desktop.appdata.xml share/metainfo/org.kde.breezetwilight.desktop.appdata.xml share/plasma/look-and-feel/org.kde.breezedark.desktop/contents/defaults share/plasma/look-and-feel/org.kde.breezedark.desktop/contents/previews/fullscreenpreview.jpg share/plasma/look-and-feel/org.kde.breezedark.desktop/contents/previews/preview.png share/plasma/look-and-feel/org.kde.breezedark.desktop/metadata.desktop share/plasma/look-and-feel/org.kde.breezedark.desktop/metadata.json share/plasma/look-and-feel/org.kde.breezetwilight.desktop/contents/defaults share/plasma/look-and-feel/org.kde.breezetwilight.desktop/contents/previews/fullscreenpreview.jpg share/plasma/look-and-feel/org.kde.breezetwilight.desktop/contents/previews/preview.png share/plasma/look-and-feel/org.kde.breezetwilight.desktop/metadata.desktop share/plasma/look-and-feel/org.kde.breezetwilight.desktop/metadata.json share/wallpapers/Next/contents/images/1024x768.png share/wallpapers/Next/contents/images/1080x1920.png share/wallpapers/Next/contents/images/1280x1024.png share/wallpapers/Next/contents/images/1280x800.png share/wallpapers/Next/contents/images/1366x768.png share/wallpapers/Next/contents/images/1440x900.png share/wallpapers/Next/contents/images/1600x1200.png share/wallpapers/Next/contents/images/1680x1050.png share/wallpapers/Next/contents/images/1920x1080.png share/wallpapers/Next/contents/images/1920x1200.png share/wallpapers/Next/contents/images/2560x1440.png share/wallpapers/Next/contents/images/2560x1600.png share/wallpapers/Next/contents/images/3200x1800.png share/wallpapers/Next/contents/images/3200x2000.png share/wallpapers/Next/contents/images/360x720.png share/wallpapers/Next/contents/images/3840x2160.png share/wallpapers/Next/contents/images/5120x2880.png share/wallpapers/Next/contents/images/720x1440.png share/wallpapers/Next/contents/images/base_size.png share/wallpapers/Next/contents/images/vertical_base_size.png share/wallpapers/Next/contents/screenshot.png share/wallpapers/Next/metadata.desktop diff --git a/x11-themes/plasma5-kde-gtk-config/Makefile b/x11-themes/plasma5-kde-gtk-config/Makefile index d351dfb673f7..aeba20e85cd5 100644 --- a/x11-themes/plasma5-kde-gtk-config/Makefile +++ b/x11-themes/plasma5-kde-gtk-config/Makefile @@ -1,27 +1,26 @@ PORTNAME= kde-gtk-config DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= x11-themes kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 GTK2 and GTK3 configurator LICENSE= GPLv2 LGPL21 LICENSE_COMB= multi BUILD_DEPENDS= gsettings-desktop-schemas>=0:devel/gsettings-desktop-schemas \ sassc:textproc/sassc RUN_DEPENDS= gsettings-desktop-schemas>=0:devel/gsettings-desktop-schemas USES= cmake compiler:c++11-lib cpe gettext gnome \ kde:5 pkgconfig qt:5 tar:xz xorg USE_GNOME= cairo gdkpixbuf2 gtk20 gtk30 glib20 USE_KDE= archive attica auth codecs completion config configwidgets \ coreaddons dbusaddons decoration guiaddons i18n iconthemes \ jobwidgets kcmutils kio newstuff service widgetsaddons xmlgui \ ecm_build USE_QT= concurrent core dbus gui network svg widgets xml \ buildtools_build qmake_build testlib_build USE_XORG= xcursor .include diff --git a/x11-themes/plasma5-kde-gtk-config/distinfo b/x11-themes/plasma5-kde-gtk-config/distinfo index fa63edfa58b9..2e97a3e7b7e6 100644 --- a/x11-themes/plasma5-kde-gtk-config/distinfo +++ b/x11-themes/plasma5-kde-gtk-config/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1625602729 -SHA256 (KDE/plasma/5.22.3/kde-gtk-config-5.22.3.tar.xz) = c84bcdc88397e5db71285c6dca50ff495aa0b853c1ab3657aba4ca71170601d7 -SIZE (KDE/plasma/5.22.3/kde-gtk-config-5.22.3.tar.xz) = 70848 +TIMESTAMP = 1627399194 +SHA256 (KDE/plasma/5.22.4/kde-gtk-config-5.22.4.tar.xz) = a8df53067f2392e6c8e0d7a234771374d832a91c0fdfed1b3bd197797f5ea634 +SIZE (KDE/plasma/5.22.4/kde-gtk-config-5.22.4.tar.xz) = 70832 diff --git a/x11-themes/plasma5-oxygen/distinfo b/x11-themes/plasma5-oxygen/distinfo index 3f71e1f48cf1..a6a657fcd880 100644 --- a/x11-themes/plasma5-oxygen/distinfo +++ b/x11-themes/plasma5-oxygen/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1625602732 -SHA256 (KDE/plasma/5.22.3/oxygen-5.22.3.tar.xz) = a51ec2a3f51a27885f707aa087a7165a2aef3ac284353eafeaaeccef6211e4ba -SIZE (KDE/plasma/5.22.3/oxygen-5.22.3.tar.xz) = 4474612 +TIMESTAMP = 1627399196 +SHA256 (KDE/plasma/5.22.4/oxygen-5.22.4.tar.xz) = fcdf1aafde0748e81b82410fbc4ddb01f15f7a57ec17ef17e05d80e8339db0dc +SIZE (KDE/plasma/5.22.4/oxygen-5.22.4.tar.xz) = 4476840 diff --git a/x11-themes/plasma5-plasma-workspace-wallpapers/distinfo b/x11-themes/plasma5-plasma-workspace-wallpapers/distinfo index 738a1e5f0447..8654b54ee44f 100644 --- a/x11-themes/plasma5-plasma-workspace-wallpapers/distinfo +++ b/x11-themes/plasma5-plasma-workspace-wallpapers/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1625602755 -SHA256 (KDE/plasma/5.22.3/plasma-workspace-wallpapers-5.22.3.tar.xz) = e3e2ee7bc6cf46c8976644c15a7fc5bb96354c07840fca8a2da3fc9ddd375e75 -SIZE (KDE/plasma/5.22.3/plasma-workspace-wallpapers-5.22.3.tar.xz) = 51348192 +TIMESTAMP = 1627399198 +SHA256 (KDE/plasma/5.22.4/plasma-workspace-wallpapers-5.22.4.tar.xz) = d9da4dfea96c4aa1a7a9683f887573433777354691850ada62ed54c4221e7f29 +SIZE (KDE/plasma/5.22.4/plasma-workspace-wallpapers-5.22.4.tar.xz) = 51348292 diff --git a/x11-toolkits/plasma5-kdeplasma-addons/Makefile b/x11-toolkits/plasma5-kdeplasma-addons/Makefile index 76bbebc680ba..a2e884513065 100644 --- a/x11-toolkits/plasma5-kdeplasma-addons/Makefile +++ b/x11-toolkits/plasma5-kdeplasma-addons/Makefile @@ -1,43 +1,42 @@ PORTNAME= kdeplasma-addons DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= x11-toolkits kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 addons to improve the Plasma experience USES= cmake compiler:c++11-lib cpe gettext \ kde:5 pkgconfig qt:5 tar:xz USE_KDE= activities archive attica auth bookmarks codecs completion \ config configwidgets coreaddons crash emoticons guiaddons \ holidays i18n iconthemes init itemmodels itemviews jobwidgets kcmutils \ kdeclarative kio kross newstuff notifications package parts\ plasma-framework plasma-workspace runner service solid \ sonnet textwidgets unitconversion widgetsaddons windowsystem xmlgui \ ecm_build USE_QT= concurrent core dbus declarative graphicaleffects gui location network \ printsupport script webchannel widgets x11extras xml \ buildtools_build qmake_build OPTIONS_DEFINE= PURPOSE QTWEBENGINE OPTIONS_DEFAULT= PURPOSE OPTIONS_DEFAULT_amd64= QTWEBENGINE OPTIONS_DEFAULT_i386= QTWEBENGINE OPTIONS_SUB= YES PURPOSE_DESC= Enable 'QuickShare' applet PURPOSE_USE= KDE=purpose PURPOSE_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_KF5Purpose QTWEBENGINE_DESC= Add dependency on qt5-webengine QTWEBENGINE_USE= qt=webengine QTWEBENGINE_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_Qt5WebEngine .include .if ${PORT_OPTIONS:MQTWEBENGINE} DEPRECATED= Uses EOL Python 2.7 via www/qt5-webengine EXPIRATION_DATE=2021-06-23 .endif .include diff --git a/x11-toolkits/plasma5-kdeplasma-addons/distinfo b/x11-toolkits/plasma5-kdeplasma-addons/distinfo index 2d4b5100a50c..b23e09d6905d 100644 --- a/x11-toolkits/plasma5-kdeplasma-addons/distinfo +++ b/x11-toolkits/plasma5-kdeplasma-addons/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1625602756 -SHA256 (KDE/plasma/5.22.3/kdeplasma-addons-5.22.3.tar.xz) = d0a62c1d8a4d2fd66028520f7bfc07e532f966366f754d435a0a52a9d3a6a3c1 -SIZE (KDE/plasma/5.22.3/kdeplasma-addons-5.22.3.tar.xz) = 633168 +TIMESTAMP = 1627399200 +SHA256 (KDE/plasma/5.22.4/kdeplasma-addons-5.22.4.tar.xz) = 607206ef5153602433413a34202075dbb518299db094b0ad3b50b20f70258eba +SIZE (KDE/plasma/5.22.4/kdeplasma-addons-5.22.4.tar.xz) = 633948 diff --git a/x11-wm/plasma5-kdecoration/Makefile b/x11-wm/plasma5-kdecoration/Makefile index a0e233928964..8eed4e3a099b 100644 --- a/x11-wm/plasma5-kdecoration/Makefile +++ b/x11-wm/plasma5-kdecoration/Makefile @@ -1,18 +1,17 @@ PORTNAME= kdecoration DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= x11-wm kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 library to create window decorations LICENSE= LGPL21 USES= cmake compiler:c++11-lib cpe kde:5 qt:5 tar:xz USE_LDCONFIG= yes USE_KDE= i18n \ ecm_build USE_QT= core gui \ buildtools_build qmake_build testlib_build .include diff --git a/x11-wm/plasma5-kdecoration/distinfo b/x11-wm/plasma5-kdecoration/distinfo index 526e5e82271c..f17bdc7f18b1 100644 --- a/x11-wm/plasma5-kdecoration/distinfo +++ b/x11-wm/plasma5-kdecoration/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1625602757 -SHA256 (KDE/plasma/5.22.3/kdecoration-5.22.3.tar.xz) = b760c5e5a6baf927589f2c1e38937a7963f0df17831747a12583f933227efead -SIZE (KDE/plasma/5.22.3/kdecoration-5.22.3.tar.xz) = 47328 +TIMESTAMP = 1627399201 +SHA256 (KDE/plasma/5.22.4/kdecoration-5.22.4.tar.xz) = 90e9bfeb2bd6afdd86ef8b18370a04d3e2e01841def635d25b349551a7a68031 +SIZE (KDE/plasma/5.22.4/kdecoration-5.22.4.tar.xz) = 47348 diff --git a/x11-wm/plasma5-kwin/Makefile b/x11-wm/plasma5-kwin/Makefile index 6e6d90eb43ca..bf1364ac9ed3 100644 --- a/x11-wm/plasma5-kwin/Makefile +++ b/x11-wm/plasma5-kwin/Makefile @@ -1,51 +1,50 @@ PORTNAME= kwin DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= x11-wm kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 window manager LICENSE= GPLv2 LIB_DEPENDS= libXcursor.so:x11/libXcursor \ libdrm.so:graphics/libdrm \ libepoxy.so:graphics/libepoxy \ libepoll-shim.so:devel/libepoll-shim \ libfontconfig.so:x11-fonts/fontconfig \ libfreetype.so:print/freetype2 \ libinput.so:x11/libinput \ libudev.so:devel/libudev-devd \ liblcms2.so:graphics/lcms2 \ libwayland-cursor.so:graphics/wayland \ libxcb-cursor.so:x11/xcb-util-cursor \ libxcb-icccm.so:x11/xcb-util-wm \ libxcb-image.so:x11/xcb-util-image \ libxcb-keysyms.so:x11/xcb-util-keysyms \ libxkbcommon.so:x11/libxkbcommon BUILD_DEPENDS= ${LOCALBASE}/include/linux/input.h:devel/evdev-proto \ xwayland-devel>0:x11-servers/xwayland-devel RUN_DEPENDS= xwayland-devel>0:x11-servers/xwayland-devel USES= cmake compiler:c++11-lib cpe gettext gl gnome kde:5 pkgconfig python:3.5+,run \ qt:5 shebangfix tar:xz xorg USE_GL= egl USE_GNOME= glib20 USE_KDE= activities activities attica auth breeze codecs \ completion config configwidgets coreaddons crash decoration \ globalaccel i18n iconthemes idletime init \ jobwidgets kcmutils kdeclarative kio kscreenlocker \ newstuff notifications package plasma-framework plasma-wayland-protocols runner\ service sonnet textwidgets widgetsaddons windowsystem xmlgui \ kwayland-integration kwayland-server wayland \ doctools_build ecm_build USE_LDCONFIG= yes USE_QT= concurrent core dbus declarative gui multimedia network script \ sensors uiplugin uitools widgets x11extras xml \ buildtools_build qmake_build testlib_build \ quickcontrols2_run virtualkeyboard_run USE_XORG= ice sm x11 xcb xext xi SHEBANG_FILES= kconf_update/*.py \ kconf_update/*.pl .include diff --git a/x11-wm/plasma5-kwin/distinfo b/x11-wm/plasma5-kwin/distinfo index b5d0bf9926e3..1e7245dc70fc 100644 --- a/x11-wm/plasma5-kwin/distinfo +++ b/x11-wm/plasma5-kwin/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1625602761 -SHA256 (KDE/plasma/5.22.3/kwin-5.22.3.tar.xz) = bc995b6c74ebfad98819cb595f2622ecae24e5a23964e9e646da5418ee016d0e -SIZE (KDE/plasma/5.22.3/kwin-5.22.3.tar.xz) = 6446712 +TIMESTAMP = 1627399204 +SHA256 (KDE/plasma/5.22.4/kwin-5.22.4.tar.xz) = b02a1c4c1f85d11f1206d364ffdcf242ba658046cb80751f0d769e15151aa3f4 +SIZE (KDE/plasma/5.22.4/kwin-5.22.4.tar.xz) = 6454932 diff --git a/x11-wm/plasma5-kwin/pkg-plist b/x11-wm/plasma5-kwin/pkg-plist index 98889f5d7cc6..124473242369 100644 --- a/x11-wm/plasma5-kwin/pkg-plist +++ b/x11-wm/plasma5-kwin/pkg-plist @@ -1,1577 +1,1580 @@ bin/kwin_wayland bin/kwin_wayland_wrapper bin/kwin_x11 include/kwin_export.h include/kwinanimationeffect.h include/kwinconfig.h include/kwineffectquickview.h include/kwineffects.h include/kwineffects_export.h include/kwinglobals.h include/kwinglplatform.h include/kwingltexture.h include/kwinglutils.h include/kwinglutils_export.h include/kwinglutils_funcs.h include/kwinxrenderutils.h include/kwinxrenderutils_export.h lib/cmake/KWinDBusInterface/KWinDBusInterfaceConfig.cmake lib/cmake/KWinEffects/KWinEffectsConfig.cmake lib/cmake/KWinEffects/KWinEffectsConfigVersion.cmake lib/cmake/KWinEffects/KWinEffectsTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KWinEffects/KWinEffectsTargets.cmake lib/kconf_update_bin/kwin5_update_default_rules lib/libexec/kwin-applywindowdecoration lib/libexec/kwin_killer_helper lib/libexec/kwin_rules_dialog lib/libkcmkwincommon.so.%%KDE_PLASMA_VERSION%% lib/libkcmkwincommon.so.5 lib/libkwin.so.%%KDE_PLASMA_VERSION%% lib/libkwin.so.5 lib/libkwin4_effect_builtins.so lib/libkwin4_effect_builtins.so.1 lib/libkwin4_effect_builtins.so.1.0.0 lib/libkwineffects.so lib/libkwineffects.so.%%KDE_PLASMA_VERSION%% lib/libkwineffects.so.13 lib/libkwinglutils.so lib/libkwinglutils.so.%%KDE_PLASMA_VERSION%% lib/libkwinglutils.so.13 lib/libkwinxrenderutils.so lib/libkwinxrenderutils.so.%%KDE_PLASMA_VERSION%% lib/libkwinxrenderutils.so.13 lib/systemd/user/plasma-kwin_x11.service %%QT_PLUGINDIR%%/kcm_kwin_scripts.so %%QT_PLUGINDIR%%/kcm_kwinoptions.so %%QT_PLUGINDIR%%/kcm_kwinscreenedges.so %%QT_PLUGINDIR%%/kcm_kwintabbox.so %%QT_PLUGINDIR%%/kcm_kwintouchscreen.so %%QT_PLUGINDIR%%/kcms/kcm_kwin_effects.so %%QT_PLUGINDIR%%/kcms/kcm_kwin_virtualdesktops.so %%QT_PLUGINDIR%%/kcms/kcm_kwindecoration.so %%QT_PLUGINDIR%%/kcms/kcm_kwinrules.so %%QT_PLUGINDIR%%/kcms/kcm_virtualkeyboard.so %%QT_PLUGINDIR%%/kpackage/packagestructure/kwin_packagestructure_aurorae.so %%QT_PLUGINDIR%%/kpackage/packagestructure/kwin_packagestructure_decoration.so %%QT_PLUGINDIR%%/kpackage/packagestructure/kwin_packagestructure_effect.so %%QT_PLUGINDIR%%/kpackage/packagestructure/kwin_packagestructure_scripts.so %%QT_PLUGINDIR%%/kpackage/packagestructure/kwin_packagestructure_windowswitcher.so %%QT_PLUGINDIR%%/kwin/effects/configs/kcm_kwin4_genericscripted.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_blur_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_coverswitch_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_cube_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_cubeslide_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_desktopgrid_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_diminactive_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_flipswitch_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_glide_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_invert_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_lookingglass_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_magiclamp_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_magnifier_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_mouseclick_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_mousemark_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_presentwindows_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_resize_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_showfps_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_showpaint_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_slide_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_thumbnailaside_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_trackmouse_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_windowgeometry_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_wobblywindows_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_zoom_config.so %%QT_PLUGINDIR%%/kwin/plugins/colordintegration.so %%QT_PLUGINDIR%%/kwin/plugins/krunnerintegration.so %%QT_PLUGINDIR%%/kwin/plugins/libKWinNightColorPlugin.so %%QT_PLUGINDIR%%/kwincompositing.so %%QT_PLUGINDIR%%/org.kde.kdecoration2/kwin5_aurorae.so %%QT_PLUGINDIR%%/org.kde.kwin.platforms/KWinX11Platform.so %%QT_PLUGINDIR%%/org.kde.kwin.scenes/KWinSceneOpenGL.so %%QT_PLUGINDIR%%/org.kde.kwin.scenes/KWinSceneQPainter.so %%QT_PLUGINDIR%%/org.kde.kwin.scenes/KWinSceneXRender.so %%QT_PLUGINDIR%%/org.kde.kwin.waylandbackends/KWinWaylandDrmBackend.so %%QT_PLUGINDIR%%/org.kde.kwin.waylandbackends/KWinWaylandVirtualBackend.so %%QT_PLUGINDIR%%/org.kde.kwin.waylandbackends/KWinWaylandWaylandBackend.so %%QT_PLUGINDIR%%/org.kde.kwin.waylandbackends/KWinWaylandX11Backend.so %%QT_QMLDIR%%/org/kde/kwin/decoration/AppMenuButton.qml %%QT_QMLDIR%%/org/kde/kwin/decoration/ButtonGroup.qml %%QT_QMLDIR%%/org/kde/kwin/decoration/Decoration.qml %%QT_QMLDIR%%/org/kde/kwin/decoration/DecorationButton.qml %%QT_QMLDIR%%/org/kde/kwin/decoration/MenuButton.qml %%QT_QMLDIR%%/org/kde/kwin/decoration/libdecorationplugin.so %%QT_QMLDIR%%/org/kde/kwin/decoration/qmldir %%QT_QMLDIR%%/org/kde/kwin/decorations/plastik/libplastikplugin.so %%QT_QMLDIR%%/org/kde/kwin/decorations/plastik/qmldir %%QT_QMLDIR%%/org/kde/kwin/private/kdecoration/libkdecorationprivatedeclarative.so %%QT_QMLDIR%%/org/kde/kwin/private/kdecoration/qmldir %%DATADIR%%/aurorae/AppMenuButton.qml %%DATADIR%%/aurorae/AuroraeButton.qml %%DATADIR%%/aurorae/AuroraeButtonGroup.qml %%DATADIR%%/aurorae/AuroraeMaximizeButton.qml %%DATADIR%%/aurorae/Decoration.qml %%DATADIR%%/aurorae/DecorationButton.qml %%DATADIR%%/aurorae/MenuButton.qml %%DATADIR%%/aurorae/aurorae.qml %%DATADIR%%/cubecap.png %%DATADIR%%/decorations/kwin4_decoration_qml_plastik/contents/config/main.xml %%DATADIR%%/decorations/kwin4_decoration_qml_plastik/contents/ui/PlastikButton.qml %%DATADIR%%/decorations/kwin4_decoration_qml_plastik/contents/ui/config.ui %%DATADIR%%/decorations/kwin4_decoration_qml_plastik/contents/ui/main.qml %%DATADIR%%/decorations/kwin4_decoration_qml_plastik/metadata.desktop %%DATADIR%%/effects/desktopgrid/main.qml %%DATADIR%%/effects/kwin4_effect_dialogparent/contents/code/main.js %%DATADIR%%/effects/kwin4_effect_dialogparent/metadata.desktop %%DATADIR%%/effects/kwin4_effect_dialogparent/metadata.json %%DATADIR%%/effects/kwin4_effect_dimscreen/contents/code/main.js %%DATADIR%%/effects/kwin4_effect_dimscreen/metadata.desktop %%DATADIR%%/effects/kwin4_effect_dimscreen/metadata.json %%DATADIR%%/effects/kwin4_effect_eyeonscreen/contents/code/main.js %%DATADIR%%/effects/kwin4_effect_eyeonscreen/metadata.desktop %%DATADIR%%/effects/kwin4_effect_eyeonscreen/metadata.json %%DATADIR%%/effects/kwin4_effect_fade/contents/code/main.js %%DATADIR%%/effects/kwin4_effect_fade/contents/config/main.xml %%DATADIR%%/effects/kwin4_effect_fade/metadata.desktop %%DATADIR%%/effects/kwin4_effect_fade/metadata.json %%DATADIR%%/effects/kwin4_effect_fadedesktop/contents/code/main.js %%DATADIR%%/effects/kwin4_effect_fadedesktop/metadata.desktop %%DATADIR%%/effects/kwin4_effect_fadedesktop/metadata.json %%DATADIR%%/effects/kwin4_effect_fadingpopups/contents/code/main.js %%DATADIR%%/effects/kwin4_effect_fadingpopups/metadata.desktop %%DATADIR%%/effects/kwin4_effect_fadingpopups/metadata.json %%DATADIR%%/effects/kwin4_effect_frozenapp/contents/code/main.js %%DATADIR%%/effects/kwin4_effect_frozenapp/metadata.desktop %%DATADIR%%/effects/kwin4_effect_frozenapp/metadata.json %%DATADIR%%/effects/kwin4_effect_fullscreen/contents/code/fullscreen.js %%DATADIR%%/effects/kwin4_effect_fullscreen/metadata.desktop %%DATADIR%%/effects/kwin4_effect_fullscreen/metadata.json %%DATADIR%%/effects/kwin4_effect_login/contents/code/main.js %%DATADIR%%/effects/kwin4_effect_login/contents/config/main.xml %%DATADIR%%/effects/kwin4_effect_login/contents/ui/config.ui %%DATADIR%%/effects/kwin4_effect_login/metadata.desktop %%DATADIR%%/effects/kwin4_effect_login/metadata.json %%DATADIR%%/effects/kwin4_effect_logout/contents/code/main.js %%DATADIR%%/effects/kwin4_effect_logout/metadata.desktop %%DATADIR%%/effects/kwin4_effect_logout/metadata.json %%DATADIR%%/effects/kwin4_effect_maximize/contents/code/maximize.js %%DATADIR%%/effects/kwin4_effect_maximize/metadata.desktop %%DATADIR%%/effects/kwin4_effect_maximize/metadata.json %%DATADIR%%/effects/kwin4_effect_morphingpopups/contents/code/morphingpopups.js %%DATADIR%%/effects/kwin4_effect_morphingpopups/metadata.desktop %%DATADIR%%/effects/kwin4_effect_morphingpopups/metadata.json %%DATADIR%%/effects/kwin4_effect_scale/contents/code/main.js %%DATADIR%%/effects/kwin4_effect_scale/contents/config/main.xml %%DATADIR%%/effects/kwin4_effect_scale/contents/ui/config.ui %%DATADIR%%/effects/kwin4_effect_scale/metadata.desktop %%DATADIR%%/effects/kwin4_effect_scale/metadata.json %%DATADIR%%/effects/kwin4_effect_sessionquit/contents/code/main.js %%DATADIR%%/effects/kwin4_effect_sessionquit/metadata.desktop %%DATADIR%%/effects/kwin4_effect_sessionquit/metadata.json %%DATADIR%%/effects/kwin4_effect_squash/contents/code/main.js %%DATADIR%%/effects/kwin4_effect_squash/metadata.desktop %%DATADIR%%/effects/kwin4_effect_squash/metadata.json %%DATADIR%%/effects/kwin4_effect_translucency/contents/code/main.js %%DATADIR%%/effects/kwin4_effect_translucency/contents/config/main.xml %%DATADIR%%/effects/kwin4_effect_translucency/contents/ui/config.ui %%DATADIR%%/effects/kwin4_effect_translucency/metadata.desktop %%DATADIR%%/effects/kwin4_effect_translucency/metadata.json %%DATADIR%%/effects/kwin4_effect_windowaperture/contents/code/main.js %%DATADIR%%/effects/kwin4_effect_windowaperture/metadata.desktop %%DATADIR%%/effects/kwin4_effect_windowaperture/metadata.json %%DATADIR%%/effects/presentwindows/main.qml %%DATADIR%%/kcm_kwintabbox/dolphin.png %%DATADIR%%/kcm_kwintabbox/kmail.png %%DATADIR%%/kcm_kwintabbox/konqueror.png %%DATADIR%%/kcm_kwintabbox/systemsettings.png %%DATADIR%%/onscreennotification/plasma/dummydata/osd.qml %%DATADIR%%/onscreennotification/plasma/main.qml %%DATADIR%%/outline/plasma/outline.qml %%DATADIR%%/scripts/desktopchangeosd/contents/ui/main.qml %%DATADIR%%/scripts/desktopchangeosd/contents/ui/osd.qml %%DATADIR%%/scripts/desktopchangeosd/metadata.desktop %%DATADIR%%/scripts/desktopchangeosd/metadata.json %%DATADIR%%/scripts/minimizeall/contents/code/main.js %%DATADIR%%/scripts/minimizeall/metadata.desktop %%DATADIR%%/scripts/minimizeall/metadata.json %%DATADIR%%/scripts/synchronizeskipswitcher/contents/code/main.js %%DATADIR%%/scripts/synchronizeskipswitcher/metadata.desktop %%DATADIR%%/scripts/synchronizeskipswitcher/metadata.json %%DATADIR%%/scripts/videowall/contents/code/main.js %%DATADIR%%/scripts/videowall/contents/config/main.xml %%DATADIR%%/scripts/videowall/contents/ui/config.ui %%DATADIR%%/scripts/videowall/metadata.desktop %%DATADIR%%/scripts/videowall/metadata.json %%DATADIR%%/tm_inner.png %%DATADIR%%/tm_outer.png share/config.kcfg/kwin.kcfg share/config.kcfg/kwin_colorcorrect.kcfg share/config.kcfg/kwindecorationsettings.kcfg share/config.kcfg/virtualdesktopssettings.kcfg share/dbus-1/interfaces/org.kde.KWin.Plugins.xml share/dbus-1/interfaces/org.kde.KWin.VirtualDesktopManager.xml share/dbus-1/interfaces/org.kde.KWin.xml share/dbus-1/interfaces/org.kde.kwin.ColorCorrect.xml share/dbus-1/interfaces/org.kde.kwin.Compositing.xml share/dbus-1/interfaces/org.kde.kwin.Effects.xml share/dbus-1/interfaces/org.kde.kwin.VirtualKeyboard.xml share/doc/HTML/ca/kcontrol/desktop/index.cache.bz2 share/doc/HTML/ca/kcontrol/desktop/index.docbook share/doc/HTML/ca/kcontrol/kwindecoration/button.png share/doc/HTML/ca/kcontrol/kwindecoration/decoration.png share/doc/HTML/ca/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/ca/kcontrol/kwindecoration/index.docbook share/doc/HTML/ca/kcontrol/kwindecoration/main.png share/doc/HTML/ca/kcontrol/kwineffects/index.cache.bz2 share/doc/HTML/ca/kcontrol/kwineffects/index.docbook share/doc/HTML/ca/kcontrol/kwinscreenedges/index.cache.bz2 share/doc/HTML/ca/kcontrol/kwinscreenedges/index.docbook share/doc/HTML/ca/kcontrol/kwintabbox/index.cache.bz2 share/doc/HTML/ca/kcontrol/kwintabbox/index.docbook share/doc/HTML/ca/kcontrol/kwintouchscreen/index.cache.bz2 share/doc/HTML/ca/kcontrol/kwintouchscreen/index.docbook share/doc/HTML/ca/kcontrol/kwinvirtualkeyboard/index.cache.bz2 share/doc/HTML/ca/kcontrol/kwinvirtualkeyboard/index.docbook share/doc/HTML/ca/kcontrol/windowbehaviour/index.cache.bz2 share/doc/HTML/ca/kcontrol/windowbehaviour/index.docbook share/doc/HTML/ca/kcontrol/windowspecific/index.cache.bz2 share/doc/HTML/ca/kcontrol/windowspecific/index.docbook share/doc/HTML/de/kcontrol/desktop/index.cache.bz2 share/doc/HTML/de/kcontrol/desktop/index.docbook share/doc/HTML/de/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/de/kcontrol/kwindecoration/index.docbook share/doc/HTML/de/kcontrol/kwineffects/index.cache.bz2 share/doc/HTML/de/kcontrol/kwineffects/index.docbook share/doc/HTML/de/kcontrol/kwinscreenedges/index.cache.bz2 share/doc/HTML/de/kcontrol/kwinscreenedges/index.docbook share/doc/HTML/de/kcontrol/kwintabbox/index.cache.bz2 share/doc/HTML/de/kcontrol/kwintabbox/index.docbook share/doc/HTML/de/kcontrol/kwintouchscreen/index.cache.bz2 share/doc/HTML/de/kcontrol/kwintouchscreen/index.docbook share/doc/HTML/de/kcontrol/windowbehaviour/index.cache.bz2 share/doc/HTML/de/kcontrol/windowbehaviour/index.docbook share/doc/HTML/de/kcontrol/windowspecific/index.cache.bz2 share/doc/HTML/de/kcontrol/windowspecific/index.docbook share/doc/HTML/en/kcontrol/desktop/index.cache.bz2 share/doc/HTML/en/kcontrol/desktop/index.docbook share/doc/HTML/en/kcontrol/kwindecoration/button.png share/doc/HTML/en/kcontrol/kwindecoration/configure.png share/doc/HTML/en/kcontrol/kwindecoration/decoration.png share/doc/HTML/en/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/en/kcontrol/kwindecoration/index.docbook share/doc/HTML/en/kcontrol/kwindecoration/main.png share/doc/HTML/en/kcontrol/kwineffects/configure-effects.png share/doc/HTML/en/kcontrol/kwineffects/dialog-information.png share/doc/HTML/en/kcontrol/kwineffects/index.cache.bz2 share/doc/HTML/en/kcontrol/kwineffects/index.docbook share/doc/HTML/en/kcontrol/kwineffects/video.png share/doc/HTML/en/kcontrol/kwinscreenedges/index.cache.bz2 share/doc/HTML/en/kcontrol/kwinscreenedges/index.docbook share/doc/HTML/en/kcontrol/kwintabbox/index.cache.bz2 share/doc/HTML/en/kcontrol/kwintabbox/index.docbook share/doc/HTML/en/kcontrol/kwintouchscreen/index.cache.bz2 share/doc/HTML/en/kcontrol/kwintouchscreen/index.docbook share/doc/HTML/en/kcontrol/kwinvirtualkeyboard/index.cache.bz2 share/doc/HTML/en/kcontrol/kwinvirtualkeyboard/index.docbook share/doc/HTML/en/kcontrol/windowbehaviour/index.cache.bz2 share/doc/HTML/en/kcontrol/windowbehaviour/index.docbook share/doc/HTML/en/kcontrol/windowspecific/Face-smile.png share/doc/HTML/en/kcontrol/windowspecific/akgregator-info.png share/doc/HTML/en/kcontrol/windowspecific/akregator-attributes.png share/doc/HTML/en/kcontrol/windowspecific/akregator-fav.png share/doc/HTML/en/kcontrol/windowspecific/config-win-behavior.png share/doc/HTML/en/kcontrol/windowspecific/emacs-attribute.png share/doc/HTML/en/kcontrol/windowspecific/emacs-info.png share/doc/HTML/en/kcontrol/windowspecific/focus-stealing-pop2top-attribute.png share/doc/HTML/en/kcontrol/windowspecific/index.cache.bz2 share/doc/HTML/en/kcontrol/windowspecific/index.docbook share/doc/HTML/en/kcontrol/windowspecific/knotes-attribute.png share/doc/HTML/en/kcontrol/windowspecific/knotes-info.png share/doc/HTML/en/kcontrol/windowspecific/kopete-attribute-2.png share/doc/HTML/en/kcontrol/windowspecific/kopete-chat-attribute.png share/doc/HTML/en/kcontrol/windowspecific/kopete-chat-info.png share/doc/HTML/en/kcontrol/windowspecific/kopete-info.png share/doc/HTML/en/kcontrol/windowspecific/kwin-detect-window.png share/doc/HTML/en/kcontrol/windowspecific/kwin-kopete-rules.png share/doc/HTML/en/kcontrol/windowspecific/kwin-rule-editor.png share/doc/HTML/en/kcontrol/windowspecific/kwin-rules-main-n-akregator.png share/doc/HTML/en/kcontrol/windowspecific/kwin-rules-main.png share/doc/HTML/en/kcontrol/windowspecific/kwin-rules-ordering.png share/doc/HTML/en/kcontrol/windowspecific/kwin-window-attributes.png share/doc/HTML/en/kcontrol/windowspecific/kwin-window-matching.png share/doc/HTML/en/kcontrol/windowspecific/pager-4-desktops.png share/doc/HTML/en/kcontrol/windowspecific/tbird-compose-attribute.png share/doc/HTML/en/kcontrol/windowspecific/tbird-compose-info.png share/doc/HTML/en/kcontrol/windowspecific/tbird-main-attribute.png share/doc/HTML/en/kcontrol/windowspecific/tbird-main-info.png share/doc/HTML/en/kcontrol/windowspecific/tbird-reminder-attribute-2.png share/doc/HTML/en/kcontrol/windowspecific/tbird-reminder-info.png share/doc/HTML/en/kcontrol/windowspecific/window-matching-emacs.png share/doc/HTML/en/kcontrol/windowspecific/window-matching-init.png share/doc/HTML/en/kcontrol/windowspecific/window-matching-knotes.png share/doc/HTML/en/kcontrol/windowspecific/window-matching-kopete-chat.png share/doc/HTML/en/kcontrol/windowspecific/window-matching-kopete.png share/doc/HTML/en/kcontrol/windowspecific/window-matching-ready-akregator.png share/doc/HTML/en/kcontrol/windowspecific/window-matching-tbird-compose.png share/doc/HTML/en/kcontrol/windowspecific/window-matching-tbird-main.png share/doc/HTML/en/kcontrol/windowspecific/window-matching-tbird-reminder.png share/doc/HTML/es/kcontrol/desktop/index.cache.bz2 share/doc/HTML/es/kcontrol/desktop/index.docbook share/doc/HTML/fr/kcontrol/desktop/index.cache.bz2 share/doc/HTML/fr/kcontrol/desktop/index.docbook share/doc/HTML/fr/kcontrol/kwinscreenedges/index.cache.bz2 share/doc/HTML/fr/kcontrol/kwinscreenedges/index.docbook share/doc/HTML/fr/kcontrol/kwintabbox/index.cache.bz2 share/doc/HTML/fr/kcontrol/kwintabbox/index.docbook share/doc/HTML/fr/kcontrol/windowspecific/index.cache.bz2 share/doc/HTML/fr/kcontrol/windowspecific/index.docbook share/doc/HTML/id/kcontrol/desktop/index.cache.bz2 share/doc/HTML/id/kcontrol/desktop/index.docbook share/doc/HTML/id/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/id/kcontrol/kwindecoration/index.docbook share/doc/HTML/id/kcontrol/kwineffects/index.cache.bz2 share/doc/HTML/id/kcontrol/kwineffects/index.docbook share/doc/HTML/id/kcontrol/kwinscreenedges/index.cache.bz2 share/doc/HTML/id/kcontrol/kwinscreenedges/index.docbook share/doc/HTML/id/kcontrol/kwintabbox/index.cache.bz2 share/doc/HTML/id/kcontrol/kwintabbox/index.docbook share/doc/HTML/id/kcontrol/windowbehaviour/index.cache.bz2 share/doc/HTML/id/kcontrol/windowbehaviour/index.docbook share/doc/HTML/id/kcontrol/windowspecific/index.cache.bz2 share/doc/HTML/id/kcontrol/windowspecific/index.docbook share/doc/HTML/it/kcontrol/desktop/index.cache.bz2 share/doc/HTML/it/kcontrol/desktop/index.docbook share/doc/HTML/it/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/it/kcontrol/kwindecoration/index.docbook share/doc/HTML/it/kcontrol/kwineffects/index.cache.bz2 share/doc/HTML/it/kcontrol/kwineffects/index.docbook share/doc/HTML/it/kcontrol/kwinscreenedges/index.cache.bz2 share/doc/HTML/it/kcontrol/kwinscreenedges/index.docbook share/doc/HTML/it/kcontrol/kwintabbox/index.cache.bz2 share/doc/HTML/it/kcontrol/kwintabbox/index.docbook share/doc/HTML/it/kcontrol/kwintouchscreen/index.cache.bz2 share/doc/HTML/it/kcontrol/kwintouchscreen/index.docbook share/doc/HTML/it/kcontrol/kwinvirtualkeyboard/index.cache.bz2 share/doc/HTML/it/kcontrol/kwinvirtualkeyboard/index.docbook share/doc/HTML/it/kcontrol/windowbehaviour/index.cache.bz2 share/doc/HTML/it/kcontrol/windowbehaviour/index.docbook share/doc/HTML/it/kcontrol/windowspecific/index.cache.bz2 share/doc/HTML/it/kcontrol/windowspecific/index.docbook share/doc/HTML/nl/kcontrol/desktop/index.cache.bz2 share/doc/HTML/nl/kcontrol/desktop/index.docbook share/doc/HTML/nl/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/nl/kcontrol/kwindecoration/index.docbook share/doc/HTML/nl/kcontrol/kwineffects/index.cache.bz2 share/doc/HTML/nl/kcontrol/kwineffects/index.docbook share/doc/HTML/nl/kcontrol/kwinscreenedges/index.cache.bz2 share/doc/HTML/nl/kcontrol/kwinscreenedges/index.docbook share/doc/HTML/nl/kcontrol/kwintabbox/index.cache.bz2 share/doc/HTML/nl/kcontrol/kwintabbox/index.docbook share/doc/HTML/nl/kcontrol/kwintouchscreen/index.cache.bz2 share/doc/HTML/nl/kcontrol/kwintouchscreen/index.docbook share/doc/HTML/nl/kcontrol/kwinvirtualkeyboard/index.cache.bz2 share/doc/HTML/nl/kcontrol/kwinvirtualkeyboard/index.docbook share/doc/HTML/nl/kcontrol/windowbehaviour/index.cache.bz2 share/doc/HTML/nl/kcontrol/windowbehaviour/index.docbook share/doc/HTML/nl/kcontrol/windowspecific/index.cache.bz2 share/doc/HTML/nl/kcontrol/windowspecific/index.docbook share/doc/HTML/pt/kcontrol/desktop/index.cache.bz2 share/doc/HTML/pt/kcontrol/desktop/index.docbook share/doc/HTML/pt/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/pt/kcontrol/kwindecoration/index.docbook share/doc/HTML/pt/kcontrol/kwineffects/index.cache.bz2 share/doc/HTML/pt/kcontrol/kwineffects/index.docbook share/doc/HTML/pt/kcontrol/kwinscreenedges/index.cache.bz2 share/doc/HTML/pt/kcontrol/kwinscreenedges/index.docbook share/doc/HTML/pt/kcontrol/kwintabbox/index.cache.bz2 share/doc/HTML/pt/kcontrol/kwintabbox/index.docbook share/doc/HTML/pt/kcontrol/windowbehaviour/index.cache.bz2 share/doc/HTML/pt/kcontrol/windowbehaviour/index.docbook share/doc/HTML/pt/kcontrol/windowspecific/index.cache.bz2 share/doc/HTML/pt/kcontrol/windowspecific/index.docbook share/doc/HTML/pt_BR/kcontrol/desktop/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/desktop/index.docbook share/doc/HTML/pt_BR/kcontrol/kwindecoration/configure.png share/doc/HTML/pt_BR/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/kwindecoration/index.docbook share/doc/HTML/pt_BR/kcontrol/kwinscreenedges/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/kwinscreenedges/index.docbook share/doc/HTML/pt_BR/kcontrol/kwintabbox/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/kwintabbox/index.docbook share/doc/HTML/pt_BR/kcontrol/windowbehaviour/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/windowbehaviour/index.docbook share/doc/HTML/pt_BR/kcontrol/windowspecific/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/windowspecific/index.docbook share/doc/HTML/ru/kcontrol/desktop/index.cache.bz2 share/doc/HTML/ru/kcontrol/desktop/index.docbook share/doc/HTML/ru/kcontrol/kwindecoration/button.png share/doc/HTML/ru/kcontrol/kwindecoration/configure.png share/doc/HTML/ru/kcontrol/kwindecoration/decoration.png share/doc/HTML/ru/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/ru/kcontrol/kwindecoration/index.docbook share/doc/HTML/ru/kcontrol/kwindecoration/main.png share/doc/HTML/ru/kcontrol/kwineffects/index.cache.bz2 share/doc/HTML/ru/kcontrol/kwineffects/index.docbook share/doc/HTML/ru/kcontrol/kwinscreenedges/index.cache.bz2 share/doc/HTML/ru/kcontrol/kwinscreenedges/index.docbook share/doc/HTML/ru/kcontrol/kwintabbox/index.cache.bz2 share/doc/HTML/ru/kcontrol/kwintabbox/index.docbook share/doc/HTML/ru/kcontrol/windowbehaviour/index.cache.bz2 share/doc/HTML/ru/kcontrol/windowbehaviour/index.docbook share/doc/HTML/sr/kcontrol/desktop/index.cache.bz2 share/doc/HTML/sr/kcontrol/desktop/index.docbook share/doc/HTML/sr@latin/kcontrol/desktop/index.cache.bz2 share/doc/HTML/sr@latin/kcontrol/desktop/index.docbook share/doc/HTML/sv/kcontrol/desktop/index.cache.bz2 share/doc/HTML/sv/kcontrol/desktop/index.docbook share/doc/HTML/sv/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/sv/kcontrol/kwindecoration/index.docbook share/doc/HTML/sv/kcontrol/kwineffects/index.cache.bz2 share/doc/HTML/sv/kcontrol/kwineffects/index.docbook share/doc/HTML/sv/kcontrol/kwinscreenedges/index.cache.bz2 share/doc/HTML/sv/kcontrol/kwinscreenedges/index.docbook share/doc/HTML/sv/kcontrol/kwintabbox/index.cache.bz2 share/doc/HTML/sv/kcontrol/kwintabbox/index.docbook share/doc/HTML/sv/kcontrol/kwintouchscreen/index.cache.bz2 share/doc/HTML/sv/kcontrol/kwintouchscreen/index.docbook share/doc/HTML/sv/kcontrol/kwinvirtualkeyboard/index.cache.bz2 share/doc/HTML/sv/kcontrol/kwinvirtualkeyboard/index.docbook share/doc/HTML/sv/kcontrol/windowbehaviour/index.cache.bz2 share/doc/HTML/sv/kcontrol/windowbehaviour/index.docbook share/doc/HTML/sv/kcontrol/windowspecific/index.cache.bz2 share/doc/HTML/sv/kcontrol/windowspecific/index.docbook share/doc/HTML/uk/kcontrol/desktop/index.cache.bz2 share/doc/HTML/uk/kcontrol/desktop/index.docbook share/doc/HTML/uk/kcontrol/kwindecoration/button.png share/doc/HTML/uk/kcontrol/kwindecoration/decoration.png share/doc/HTML/uk/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/uk/kcontrol/kwindecoration/index.docbook share/doc/HTML/uk/kcontrol/kwindecoration/main.png share/doc/HTML/uk/kcontrol/kwineffects/index.cache.bz2 share/doc/HTML/uk/kcontrol/kwineffects/index.docbook share/doc/HTML/uk/kcontrol/kwinscreenedges/index.cache.bz2 share/doc/HTML/uk/kcontrol/kwinscreenedges/index.docbook share/doc/HTML/uk/kcontrol/kwintabbox/index.cache.bz2 share/doc/HTML/uk/kcontrol/kwintabbox/index.docbook share/doc/HTML/uk/kcontrol/kwintouchscreen/index.cache.bz2 share/doc/HTML/uk/kcontrol/kwintouchscreen/index.docbook share/doc/HTML/uk/kcontrol/kwinvirtualkeyboard/index.cache.bz2 share/doc/HTML/uk/kcontrol/kwinvirtualkeyboard/index.docbook share/doc/HTML/uk/kcontrol/windowbehaviour/index.cache.bz2 share/doc/HTML/uk/kcontrol/windowbehaviour/index.docbook share/doc/HTML/uk/kcontrol/windowspecific/index.cache.bz2 share/doc/HTML/uk/kcontrol/windowspecific/index.docbook share/icons/hicolor/16x16/apps/kwin.png share/icons/hicolor/32x32/apps/kwin.png share/icons/hicolor/48x48/apps/kwin.png share/icons/hicolor/scalable/apps/kwin.svgz share/kconf_update/kwin-5.16-auto-bordersize.sh share/kconf_update/kwin-5.18-move-animspeed.py share/kconf_update/kwin-5.21-desktop-grid-click-behavior.py share/kconf_update/kwin-5.21-no-swap-encourage.py share/kconf_update/kwin.upd share/kconf_update/kwinrules-5.19-placement.pl share/kconf_update/kwinrules.upd share/knotifications5/kwin.notifyrc share/knsrcfiles/aurorae.knsrc share/knsrcfiles/kwineffect.knsrc share/knsrcfiles/kwinscripts.knsrc share/knsrcfiles/kwinswitcher.knsrc share/knsrcfiles/window-decorations.knsrc share/kpackage/kcms/kcm_kwin_effects/contents/ui/Effect.qml share/kpackage/kcms/kcm_kwin_effects/contents/ui/Video.qml share/kpackage/kcms/kcm_kwin_effects/contents/ui/main.qml share/kpackage/kcms/kcm_kwin_effects/metadata.desktop share/kpackage/kcms/kcm_kwin_effects/metadata.json share/kpackage/kcms/kcm_kwin_virtualdesktops/contents/ui/main.qml share/kpackage/kcms/kcm_kwin_virtualdesktops/metadata.desktop share/kpackage/kcms/kcm_kwin_virtualdesktops/metadata.json share/kpackage/kcms/kcm_kwindecoration/contents/ui/ButtonGroup.qml share/kpackage/kcms/kcm_kwindecoration/contents/ui/Buttons.qml share/kpackage/kcms/kcm_kwindecoration/contents/ui/Themes.qml share/kpackage/kcms/kcm_kwindecoration/contents/ui/main.qml share/kpackage/kcms/kcm_kwindecoration/metadata.desktop share/kpackage/kcms/kcm_kwindecoration/metadata.json share/kpackage/kcms/kcm_kwinrules/contents/ui/FileDialogLoader.qml share/kpackage/kcms/kcm_kwinrules/contents/ui/OptionsComboBox.qml share/kpackage/kcms/kcm_kwinrules/contents/ui/RuleItemDelegate.qml share/kpackage/kcms/kcm_kwinrules/contents/ui/RulesEditor.qml share/kpackage/kcms/kcm_kwinrules/contents/ui/RulesList.qml share/kpackage/kcms/kcm_kwinrules/contents/ui/ValueEditor.qml share/kpackage/kcms/kcm_kwinrules/metadata.desktop share/kpackage/kcms/kcm_kwinrules/metadata.json share/kpackage/kcms/kcm_virtualkeyboard/contents/ui/main.qml share/kpackage/kcms/kcm_virtualkeyboard/metadata.desktop share/kpackage/kcms/kcm_virtualkeyboard/metadata.json share/krunner/dbusplugins/kwin-runner-windows.desktop share/kservices5/kcm_kwin_effects.desktop share/kservices5/kcm_kwin_virtualdesktops.desktop share/kservices5/kcm_kwinrules.desktop share/kservices5/kcm_virtualkeyboard.desktop share/kservices5/kwin-script-videowall.desktop share/kservices5/kwin/kwin4_decoration_qml_plastik.desktop share/kservices5/kwinactions.desktop share/kservices5/kwinadvanced.desktop share/kservices5/kwincompositing.desktop share/kservices5/kwindecoration.desktop share/kservices5/kwinfocus.desktop share/kservices5/kwinmoving.desktop share/kservices5/kwinoptions.desktop share/kservices5/kwinscreenedges.desktop share/kservices5/kwinscripts.desktop share/kservices5/kwintabbox.desktop share/kservices5/kwintouchscreen.desktop share/kservicetypes5/kwindecoration.desktop share/kservicetypes5/kwindesktopswitcher.desktop share/kservicetypes5/kwineffect.desktop share/kservicetypes5/kwinscript.desktop share/kservicetypes5/kwinwindowswitcher.desktop share/locale/af/LC_MESSAGES/kcm_kwindecoration.mo share/locale/af/LC_MESSAGES/kcm_kwinrules.mo share/locale/af/LC_MESSAGES/kcmkwm.mo share/locale/af/LC_MESSAGES/kwin.mo share/locale/af/LC_MESSAGES/kwin_clients.mo share/locale/ar/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/ar/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ar/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ar/LC_MESSAGES/kcm_kwinrules.mo share/locale/ar/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ar/LC_MESSAGES/kcmkwincompositing.mo share/locale/ar/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ar/LC_MESSAGES/kcmkwm.mo share/locale/ar/LC_MESSAGES/kwin.mo share/locale/ar/LC_MESSAGES/kwin_clients.mo share/locale/ar/LC_MESSAGES/kwin_effects.mo share/locale/ar/LC_MESSAGES/kwin_scripting.mo share/locale/as/LC_MESSAGES/kwin.mo share/locale/ast/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/ast/LC_MESSAGES/kcm_kwin_effects.mo share/locale/ast/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ast/LC_MESSAGES/kcmkwincompositing.mo share/locale/ast/LC_MESSAGES/kwin.mo share/locale/ast/LC_MESSAGES/kwin_effects.mo share/locale/az/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/az/LC_MESSAGES/kcm_kwin_effects.mo share/locale/az/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/az/LC_MESSAGES/kcm_kwindecoration.mo share/locale/az/LC_MESSAGES/kcm_kwinrules.mo share/locale/az/LC_MESSAGES/kcm_kwintabbox.mo share/locale/az/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/az/LC_MESSAGES/kcmkwincommon.mo share/locale/az/LC_MESSAGES/kcmkwincompositing.mo share/locale/az/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/az/LC_MESSAGES/kcmkwm.mo share/locale/az/LC_MESSAGES/kwin.mo share/locale/az/LC_MESSAGES/kwin_clients.mo share/locale/az/LC_MESSAGES/kwin_effects.mo share/locale/az/LC_MESSAGES/kwin_scripting.mo share/locale/az/LC_MESSAGES/kwin_scripts.mo share/locale/be/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/be/LC_MESSAGES/kcm_kwindecoration.mo share/locale/be/LC_MESSAGES/kcm_kwinrules.mo share/locale/be/LC_MESSAGES/kcmkwincompositing.mo share/locale/be/LC_MESSAGES/kcmkwm.mo share/locale/be/LC_MESSAGES/kwin.mo share/locale/be/LC_MESSAGES/kwin_clients.mo share/locale/be/LC_MESSAGES/kwin_effects.mo share/locale/be@latin/LC_MESSAGES/kwin.mo share/locale/bg/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/bg/LC_MESSAGES/kcm_kwindecoration.mo share/locale/bg/LC_MESSAGES/kcm_kwinrules.mo share/locale/bg/LC_MESSAGES/kcm_kwintabbox.mo share/locale/bg/LC_MESSAGES/kcmkwincompositing.mo share/locale/bg/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/bg/LC_MESSAGES/kcmkwm.mo share/locale/bg/LC_MESSAGES/kwin.mo share/locale/bg/LC_MESSAGES/kwin_clients.mo share/locale/bg/LC_MESSAGES/kwin_effects.mo share/locale/bn/LC_MESSAGES/kcmkwm.mo share/locale/bn/LC_MESSAGES/kwin.mo share/locale/bn/LC_MESSAGES/kwin_effects.mo share/locale/bn_IN/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/bn_IN/LC_MESSAGES/kcm_kwindecoration.mo share/locale/bn_IN/LC_MESSAGES/kcm_kwinrules.mo share/locale/bn_IN/LC_MESSAGES/kcmkwm.mo share/locale/bn_IN/LC_MESSAGES/kwin.mo share/locale/bn_IN/LC_MESSAGES/kwin_clients.mo share/locale/bn_IN/LC_MESSAGES/kwin_effects.mo share/locale/br/LC_MESSAGES/kcm_kwindecoration.mo share/locale/br/LC_MESSAGES/kcm_kwinrules.mo share/locale/br/LC_MESSAGES/kcmkwm.mo share/locale/br/LC_MESSAGES/kwin.mo share/locale/br/LC_MESSAGES/kwin_clients.mo share/locale/bs/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/bs/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/bs/LC_MESSAGES/kcm_kwindecoration.mo share/locale/bs/LC_MESSAGES/kcm_kwinrules.mo share/locale/bs/LC_MESSAGES/kcm_kwintabbox.mo share/locale/bs/LC_MESSAGES/kcmkwincompositing.mo share/locale/bs/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/bs/LC_MESSAGES/kcmkwm.mo share/locale/bs/LC_MESSAGES/kwin.mo share/locale/bs/LC_MESSAGES/kwin_clients.mo share/locale/bs/LC_MESSAGES/kwin_effects.mo share/locale/bs/LC_MESSAGES/kwin_scripting.mo share/locale/ca/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/ca/LC_MESSAGES/kcm_kwin_effects.mo share/locale/ca/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ca/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ca/LC_MESSAGES/kcm_kwinrules.mo share/locale/ca/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ca/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/ca/LC_MESSAGES/kcmkwincommon.mo share/locale/ca/LC_MESSAGES/kcmkwincompositing.mo share/locale/ca/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ca/LC_MESSAGES/kcmkwm.mo share/locale/ca/LC_MESSAGES/kwin.mo share/locale/ca/LC_MESSAGES/kwin_clients.mo share/locale/ca/LC_MESSAGES/kwin_effects.mo share/locale/ca/LC_MESSAGES/kwin_scripting.mo share/locale/ca/LC_MESSAGES/kwin_scripts.mo share/locale/ca@valencia/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/ca@valencia/LC_MESSAGES/kcm_kwin_effects.mo share/locale/ca@valencia/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ca@valencia/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ca@valencia/LC_MESSAGES/kcm_kwinrules.mo share/locale/ca@valencia/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ca@valencia/LC_MESSAGES/kcmkwincommon.mo share/locale/ca@valencia/LC_MESSAGES/kcmkwincompositing.mo share/locale/ca@valencia/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ca@valencia/LC_MESSAGES/kcmkwm.mo share/locale/ca@valencia/LC_MESSAGES/kwin.mo share/locale/ca@valencia/LC_MESSAGES/kwin_clients.mo share/locale/ca@valencia/LC_MESSAGES/kwin_effects.mo share/locale/ca@valencia/LC_MESSAGES/kwin_scripting.mo share/locale/ca@valencia/LC_MESSAGES/kwin_scripts.mo share/locale/cs/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/cs/LC_MESSAGES/kcm_kwin_effects.mo share/locale/cs/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/cs/LC_MESSAGES/kcm_kwindecoration.mo share/locale/cs/LC_MESSAGES/kcm_kwinrules.mo share/locale/cs/LC_MESSAGES/kcm_kwintabbox.mo share/locale/cs/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/cs/LC_MESSAGES/kcmkwincommon.mo share/locale/cs/LC_MESSAGES/kcmkwincompositing.mo share/locale/cs/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/cs/LC_MESSAGES/kcmkwm.mo share/locale/cs/LC_MESSAGES/kwin.mo share/locale/cs/LC_MESSAGES/kwin_clients.mo share/locale/cs/LC_MESSAGES/kwin_effects.mo share/locale/cs/LC_MESSAGES/kwin_scripting.mo share/locale/cs/LC_MESSAGES/kwin_scripts.mo share/locale/csb/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/csb/LC_MESSAGES/kwin.mo share/locale/csb/LC_MESSAGES/kwin_clients.mo share/locale/csb/LC_MESSAGES/kwin_effects.mo share/locale/cy/LC_MESSAGES/kcm_kwindecoration.mo share/locale/cy/LC_MESSAGES/kcm_kwinrules.mo share/locale/cy/LC_MESSAGES/kcmkwm.mo share/locale/cy/LC_MESSAGES/kwin.mo share/locale/cy/LC_MESSAGES/kwin_clients.mo share/locale/da/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/da/LC_MESSAGES/kcm_kwin_effects.mo share/locale/da/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/da/LC_MESSAGES/kcm_kwindecoration.mo share/locale/da/LC_MESSAGES/kcm_kwinrules.mo share/locale/da/LC_MESSAGES/kcm_kwintabbox.mo share/locale/da/LC_MESSAGES/kcmkwincommon.mo share/locale/da/LC_MESSAGES/kcmkwincompositing.mo share/locale/da/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/da/LC_MESSAGES/kcmkwm.mo share/locale/da/LC_MESSAGES/kwin.mo share/locale/da/LC_MESSAGES/kwin_clients.mo share/locale/da/LC_MESSAGES/kwin_effects.mo share/locale/da/LC_MESSAGES/kwin_scripting.mo share/locale/da/LC_MESSAGES/kwin_scripts.mo share/locale/de/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/de/LC_MESSAGES/kcm_kwin_effects.mo share/locale/de/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/de/LC_MESSAGES/kcm_kwindecoration.mo share/locale/de/LC_MESSAGES/kcm_kwinrules.mo share/locale/de/LC_MESSAGES/kcm_kwintabbox.mo share/locale/de/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/de/LC_MESSAGES/kcmkwincommon.mo share/locale/de/LC_MESSAGES/kcmkwincompositing.mo share/locale/de/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/de/LC_MESSAGES/kcmkwm.mo share/locale/de/LC_MESSAGES/kwin.mo share/locale/de/LC_MESSAGES/kwin_clients.mo share/locale/de/LC_MESSAGES/kwin_effects.mo share/locale/de/LC_MESSAGES/kwin_scripting.mo share/locale/de/LC_MESSAGES/kwin_scripts.mo share/locale/el/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/el/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/el/LC_MESSAGES/kcm_kwindecoration.mo share/locale/el/LC_MESSAGES/kcm_kwinrules.mo share/locale/el/LC_MESSAGES/kcm_kwintabbox.mo share/locale/el/LC_MESSAGES/kcmkwincompositing.mo share/locale/el/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/el/LC_MESSAGES/kcmkwm.mo share/locale/el/LC_MESSAGES/kwin.mo share/locale/el/LC_MESSAGES/kwin_clients.mo share/locale/el/LC_MESSAGES/kwin_effects.mo share/locale/el/LC_MESSAGES/kwin_scripting.mo share/locale/el/LC_MESSAGES/kwin_scripts.mo share/locale/en_GB/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/en_GB/LC_MESSAGES/kcm_kwin_effects.mo share/locale/en_GB/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/en_GB/LC_MESSAGES/kcm_kwindecoration.mo share/locale/en_GB/LC_MESSAGES/kcm_kwinrules.mo share/locale/en_GB/LC_MESSAGES/kcm_kwintabbox.mo share/locale/en_GB/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/en_GB/LC_MESSAGES/kcmkwincommon.mo share/locale/en_GB/LC_MESSAGES/kcmkwincompositing.mo share/locale/en_GB/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/en_GB/LC_MESSAGES/kcmkwm.mo share/locale/en_GB/LC_MESSAGES/kwin.mo share/locale/en_GB/LC_MESSAGES/kwin_clients.mo share/locale/en_GB/LC_MESSAGES/kwin_effects.mo share/locale/en_GB/LC_MESSAGES/kwin_scripting.mo share/locale/en_GB/LC_MESSAGES/kwin_scripts.mo share/locale/eo/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/eo/LC_MESSAGES/kcm_kwindecoration.mo share/locale/eo/LC_MESSAGES/kcm_kwinrules.mo share/locale/eo/LC_MESSAGES/kcm_kwintabbox.mo share/locale/eo/LC_MESSAGES/kcmkwincompositing.mo share/locale/eo/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/eo/LC_MESSAGES/kcmkwm.mo share/locale/eo/LC_MESSAGES/kwin.mo share/locale/eo/LC_MESSAGES/kwin_clients.mo share/locale/eo/LC_MESSAGES/kwin_effects.mo share/locale/es/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/es/LC_MESSAGES/kcm_kwin_effects.mo share/locale/es/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/es/LC_MESSAGES/kcm_kwindecoration.mo share/locale/es/LC_MESSAGES/kcm_kwinrules.mo share/locale/es/LC_MESSAGES/kcm_kwintabbox.mo share/locale/es/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/es/LC_MESSAGES/kcmkwincommon.mo share/locale/es/LC_MESSAGES/kcmkwincompositing.mo share/locale/es/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/es/LC_MESSAGES/kcmkwm.mo share/locale/es/LC_MESSAGES/kwin.mo share/locale/es/LC_MESSAGES/kwin_clients.mo share/locale/es/LC_MESSAGES/kwin_effects.mo share/locale/es/LC_MESSAGES/kwin_scripting.mo share/locale/es/LC_MESSAGES/kwin_scripts.mo share/locale/et/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/et/LC_MESSAGES/kcm_kwin_effects.mo share/locale/et/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/et/LC_MESSAGES/kcm_kwindecoration.mo share/locale/et/LC_MESSAGES/kcm_kwinrules.mo share/locale/et/LC_MESSAGES/kcm_kwintabbox.mo share/locale/et/LC_MESSAGES/kcmkwincommon.mo share/locale/et/LC_MESSAGES/kcmkwincompositing.mo share/locale/et/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/et/LC_MESSAGES/kcmkwm.mo share/locale/et/LC_MESSAGES/kwin.mo share/locale/et/LC_MESSAGES/kwin_clients.mo share/locale/et/LC_MESSAGES/kwin_effects.mo share/locale/et/LC_MESSAGES/kwin_scripting.mo share/locale/et/LC_MESSAGES/kwin_scripts.mo share/locale/eu/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/eu/LC_MESSAGES/kcm_kwin_effects.mo share/locale/eu/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/eu/LC_MESSAGES/kcm_kwindecoration.mo share/locale/eu/LC_MESSAGES/kcm_kwinrules.mo share/locale/eu/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/eu/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/eu/LC_MESSAGES/kcmkwincommon.mo share/locale/eu/LC_MESSAGES/kcmkwincompositing.mo share/locale/eu/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/eu/LC_MESSAGES/kcmkwm.mo share/locale/eu/LC_MESSAGES/kwin.mo share/locale/eu/LC_MESSAGES/kwin_clients.mo share/locale/eu/LC_MESSAGES/kwin_effects.mo share/locale/eu/LC_MESSAGES/kwin_scripting.mo share/locale/eu/LC_MESSAGES/kwin_scripts.mo share/locale/fa/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/fa/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/fa/LC_MESSAGES/kcm_kwindecoration.mo share/locale/fa/LC_MESSAGES/kcm_kwinrules.mo share/locale/fa/LC_MESSAGES/kcm_kwintabbox.mo share/locale/fa/LC_MESSAGES/kcmkwincompositing.mo share/locale/fa/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/fa/LC_MESSAGES/kcmkwm.mo share/locale/fa/LC_MESSAGES/kwin.mo share/locale/fa/LC_MESSAGES/kwin_clients.mo share/locale/fa/LC_MESSAGES/kwin_effects.mo share/locale/fi/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/fi/LC_MESSAGES/kcm_kwin_effects.mo share/locale/fi/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/fi/LC_MESSAGES/kcm_kwindecoration.mo share/locale/fi/LC_MESSAGES/kcm_kwinrules.mo share/locale/fi/LC_MESSAGES/kcm_kwintabbox.mo share/locale/fi/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/fi/LC_MESSAGES/kcmkwincommon.mo share/locale/fi/LC_MESSAGES/kcmkwincompositing.mo share/locale/fi/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/fi/LC_MESSAGES/kcmkwm.mo share/locale/fi/LC_MESSAGES/kwin.mo share/locale/fi/LC_MESSAGES/kwin_clients.mo share/locale/fi/LC_MESSAGES/kwin_effects.mo share/locale/fi/LC_MESSAGES/kwin_scripting.mo share/locale/fi/LC_MESSAGES/kwin_scripts.mo share/locale/fr/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/fr/LC_MESSAGES/kcm_kwin_effects.mo share/locale/fr/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/fr/LC_MESSAGES/kcm_kwindecoration.mo share/locale/fr/LC_MESSAGES/kcm_kwinrules.mo share/locale/fr/LC_MESSAGES/kcm_kwintabbox.mo share/locale/fr/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/fr/LC_MESSAGES/kcmkwincommon.mo share/locale/fr/LC_MESSAGES/kcmkwincompositing.mo share/locale/fr/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/fr/LC_MESSAGES/kcmkwm.mo share/locale/fr/LC_MESSAGES/kwin.mo share/locale/fr/LC_MESSAGES/kwin_clients.mo share/locale/fr/LC_MESSAGES/kwin_effects.mo share/locale/fr/LC_MESSAGES/kwin_scripting.mo share/locale/fr/LC_MESSAGES/kwin_scripts.mo share/locale/fy/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/fy/LC_MESSAGES/kcm_kwindecoration.mo share/locale/fy/LC_MESSAGES/kcm_kwinrules.mo share/locale/fy/LC_MESSAGES/kcmkwincompositing.mo share/locale/fy/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/fy/LC_MESSAGES/kcmkwm.mo share/locale/fy/LC_MESSAGES/kwin.mo share/locale/fy/LC_MESSAGES/kwin_clients.mo share/locale/fy/LC_MESSAGES/kwin_effects.mo share/locale/ga/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/ga/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ga/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ga/LC_MESSAGES/kcm_kwinrules.mo share/locale/ga/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ga/LC_MESSAGES/kcmkwincompositing.mo share/locale/ga/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ga/LC_MESSAGES/kcmkwm.mo share/locale/ga/LC_MESSAGES/kwin.mo share/locale/ga/LC_MESSAGES/kwin_clients.mo share/locale/ga/LC_MESSAGES/kwin_effects.mo share/locale/gl/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/gl/LC_MESSAGES/kcm_kwin_effects.mo share/locale/gl/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/gl/LC_MESSAGES/kcm_kwindecoration.mo share/locale/gl/LC_MESSAGES/kcm_kwinrules.mo share/locale/gl/LC_MESSAGES/kcm_kwintabbox.mo share/locale/gl/LC_MESSAGES/kcmkwincommon.mo share/locale/gl/LC_MESSAGES/kcmkwincompositing.mo share/locale/gl/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/gl/LC_MESSAGES/kcmkwm.mo share/locale/gl/LC_MESSAGES/kwin.mo share/locale/gl/LC_MESSAGES/kwin_clients.mo share/locale/gl/LC_MESSAGES/kwin_effects.mo share/locale/gl/LC_MESSAGES/kwin_scripting.mo share/locale/gl/LC_MESSAGES/kwin_scripts.mo share/locale/gu/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/gu/LC_MESSAGES/kcm_kwindecoration.mo share/locale/gu/LC_MESSAGES/kcm_kwinrules.mo share/locale/gu/LC_MESSAGES/kcm_kwintabbox.mo share/locale/gu/LC_MESSAGES/kcmkwincompositing.mo share/locale/gu/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/gu/LC_MESSAGES/kcmkwm.mo share/locale/gu/LC_MESSAGES/kwin.mo share/locale/gu/LC_MESSAGES/kwin_clients.mo share/locale/gu/LC_MESSAGES/kwin_effects.mo share/locale/he/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/he/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/he/LC_MESSAGES/kcm_kwindecoration.mo share/locale/he/LC_MESSAGES/kcm_kwinrules.mo share/locale/he/LC_MESSAGES/kcm_kwintabbox.mo share/locale/he/LC_MESSAGES/kcmkwincompositing.mo share/locale/he/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/he/LC_MESSAGES/kcmkwm.mo share/locale/he/LC_MESSAGES/kwin.mo share/locale/he/LC_MESSAGES/kwin_clients.mo share/locale/he/LC_MESSAGES/kwin_effects.mo share/locale/he/LC_MESSAGES/kwin_scripting.mo share/locale/he/LC_MESSAGES/kwin_scripts.mo share/locale/hi/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/hi/LC_MESSAGES/kcm_kwindecoration.mo share/locale/hi/LC_MESSAGES/kcm_kwinrules.mo share/locale/hi/LC_MESSAGES/kcm_kwintabbox.mo share/locale/hi/LC_MESSAGES/kcmkwincompositing.mo share/locale/hi/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/hi/LC_MESSAGES/kcmkwm.mo share/locale/hi/LC_MESSAGES/kwin.mo share/locale/hi/LC_MESSAGES/kwin_clients.mo share/locale/hi/LC_MESSAGES/kwin_effects.mo share/locale/hne/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/hne/LC_MESSAGES/kcm_kwindecoration.mo share/locale/hne/LC_MESSAGES/kcm_kwinrules.mo share/locale/hne/LC_MESSAGES/kcmkwincompositing.mo share/locale/hne/LC_MESSAGES/kcmkwm.mo share/locale/hne/LC_MESSAGES/kwin.mo share/locale/hne/LC_MESSAGES/kwin_clients.mo share/locale/hne/LC_MESSAGES/kwin_effects.mo share/locale/hr/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/hr/LC_MESSAGES/kcm_kwindecoration.mo share/locale/hr/LC_MESSAGES/kcm_kwinrules.mo share/locale/hr/LC_MESSAGES/kcm_kwintabbox.mo share/locale/hr/LC_MESSAGES/kcmkwincompositing.mo share/locale/hr/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/hr/LC_MESSAGES/kcmkwm.mo share/locale/hr/LC_MESSAGES/kwin.mo share/locale/hr/LC_MESSAGES/kwin_clients.mo share/locale/hr/LC_MESSAGES/kwin_effects.mo share/locale/hsb/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/hsb/LC_MESSAGES/kcm_kwindecoration.mo share/locale/hsb/LC_MESSAGES/kcm_kwinrules.mo share/locale/hsb/LC_MESSAGES/kcmkwincompositing.mo share/locale/hsb/LC_MESSAGES/kcmkwm.mo share/locale/hsb/LC_MESSAGES/kwin.mo share/locale/hsb/LC_MESSAGES/kwin_clients.mo share/locale/hsb/LC_MESSAGES/kwin_effects.mo share/locale/hu/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/hu/LC_MESSAGES/kcm_kwin_effects.mo share/locale/hu/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/hu/LC_MESSAGES/kcm_kwindecoration.mo share/locale/hu/LC_MESSAGES/kcm_kwinrules.mo share/locale/hu/LC_MESSAGES/kcm_kwintabbox.mo share/locale/hu/LC_MESSAGES/kcmkwincommon.mo share/locale/hu/LC_MESSAGES/kcmkwincompositing.mo share/locale/hu/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/hu/LC_MESSAGES/kcmkwm.mo share/locale/hu/LC_MESSAGES/kwin.mo share/locale/hu/LC_MESSAGES/kwin_clients.mo share/locale/hu/LC_MESSAGES/kwin_effects.mo share/locale/hu/LC_MESSAGES/kwin_scripting.mo share/locale/hu/LC_MESSAGES/kwin_scripts.mo share/locale/ia/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/ia/LC_MESSAGES/kcm_kwin_effects.mo share/locale/ia/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ia/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ia/LC_MESSAGES/kcm_kwinrules.mo share/locale/ia/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ia/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/ia/LC_MESSAGES/kcmkwincommon.mo share/locale/ia/LC_MESSAGES/kcmkwincompositing.mo share/locale/ia/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ia/LC_MESSAGES/kcmkwm.mo share/locale/ia/LC_MESSAGES/kwin.mo share/locale/ia/LC_MESSAGES/kwin_clients.mo share/locale/ia/LC_MESSAGES/kwin_effects.mo share/locale/ia/LC_MESSAGES/kwin_scripting.mo share/locale/ia/LC_MESSAGES/kwin_scripts.mo share/locale/id/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/id/LC_MESSAGES/kcm_kwin_effects.mo share/locale/id/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/id/LC_MESSAGES/kcm_kwindecoration.mo share/locale/id/LC_MESSAGES/kcm_kwinrules.mo share/locale/id/LC_MESSAGES/kcm_kwintabbox.mo share/locale/id/LC_MESSAGES/kcmkwincommon.mo share/locale/id/LC_MESSAGES/kcmkwincompositing.mo share/locale/id/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/id/LC_MESSAGES/kcmkwm.mo share/locale/id/LC_MESSAGES/kwin.mo share/locale/id/LC_MESSAGES/kwin_clients.mo share/locale/id/LC_MESSAGES/kwin_effects.mo share/locale/id/LC_MESSAGES/kwin_scripting.mo share/locale/id/LC_MESSAGES/kwin_scripts.mo share/locale/is/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/is/LC_MESSAGES/kcm_kwindecoration.mo share/locale/is/LC_MESSAGES/kcm_kwinrules.mo share/locale/is/LC_MESSAGES/kcm_kwintabbox.mo share/locale/is/LC_MESSAGES/kcmkwincompositing.mo share/locale/is/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/is/LC_MESSAGES/kcmkwm.mo share/locale/is/LC_MESSAGES/kwin.mo share/locale/is/LC_MESSAGES/kwin_clients.mo share/locale/is/LC_MESSAGES/kwin_effects.mo share/locale/it/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/it/LC_MESSAGES/kcm_kwin_effects.mo share/locale/it/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/it/LC_MESSAGES/kcm_kwindecoration.mo share/locale/it/LC_MESSAGES/kcm_kwinrules.mo share/locale/it/LC_MESSAGES/kcm_kwintabbox.mo share/locale/it/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/it/LC_MESSAGES/kcmkwincommon.mo share/locale/it/LC_MESSAGES/kcmkwincompositing.mo share/locale/it/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/it/LC_MESSAGES/kcmkwm.mo share/locale/it/LC_MESSAGES/kwin.mo share/locale/it/LC_MESSAGES/kwin_clients.mo share/locale/it/LC_MESSAGES/kwin_effects.mo share/locale/it/LC_MESSAGES/kwin_scripting.mo share/locale/it/LC_MESSAGES/kwin_scripts.mo share/locale/ja/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/ja/LC_MESSAGES/kcm_kwin_effects.mo share/locale/ja/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ja/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ja/LC_MESSAGES/kcm_kwinrules.mo share/locale/ja/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ja/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/ja/LC_MESSAGES/kcmkwincommon.mo share/locale/ja/LC_MESSAGES/kcmkwincompositing.mo share/locale/ja/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ja/LC_MESSAGES/kcmkwm.mo share/locale/ja/LC_MESSAGES/kwin.mo share/locale/ja/LC_MESSAGES/kwin_clients.mo share/locale/ja/LC_MESSAGES/kwin_effects.mo share/locale/ja/LC_MESSAGES/kwin_scripting.mo share/locale/ja/LC_MESSAGES/kwin_scripts.mo share/locale/kk/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/kk/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/kk/LC_MESSAGES/kcm_kwindecoration.mo share/locale/kk/LC_MESSAGES/kcm_kwinrules.mo share/locale/kk/LC_MESSAGES/kcm_kwintabbox.mo share/locale/kk/LC_MESSAGES/kcmkwincompositing.mo share/locale/kk/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/kk/LC_MESSAGES/kcmkwm.mo share/locale/kk/LC_MESSAGES/kwin.mo share/locale/kk/LC_MESSAGES/kwin_clients.mo share/locale/kk/LC_MESSAGES/kwin_effects.mo share/locale/kk/LC_MESSAGES/kwin_scripting.mo share/locale/km/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/km/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/km/LC_MESSAGES/kcm_kwindecoration.mo share/locale/km/LC_MESSAGES/kcm_kwinrules.mo share/locale/km/LC_MESSAGES/kcm_kwintabbox.mo share/locale/km/LC_MESSAGES/kcmkwincompositing.mo share/locale/km/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/km/LC_MESSAGES/kcmkwm.mo share/locale/km/LC_MESSAGES/kwin.mo share/locale/km/LC_MESSAGES/kwin_clients.mo share/locale/km/LC_MESSAGES/kwin_effects.mo share/locale/kn/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/kn/LC_MESSAGES/kcm_kwindecoration.mo share/locale/kn/LC_MESSAGES/kcm_kwinrules.mo share/locale/kn/LC_MESSAGES/kcm_kwintabbox.mo share/locale/kn/LC_MESSAGES/kcmkwincompositing.mo share/locale/kn/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/kn/LC_MESSAGES/kcmkwm.mo share/locale/kn/LC_MESSAGES/kwin.mo share/locale/kn/LC_MESSAGES/kwin_clients.mo share/locale/kn/LC_MESSAGES/kwin_effects.mo share/locale/ko/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/ko/LC_MESSAGES/kcm_kwin_effects.mo share/locale/ko/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ko/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ko/LC_MESSAGES/kcm_kwinrules.mo share/locale/ko/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ko/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/ko/LC_MESSAGES/kcmkwincommon.mo share/locale/ko/LC_MESSAGES/kcmkwincompositing.mo share/locale/ko/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ko/LC_MESSAGES/kcmkwm.mo share/locale/ko/LC_MESSAGES/kwin.mo share/locale/ko/LC_MESSAGES/kwin_clients.mo share/locale/ko/LC_MESSAGES/kwin_effects.mo share/locale/ko/LC_MESSAGES/kwin_scripting.mo share/locale/ko/LC_MESSAGES/kwin_scripts.mo share/locale/ku/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ku/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ku/LC_MESSAGES/kcm_kwinrules.mo share/locale/ku/LC_MESSAGES/kcmkwincompositing.mo share/locale/ku/LC_MESSAGES/kcmkwm.mo share/locale/ku/LC_MESSAGES/kwin.mo share/locale/ku/LC_MESSAGES/kwin_clients.mo share/locale/ku/LC_MESSAGES/kwin_effects.mo share/locale/lt/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/lt/LC_MESSAGES/kcm_kwin_effects.mo share/locale/lt/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/lt/LC_MESSAGES/kcm_kwindecoration.mo share/locale/lt/LC_MESSAGES/kcm_kwinrules.mo share/locale/lt/LC_MESSAGES/kcm_kwintabbox.mo share/locale/lt/LC_MESSAGES/kcmkwincommon.mo share/locale/lt/LC_MESSAGES/kcmkwincompositing.mo share/locale/lt/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/lt/LC_MESSAGES/kcmkwm.mo share/locale/lt/LC_MESSAGES/kwin.mo share/locale/lt/LC_MESSAGES/kwin_clients.mo share/locale/lt/LC_MESSAGES/kwin_effects.mo share/locale/lt/LC_MESSAGES/kwin_scripting.mo share/locale/lt/LC_MESSAGES/kwin_scripts.mo share/locale/lv/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/lv/LC_MESSAGES/kcm_kwindecoration.mo share/locale/lv/LC_MESSAGES/kcm_kwinrules.mo share/locale/lv/LC_MESSAGES/kcm_kwintabbox.mo share/locale/lv/LC_MESSAGES/kcmkwincompositing.mo share/locale/lv/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/lv/LC_MESSAGES/kcmkwm.mo share/locale/lv/LC_MESSAGES/kwin.mo share/locale/lv/LC_MESSAGES/kwin_clients.mo share/locale/lv/LC_MESSAGES/kwin_effects.mo share/locale/mai/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/mai/LC_MESSAGES/kcm_kwindecoration.mo share/locale/mai/LC_MESSAGES/kcm_kwinrules.mo share/locale/mai/LC_MESSAGES/kcm_kwintabbox.mo share/locale/mai/LC_MESSAGES/kcmkwincompositing.mo share/locale/mai/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/mai/LC_MESSAGES/kcmkwm.mo share/locale/mai/LC_MESSAGES/kwin.mo share/locale/mai/LC_MESSAGES/kwin_clients.mo share/locale/mai/LC_MESSAGES/kwin_effects.mo share/locale/mk/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/mk/LC_MESSAGES/kcm_kwindecoration.mo share/locale/mk/LC_MESSAGES/kcm_kwinrules.mo share/locale/mk/LC_MESSAGES/kcmkwincompositing.mo share/locale/mk/LC_MESSAGES/kcmkwm.mo share/locale/mk/LC_MESSAGES/kwin.mo share/locale/mk/LC_MESSAGES/kwin_clients.mo share/locale/mk/LC_MESSAGES/kwin_effects.mo share/locale/ml/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/ml/LC_MESSAGES/kcm_kwin_effects.mo share/locale/ml/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ml/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ml/LC_MESSAGES/kcm_kwinrules.mo share/locale/ml/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ml/LC_MESSAGES/kcmkwincommon.mo share/locale/ml/LC_MESSAGES/kcmkwincompositing.mo share/locale/ml/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ml/LC_MESSAGES/kcmkwm.mo share/locale/ml/LC_MESSAGES/kwin.mo share/locale/ml/LC_MESSAGES/kwin_clients.mo share/locale/ml/LC_MESSAGES/kwin_effects.mo share/locale/ml/LC_MESSAGES/kwin_scripting.mo share/locale/ml/LC_MESSAGES/kwin_scripts.mo share/locale/mr/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/mr/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/mr/LC_MESSAGES/kcm_kwindecoration.mo share/locale/mr/LC_MESSAGES/kcm_kwinrules.mo share/locale/mr/LC_MESSAGES/kcm_kwintabbox.mo share/locale/mr/LC_MESSAGES/kcmkwincompositing.mo share/locale/mr/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/mr/LC_MESSAGES/kcmkwm.mo share/locale/mr/LC_MESSAGES/kwin.mo share/locale/mr/LC_MESSAGES/kwin_clients.mo share/locale/mr/LC_MESSAGES/kwin_effects.mo share/locale/mr/LC_MESSAGES/kwin_scripting.mo share/locale/ms/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ms/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ms/LC_MESSAGES/kcm_kwinrules.mo share/locale/ms/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ms/LC_MESSAGES/kcmkwincompositing.mo share/locale/ms/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ms/LC_MESSAGES/kcmkwm.mo share/locale/ms/LC_MESSAGES/kwin.mo share/locale/ms/LC_MESSAGES/kwin_clients.mo share/locale/ms/LC_MESSAGES/kwin_effects.mo share/locale/nb/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/nb/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/nb/LC_MESSAGES/kcm_kwindecoration.mo share/locale/nb/LC_MESSAGES/kcm_kwinrules.mo share/locale/nb/LC_MESSAGES/kcm_kwintabbox.mo share/locale/nb/LC_MESSAGES/kcmkwincommon.mo share/locale/nb/LC_MESSAGES/kcmkwincompositing.mo share/locale/nb/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/nb/LC_MESSAGES/kcmkwm.mo share/locale/nb/LC_MESSAGES/kwin.mo share/locale/nb/LC_MESSAGES/kwin_clients.mo share/locale/nb/LC_MESSAGES/kwin_effects.mo share/locale/nb/LC_MESSAGES/kwin_scripting.mo share/locale/nds/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/nds/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/nds/LC_MESSAGES/kcm_kwindecoration.mo share/locale/nds/LC_MESSAGES/kcm_kwinrules.mo share/locale/nds/LC_MESSAGES/kcm_kwintabbox.mo share/locale/nds/LC_MESSAGES/kcmkwincompositing.mo share/locale/nds/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/nds/LC_MESSAGES/kcmkwm.mo share/locale/nds/LC_MESSAGES/kwin.mo share/locale/nds/LC_MESSAGES/kwin_clients.mo share/locale/nds/LC_MESSAGES/kwin_effects.mo share/locale/nds/LC_MESSAGES/kwin_scripting.mo share/locale/ne/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ne/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ne/LC_MESSAGES/kcm_kwinrules.mo share/locale/ne/LC_MESSAGES/kcmkwincompositing.mo share/locale/ne/LC_MESSAGES/kcmkwm.mo share/locale/ne/LC_MESSAGES/kwin.mo share/locale/ne/LC_MESSAGES/kwin_clients.mo share/locale/nl/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/nl/LC_MESSAGES/kcm_kwin_effects.mo share/locale/nl/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/nl/LC_MESSAGES/kcm_kwindecoration.mo share/locale/nl/LC_MESSAGES/kcm_kwinrules.mo share/locale/nl/LC_MESSAGES/kcm_kwintabbox.mo share/locale/nl/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/nl/LC_MESSAGES/kcmkwincommon.mo share/locale/nl/LC_MESSAGES/kcmkwincompositing.mo share/locale/nl/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/nl/LC_MESSAGES/kcmkwm.mo share/locale/nl/LC_MESSAGES/kwin.mo share/locale/nl/LC_MESSAGES/kwin_clients.mo share/locale/nl/LC_MESSAGES/kwin_effects.mo share/locale/nl/LC_MESSAGES/kwin_scripting.mo share/locale/nl/LC_MESSAGES/kwin_scripts.mo share/locale/nn/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/nn/LC_MESSAGES/kcm_kwin_effects.mo share/locale/nn/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/nn/LC_MESSAGES/kcm_kwindecoration.mo share/locale/nn/LC_MESSAGES/kcm_kwinrules.mo share/locale/nn/LC_MESSAGES/kcm_kwintabbox.mo share/locale/nn/LC_MESSAGES/kcmkwincommon.mo share/locale/nn/LC_MESSAGES/kcmkwincompositing.mo share/locale/nn/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/nn/LC_MESSAGES/kcmkwm.mo share/locale/nn/LC_MESSAGES/kwin.mo share/locale/nn/LC_MESSAGES/kwin_clients.mo share/locale/nn/LC_MESSAGES/kwin_effects.mo share/locale/nn/LC_MESSAGES/kwin_scripting.mo share/locale/nn/LC_MESSAGES/kwin_scripts.mo share/locale/oc/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/oc/LC_MESSAGES/kcm_kwindecoration.mo share/locale/oc/LC_MESSAGES/kcm_kwinrules.mo share/locale/oc/LC_MESSAGES/kcmkwincompositing.mo share/locale/oc/LC_MESSAGES/kcmkwm.mo share/locale/oc/LC_MESSAGES/kwin.mo share/locale/oc/LC_MESSAGES/kwin_clients.mo share/locale/oc/LC_MESSAGES/kwin_effects.mo share/locale/pa/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/pa/LC_MESSAGES/kcm_kwin_effects.mo share/locale/pa/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/pa/LC_MESSAGES/kcm_kwindecoration.mo share/locale/pa/LC_MESSAGES/kcm_kwinrules.mo share/locale/pa/LC_MESSAGES/kcm_kwintabbox.mo share/locale/pa/LC_MESSAGES/kcmkwincommon.mo share/locale/pa/LC_MESSAGES/kcmkwincompositing.mo share/locale/pa/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/pa/LC_MESSAGES/kcmkwm.mo share/locale/pa/LC_MESSAGES/kwin.mo share/locale/pa/LC_MESSAGES/kwin_clients.mo share/locale/pa/LC_MESSAGES/kwin_effects.mo share/locale/pa/LC_MESSAGES/kwin_scripting.mo share/locale/pa/LC_MESSAGES/kwin_scripts.mo share/locale/pl/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/pl/LC_MESSAGES/kcm_kwin_effects.mo share/locale/pl/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/pl/LC_MESSAGES/kcm_kwindecoration.mo share/locale/pl/LC_MESSAGES/kcm_kwinrules.mo share/locale/pl/LC_MESSAGES/kcm_kwintabbox.mo share/locale/pl/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/pl/LC_MESSAGES/kcmkwincommon.mo share/locale/pl/LC_MESSAGES/kcmkwincompositing.mo share/locale/pl/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/pl/LC_MESSAGES/kcmkwm.mo share/locale/pl/LC_MESSAGES/kwin.mo share/locale/pl/LC_MESSAGES/kwin_clients.mo share/locale/pl/LC_MESSAGES/kwin_effects.mo share/locale/pl/LC_MESSAGES/kwin_scripting.mo share/locale/pl/LC_MESSAGES/kwin_scripts.mo share/locale/pt/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/pt/LC_MESSAGES/kcm_kwin_effects.mo share/locale/pt/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/pt/LC_MESSAGES/kcm_kwindecoration.mo share/locale/pt/LC_MESSAGES/kcm_kwinrules.mo share/locale/pt/LC_MESSAGES/kcm_kwintabbox.mo share/locale/pt/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/pt/LC_MESSAGES/kcmkwincommon.mo share/locale/pt/LC_MESSAGES/kcmkwincompositing.mo share/locale/pt/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/pt/LC_MESSAGES/kcmkwm.mo share/locale/pt/LC_MESSAGES/kwin.mo share/locale/pt/LC_MESSAGES/kwin_clients.mo share/locale/pt/LC_MESSAGES/kwin_effects.mo share/locale/pt/LC_MESSAGES/kwin_scripting.mo share/locale/pt/LC_MESSAGES/kwin_scripts.mo share/locale/pt_BR/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/pt_BR/LC_MESSAGES/kcm_kwin_effects.mo share/locale/pt_BR/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/pt_BR/LC_MESSAGES/kcm_kwindecoration.mo share/locale/pt_BR/LC_MESSAGES/kcm_kwinrules.mo share/locale/pt_BR/LC_MESSAGES/kcm_kwintabbox.mo share/locale/pt_BR/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/pt_BR/LC_MESSAGES/kcmkwincommon.mo share/locale/pt_BR/LC_MESSAGES/kcmkwincompositing.mo share/locale/pt_BR/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/pt_BR/LC_MESSAGES/kcmkwm.mo share/locale/pt_BR/LC_MESSAGES/kwin.mo share/locale/pt_BR/LC_MESSAGES/kwin_clients.mo share/locale/pt_BR/LC_MESSAGES/kwin_effects.mo share/locale/pt_BR/LC_MESSAGES/kwin_scripting.mo share/locale/pt_BR/LC_MESSAGES/kwin_scripts.mo share/locale/ro/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/ro/LC_MESSAGES/kcm_kwin_effects.mo share/locale/ro/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ro/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ro/LC_MESSAGES/kcm_kwinrules.mo share/locale/ro/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/ro/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/ro/LC_MESSAGES/kcmkwincommon.mo share/locale/ro/LC_MESSAGES/kcmkwincompositing.mo share/locale/ro/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ro/LC_MESSAGES/kcmkwm.mo share/locale/ro/LC_MESSAGES/kwin.mo share/locale/ro/LC_MESSAGES/kwin_clients.mo share/locale/ro/LC_MESSAGES/kwin_effects.mo share/locale/ro/LC_MESSAGES/kwin_scripting.mo share/locale/ro/LC_MESSAGES/kwin_scripts.mo share/locale/ru/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/ru/LC_MESSAGES/kcm_kwin_effects.mo share/locale/ru/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ru/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ru/LC_MESSAGES/kcm_kwinrules.mo share/locale/ru/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ru/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/ru/LC_MESSAGES/kcmkwincommon.mo share/locale/ru/LC_MESSAGES/kcmkwincompositing.mo share/locale/ru/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ru/LC_MESSAGES/kcmkwm.mo share/locale/ru/LC_MESSAGES/kwin.mo share/locale/ru/LC_MESSAGES/kwin_clients.mo share/locale/ru/LC_MESSAGES/kwin_effects.mo share/locale/ru/LC_MESSAGES/kwin_scripting.mo share/locale/ru/LC_MESSAGES/kwin_scripts.mo share/locale/se/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/se/LC_MESSAGES/kcm_kwindecoration.mo share/locale/se/LC_MESSAGES/kcm_kwinrules.mo share/locale/se/LC_MESSAGES/kcmkwincommon.mo share/locale/se/LC_MESSAGES/kcmkwincompositing.mo share/locale/se/LC_MESSAGES/kcmkwm.mo share/locale/se/LC_MESSAGES/kwin.mo share/locale/se/LC_MESSAGES/kwin_clients.mo share/locale/si/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/si/LC_MESSAGES/kcm_kwindecoration.mo share/locale/si/LC_MESSAGES/kcm_kwinrules.mo share/locale/si/LC_MESSAGES/kcm_kwintabbox.mo share/locale/si/LC_MESSAGES/kcmkwincompositing.mo share/locale/si/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/si/LC_MESSAGES/kcmkwm.mo share/locale/si/LC_MESSAGES/kwin.mo share/locale/si/LC_MESSAGES/kwin_clients.mo share/locale/si/LC_MESSAGES/kwin_effects.mo share/locale/sk/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/sk/LC_MESSAGES/kcm_kwin_effects.mo share/locale/sk/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/sk/LC_MESSAGES/kcm_kwindecoration.mo share/locale/sk/LC_MESSAGES/kcm_kwinrules.mo share/locale/sk/LC_MESSAGES/kcm_kwintabbox.mo share/locale/sk/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/sk/LC_MESSAGES/kcmkwincommon.mo share/locale/sk/LC_MESSAGES/kcmkwincompositing.mo share/locale/sk/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/sk/LC_MESSAGES/kcmkwm.mo share/locale/sk/LC_MESSAGES/kwin.mo share/locale/sk/LC_MESSAGES/kwin_clients.mo share/locale/sk/LC_MESSAGES/kwin_effects.mo share/locale/sk/LC_MESSAGES/kwin_scripting.mo share/locale/sk/LC_MESSAGES/kwin_scripts.mo share/locale/sl/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/sl/LC_MESSAGES/kcm_kwin_effects.mo share/locale/sl/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/sl/LC_MESSAGES/kcm_kwindecoration.mo share/locale/sl/LC_MESSAGES/kcm_kwinrules.mo share/locale/sl/LC_MESSAGES/kcm_kwintabbox.mo share/locale/sl/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/sl/LC_MESSAGES/kcmkwincommon.mo share/locale/sl/LC_MESSAGES/kcmkwincompositing.mo share/locale/sl/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/sl/LC_MESSAGES/kcmkwm.mo share/locale/sl/LC_MESSAGES/kwin.mo share/locale/sl/LC_MESSAGES/kwin_clients.mo share/locale/sl/LC_MESSAGES/kwin_effects.mo share/locale/sl/LC_MESSAGES/kwin_scripting.mo share/locale/sl/LC_MESSAGES/kwin_scripts.mo share/locale/sq/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/sq/LC_MESSAGES/kcm_kwindecoration.mo share/locale/sq/LC_MESSAGES/kcm_kwinrules.mo share/locale/sq/LC_MESSAGES/kcmkwincompositing.mo share/locale/sq/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/sq/LC_MESSAGES/kcmkwm.mo share/locale/sq/LC_MESSAGES/kwin.mo share/locale/sq/LC_MESSAGES/kwin_clients.mo share/locale/sq/LC_MESSAGES/kwin_effects.mo share/locale/sr/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/sr/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/sr/LC_MESSAGES/kcm_kwindecoration.mo share/locale/sr/LC_MESSAGES/kcm_kwinrules.mo share/locale/sr/LC_MESSAGES/kcm_kwintabbox.mo share/locale/sr/LC_MESSAGES/kcmkwincompositing.mo share/locale/sr/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/sr/LC_MESSAGES/kcmkwm.mo share/locale/sr/LC_MESSAGES/kwin.mo share/locale/sr/LC_MESSAGES/kwin_clients.mo share/locale/sr/LC_MESSAGES/kwin_effects.mo share/locale/sr/LC_MESSAGES/kwin_scripting.mo share/locale/sr/LC_MESSAGES/kwin_scripts.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_kwindecoration.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_kwinrules.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_kwintabbox.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmkwincompositing.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmkwm.mo share/locale/sr@ijekavian/LC_MESSAGES/kwin.mo share/locale/sr@ijekavian/LC_MESSAGES/kwin_clients.mo share/locale/sr@ijekavian/LC_MESSAGES/kwin_effects.mo share/locale/sr@ijekavian/LC_MESSAGES/kwin_scripting.mo share/locale/sr@ijekavian/LC_MESSAGES/kwin_scripts.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_kwindecoration.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_kwinrules.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_kwintabbox.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmkwincompositing.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmkwm.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kwin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kwin_clients.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kwin_effects.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kwin_scripting.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kwin_scripts.mo share/locale/sr@latin/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/sr@latin/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/sr@latin/LC_MESSAGES/kcm_kwindecoration.mo share/locale/sr@latin/LC_MESSAGES/kcm_kwinrules.mo share/locale/sr@latin/LC_MESSAGES/kcm_kwintabbox.mo share/locale/sr@latin/LC_MESSAGES/kcmkwincompositing.mo share/locale/sr@latin/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/sr@latin/LC_MESSAGES/kcmkwm.mo share/locale/sr@latin/LC_MESSAGES/kwin.mo share/locale/sr@latin/LC_MESSAGES/kwin_clients.mo share/locale/sr@latin/LC_MESSAGES/kwin_effects.mo share/locale/sr@latin/LC_MESSAGES/kwin_scripting.mo share/locale/sr@latin/LC_MESSAGES/kwin_scripts.mo share/locale/sv/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/sv/LC_MESSAGES/kcm_kwin_effects.mo share/locale/sv/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/sv/LC_MESSAGES/kcm_kwindecoration.mo share/locale/sv/LC_MESSAGES/kcm_kwinrules.mo share/locale/sv/LC_MESSAGES/kcm_kwintabbox.mo share/locale/sv/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/sv/LC_MESSAGES/kcmkwincommon.mo share/locale/sv/LC_MESSAGES/kcmkwincompositing.mo share/locale/sv/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/sv/LC_MESSAGES/kcmkwm.mo share/locale/sv/LC_MESSAGES/kwin.mo share/locale/sv/LC_MESSAGES/kwin_clients.mo share/locale/sv/LC_MESSAGES/kwin_effects.mo share/locale/sv/LC_MESSAGES/kwin_scripting.mo share/locale/sv/LC_MESSAGES/kwin_scripts.mo share/locale/ta/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ta/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ta/LC_MESSAGES/kcm_kwinrules.mo share/locale/ta/LC_MESSAGES/kcmkwincompositing.mo share/locale/ta/LC_MESSAGES/kcmkwm.mo share/locale/ta/LC_MESSAGES/kwin.mo share/locale/ta/LC_MESSAGES/kwin_clients.mo share/locale/ta/LC_MESSAGES/kwin_effects.mo share/locale/te/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/te/LC_MESSAGES/kcm_kwindecoration.mo share/locale/te/LC_MESSAGES/kcm_kwinrules.mo share/locale/te/LC_MESSAGES/kcmkwincompositing.mo share/locale/te/LC_MESSAGES/kcmkwm.mo share/locale/te/LC_MESSAGES/kwin.mo share/locale/te/LC_MESSAGES/kwin_clients.mo share/locale/te/LC_MESSAGES/kwin_effects.mo share/locale/tg/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/tg/LC_MESSAGES/kcm_kwindecoration.mo share/locale/tg/LC_MESSAGES/kcm_kwinrules.mo share/locale/tg/LC_MESSAGES/kcmkwincommon.mo share/locale/tg/LC_MESSAGES/kcmkwincompositing.mo share/locale/tg/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/tg/LC_MESSAGES/kcmkwm.mo share/locale/tg/LC_MESSAGES/kwin.mo share/locale/tg/LC_MESSAGES/kwin_clients.mo share/locale/tg/LC_MESSAGES/kwin_effects.mo share/locale/th/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/th/LC_MESSAGES/kcm_kwindecoration.mo share/locale/th/LC_MESSAGES/kcm_kwinrules.mo share/locale/th/LC_MESSAGES/kcm_kwintabbox.mo share/locale/th/LC_MESSAGES/kcmkwincompositing.mo share/locale/th/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/th/LC_MESSAGES/kcmkwm.mo share/locale/th/LC_MESSAGES/kwin.mo share/locale/th/LC_MESSAGES/kwin_clients.mo share/locale/th/LC_MESSAGES/kwin_effects.mo share/locale/tr/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/tr/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/tr/LC_MESSAGES/kcm_kwindecoration.mo share/locale/tr/LC_MESSAGES/kcm_kwinrules.mo share/locale/tr/LC_MESSAGES/kcm_kwintabbox.mo share/locale/tr/LC_MESSAGES/kcmkwincompositing.mo share/locale/tr/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/tr/LC_MESSAGES/kcmkwm.mo share/locale/tr/LC_MESSAGES/kwin.mo share/locale/tr/LC_MESSAGES/kwin_clients.mo share/locale/tr/LC_MESSAGES/kwin_effects.mo share/locale/tr/LC_MESSAGES/kwin_scripting.mo share/locale/tr/LC_MESSAGES/kwin_scripts.mo share/locale/ug/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/ug/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ug/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ug/LC_MESSAGES/kcm_kwinrules.mo share/locale/ug/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ug/LC_MESSAGES/kcmkwincompositing.mo share/locale/ug/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ug/LC_MESSAGES/kcmkwm.mo share/locale/ug/LC_MESSAGES/kwin.mo share/locale/ug/LC_MESSAGES/kwin_clients.mo share/locale/ug/LC_MESSAGES/kwin_effects.mo share/locale/ug/LC_MESSAGES/kwin_scripting.mo share/locale/uk/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/uk/LC_MESSAGES/kcm_kwin_effects.mo share/locale/uk/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/uk/LC_MESSAGES/kcm_kwindecoration.mo share/locale/uk/LC_MESSAGES/kcm_kwinrules.mo share/locale/uk/LC_MESSAGES/kcm_kwintabbox.mo share/locale/uk/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/uk/LC_MESSAGES/kcmkwincommon.mo share/locale/uk/LC_MESSAGES/kcmkwincompositing.mo share/locale/uk/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/uk/LC_MESSAGES/kcmkwm.mo share/locale/uk/LC_MESSAGES/kwin.mo share/locale/uk/LC_MESSAGES/kwin_clients.mo share/locale/uk/LC_MESSAGES/kwin_effects.mo share/locale/uk/LC_MESSAGES/kwin_scripting.mo share/locale/uk/LC_MESSAGES/kwin_scripts.mo share/locale/uz/LC_MESSAGES/kcm_kwindecoration.mo share/locale/uz/LC_MESSAGES/kcm_kwinrules.mo share/locale/uz/LC_MESSAGES/kcmkwm.mo share/locale/uz/LC_MESSAGES/kwin.mo share/locale/uz/LC_MESSAGES/kwin_clients.mo share/locale/uz@cyrillic/LC_MESSAGES/kcm_kwindecoration.mo share/locale/uz@cyrillic/LC_MESSAGES/kcm_kwinrules.mo share/locale/uz@cyrillic/LC_MESSAGES/kcmkwm.mo share/locale/uz@cyrillic/LC_MESSAGES/kwin.mo share/locale/uz@cyrillic/LC_MESSAGES/kwin_clients.mo share/locale/vi/LC_MESSAGES/kcm_kwindecoration.mo share/locale/vi/LC_MESSAGES/kcm_kwinrules.mo share/locale/vi/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/vi/LC_MESSAGES/kcmkwm.mo share/locale/vi/LC_MESSAGES/kwin.mo share/locale/vi/LC_MESSAGES/kwin_clients.mo +share/locale/vi/LC_MESSAGES/kwin_effects.mo share/locale/wa/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/wa/LC_MESSAGES/kcm_kwindecoration.mo share/locale/wa/LC_MESSAGES/kcm_kwinrules.mo share/locale/wa/LC_MESSAGES/kcm_kwintabbox.mo share/locale/wa/LC_MESSAGES/kcmkwincompositing.mo share/locale/wa/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/wa/LC_MESSAGES/kcmkwm.mo share/locale/wa/LC_MESSAGES/kwin.mo share/locale/wa/LC_MESSAGES/kwin_clients.mo share/locale/wa/LC_MESSAGES/kwin_effects.mo share/locale/xh/LC_MESSAGES/kcm_kwindecoration.mo share/locale/xh/LC_MESSAGES/kcmkwm.mo share/locale/xh/LC_MESSAGES/kwin.mo share/locale/zh_CN/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/zh_CN/LC_MESSAGES/kcm_kwin_effects.mo share/locale/zh_CN/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/zh_CN/LC_MESSAGES/kcm_kwindecoration.mo share/locale/zh_CN/LC_MESSAGES/kcm_kwinrules.mo share/locale/zh_CN/LC_MESSAGES/kcm_kwintabbox.mo share/locale/zh_CN/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/zh_CN/LC_MESSAGES/kcmkwincommon.mo share/locale/zh_CN/LC_MESSAGES/kcmkwincompositing.mo share/locale/zh_CN/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/zh_CN/LC_MESSAGES/kcmkwm.mo share/locale/zh_CN/LC_MESSAGES/kwin.mo share/locale/zh_CN/LC_MESSAGES/kwin_clients.mo share/locale/zh_CN/LC_MESSAGES/kwin_effects.mo share/locale/zh_CN/LC_MESSAGES/kwin_scripting.mo share/locale/zh_CN/LC_MESSAGES/kwin_scripts.mo share/locale/zh_TW/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/zh_TW/LC_MESSAGES/kcm_kwin_effects.mo share/locale/zh_TW/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/zh_TW/LC_MESSAGES/kcm_kwindecoration.mo share/locale/zh_TW/LC_MESSAGES/kcm_kwinrules.mo share/locale/zh_TW/LC_MESSAGES/kcm_kwintabbox.mo share/locale/zh_TW/LC_MESSAGES/kcmkwincommon.mo share/locale/zh_TW/LC_MESSAGES/kcmkwincompositing.mo share/locale/zh_TW/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/zh_TW/LC_MESSAGES/kcmkwm.mo share/locale/zh_TW/LC_MESSAGES/kwin.mo share/locale/zh_TW/LC_MESSAGES/kwin_clients.mo share/locale/zh_TW/LC_MESSAGES/kwin_effects.mo share/locale/zh_TW/LC_MESSAGES/kwin_scripting.mo share/locale/zh_TW/LC_MESSAGES/kwin_scripts.mo share/qlogging-categories5/org_kde_kwin.categories diff --git a/x11/plasma5-kactivitymanagerd/Makefile b/x11/plasma5-kactivitymanagerd/Makefile index bb6f9635efc9..1889705173c0 100644 --- a/x11/plasma5-kactivitymanagerd/Makefile +++ b/x11/plasma5-kactivitymanagerd/Makefile @@ -1,17 +1,16 @@ PORTNAME= kactivitymanagerd DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= x11 kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= System service to manage user's activities, track the usage patterns BUILD_DEPENDS= ${LOCALBASE}/include/boost/range/algorithm.hpp:devel/boost-libs USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs config configwidgets coreaddons crash dbusaddons ecm \ globalaccel i18n kio service widgetsaddons windowsystem xmlgui USE_QT= concurrent core dbus gui network sql widgets xml \ buildtools_build qmake_build .include diff --git a/x11/plasma5-kactivitymanagerd/distinfo b/x11/plasma5-kactivitymanagerd/distinfo index de7c55e87325..0c257d5e6e31 100644 --- a/x11/plasma5-kactivitymanagerd/distinfo +++ b/x11/plasma5-kactivitymanagerd/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1625602762 -SHA256 (KDE/plasma/5.22.3/kactivitymanagerd-5.22.3.tar.xz) = 5d47666f5d82771e7cf7d81e6063a912ecf44001199a25470b246e0244d250c4 -SIZE (KDE/plasma/5.22.3/kactivitymanagerd-5.22.3.tar.xz) = 103096 +TIMESTAMP = 1627399205 +SHA256 (KDE/plasma/5.22.4/kactivitymanagerd-5.22.4.tar.xz) = db87d0eb15a81117e31937078b095939e23c375fd939fe0ac1d4edec31ada0ce +SIZE (KDE/plasma/5.22.4/kactivitymanagerd-5.22.4.tar.xz) = 103128 diff --git a/x11/plasma5-kgamma5/Makefile b/x11/plasma5-kgamma5/Makefile index 867fef2d92fb..dae06bc5b386 100644 --- a/x11/plasma5-kgamma5/Makefile +++ b/x11/plasma5-kgamma5/Makefile @@ -1,21 +1,20 @@ PORTNAME= kgamma5 DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= x11 kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 display gamma settings USES= cmake compiler:c++11-lang cpe gettext kde:5 qt:5 \ tar:xz xorg USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons crash emoticons guiaddons i18n \ iconthemes init itemmodels itemviews jobwidgets \ kio notifications parts service solid sonnet \ textwidgets unitconversion widgetsaddons windowsystem xmlgui \ doctools_build ecm_build USE_QT= core dbus gui network printsupport widgets x11extras xml \ buildtools_build qmake_build USE_XORG= ice sm x11 xext xxf86vm .include diff --git a/x11/plasma5-kgamma5/distinfo b/x11/plasma5-kgamma5/distinfo index 82319b8441c1..ed0300ec2a3b 100644 --- a/x11/plasma5-kgamma5/distinfo +++ b/x11/plasma5-kgamma5/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1625602763 -SHA256 (KDE/plasma/5.22.3/kgamma5-5.22.3.tar.xz) = 4c27add40650c326f820bd013045b9b813b1cc4efb00fcf187bbc8bbc854f2ec -SIZE (KDE/plasma/5.22.3/kgamma5-5.22.3.tar.xz) = 83204 +TIMESTAMP = 1627399206 +SHA256 (KDE/plasma/5.22.4/kgamma5-5.22.4.tar.xz) = b4b59897426f941a2681aaf0b41b932c1da0e00efd9e7df8b919c730404cfd39 +SIZE (KDE/plasma/5.22.4/kgamma5-5.22.4.tar.xz) = 83232 diff --git a/x11/plasma5-kscreen/distinfo b/x11/plasma5-kscreen/distinfo index 4728fe67b539..98e1ff2a80bd 100644 --- a/x11/plasma5-kscreen/distinfo +++ b/x11/plasma5-kscreen/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1625602764 -SHA256 (KDE/plasma/5.22.3/kscreen-5.22.3.tar.xz) = 56be75468c690b52b8ce01ee77b0d475c60c07460f2b17bc1b58439b072d5125 -SIZE (KDE/plasma/5.22.3/kscreen-5.22.3.tar.xz) = 117472 +TIMESTAMP = 1627399207 +SHA256 (KDE/plasma/5.22.4/kscreen-5.22.4.tar.xz) = 27f8d52b52c3cee0b9def5bf2fc85916e29495b4b1e1d14dfd99f452ae3a7642 +SIZE (KDE/plasma/5.22.4/kscreen-5.22.4.tar.xz) = 117636 diff --git a/x11/plasma5-kwayland-integration/distinfo b/x11/plasma5-kwayland-integration/distinfo index 57c52f05279d..e6fd54840f9f 100644 --- a/x11/plasma5-kwayland-integration/distinfo +++ b/x11/plasma5-kwayland-integration/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1625602765 -SHA256 (KDE/plasma/5.22.3/kwayland-integration-5.22.3.tar.xz) = 3f5a3069026d4e71fd4c7ac47265862cc61550e8a72380e529343079c942ca24 -SIZE (KDE/plasma/5.22.3/kwayland-integration-5.22.3.tar.xz) = 22772 +TIMESTAMP = 1627399208 +SHA256 (KDE/plasma/5.22.4/kwayland-integration-5.22.4.tar.xz) = cb068ad16d5275e4875c8d53230e7974003733e7fc2db944522922bac700d49e +SIZE (KDE/plasma/5.22.4/kwayland-integration-5.22.4.tar.xz) = 22764 diff --git a/x11/plasma5-kwayland-server/distinfo b/x11/plasma5-kwayland-server/distinfo index 5341714e6346..673ab2a1490a 100644 --- a/x11/plasma5-kwayland-server/distinfo +++ b/x11/plasma5-kwayland-server/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1625602766 -SHA256 (KDE/plasma/5.22.3/kwayland-server-5.22.3.tar.xz) = d6b04984a3a1940d448b1cf78bbb895889718a7ed86222f14fb2b424a465bd30 -SIZE (KDE/plasma/5.22.3/kwayland-server-5.22.3.tar.xz) = 219048 +TIMESTAMP = 1627399210 +SHA256 (KDE/plasma/5.22.4/kwayland-server-5.22.4.tar.xz) = da167417221610d521fefbe4ae1322aa20e7d6ac782cadcb61972f915589767c +SIZE (KDE/plasma/5.22.4/kwayland-server-5.22.4.tar.xz) = 218984 diff --git a/x11/plasma5-layer-shell-qt/distinfo b/x11/plasma5-layer-shell-qt/distinfo index 45669d86b023..38cd87fb2c06 100644 --- a/x11/plasma5-layer-shell-qt/distinfo +++ b/x11/plasma5-layer-shell-qt/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1625602767 -SHA256 (KDE/plasma/5.22.3/layer-shell-qt-5.22.3.tar.xz) = d85ec7f7aa8a90fe454a4087cfebf17d1827ecf8871abd814f2e05621086ce4a -SIZE (KDE/plasma/5.22.3/layer-shell-qt-5.22.3.tar.xz) = 17616 +TIMESTAMP = 1627399211 +SHA256 (KDE/plasma/5.22.4/layer-shell-qt-5.22.4.tar.xz) = 1528e64b441f2c67c71f87785485644376391489fdef9a9de0c0034517993886 +SIZE (KDE/plasma/5.22.4/layer-shell-qt-5.22.4.tar.xz) = 17620 diff --git a/x11/plasma5-libkscreen/Makefile b/x11/plasma5-libkscreen/Makefile index 7cc63f94e99c..af6adbdd1060 100644 --- a/x11/plasma5-libkscreen/Makefile +++ b/x11/plasma5-libkscreen/Makefile @@ -1,17 +1,16 @@ PORTNAME= libkscreen DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= x11 kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 screen management library USES= cmake compiler:c++11-lib cpe kde:5 pathfix \ pkgconfig qt:5 tar:xz xorg USE_KDE= wayland \ ecm_build USE_QT= core dbus gui x11extras \ buildtools_build qmake_build testlib_build USE_XORG= x11 xcb xrandr .include diff --git a/x11/plasma5-libkscreen/distinfo b/x11/plasma5-libkscreen/distinfo index fb00ef1b403a..9e61fe35486c 100644 --- a/x11/plasma5-libkscreen/distinfo +++ b/x11/plasma5-libkscreen/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1625602768 -SHA256 (KDE/plasma/5.22.3/libkscreen-5.22.3.tar.xz) = 01d03c3ab827a67e2bea55778e6e4e9d61639bf04208061219066a44d7ef10f2 -SIZE (KDE/plasma/5.22.3/libkscreen-5.22.3.tar.xz) = 95416 +TIMESTAMP = 1627399212 +SHA256 (KDE/plasma/5.22.4/libkscreen-5.22.4.tar.xz) = a211b9b900ced93f506936bfb1e28ec19aa52ebec4cb08e8a15e382114fc557c +SIZE (KDE/plasma/5.22.4/libkscreen-5.22.4.tar.xz) = 95416 diff --git a/x11/plasma5-plasma-desktop/Makefile b/x11/plasma5-plasma-desktop/Makefile index 3c3f32762d4c..88d3fd19e8a9 100644 --- a/x11/plasma5-plasma-desktop/Makefile +++ b/x11/plasma5-plasma-desktop/Makefile @@ -1,72 +1,71 @@ PORTNAME= plasma-desktop DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= x11 kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 plasma desktop # TODO: update packagekit-qt5 #LIB_DEPENDS= libpackagekit-qt.so:ports-mgmt/packagekit-qt5 LIB_DEPENDS= libboost_system.so:devel/boost-libs \ libfontconfig.so:x11-fonts/fontconfig \ libfreetype.so:print/freetype2 \ libxkbcommon.so:x11/libxkbcommon \ libxcb-image.so:x11/xcb-util-image \ libxcb-keysyms.so:x11/xcb-util-keysyms \ libxcb-util.so:x11/xcb-util \ libxkbfile.so:x11/libxkbfile RUN_DEPENDS= iso-codes>=0:misc/iso-codes \ xf86-input-evdev>0:x11-drivers/xf86-input-evdev \ xf86-input-libinput>0:x11-drivers/xf86-input-libinput \ setxkbmap:x11/setxkbmap BUILD_DEPENDS= xf86-input-evdev>0:x11-drivers/xf86-input-evdev \ xf86-input-synaptics>0:x11-drivers/xf86-input-synaptics \ xf86-input-libinput>0:x11-drivers/xf86-input-libinput USES= cmake compiler:c++11-lib cpe desktop-file-utils gettext gnome \ kde:5 pkgconfig python:3.5+,run qt:5 shebangfix tar:xz xorg USE_GNOME= glib20 USE_KDE= activities activities-stats archive attica auth baloo \ bookmarks codecs completion config configwidgets coreaddons \ crash dbusaddons emoticons filemetadata \ globalaccel guiaddons i18n iconthemes init itemmodels \ itemviews jobwidgets kcmutils kdeclarative kdelibs4support \ kio libksysguard newstuff notifications \ notifyconfig package parts people plasma-framework \ plasma-workspace runner service solid \ sonnet textwidgets unitconversion wallet \ widgetsaddons windowsystem xmlgui \ doctools_build ecm_build \ drkonqi_run infocenter_run kde-cli-tools_run kmenuedit_run \ ksysguard_run \ polkit-kde-agent-1_run systemsettings_run USE_QT= concurrent core dbus declarative gui network phonon4 printsupport \ sql svg widgets x11extras xml \ buildtools_build qmake_build USE_XORG= ice sm x11 xcb xcursor xext xfixes xft xi xrender CMAKE_ON= WANT_SYNAPTICS SHEBANG_FILES= kcms/ksmserver/kconf_update/*.py \ kcms/keyboard/*.py OPTIONS_SUB= yes OPTIONS_GROUP= IM OPTIONS_GROUP_IM= IBUS SCIM IM_DESC= Input Method Support IBUS_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_IBus IBUS_LIB_DEPENDS= libibus-1.0.so:textproc/ibus IBUS_DESC= Enable IBUS backend for input dialog SCIM_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_SCIM SCIM_LIB_DEPENDS= libscim-1.0.so:textproc/scim SCIM_DESC= Enable SCIM backend for input dialog post-patch: # Set the correct iso-codes directory ${REINPLACE_CMD} -e '/isoCodesXmlDir/ s#/usr/share#${LOCALBASE}/share#g' \ ${PATCH_WRKSRC}/kcms/keyboard/iso_codes.h .include diff --git a/x11/plasma5-plasma-desktop/distinfo b/x11/plasma5-plasma-desktop/distinfo index d6a51fbf252a..0404a77c64bf 100644 --- a/x11/plasma5-plasma-desktop/distinfo +++ b/x11/plasma5-plasma-desktop/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1625602778 -SHA256 (KDE/plasma/5.22.3/plasma-desktop-5.22.3.tar.xz) = bd5b838572517859e7fda51f39ed599799e3b758b3edddc3865dd6b63a37d610 -SIZE (KDE/plasma/5.22.3/plasma-desktop-5.22.3.tar.xz) = 15738116 +TIMESTAMP = 1627399214 +SHA256 (KDE/plasma/5.22.4/plasma-desktop-5.22.4.tar.xz) = 728e9f8ec670f4f0370c9cc86ede317c682f95f3655bddcf8bb06a38192d4230 +SIZE (KDE/plasma/5.22.4/plasma-desktop-5.22.4.tar.xz) = 15742204 diff --git a/x11/plasma5-plasma-integration/distinfo b/x11/plasma5-plasma-integration/distinfo index bd253307a375..c9105649a970 100644 --- a/x11/plasma5-plasma-integration/distinfo +++ b/x11/plasma5-plasma-integration/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1625602779 -SHA256 (KDE/plasma/5.22.3/plasma-integration-5.22.3.tar.xz) = 18f254cd1de0f7f21aae364f93bdef5e195f3595eb616bd63fe10efb41e0ba0b -SIZE (KDE/plasma/5.22.3/plasma-integration-5.22.3.tar.xz) = 65596 +TIMESTAMP = 1627399216 +SHA256 (KDE/plasma/5.22.4/plasma-integration-5.22.4.tar.xz) = e08b0c8030ef465d44de4f460d71970f15c7697c7d3095afa9d07b2d41a45467 +SIZE (KDE/plasma/5.22.4/plasma-integration-5.22.4.tar.xz) = 65560 diff --git a/x11/plasma5-plasma-workspace/Makefile b/x11/plasma5-plasma-workspace/Makefile index 0eebe131c179..300058606f1a 100644 --- a/x11/plasma5-plasma-workspace/Makefile +++ b/x11/plasma5-plasma-workspace/Makefile @@ -1,58 +1,57 @@ PORTNAME= plasma-workspace DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 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 emoticons filemetadata globalaccel \ guiaddons holidays i18n iconthemes idletime init itemmodels \ itemviews jobwidgets js jsembed kcmutils kdeclarative \ 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 \ doctools_build ecm_build \ 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 \ wayland webkit widgets x11extras xml \ buildtools_build qmake_build testlib_build \ paths_run 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.* post-stage: ${INSTALL_SCRIPT} ${FILESDIR}/startplasma-wayland.sh ${STAGEDIR}/${LOCALBASE}/bin/ .include diff --git a/x11/plasma5-plasma-workspace/distinfo b/x11/plasma5-plasma-workspace/distinfo index 96bea342dabb..e61aeeaa27f1 100644 --- a/x11/plasma5-plasma-workspace/distinfo +++ b/x11/plasma5-plasma-workspace/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1625602783 -SHA256 (KDE/plasma/5.22.3/plasma-workspace-5.22.3.tar.xz) = d95c0a1557a112aabcf502656b7554e88130dfcae0515c0014669304faa5a4d6 -SIZE (KDE/plasma/5.22.3/plasma-workspace-5.22.3.tar.xz) = 8358432 +TIMESTAMP = 1627399217 +SHA256 (KDE/plasma/5.22.4/plasma-workspace-5.22.4.tar.xz) = af16b7151d87151a197b8fba41092f14895c0e64bfab05f562f831e18c6120ba +SIZE (KDE/plasma/5.22.4/plasma-workspace-5.22.4.tar.xz) = 8381132 diff --git a/x11/plasma5-plasma-workspace/pkg-plist b/x11/plasma5-plasma-workspace/pkg-plist index 45e7e668a116..33fcacde9f69 100644 --- a/x11/plasma5-plasma-workspace/pkg-plist +++ b/x11/plasma5-plasma-workspace/pkg-plist @@ -1,6083 +1,6115 @@ 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-apply-colorscheme bin/plasma-apply-cursortheme bin/plasma-apply-desktoptheme bin/plasma-apply-lookandfeel bin/plasma-apply-wallpaperimage bin/plasma-shutdown bin/plasma_session bin/plasma_waitforname bin/plasmashell bin/plasmawindowed bin/startplasma-wayland bin/startplasma-wayland.sh 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/autostartscriptdesktopfile.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/krunnerglobalshortcuts lib/kconf_update_bin/krunnerhistory 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/libkfontinst.so lib/libkfontinst.so.%%KDE_PLASMA_VERSION%% lib/libkfontinst.so.5 lib/libkfontinstui.so lib/libkfontinstui.so.%%KDE_PLASMA_VERSION%% lib/libkfontinstui.so.5 lib/libkrdb.so 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_formats.so %%QT_PLUGINDIR%%/kcm_krunner_kill.so %%QT_PLUGINDIR%%/kcms/kcm_autostart.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_nightcolor.so %%QT_PLUGINDIR%%/kcms/kcm_notifications.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/calculator.so %%QT_PLUGINDIR%%/kf5/krunner/krunner_bookmarksrunner.so %%QT_PLUGINDIR%%/kf5/krunner/krunner_kill.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/locations.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/KeyboardLayoutSwitcher.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 lib/systemd/user/plasma-baloorunner.service lib/systemd/user/plasma-gmenudbusmenuproxy.service lib/systemd/user/plasma-kcminit-phase1.service lib/systemd/user/plasma-kcminit.service lib/systemd/user/plasma-krunner.service lib/systemd/user/plasma-ksmserver.service lib/systemd/user/plasma-plasmashell.service lib/systemd/user/plasma-restoresession.service lib/systemd/user/plasma-xembedsniproxy.service 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.fontinst.service share/dbus-1/services/org.kde.krunner.service share/dbus-1/services/org.kde.plasma.Notifications.service share/dbus-1/services/org.kde.runners.baloo.service share/dbus-1/system-services/org.kde.fontinst.service share/dbus-1/system.d/org.kde.fontinst.conf share/desktop-directories/kf5-development-translation.directory share/desktop-directories/kf5-development-webdevelopment.directory share/desktop-directories/kf5-development.directory share/desktop-directories/kf5-editors.directory share/desktop-directories/kf5-edu-languages.directory share/desktop-directories/kf5-edu-mathematics.directory share/desktop-directories/kf5-edu-miscellaneous.directory share/desktop-directories/kf5-edu-science.directory share/desktop-directories/kf5-edu-tools.directory share/desktop-directories/kf5-education.directory share/desktop-directories/kf5-games-arcade.directory share/desktop-directories/kf5-games-board.directory share/desktop-directories/kf5-games-card.directory share/desktop-directories/kf5-games-kids.directory share/desktop-directories/kf5-games-logic.directory share/desktop-directories/kf5-games-roguelikes.directory share/desktop-directories/kf5-games-strategy.directory share/desktop-directories/kf5-games.directory share/desktop-directories/kf5-graphics.directory share/desktop-directories/kf5-internet-terminal.directory share/desktop-directories/kf5-internet.directory share/desktop-directories/kf5-main.directory share/desktop-directories/kf5-more.directory share/desktop-directories/kf5-multimedia.directory share/desktop-directories/kf5-network.directory share/desktop-directories/kf5-office.directory share/desktop-directories/kf5-science.directory share/desktop-directories/kf5-settingsmenu.directory share/desktop-directories/kf5-system-terminal.directory share/desktop-directories/kf5-system.directory share/desktop-directories/kf5-toys.directory share/desktop-directories/kf5-unknown.directory share/desktop-directories/kf5-utilities-accessibility.directory share/desktop-directories/kf5-utilities-desktop.directory share/desktop-directories/kf5-utilities-file.directory share/desktop-directories/kf5-utilities-peripherals.directory share/desktop-directories/kf5-utilities-pim.directory share/desktop-directories/kf5-utilities-xutils.directory share/desktop-directories/kf5-utilities.directory share/doc/HTML/ca/kcontrol/autostart/index.cache.bz2 share/doc/HTML/ca/kcontrol/autostart/index.docbook share/doc/HTML/ca/kcontrol/colors/index.cache.bz2 share/doc/HTML/ca/kcontrol/colors/index.docbook share/doc/HTML/ca/kcontrol/desktopthemedetails/get-new-theme.png share/doc/HTML/ca/kcontrol/desktopthemedetails/index.cache.bz2 share/doc/HTML/ca/kcontrol/desktopthemedetails/index.docbook share/doc/HTML/ca/kcontrol/desktopthemedetails/main.png share/doc/HTML/ca/kcontrol/fontinst/index.cache.bz2 share/doc/HTML/ca/kcontrol/fontinst/index.docbook share/doc/HTML/ca/kcontrol/fonts/adjust-all.png share/doc/HTML/ca/kcontrol/fonts/index.cache.bz2 share/doc/HTML/ca/kcontrol/fonts/index.docbook share/doc/HTML/ca/kcontrol/fonts/main.png share/doc/HTML/ca/kcontrol/formats/index.cache.bz2 share/doc/HTML/ca/kcontrol/formats/index.docbook share/doc/HTML/ca/kcontrol/icons/get-new-theme.png share/doc/HTML/ca/kcontrol/icons/index.cache.bz2 share/doc/HTML/ca/kcontrol/icons/index.docbook share/doc/HTML/ca/kcontrol/icons/main.png share/doc/HTML/ca/kcontrol/icons/use-of-icons.png share/doc/HTML/ca/kcontrol/kcmstyle/index.cache.bz2 share/doc/HTML/ca/kcontrol/kcmstyle/index.docbook share/doc/HTML/ca/kcontrol/notifications/index.cache.bz2 share/doc/HTML/ca/kcontrol/notifications/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/autostart/index.cache.bz2 share/doc/HTML/de/kcontrol/autostart/index.docbook share/doc/HTML/de/kcontrol/colors/index.cache.bz2 share/doc/HTML/de/kcontrol/colors/index.docbook share/doc/HTML/de/kcontrol/desktopthemedetails/index.cache.bz2 share/doc/HTML/de/kcontrol/desktopthemedetails/index.docbook share/doc/HTML/de/kcontrol/fontinst/index.cache.bz2 share/doc/HTML/de/kcontrol/fontinst/index.docbook share/doc/HTML/de/kcontrol/fonts/index.cache.bz2 share/doc/HTML/de/kcontrol/fonts/index.docbook share/doc/HTML/de/kcontrol/formats/index.cache.bz2 share/doc/HTML/de/kcontrol/formats/index.docbook share/doc/HTML/de/kcontrol/icons/index.cache.bz2 share/doc/HTML/de/kcontrol/icons/index.docbook share/doc/HTML/de/kcontrol/kcmstyle/index.cache.bz2 share/doc/HTML/de/kcontrol/kcmstyle/index.docbook share/doc/HTML/de/kcontrol/notifications/index.cache.bz2 share/doc/HTML/de/kcontrol/notifications/index.docbook share/doc/HTML/de/kcontrol/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/autostart/index.cache.bz2 share/doc/HTML/en/kcontrol/autostart/index.docbook share/doc/HTML/en/kcontrol/colors/index.cache.bz2 share/doc/HTML/en/kcontrol/colors/index.docbook share/doc/HTML/en/kcontrol/desktopthemedetails/edit-delete.png share/doc/HTML/en/kcontrol/desktopthemedetails/edit-undo.png share/doc/HTML/en/kcontrol/desktopthemedetails/get-new-theme.png share/doc/HTML/en/kcontrol/desktopthemedetails/index.cache.bz2 share/doc/HTML/en/kcontrol/desktopthemedetails/index.docbook share/doc/HTML/en/kcontrol/desktopthemedetails/main.png share/doc/HTML/en/kcontrol/fontinst/edit-delete.png share/doc/HTML/en/kcontrol/fontinst/index.cache.bz2 share/doc/HTML/en/kcontrol/fontinst/index.docbook share/doc/HTML/en/kcontrol/fonts/adjust-all.png share/doc/HTML/en/kcontrol/fonts/index.cache.bz2 share/doc/HTML/en/kcontrol/fonts/index.docbook share/doc/HTML/en/kcontrol/fonts/main.png share/doc/HTML/en/kcontrol/formats/index.cache.bz2 share/doc/HTML/en/kcontrol/formats/index.docbook 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/notifications/index.cache.bz2 share/doc/HTML/en/kcontrol/notifications/index.docbook share/doc/HTML/en/kcontrol/screenlocker/index.cache.bz2 share/doc/HTML/en/kcontrol/screenlocker/index.docbook share/doc/HTML/en/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-widget.png share/doc/HTML/en/klipper/screenshot.png share/doc/HTML/es/kcontrol/autostart/index.cache.bz2 share/doc/HTML/es/kcontrol/autostart/index.docbook share/doc/HTML/es/kcontrol/desktopthemedetails/index.cache.bz2 share/doc/HTML/es/kcontrol/desktopthemedetails/index.docbook share/doc/HTML/es/kcontrol/fontinst/index.cache.bz2 share/doc/HTML/es/kcontrol/fontinst/index.docbook share/doc/HTML/es/kcontrol/fonts/index.cache.bz2 share/doc/HTML/es/kcontrol/fonts/index.docbook share/doc/HTML/es/kcontrol/icons/index.cache.bz2 share/doc/HTML/es/kcontrol/icons/index.docbook share/doc/HTML/es/kcontrol/kcmstyle/index.cache.bz2 share/doc/HTML/es/kcontrol/kcmstyle/index.docbook share/doc/HTML/id/kcontrol/autostart/index.cache.bz2 share/doc/HTML/id/kcontrol/autostart/index.docbook share/doc/HTML/id/kcontrol/colors/index.cache.bz2 share/doc/HTML/id/kcontrol/colors/index.docbook share/doc/HTML/id/kcontrol/desktopthemedetails/index.cache.bz2 share/doc/HTML/id/kcontrol/desktopthemedetails/index.docbook share/doc/HTML/id/kcontrol/fontinst/index.cache.bz2 share/doc/HTML/id/kcontrol/fontinst/index.docbook share/doc/HTML/id/kcontrol/fonts/index.cache.bz2 share/doc/HTML/id/kcontrol/fonts/index.docbook share/doc/HTML/id/kcontrol/formats/index.cache.bz2 share/doc/HTML/id/kcontrol/formats/index.docbook share/doc/HTML/id/kcontrol/icons/index.cache.bz2 share/doc/HTML/id/kcontrol/icons/index.docbook share/doc/HTML/id/kcontrol/kcmstyle/index.cache.bz2 share/doc/HTML/id/kcontrol/kcmstyle/index.docbook share/doc/HTML/id/kcontrol/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/autostart/index.cache.bz2 share/doc/HTML/it/kcontrol/autostart/index.docbook share/doc/HTML/it/kcontrol/colors/index.cache.bz2 share/doc/HTML/it/kcontrol/colors/index.docbook share/doc/HTML/it/kcontrol/desktopthemedetails/index.cache.bz2 share/doc/HTML/it/kcontrol/desktopthemedetails/index.docbook share/doc/HTML/it/kcontrol/fontinst/index.cache.bz2 share/doc/HTML/it/kcontrol/fontinst/index.docbook share/doc/HTML/it/kcontrol/fonts/index.cache.bz2 share/doc/HTML/it/kcontrol/fonts/index.docbook share/doc/HTML/it/kcontrol/formats/index.cache.bz2 share/doc/HTML/it/kcontrol/formats/index.docbook share/doc/HTML/it/kcontrol/icons/index.cache.bz2 share/doc/HTML/it/kcontrol/icons/index.docbook share/doc/HTML/it/kcontrol/kcmstyle/index.cache.bz2 share/doc/HTML/it/kcontrol/kcmstyle/index.docbook share/doc/HTML/it/kcontrol/notifications/index.cache.bz2 share/doc/HTML/it/kcontrol/notifications/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/autostart/index.cache.bz2 share/doc/HTML/nl/kcontrol/autostart/index.docbook share/doc/HTML/nl/kcontrol/colors/index.cache.bz2 share/doc/HTML/nl/kcontrol/colors/index.docbook share/doc/HTML/nl/kcontrol/desktopthemedetails/index.cache.bz2 share/doc/HTML/nl/kcontrol/desktopthemedetails/index.docbook share/doc/HTML/nl/kcontrol/fontinst/index.cache.bz2 share/doc/HTML/nl/kcontrol/fontinst/index.docbook share/doc/HTML/nl/kcontrol/fonts/index.cache.bz2 share/doc/HTML/nl/kcontrol/fonts/index.docbook share/doc/HTML/nl/kcontrol/formats/index.cache.bz2 share/doc/HTML/nl/kcontrol/formats/index.docbook share/doc/HTML/nl/kcontrol/icons/index.cache.bz2 share/doc/HTML/nl/kcontrol/icons/index.docbook share/doc/HTML/nl/kcontrol/kcmstyle/index.cache.bz2 share/doc/HTML/nl/kcontrol/kcmstyle/index.docbook share/doc/HTML/nl/kcontrol/notifications/index.cache.bz2 share/doc/HTML/nl/kcontrol/notifications/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/autostart/index.cache.bz2 share/doc/HTML/pt/kcontrol/autostart/index.docbook share/doc/HTML/pt/kcontrol/colors/index.cache.bz2 share/doc/HTML/pt/kcontrol/colors/index.docbook share/doc/HTML/pt/kcontrol/desktopthemedetails/index.cache.bz2 share/doc/HTML/pt/kcontrol/desktopthemedetails/index.docbook share/doc/HTML/pt/kcontrol/fontinst/index.cache.bz2 share/doc/HTML/pt/kcontrol/fontinst/index.docbook share/doc/HTML/pt/kcontrol/fonts/index.cache.bz2 share/doc/HTML/pt/kcontrol/fonts/index.docbook share/doc/HTML/pt/kcontrol/formats/index.cache.bz2 share/doc/HTML/pt/kcontrol/formats/index.docbook share/doc/HTML/pt/kcontrol/kcmstyle/index.cache.bz2 share/doc/HTML/pt/kcontrol/kcmstyle/index.docbook share/doc/HTML/pt/kcontrol/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/autostart/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/autostart/index.docbook share/doc/HTML/pt_BR/kcontrol/colors/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/colors/index.docbook share/doc/HTML/pt_BR/kcontrol/desktopthemedetails/customizing.png share/doc/HTML/pt_BR/kcontrol/desktopthemedetails/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/desktopthemedetails/index.docbook share/doc/HTML/pt_BR/kcontrol/fontinst/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/fontinst/index.docbook share/doc/HTML/pt_BR/kcontrol/fonts/adjust-all.png share/doc/HTML/pt_BR/kcontrol/fonts/anti-aliasing.png share/doc/HTML/pt_BR/kcontrol/fonts/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/fonts/index.docbook share/doc/HTML/pt_BR/kcontrol/fonts/main.png share/doc/HTML/pt_BR/kcontrol/formats/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/formats/index.docbook share/doc/HTML/pt_BR/kcontrol/icons/effects.png share/doc/HTML/pt_BR/kcontrol/icons/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/icons/index.docbook share/doc/HTML/pt_BR/kcontrol/icons/install-theme.png share/doc/HTML/pt_BR/kcontrol/icons/main.png share/doc/HTML/pt_BR/kcontrol/icons/use-of-icons.png share/doc/HTML/pt_BR/kcontrol/kcmstyle/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/kcmstyle/index.docbook share/doc/HTML/pt_BR/kcontrol/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/formats/index.cache.bz2 share/doc/HTML/ru/kcontrol/formats/index.docbook share/doc/HTML/ru/kcontrol/icons/delete-theme.png share/doc/HTML/ru/kcontrol/icons/effects.png share/doc/HTML/ru/kcontrol/icons/get-new-theme.png share/doc/HTML/ru/kcontrol/icons/index.cache.bz2 share/doc/HTML/ru/kcontrol/icons/index.docbook share/doc/HTML/ru/kcontrol/icons/install-theme.png share/doc/HTML/ru/kcontrol/icons/main.png share/doc/HTML/ru/kcontrol/icons/size.png share/doc/HTML/ru/kcontrol/icons/use-of-icons.png share/doc/HTML/ru/kcontrol/kcmstyle/index.cache.bz2 share/doc/HTML/ru/kcontrol/kcmstyle/index.docbook share/doc/HTML/ru/kcontrol/notifications/index.cache.bz2 share/doc/HTML/ru/kcontrol/notifications/index.docbook share/doc/HTML/ru/kcontrol/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/autostart/index.cache.bz2 share/doc/HTML/sr/kcontrol/autostart/index.docbook share/doc/HTML/sr/kcontrol/icons/index.cache.bz2 share/doc/HTML/sr/kcontrol/icons/index.docbook share/doc/HTML/sr@latin/kcontrol/autostart/index.cache.bz2 share/doc/HTML/sr@latin/kcontrol/autostart/index.docbook share/doc/HTML/sr@latin/kcontrol/icons/index.cache.bz2 share/doc/HTML/sr@latin/kcontrol/icons/index.docbook share/doc/HTML/sv/kcontrol/autostart/index.cache.bz2 share/doc/HTML/sv/kcontrol/autostart/index.docbook share/doc/HTML/sv/kcontrol/colors/index.cache.bz2 share/doc/HTML/sv/kcontrol/colors/index.docbook share/doc/HTML/sv/kcontrol/desktopthemedetails/index.cache.bz2 share/doc/HTML/sv/kcontrol/desktopthemedetails/index.docbook share/doc/HTML/sv/kcontrol/fontinst/index.cache.bz2 share/doc/HTML/sv/kcontrol/fontinst/index.docbook share/doc/HTML/sv/kcontrol/fonts/index.cache.bz2 share/doc/HTML/sv/kcontrol/fonts/index.docbook share/doc/HTML/sv/kcontrol/formats/index.cache.bz2 share/doc/HTML/sv/kcontrol/formats/index.docbook share/doc/HTML/sv/kcontrol/icons/index.cache.bz2 share/doc/HTML/sv/kcontrol/icons/index.docbook share/doc/HTML/sv/kcontrol/kcmstyle/index.cache.bz2 share/doc/HTML/sv/kcontrol/kcmstyle/index.docbook share/doc/HTML/sv/kcontrol/notifications/index.cache.bz2 share/doc/HTML/sv/kcontrol/notifications/index.docbook share/doc/HTML/sv/kcontrol/screenlocker/index.cache.bz2 share/doc/HTML/sv/kcontrol/screenlocker/index.docbook share/doc/HTML/sv/kcontrol/translations/index.cache.bz2 share/doc/HTML/sv/kcontrol/translations/index.docbook share/doc/HTML/sv/klipper/index.cache.bz2 share/doc/HTML/sv/klipper/index.docbook share/doc/HTML/uk/kcontrol/autostart/index.cache.bz2 share/doc/HTML/uk/kcontrol/autostart/index.docbook share/doc/HTML/uk/kcontrol/colors/index.cache.bz2 share/doc/HTML/uk/kcontrol/colors/index.docbook share/doc/HTML/uk/kcontrol/desktopthemedetails/index.cache.bz2 share/doc/HTML/uk/kcontrol/desktopthemedetails/index.docbook share/doc/HTML/uk/kcontrol/fontinst/index.cache.bz2 share/doc/HTML/uk/kcontrol/fontinst/index.docbook share/doc/HTML/uk/kcontrol/fonts/adjust-all.png share/doc/HTML/uk/kcontrol/fonts/index.cache.bz2 share/doc/HTML/uk/kcontrol/fonts/index.docbook share/doc/HTML/uk/kcontrol/formats/index.cache.bz2 share/doc/HTML/uk/kcontrol/formats/index.docbook share/doc/HTML/uk/kcontrol/icons/get-new-theme.png share/doc/HTML/uk/kcontrol/icons/index.cache.bz2 share/doc/HTML/uk/kcontrol/icons/index.docbook share/doc/HTML/uk/kcontrol/icons/main.png share/doc/HTML/uk/kcontrol/icons/use-of-icons.png share/doc/HTML/uk/kcontrol/kcmstyle/index.cache.bz2 share/doc/HTML/uk/kcontrol/kcmstyle/index.docbook share/doc/HTML/uk/kcontrol/notifications/index.cache.bz2 share/doc/HTML/uk/kcontrol/notifications/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/krunnerglobalshortcuts2.upd share/kconf_update/krunnerhistory.upd share/kconf_update/style_widgetstyle_default_breeze.pl share/kconf_update/style_widgetstyle_default_breeze.upd 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/org.kde.krunner.desktop share/kio_desktop/directory.desktop share/kio_desktop/directory.trash share/knotifications5/devicenotifications.notifyrc 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-mobile.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_autostart/contents/ui/main.qml share/kpackage/kcms/kcm_autostart/metadata.desktop share/kpackage/kcms/kcm_autostart/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/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_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_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/autostart.desktop share/kservices5/desktop.protocol share/kservices5/fontinst.desktop share/kservices5/fonts.protocol share/kservices5/fontthumbnail.desktop share/kservices5/formats.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_nightcolor.desktop share/kservices5/kcm_notifications.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/kcmformats.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_autostart.mo share/locale/ar/LC_MESSAGES/kcm_colors.mo share/locale/ar/LC_MESSAGES/kcm_cursortheme.mo share/locale/ar/LC_MESSAGES/kcm_desktoptheme.mo share/locale/ar/LC_MESSAGES/kcm_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/kcmformats.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_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_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_autostart.mo share/locale/ast/LC_MESSAGES/kcm_cursortheme.mo share/locale/ast/LC_MESSAGES/kcm_desktoptheme.mo share/locale/ast/LC_MESSAGES/kcm_feedback.mo share/locale/ast/LC_MESSAGES/kcm_nightcolor.mo share/locale/ast/LC_MESSAGES/kcm_notifications.mo share/locale/ast/LC_MESSAGES/kcm_translations.mo share/locale/ast/LC_MESSAGES/kcmformats.mo share/locale/ast/LC_MESSAGES/kcminit.mo share/locale/ast/LC_MESSAGES/klipper.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/kcm5_icons.mo share/locale/az/LC_MESSAGES/kcm_autostart.mo share/locale/az/LC_MESSAGES/kcm_colors.mo share/locale/az/LC_MESSAGES/kcm_cursortheme.mo share/locale/az/LC_MESSAGES/kcm_desktoptheme.mo share/locale/az/LC_MESSAGES/kcm_feedback.mo share/locale/az/LC_MESSAGES/kcm_fonts.mo share/locale/az/LC_MESSAGES/kcm_lookandfeel.mo share/locale/az/LC_MESSAGES/kcm_nightcolor.mo share/locale/az/LC_MESSAGES/kcm_notifications.mo share/locale/az/LC_MESSAGES/kcm_style.mo share/locale/az/LC_MESSAGES/kcm_translations.mo share/locale/az/LC_MESSAGES/kcmformats.mo share/locale/az/LC_MESSAGES/kcminit.mo share/locale/az/LC_MESSAGES/kfontinst.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/krdb.mo share/locale/az/LC_MESSAGES/krunner.mo share/locale/az/LC_MESSAGES/ksmserver.mo share/locale/az/LC_MESSAGES/libkicker.mo share/locale/az/LC_MESSAGES/libkworkspace.mo share/locale/az/LC_MESSAGES/libnotificationmanager.mo share/locale/az/LC_MESSAGES/phonon_kde_plugin.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.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_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_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/kcmformats.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_autostart.mo share/locale/be@latin/LC_MESSAGES/kcm_colors.mo share/locale/be@latin/LC_MESSAGES/kcmformats.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_autostart.mo share/locale/bg/LC_MESSAGES/kcm_colors.mo share/locale/bg/LC_MESSAGES/kcm_cursortheme.mo share/locale/bg/LC_MESSAGES/kcm_desktoptheme.mo share/locale/bg/LC_MESSAGES/kcm_fonts.mo share/locale/bg/LC_MESSAGES/kcm_style.mo share/locale/bg/LC_MESSAGES/kcmformats.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_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/kcmformats.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_autostart.mo share/locale/bn_IN/LC_MESSAGES/kcm_colors.mo share/locale/bn_IN/LC_MESSAGES/kcm_desktoptheme.mo share/locale/bn_IN/LC_MESSAGES/kcm_style.mo share/locale/bn_IN/LC_MESSAGES/kcmformats.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/kcmformats.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_autostart.mo share/locale/bs/LC_MESSAGES/kcm_colors.mo share/locale/bs/LC_MESSAGES/kcm_cursortheme.mo share/locale/bs/LC_MESSAGES/kcm_desktoptheme.mo share/locale/bs/LC_MESSAGES/kcm_fonts.mo share/locale/bs/LC_MESSAGES/kcm_lookandfeel.mo share/locale/bs/LC_MESSAGES/kcm_style.mo share/locale/bs/LC_MESSAGES/kcm_translations.mo share/locale/bs/LC_MESSAGES/kcmformats.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_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_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_autostart.mo share/locale/ca/LC_MESSAGES/kcm_colors.mo share/locale/ca/LC_MESSAGES/kcm_cursortheme.mo share/locale/ca/LC_MESSAGES/kcm_desktoptheme.mo share/locale/ca/LC_MESSAGES/kcm_feedback.mo share/locale/ca/LC_MESSAGES/kcm_fonts.mo share/locale/ca/LC_MESSAGES/kcm_lookandfeel.mo share/locale/ca/LC_MESSAGES/kcm_nightcolor.mo share/locale/ca/LC_MESSAGES/kcm_notifications.mo share/locale/ca/LC_MESSAGES/kcm_style.mo share/locale/ca/LC_MESSAGES/kcm_translations.mo share/locale/ca/LC_MESSAGES/kcmformats.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_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_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_autostart.mo share/locale/ca@valencia/LC_MESSAGES/kcm_colors.mo share/locale/ca@valencia/LC_MESSAGES/kcm_cursortheme.mo share/locale/ca@valencia/LC_MESSAGES/kcm_desktoptheme.mo share/locale/ca@valencia/LC_MESSAGES/kcm_feedback.mo share/locale/ca@valencia/LC_MESSAGES/kcm_fonts.mo share/locale/ca@valencia/LC_MESSAGES/kcm_lookandfeel.mo share/locale/ca@valencia/LC_MESSAGES/kcm_nightcolor.mo share/locale/ca@valencia/LC_MESSAGES/kcm_notifications.mo share/locale/ca@valencia/LC_MESSAGES/kcm_style.mo share/locale/ca@valencia/LC_MESSAGES/kcm_translations.mo share/locale/ca@valencia/LC_MESSAGES/kcmformats.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_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_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_autostart.mo share/locale/cs/LC_MESSAGES/kcm_colors.mo share/locale/cs/LC_MESSAGES/kcm_cursortheme.mo share/locale/cs/LC_MESSAGES/kcm_desktoptheme.mo share/locale/cs/LC_MESSAGES/kcm_feedback.mo share/locale/cs/LC_MESSAGES/kcm_fonts.mo share/locale/cs/LC_MESSAGES/kcm_lookandfeel.mo share/locale/cs/LC_MESSAGES/kcm_nightcolor.mo share/locale/cs/LC_MESSAGES/kcm_notifications.mo share/locale/cs/LC_MESSAGES/kcm_style.mo share/locale/cs/LC_MESSAGES/kcm_translations.mo share/locale/cs/LC_MESSAGES/kcmformats.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_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_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/kcmformats.mo share/locale/csb/LC_MESSAGES/kcminit.mo share/locale/csb/LC_MESSAGES/kfontinst.mo share/locale/csb/LC_MESSAGES/kio5_applications.mo share/locale/csb/LC_MESSAGES/klipper.mo share/locale/csb/LC_MESSAGES/krdb.mo share/locale/csb/LC_MESSAGES/ksmserver.mo share/locale/csb/LC_MESSAGES/libkworkspace.mo share/locale/csb/LC_MESSAGES/phonon_kde_plugin.mo share/locale/csb/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/csb/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/csb/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/csb/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/csb/LC_MESSAGES/plasma_engine_notifications.mo share/locale/csb/LC_MESSAGES/plasma_engine_weather.mo share/locale/csb/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/csb/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/csb/LC_MESSAGES/plasma_runner_locations.mo share/locale/csb/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/csb/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/csb/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/csb/LC_MESSAGES/plasma_runner_services.mo share/locale/csb/LC_MESSAGES/plasma_runner_sessions.mo share/locale/csb/LC_MESSAGES/plasma_runner_shell.mo share/locale/csb/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/csb/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/csb/LC_MESSAGES/soliduiserver5.mo share/locale/cy/LC_MESSAGES/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/kcmformats.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_autostart.mo share/locale/da/LC_MESSAGES/kcm_colors.mo share/locale/da/LC_MESSAGES/kcm_cursortheme.mo share/locale/da/LC_MESSAGES/kcm_desktoptheme.mo share/locale/da/LC_MESSAGES/kcm_feedback.mo share/locale/da/LC_MESSAGES/kcm_fonts.mo share/locale/da/LC_MESSAGES/kcm_lookandfeel.mo share/locale/da/LC_MESSAGES/kcm_nightcolor.mo share/locale/da/LC_MESSAGES/kcm_notifications.mo share/locale/da/LC_MESSAGES/kcm_style.mo share/locale/da/LC_MESSAGES/kcm_translations.mo share/locale/da/LC_MESSAGES/kcmformats.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_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_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_autostart.mo share/locale/de/LC_MESSAGES/kcm_colors.mo share/locale/de/LC_MESSAGES/kcm_cursortheme.mo share/locale/de/LC_MESSAGES/kcm_desktoptheme.mo share/locale/de/LC_MESSAGES/kcm_feedback.mo share/locale/de/LC_MESSAGES/kcm_fonts.mo share/locale/de/LC_MESSAGES/kcm_lookandfeel.mo share/locale/de/LC_MESSAGES/kcm_nightcolor.mo share/locale/de/LC_MESSAGES/kcm_notifications.mo share/locale/de/LC_MESSAGES/kcm_style.mo share/locale/de/LC_MESSAGES/kcm_translations.mo share/locale/de/LC_MESSAGES/kcmformats.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_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_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_autostart.mo share/locale/el/LC_MESSAGES/kcm_colors.mo share/locale/el/LC_MESSAGES/kcm_cursortheme.mo share/locale/el/LC_MESSAGES/kcm_desktoptheme.mo share/locale/el/LC_MESSAGES/kcm_fonts.mo share/locale/el/LC_MESSAGES/kcm_lookandfeel.mo share/locale/el/LC_MESSAGES/kcm_style.mo share/locale/el/LC_MESSAGES/kcm_translations.mo share/locale/el/LC_MESSAGES/kcmformats.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_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_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_autostart.mo share/locale/en_GB/LC_MESSAGES/kcm_colors.mo share/locale/en_GB/LC_MESSAGES/kcm_cursortheme.mo share/locale/en_GB/LC_MESSAGES/kcm_desktoptheme.mo share/locale/en_GB/LC_MESSAGES/kcm_feedback.mo share/locale/en_GB/LC_MESSAGES/kcm_fonts.mo share/locale/en_GB/LC_MESSAGES/kcm_lookandfeel.mo share/locale/en_GB/LC_MESSAGES/kcm_nightcolor.mo share/locale/en_GB/LC_MESSAGES/kcm_notifications.mo share/locale/en_GB/LC_MESSAGES/kcm_style.mo share/locale/en_GB/LC_MESSAGES/kcm_translations.mo share/locale/en_GB/LC_MESSAGES/kcmformats.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_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_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_autostart.mo share/locale/eo/LC_MESSAGES/kcm_colors.mo share/locale/eo/LC_MESSAGES/kcm_cursortheme.mo share/locale/eo/LC_MESSAGES/kcm_desktoptheme.mo share/locale/eo/LC_MESSAGES/kcm_fonts.mo share/locale/eo/LC_MESSAGES/kcm_style.mo share/locale/eo/LC_MESSAGES/kcmformats.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_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_autostart.mo share/locale/es/LC_MESSAGES/kcm_colors.mo share/locale/es/LC_MESSAGES/kcm_cursortheme.mo share/locale/es/LC_MESSAGES/kcm_desktoptheme.mo share/locale/es/LC_MESSAGES/kcm_feedback.mo share/locale/es/LC_MESSAGES/kcm_fonts.mo share/locale/es/LC_MESSAGES/kcm_lookandfeel.mo share/locale/es/LC_MESSAGES/kcm_nightcolor.mo share/locale/es/LC_MESSAGES/kcm_notifications.mo share/locale/es/LC_MESSAGES/kcm_style.mo share/locale/es/LC_MESSAGES/kcm_translations.mo share/locale/es/LC_MESSAGES/kcmformats.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_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_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_autostart.mo share/locale/et/LC_MESSAGES/kcm_colors.mo share/locale/et/LC_MESSAGES/kcm_cursortheme.mo share/locale/et/LC_MESSAGES/kcm_desktoptheme.mo share/locale/et/LC_MESSAGES/kcm_feedback.mo share/locale/et/LC_MESSAGES/kcm_fonts.mo share/locale/et/LC_MESSAGES/kcm_lookandfeel.mo share/locale/et/LC_MESSAGES/kcm_nightcolor.mo share/locale/et/LC_MESSAGES/kcm_notifications.mo share/locale/et/LC_MESSAGES/kcm_style.mo share/locale/et/LC_MESSAGES/kcm_translations.mo share/locale/et/LC_MESSAGES/kcmformats.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_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_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_autostart.mo share/locale/eu/LC_MESSAGES/kcm_colors.mo share/locale/eu/LC_MESSAGES/kcm_cursortheme.mo share/locale/eu/LC_MESSAGES/kcm_desktoptheme.mo share/locale/eu/LC_MESSAGES/kcm_feedback.mo share/locale/eu/LC_MESSAGES/kcm_fonts.mo share/locale/eu/LC_MESSAGES/kcm_lookandfeel.mo share/locale/eu/LC_MESSAGES/kcm_nightcolor.mo share/locale/eu/LC_MESSAGES/kcm_notifications.mo share/locale/eu/LC_MESSAGES/kcm_style.mo share/locale/eu/LC_MESSAGES/kcm_translations.mo share/locale/eu/LC_MESSAGES/kcmformats.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_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_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_autostart.mo share/locale/fa/LC_MESSAGES/kcm_colors.mo share/locale/fa/LC_MESSAGES/kcm_cursortheme.mo share/locale/fa/LC_MESSAGES/kcm_desktoptheme.mo share/locale/fa/LC_MESSAGES/kcm_fonts.mo share/locale/fa/LC_MESSAGES/kcm_style.mo share/locale/fa/LC_MESSAGES/kcmformats.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_autostart.mo share/locale/fi/LC_MESSAGES/kcm_colors.mo share/locale/fi/LC_MESSAGES/kcm_cursortheme.mo share/locale/fi/LC_MESSAGES/kcm_desktoptheme.mo share/locale/fi/LC_MESSAGES/kcm_feedback.mo share/locale/fi/LC_MESSAGES/kcm_fonts.mo share/locale/fi/LC_MESSAGES/kcm_lookandfeel.mo share/locale/fi/LC_MESSAGES/kcm_nightcolor.mo share/locale/fi/LC_MESSAGES/kcm_notifications.mo share/locale/fi/LC_MESSAGES/kcm_style.mo share/locale/fi/LC_MESSAGES/kcm_translations.mo share/locale/fi/LC_MESSAGES/kcmformats.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_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_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_autostart.mo share/locale/fr/LC_MESSAGES/kcm_colors.mo share/locale/fr/LC_MESSAGES/kcm_cursortheme.mo share/locale/fr/LC_MESSAGES/kcm_desktoptheme.mo share/locale/fr/LC_MESSAGES/kcm_feedback.mo share/locale/fr/LC_MESSAGES/kcm_fonts.mo share/locale/fr/LC_MESSAGES/kcm_lookandfeel.mo share/locale/fr/LC_MESSAGES/kcm_nightcolor.mo share/locale/fr/LC_MESSAGES/kcm_notifications.mo share/locale/fr/LC_MESSAGES/kcm_style.mo share/locale/fr/LC_MESSAGES/kcm_translations.mo share/locale/fr/LC_MESSAGES/kcmformats.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_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_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_autostart.mo share/locale/fy/LC_MESSAGES/kcm_colors.mo share/locale/fy/LC_MESSAGES/kcm_cursortheme.mo share/locale/fy/LC_MESSAGES/kcm_desktoptheme.mo share/locale/fy/LC_MESSAGES/kcm_fonts.mo share/locale/fy/LC_MESSAGES/kcm_style.mo share/locale/fy/LC_MESSAGES/kcmformats.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_autostart.mo share/locale/ga/LC_MESSAGES/kcm_colors.mo share/locale/ga/LC_MESSAGES/kcm_cursortheme.mo share/locale/ga/LC_MESSAGES/kcm_desktoptheme.mo share/locale/ga/LC_MESSAGES/kcm_fonts.mo share/locale/ga/LC_MESSAGES/kcm_style.mo share/locale/ga/LC_MESSAGES/kcmformats.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_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_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_autostart.mo share/locale/gl/LC_MESSAGES/kcm_colors.mo share/locale/gl/LC_MESSAGES/kcm_cursortheme.mo share/locale/gl/LC_MESSAGES/kcm_desktoptheme.mo share/locale/gl/LC_MESSAGES/kcm_fonts.mo share/locale/gl/LC_MESSAGES/kcm_lookandfeel.mo share/locale/gl/LC_MESSAGES/kcm_nightcolor.mo share/locale/gl/LC_MESSAGES/kcm_notifications.mo share/locale/gl/LC_MESSAGES/kcm_style.mo share/locale/gl/LC_MESSAGES/kcm_translations.mo share/locale/gl/LC_MESSAGES/kcmformats.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_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_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_autostart.mo share/locale/gu/LC_MESSAGES/kcm_colors.mo share/locale/gu/LC_MESSAGES/kcm_cursortheme.mo share/locale/gu/LC_MESSAGES/kcm_desktoptheme.mo share/locale/gu/LC_MESSAGES/kcm_fonts.mo share/locale/gu/LC_MESSAGES/kcm_style.mo share/locale/gu/LC_MESSAGES/kcmformats.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_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_autostart.mo share/locale/he/LC_MESSAGES/kcm_colors.mo share/locale/he/LC_MESSAGES/kcm_cursortheme.mo share/locale/he/LC_MESSAGES/kcm_desktoptheme.mo share/locale/he/LC_MESSAGES/kcm_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/kcmformats.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_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_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_autostart.mo share/locale/hi/LC_MESSAGES/kcm_colors.mo share/locale/hi/LC_MESSAGES/kcm_cursortheme.mo share/locale/hi/LC_MESSAGES/kcm_desktoptheme.mo +share/locale/hi/LC_MESSAGES/kcm_feedback.mo share/locale/hi/LC_MESSAGES/kcm_fonts.mo +share/locale/hi/LC_MESSAGES/kcm_lookandfeel.mo +share/locale/hi/LC_MESSAGES/kcm_nightcolor.mo +share/locale/hi/LC_MESSAGES/kcm_notifications.mo share/locale/hi/LC_MESSAGES/kcm_style.mo +share/locale/hi/LC_MESSAGES/kcm_translations.mo share/locale/hi/LC_MESSAGES/kcmformats.mo share/locale/hi/LC_MESSAGES/kcminit.mo share/locale/hi/LC_MESSAGES/kfontinst.mo +share/locale/hi/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/hi/LC_MESSAGES/kio5_applications.mo +share/locale/hi/LC_MESSAGES/kio_desktop.mo share/locale/hi/LC_MESSAGES/klipper.mo share/locale/hi/LC_MESSAGES/krdb.mo share/locale/hi/LC_MESSAGES/krunner.mo share/locale/hi/LC_MESSAGES/ksmserver.mo share/locale/hi/LC_MESSAGES/libkworkspace.mo +share/locale/hi/LC_MESSAGES/libnotificationmanager.mo share/locale/hi/LC_MESSAGES/phonon_kde_plugin.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo +share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo +share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo +share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo +share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo +share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo +share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo +share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo +share/locale/hi/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/hi/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/hi/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/hi/LC_MESSAGES/plasma_engine_applicationjobs.mo +share/locale/hi/LC_MESSAGES/plasma_engine_devicenotifications.mo +share/locale/hi/LC_MESSAGES/plasma_engine_dict.mo +share/locale/hi/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/hi/LC_MESSAGES/plasma_engine_keystate.mo +share/locale/hi/LC_MESSAGES/plasma_engine_mpris2.mo share/locale/hi/LC_MESSAGES/plasma_engine_notifications.mo +share/locale/hi/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/hi/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/hi/LC_MESSAGES/plasma_engine_time.mo share/locale/hi/LC_MESSAGES/plasma_engine_weather.mo +share/locale/hi/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo +share/locale/hi/LC_MESSAGES/plasma_package_plasmashell.mo +share/locale/hi/LC_MESSAGES/plasma_runner_appstream.mo +share/locale/hi/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/hi/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/hi/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/hi/LC_MESSAGES/plasma_runner_kill.mo share/locale/hi/LC_MESSAGES/plasma_runner_locations.mo share/locale/hi/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/hi/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/hi/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/hi/LC_MESSAGES/plasma_runner_services.mo share/locale/hi/LC_MESSAGES/plasma_runner_sessions.mo share/locale/hi/LC_MESSAGES/plasma_runner_shell.mo share/locale/hi/LC_MESSAGES/plasma_runner_webshortcuts.mo +share/locale/hi/LC_MESSAGES/plasma_runner_windowedwidgets.mo +share/locale/hi/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/hi/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/hi/LC_MESSAGES/plasmashell.mo +share/locale/hi/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/hi/LC_MESSAGES/soliduiserver5.mo +share/locale/hi/LC_MESSAGES/systemmonitor.mo share/locale/hne/LC_MESSAGES/kcm5_icons.mo share/locale/hne/LC_MESSAGES/kcm_autostart.mo share/locale/hne/LC_MESSAGES/kcm_colors.mo share/locale/hne/LC_MESSAGES/kcm_cursortheme.mo share/locale/hne/LC_MESSAGES/kcm_fonts.mo share/locale/hne/LC_MESSAGES/kcm_style.mo share/locale/hne/LC_MESSAGES/kcmformats.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_autostart.mo share/locale/hr/LC_MESSAGES/kcm_colors.mo +share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.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/kcmformats.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_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_autostart.mo share/locale/hsb/LC_MESSAGES/kcm_colors.mo share/locale/hsb/LC_MESSAGES/kcm_cursortheme.mo share/locale/hsb/LC_MESSAGES/kcm_desktoptheme.mo share/locale/hsb/LC_MESSAGES/kcm_fonts.mo share/locale/hsb/LC_MESSAGES/kcm_style.mo share/locale/hsb/LC_MESSAGES/kcmformats.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_autostart.mo share/locale/hu/LC_MESSAGES/kcm_colors.mo share/locale/hu/LC_MESSAGES/kcm_cursortheme.mo share/locale/hu/LC_MESSAGES/kcm_desktoptheme.mo share/locale/hu/LC_MESSAGES/kcm_feedback.mo share/locale/hu/LC_MESSAGES/kcm_fonts.mo share/locale/hu/LC_MESSAGES/kcm_lookandfeel.mo share/locale/hu/LC_MESSAGES/kcm_nightcolor.mo share/locale/hu/LC_MESSAGES/kcm_notifications.mo share/locale/hu/LC_MESSAGES/kcm_style.mo share/locale/hu/LC_MESSAGES/kcm_translations.mo share/locale/hu/LC_MESSAGES/kcmformats.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/libnotificationmanager.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_applet_org.kde.plasma.systemmonitor.mo share/locale/hu/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/hu/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/hu/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/hu/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/hu/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/hu/LC_MESSAGES/plasma_engine_dict.mo share/locale/hu/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/hu/LC_MESSAGES/plasma_engine_keystate.mo share/locale/hu/LC_MESSAGES/plasma_engine_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_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_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_autostart.mo share/locale/ia/LC_MESSAGES/kcm_colors.mo share/locale/ia/LC_MESSAGES/kcm_cursortheme.mo share/locale/ia/LC_MESSAGES/kcm_desktoptheme.mo share/locale/ia/LC_MESSAGES/kcm_feedback.mo share/locale/ia/LC_MESSAGES/kcm_fonts.mo share/locale/ia/LC_MESSAGES/kcm_lookandfeel.mo share/locale/ia/LC_MESSAGES/kcm_nightcolor.mo share/locale/ia/LC_MESSAGES/kcm_notifications.mo share/locale/ia/LC_MESSAGES/kcm_style.mo share/locale/ia/LC_MESSAGES/kcm_translations.mo share/locale/ia/LC_MESSAGES/kcmformats.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_applet_org.kde.plasma.systemmonitor.mo share/locale/ia/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/ia/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/ia/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/ia/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/ia/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/ia/LC_MESSAGES/plasma_engine_dict.mo share/locale/ia/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/ia/LC_MESSAGES/plasma_engine_keystate.mo share/locale/ia/LC_MESSAGES/plasma_engine_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_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_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_autostart.mo share/locale/id/LC_MESSAGES/kcm_colors.mo share/locale/id/LC_MESSAGES/kcm_cursortheme.mo share/locale/id/LC_MESSAGES/kcm_desktoptheme.mo share/locale/id/LC_MESSAGES/kcm_feedback.mo share/locale/id/LC_MESSAGES/kcm_fonts.mo share/locale/id/LC_MESSAGES/kcm_lookandfeel.mo share/locale/id/LC_MESSAGES/kcm_nightcolor.mo share/locale/id/LC_MESSAGES/kcm_notifications.mo share/locale/id/LC_MESSAGES/kcm_style.mo share/locale/id/LC_MESSAGES/kcm_translations.mo share/locale/id/LC_MESSAGES/kcmformats.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_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_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_autostart.mo share/locale/is/LC_MESSAGES/kcm_colors.mo share/locale/is/LC_MESSAGES/kcm_cursortheme.mo share/locale/is/LC_MESSAGES/kcm_desktoptheme.mo share/locale/is/LC_MESSAGES/kcm_fonts.mo share/locale/is/LC_MESSAGES/kcm_style.mo share/locale/is/LC_MESSAGES/kcmformats.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_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_autostart.mo share/locale/it/LC_MESSAGES/kcm_colors.mo share/locale/it/LC_MESSAGES/kcm_cursortheme.mo share/locale/it/LC_MESSAGES/kcm_desktoptheme.mo share/locale/it/LC_MESSAGES/kcm_feedback.mo share/locale/it/LC_MESSAGES/kcm_fonts.mo share/locale/it/LC_MESSAGES/kcm_lookandfeel.mo share/locale/it/LC_MESSAGES/kcm_nightcolor.mo share/locale/it/LC_MESSAGES/kcm_notifications.mo share/locale/it/LC_MESSAGES/kcm_style.mo share/locale/it/LC_MESSAGES/kcm_translations.mo share/locale/it/LC_MESSAGES/kcmformats.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_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_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_autostart.mo share/locale/ja/LC_MESSAGES/kcm_colors.mo share/locale/ja/LC_MESSAGES/kcm_cursortheme.mo share/locale/ja/LC_MESSAGES/kcm_desktoptheme.mo share/locale/ja/LC_MESSAGES/kcm_feedback.mo share/locale/ja/LC_MESSAGES/kcm_fonts.mo share/locale/ja/LC_MESSAGES/kcm_lookandfeel.mo share/locale/ja/LC_MESSAGES/kcm_nightcolor.mo share/locale/ja/LC_MESSAGES/kcm_notifications.mo share/locale/ja/LC_MESSAGES/kcm_style.mo share/locale/ja/LC_MESSAGES/kcm_translations.mo share/locale/ja/LC_MESSAGES/kcmformats.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_applet_org.kde.plasma.systemmonitor.mo share/locale/ja/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/ja/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/ja/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/ja/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/ja/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/ja/LC_MESSAGES/plasma_engine_dict.mo share/locale/ja/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/ja/LC_MESSAGES/plasma_engine_keystate.mo share/locale/ja/LC_MESSAGES/plasma_engine_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_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_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_autostart.mo share/locale/kk/LC_MESSAGES/kcm_colors.mo share/locale/kk/LC_MESSAGES/kcm_cursortheme.mo share/locale/kk/LC_MESSAGES/kcm_desktoptheme.mo share/locale/kk/LC_MESSAGES/kcm_fonts.mo share/locale/kk/LC_MESSAGES/kcm_style.mo share/locale/kk/LC_MESSAGES/kcmformats.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_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_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_autostart.mo share/locale/km/LC_MESSAGES/kcm_colors.mo share/locale/km/LC_MESSAGES/kcm_cursortheme.mo share/locale/km/LC_MESSAGES/kcm_desktoptheme.mo share/locale/km/LC_MESSAGES/kcm_fonts.mo share/locale/km/LC_MESSAGES/kcm_style.mo share/locale/km/LC_MESSAGES/kcmformats.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_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_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_autostart.mo share/locale/kn/LC_MESSAGES/kcm_colors.mo share/locale/kn/LC_MESSAGES/kcm_cursortheme.mo share/locale/kn/LC_MESSAGES/kcm_desktoptheme.mo share/locale/kn/LC_MESSAGES/kcm_fonts.mo share/locale/kn/LC_MESSAGES/kcm_style.mo share/locale/kn/LC_MESSAGES/kcmformats.mo share/locale/kn/LC_MESSAGES/kcminit.mo share/locale/kn/LC_MESSAGES/kfontinst.mo share/locale/kn/LC_MESSAGES/kio5_applications.mo share/locale/kn/LC_MESSAGES/klipper.mo share/locale/kn/LC_MESSAGES/krdb.mo share/locale/kn/LC_MESSAGES/ksmserver.mo share/locale/kn/LC_MESSAGES/libkworkspace.mo share/locale/kn/LC_MESSAGES/phonon_kde_plugin.mo share/locale/kn/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/kn/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/kn/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/kn/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/kn/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/kn/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/kn/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/kn/LC_MESSAGES/plasma_engine_keystate.mo share/locale/kn/LC_MESSAGES/plasma_engine_notifications.mo share/locale/kn/LC_MESSAGES/plasma_engine_weather.mo share/locale/kn/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/kn/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/kn/LC_MESSAGES/plasma_runner_kill.mo share/locale/kn/LC_MESSAGES/plasma_runner_locations.mo share/locale/kn/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/kn/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/kn/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/kn/LC_MESSAGES/plasma_runner_services.mo share/locale/kn/LC_MESSAGES/plasma_runner_sessions.mo share/locale/kn/LC_MESSAGES/plasma_runner_shell.mo share/locale/kn/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/kn/LC_MESSAGES/soliduiserver5.mo share/locale/ko/LC_MESSAGES/freespacenotifier.mo share/locale/ko/LC_MESSAGES/kcm5_icons.mo share/locale/ko/LC_MESSAGES/kcm_autostart.mo share/locale/ko/LC_MESSAGES/kcm_colors.mo share/locale/ko/LC_MESSAGES/kcm_cursortheme.mo share/locale/ko/LC_MESSAGES/kcm_desktoptheme.mo share/locale/ko/LC_MESSAGES/kcm_feedback.mo share/locale/ko/LC_MESSAGES/kcm_fonts.mo share/locale/ko/LC_MESSAGES/kcm_lookandfeel.mo share/locale/ko/LC_MESSAGES/kcm_nightcolor.mo share/locale/ko/LC_MESSAGES/kcm_notifications.mo share/locale/ko/LC_MESSAGES/kcm_style.mo share/locale/ko/LC_MESSAGES/kcm_translations.mo share/locale/ko/LC_MESSAGES/kcmformats.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_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_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_autostart.mo share/locale/ku/LC_MESSAGES/kcm_colors.mo share/locale/ku/LC_MESSAGES/kcm_cursortheme.mo share/locale/ku/LC_MESSAGES/kcm_desktoptheme.mo share/locale/ku/LC_MESSAGES/kcm_fonts.mo share/locale/ku/LC_MESSAGES/kcm_style.mo share/locale/ku/LC_MESSAGES/kcmformats.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_autostart.mo share/locale/lt/LC_MESSAGES/kcm_colors.mo share/locale/lt/LC_MESSAGES/kcm_cursortheme.mo share/locale/lt/LC_MESSAGES/kcm_desktoptheme.mo share/locale/lt/LC_MESSAGES/kcm_feedback.mo share/locale/lt/LC_MESSAGES/kcm_fonts.mo share/locale/lt/LC_MESSAGES/kcm_lookandfeel.mo share/locale/lt/LC_MESSAGES/kcm_nightcolor.mo share/locale/lt/LC_MESSAGES/kcm_notifications.mo share/locale/lt/LC_MESSAGES/kcm_style.mo share/locale/lt/LC_MESSAGES/kcm_translations.mo share/locale/lt/LC_MESSAGES/kcmformats.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_applet_org.kde.plasma.systemmonitor.mo share/locale/lt/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/lt/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/lt/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/lt/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/lt/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/lt/LC_MESSAGES/plasma_engine_dict.mo share/locale/lt/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/lt/LC_MESSAGES/plasma_engine_keystate.mo share/locale/lt/LC_MESSAGES/plasma_engine_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_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_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_autostart.mo share/locale/lv/LC_MESSAGES/kcm_colors.mo share/locale/lv/LC_MESSAGES/kcm_cursortheme.mo share/locale/lv/LC_MESSAGES/kcm_desktoptheme.mo share/locale/lv/LC_MESSAGES/kcm_fonts.mo share/locale/lv/LC_MESSAGES/kcm_style.mo share/locale/lv/LC_MESSAGES/kcmformats.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_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_autostart.mo share/locale/mai/LC_MESSAGES/kcm_colors.mo share/locale/mai/LC_MESSAGES/kcm_cursortheme.mo share/locale/mai/LC_MESSAGES/kcm_desktoptheme.mo share/locale/mai/LC_MESSAGES/kcm_fonts.mo share/locale/mai/LC_MESSAGES/kcm_style.mo share/locale/mai/LC_MESSAGES/kcmformats.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_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_autostart.mo share/locale/mk/LC_MESSAGES/kcm_colors.mo share/locale/mk/LC_MESSAGES/kcm_cursortheme.mo share/locale/mk/LC_MESSAGES/kcm_desktoptheme.mo share/locale/mk/LC_MESSAGES/kcm_fonts.mo share/locale/mk/LC_MESSAGES/kcm_style.mo share/locale/mk/LC_MESSAGES/kcmformats.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_autostart.mo share/locale/ml/LC_MESSAGES/kcm_colors.mo share/locale/ml/LC_MESSAGES/kcm_cursortheme.mo share/locale/ml/LC_MESSAGES/kcm_desktoptheme.mo share/locale/ml/LC_MESSAGES/kcm_feedback.mo share/locale/ml/LC_MESSAGES/kcm_fonts.mo share/locale/ml/LC_MESSAGES/kcm_lookandfeel.mo share/locale/ml/LC_MESSAGES/kcm_nightcolor.mo share/locale/ml/LC_MESSAGES/kcm_notifications.mo share/locale/ml/LC_MESSAGES/kcm_style.mo share/locale/ml/LC_MESSAGES/kcm_translations.mo share/locale/ml/LC_MESSAGES/kcmformats.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_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_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_autostart.mo share/locale/mr/LC_MESSAGES/kcm_colors.mo share/locale/mr/LC_MESSAGES/kcm_cursortheme.mo share/locale/mr/LC_MESSAGES/kcm_desktoptheme.mo share/locale/mr/LC_MESSAGES/kcm_fonts.mo share/locale/mr/LC_MESSAGES/kcm_style.mo share/locale/mr/LC_MESSAGES/kcmformats.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_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_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_autostart.mo share/locale/ms/LC_MESSAGES/kcm_colors.mo share/locale/ms/LC_MESSAGES/kcm_cursortheme.mo share/locale/ms/LC_MESSAGES/kcm_desktoptheme.mo share/locale/ms/LC_MESSAGES/kcm_fonts.mo share/locale/ms/LC_MESSAGES/kcm_style.mo share/locale/ms/LC_MESSAGES/kcmformats.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_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_autostart.mo share/locale/nb/LC_MESSAGES/kcm_colors.mo share/locale/nb/LC_MESSAGES/kcm_cursortheme.mo share/locale/nb/LC_MESSAGES/kcm_desktoptheme.mo share/locale/nb/LC_MESSAGES/kcm_fonts.mo share/locale/nb/LC_MESSAGES/kcm_lookandfeel.mo share/locale/nb/LC_MESSAGES/kcm_style.mo share/locale/nb/LC_MESSAGES/kcm_translations.mo share/locale/nb/LC_MESSAGES/kcmformats.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_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_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_autostart.mo share/locale/nds/LC_MESSAGES/kcm_colors.mo share/locale/nds/LC_MESSAGES/kcm_cursortheme.mo share/locale/nds/LC_MESSAGES/kcm_desktoptheme.mo share/locale/nds/LC_MESSAGES/kcm_fonts.mo share/locale/nds/LC_MESSAGES/kcm_lookandfeel.mo share/locale/nds/LC_MESSAGES/kcm_style.mo share/locale/nds/LC_MESSAGES/kcm_translations.mo share/locale/nds/LC_MESSAGES/kcmformats.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_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_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/kcmformats.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_autostart.mo share/locale/nl/LC_MESSAGES/kcm_colors.mo share/locale/nl/LC_MESSAGES/kcm_cursortheme.mo share/locale/nl/LC_MESSAGES/kcm_desktoptheme.mo share/locale/nl/LC_MESSAGES/kcm_feedback.mo share/locale/nl/LC_MESSAGES/kcm_fonts.mo share/locale/nl/LC_MESSAGES/kcm_lookandfeel.mo share/locale/nl/LC_MESSAGES/kcm_nightcolor.mo share/locale/nl/LC_MESSAGES/kcm_notifications.mo share/locale/nl/LC_MESSAGES/kcm_style.mo share/locale/nl/LC_MESSAGES/kcm_translations.mo share/locale/nl/LC_MESSAGES/kcmformats.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_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_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_autostart.mo share/locale/nn/LC_MESSAGES/kcm_colors.mo share/locale/nn/LC_MESSAGES/kcm_cursortheme.mo share/locale/nn/LC_MESSAGES/kcm_desktoptheme.mo share/locale/nn/LC_MESSAGES/kcm_feedback.mo share/locale/nn/LC_MESSAGES/kcm_fonts.mo share/locale/nn/LC_MESSAGES/kcm_lookandfeel.mo share/locale/nn/LC_MESSAGES/kcm_nightcolor.mo share/locale/nn/LC_MESSAGES/kcm_notifications.mo share/locale/nn/LC_MESSAGES/kcm_style.mo share/locale/nn/LC_MESSAGES/kcm_translations.mo share/locale/nn/LC_MESSAGES/kcmformats.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_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_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_autostart.mo share/locale/or/LC_MESSAGES/kcm_colors.mo share/locale/or/LC_MESSAGES/kcm_cursortheme.mo share/locale/or/LC_MESSAGES/kcm_desktoptheme.mo share/locale/or/LC_MESSAGES/kcm_fonts.mo share/locale/or/LC_MESSAGES/kcm_style.mo share/locale/or/LC_MESSAGES/kcmformats.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_autostart.mo share/locale/pa/LC_MESSAGES/kcm_colors.mo share/locale/pa/LC_MESSAGES/kcm_cursortheme.mo share/locale/pa/LC_MESSAGES/kcm_desktoptheme.mo share/locale/pa/LC_MESSAGES/kcm_feedback.mo share/locale/pa/LC_MESSAGES/kcm_fonts.mo share/locale/pa/LC_MESSAGES/kcm_lookandfeel.mo share/locale/pa/LC_MESSAGES/kcm_nightcolor.mo share/locale/pa/LC_MESSAGES/kcm_notifications.mo share/locale/pa/LC_MESSAGES/kcm_style.mo share/locale/pa/LC_MESSAGES/kcm_translations.mo share/locale/pa/LC_MESSAGES/kcmformats.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.icon.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/pa/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/pa/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/pa/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/pa/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/pa/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/pa/LC_MESSAGES/plasma_engine_dict.mo share/locale/pa/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/pa/LC_MESSAGES/plasma_engine_keystate.mo share/locale/pa/LC_MESSAGES/plasma_engine_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_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_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_autostart.mo share/locale/pl/LC_MESSAGES/kcm_colors.mo share/locale/pl/LC_MESSAGES/kcm_cursortheme.mo share/locale/pl/LC_MESSAGES/kcm_desktoptheme.mo share/locale/pl/LC_MESSAGES/kcm_feedback.mo share/locale/pl/LC_MESSAGES/kcm_fonts.mo share/locale/pl/LC_MESSAGES/kcm_lookandfeel.mo share/locale/pl/LC_MESSAGES/kcm_nightcolor.mo share/locale/pl/LC_MESSAGES/kcm_notifications.mo share/locale/pl/LC_MESSAGES/kcm_style.mo share/locale/pl/LC_MESSAGES/kcm_translations.mo share/locale/pl/LC_MESSAGES/kcmformats.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_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_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_autostart.mo share/locale/pt/LC_MESSAGES/kcm_colors.mo share/locale/pt/LC_MESSAGES/kcm_cursortheme.mo share/locale/pt/LC_MESSAGES/kcm_desktoptheme.mo share/locale/pt/LC_MESSAGES/kcm_feedback.mo share/locale/pt/LC_MESSAGES/kcm_fonts.mo share/locale/pt/LC_MESSAGES/kcm_lookandfeel.mo share/locale/pt/LC_MESSAGES/kcm_nightcolor.mo share/locale/pt/LC_MESSAGES/kcm_notifications.mo share/locale/pt/LC_MESSAGES/kcm_style.mo share/locale/pt/LC_MESSAGES/kcm_translations.mo share/locale/pt/LC_MESSAGES/kcmformats.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_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_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_autostart.mo share/locale/pt_BR/LC_MESSAGES/kcm_colors.mo share/locale/pt_BR/LC_MESSAGES/kcm_cursortheme.mo share/locale/pt_BR/LC_MESSAGES/kcm_desktoptheme.mo share/locale/pt_BR/LC_MESSAGES/kcm_feedback.mo share/locale/pt_BR/LC_MESSAGES/kcm_fonts.mo share/locale/pt_BR/LC_MESSAGES/kcm_lookandfeel.mo share/locale/pt_BR/LC_MESSAGES/kcm_nightcolor.mo share/locale/pt_BR/LC_MESSAGES/kcm_notifications.mo share/locale/pt_BR/LC_MESSAGES/kcm_style.mo share/locale/pt_BR/LC_MESSAGES/kcm_translations.mo share/locale/pt_BR/LC_MESSAGES/kcmformats.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_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_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_autostart.mo share/locale/ro/LC_MESSAGES/kcm_colors.mo share/locale/ro/LC_MESSAGES/kcm_cursortheme.mo share/locale/ro/LC_MESSAGES/kcm_desktoptheme.mo share/locale/ro/LC_MESSAGES/kcm_feedback.mo share/locale/ro/LC_MESSAGES/kcm_fonts.mo share/locale/ro/LC_MESSAGES/kcm_lookandfeel.mo share/locale/ro/LC_MESSAGES/kcm_nightcolor.mo share/locale/ro/LC_MESSAGES/kcm_notifications.mo share/locale/ro/LC_MESSAGES/kcm_style.mo share/locale/ro/LC_MESSAGES/kcm_translations.mo share/locale/ro/LC_MESSAGES/kcmformats.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_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_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_autostart.mo share/locale/ru/LC_MESSAGES/kcm_colors.mo share/locale/ru/LC_MESSAGES/kcm_cursortheme.mo share/locale/ru/LC_MESSAGES/kcm_desktoptheme.mo share/locale/ru/LC_MESSAGES/kcm_feedback.mo share/locale/ru/LC_MESSAGES/kcm_fonts.mo share/locale/ru/LC_MESSAGES/kcm_lookandfeel.mo share/locale/ru/LC_MESSAGES/kcm_nightcolor.mo share/locale/ru/LC_MESSAGES/kcm_notifications.mo share/locale/ru/LC_MESSAGES/kcm_style.mo share/locale/ru/LC_MESSAGES/kcm_translations.mo share/locale/ru/LC_MESSAGES/kcmformats.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_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_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/kcmformats.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_autostart.mo share/locale/si/LC_MESSAGES/kcm_colors.mo share/locale/si/LC_MESSAGES/kcm_cursortheme.mo share/locale/si/LC_MESSAGES/kcm_desktoptheme.mo share/locale/si/LC_MESSAGES/kcm_fonts.mo share/locale/si/LC_MESSAGES/kcm_style.mo share/locale/si/LC_MESSAGES/kcmformats.mo share/locale/si/LC_MESSAGES/kcminit.mo share/locale/si/LC_MESSAGES/kfontinst.mo share/locale/si/LC_MESSAGES/kio5_applications.mo share/locale/si/LC_MESSAGES/klipper.mo share/locale/si/LC_MESSAGES/krdb.mo share/locale/si/LC_MESSAGES/ksmserver.mo share/locale/si/LC_MESSAGES/libkworkspace.mo share/locale/si/LC_MESSAGES/phonon_kde_plugin.mo share/locale/si/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/si/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/si/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/si/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/si/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/si/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/si/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/si/LC_MESSAGES/plasma_engine_keystate.mo share/locale/si/LC_MESSAGES/plasma_engine_notifications.mo share/locale/si/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/si/LC_MESSAGES/plasma_engine_weather.mo share/locale/si/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/si/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/si/LC_MESSAGES/plasma_runner_locations.mo share/locale/si/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/si/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/si/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/si/LC_MESSAGES/plasma_runner_sessions.mo share/locale/si/LC_MESSAGES/plasma_runner_shell.mo share/locale/si/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/si/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/si/LC_MESSAGES/soliduiserver5.mo share/locale/sk/LC_MESSAGES/freespacenotifier.mo share/locale/sk/LC_MESSAGES/kcm5_icons.mo share/locale/sk/LC_MESSAGES/kcm_autostart.mo share/locale/sk/LC_MESSAGES/kcm_colors.mo share/locale/sk/LC_MESSAGES/kcm_cursortheme.mo share/locale/sk/LC_MESSAGES/kcm_desktoptheme.mo share/locale/sk/LC_MESSAGES/kcm_feedback.mo share/locale/sk/LC_MESSAGES/kcm_fonts.mo share/locale/sk/LC_MESSAGES/kcm_lookandfeel.mo share/locale/sk/LC_MESSAGES/kcm_nightcolor.mo share/locale/sk/LC_MESSAGES/kcm_notifications.mo share/locale/sk/LC_MESSAGES/kcm_style.mo share/locale/sk/LC_MESSAGES/kcm_translations.mo share/locale/sk/LC_MESSAGES/kcmformats.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_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_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_autostart.mo share/locale/sl/LC_MESSAGES/kcm_colors.mo share/locale/sl/LC_MESSAGES/kcm_cursortheme.mo share/locale/sl/LC_MESSAGES/kcm_desktoptheme.mo share/locale/sl/LC_MESSAGES/kcm_feedback.mo share/locale/sl/LC_MESSAGES/kcm_fonts.mo share/locale/sl/LC_MESSAGES/kcm_lookandfeel.mo share/locale/sl/LC_MESSAGES/kcm_nightcolor.mo share/locale/sl/LC_MESSAGES/kcm_notifications.mo share/locale/sl/LC_MESSAGES/kcm_style.mo share/locale/sl/LC_MESSAGES/kcm_translations.mo share/locale/sl/LC_MESSAGES/kcmformats.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_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_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_autostart.mo share/locale/sq/LC_MESSAGES/kcm_colors.mo share/locale/sq/LC_MESSAGES/kcm_cursortheme.mo share/locale/sq/LC_MESSAGES/kcm_desktoptheme.mo share/locale/sq/LC_MESSAGES/kcm_fonts.mo share/locale/sq/LC_MESSAGES/kcm_style.mo share/locale/sq/LC_MESSAGES/kcmformats.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_autostart.mo share/locale/sr/LC_MESSAGES/kcm_colors.mo share/locale/sr/LC_MESSAGES/kcm_cursortheme.mo share/locale/sr/LC_MESSAGES/kcm_desktoptheme.mo share/locale/sr/LC_MESSAGES/kcm_fonts.mo share/locale/sr/LC_MESSAGES/kcm_lookandfeel.mo share/locale/sr/LC_MESSAGES/kcm_nightcolor.mo share/locale/sr/LC_MESSAGES/kcm_style.mo share/locale/sr/LC_MESSAGES/kcm_translations.mo share/locale/sr/LC_MESSAGES/kcmformats.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_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_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_autostart.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_colors.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_cursortheme.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_desktoptheme.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_fonts.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_lookandfeel.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_nightcolor.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_style.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_translations.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmformats.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_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_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_autostart.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_colors.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_cursortheme.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_desktoptheme.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_fonts.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_lookandfeel.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_nightcolor.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_style.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_translations.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmformats.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_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_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_autostart.mo share/locale/sr@latin/LC_MESSAGES/kcm_colors.mo share/locale/sr@latin/LC_MESSAGES/kcm_cursortheme.mo share/locale/sr@latin/LC_MESSAGES/kcm_desktoptheme.mo share/locale/sr@latin/LC_MESSAGES/kcm_fonts.mo share/locale/sr@latin/LC_MESSAGES/kcm_lookandfeel.mo share/locale/sr@latin/LC_MESSAGES/kcm_nightcolor.mo share/locale/sr@latin/LC_MESSAGES/kcm_style.mo share/locale/sr@latin/LC_MESSAGES/kcm_translations.mo share/locale/sr@latin/LC_MESSAGES/kcmformats.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_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_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/sv/LC_MESSAGES/freespacenotifier.mo share/locale/sv/LC_MESSAGES/kcm5_icons.mo share/locale/sv/LC_MESSAGES/kcm_autostart.mo share/locale/sv/LC_MESSAGES/kcm_colors.mo share/locale/sv/LC_MESSAGES/kcm_cursortheme.mo share/locale/sv/LC_MESSAGES/kcm_desktoptheme.mo share/locale/sv/LC_MESSAGES/kcm_feedback.mo share/locale/sv/LC_MESSAGES/kcm_fonts.mo share/locale/sv/LC_MESSAGES/kcm_lookandfeel.mo share/locale/sv/LC_MESSAGES/kcm_nightcolor.mo share/locale/sv/LC_MESSAGES/kcm_notifications.mo share/locale/sv/LC_MESSAGES/kcm_style.mo share/locale/sv/LC_MESSAGES/kcm_translations.mo share/locale/sv/LC_MESSAGES/kcmformats.mo share/locale/sv/LC_MESSAGES/kcminit.mo share/locale/sv/LC_MESSAGES/kfontinst.mo share/locale/sv/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/sv/LC_MESSAGES/kio5_applications.mo share/locale/sv/LC_MESSAGES/kio_desktop.mo share/locale/sv/LC_MESSAGES/klipper.mo share/locale/sv/LC_MESSAGES/krdb.mo share/locale/sv/LC_MESSAGES/krunner.mo share/locale/sv/LC_MESSAGES/ksmserver.mo share/locale/sv/LC_MESSAGES/libkicker.mo share/locale/sv/LC_MESSAGES/libkworkspace.mo share/locale/sv/LC_MESSAGES/libnotificationmanager.mo share/locale/sv/LC_MESSAGES/phonon_kde_plugin.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/sv/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/sv/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/sv/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/sv/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/sv/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/sv/LC_MESSAGES/plasma_engine_dict.mo share/locale/sv/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/sv/LC_MESSAGES/plasma_engine_keystate.mo share/locale/sv/LC_MESSAGES/plasma_engine_mpris2.mo share/locale/sv/LC_MESSAGES/plasma_engine_notifications.mo share/locale/sv/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/sv/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/sv/LC_MESSAGES/plasma_engine_time.mo share/locale/sv/LC_MESSAGES/plasma_engine_weather.mo share/locale/sv/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/sv/LC_MESSAGES/plasma_package_plasmashell.mo share/locale/sv/LC_MESSAGES/plasma_runner_appstream.mo share/locale/sv/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/sv/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/sv/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/sv/LC_MESSAGES/plasma_runner_kill.mo share/locale/sv/LC_MESSAGES/plasma_runner_locations.mo share/locale/sv/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/sv/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/sv/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/sv/LC_MESSAGES/plasma_runner_services.mo share/locale/sv/LC_MESSAGES/plasma_runner_sessions.mo share/locale/sv/LC_MESSAGES/plasma_runner_shell.mo share/locale/sv/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/sv/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/sv/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/sv/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/sv/LC_MESSAGES/plasmashell.mo share/locale/sv/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/sv/LC_MESSAGES/soliduiserver5.mo share/locale/sv/LC_MESSAGES/systemmonitor.mo share/locale/ta/LC_MESSAGES/freespacenotifier.mo share/locale/ta/LC_MESSAGES/kcm5_icons.mo share/locale/ta/LC_MESSAGES/kcm_autostart.mo share/locale/ta/LC_MESSAGES/kcm_colors.mo share/locale/ta/LC_MESSAGES/kcm_cursortheme.mo share/locale/ta/LC_MESSAGES/kcm_feedback.mo share/locale/ta/LC_MESSAGES/kcm_fonts.mo share/locale/ta/LC_MESSAGES/kcm_nightcolor.mo share/locale/ta/LC_MESSAGES/kcm_notifications.mo share/locale/ta/LC_MESSAGES/kcm_style.mo share/locale/ta/LC_MESSAGES/kcm_translations.mo share/locale/ta/LC_MESSAGES/kcmformats.mo share/locale/ta/LC_MESSAGES/kcminit.mo share/locale/ta/LC_MESSAGES/kfontinst.mo share/locale/ta/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/ta/LC_MESSAGES/kio5_applications.mo share/locale/ta/LC_MESSAGES/kio_desktop.mo share/locale/ta/LC_MESSAGES/klipper.mo share/locale/ta/LC_MESSAGES/krdb.mo share/locale/ta/LC_MESSAGES/krunner.mo share/locale/ta/LC_MESSAGES/ksmserver.mo share/locale/ta/LC_MESSAGES/libkicker.mo share/locale/ta/LC_MESSAGES/libkworkspace.mo share/locale/ta/LC_MESSAGES/libnotificationmanager.mo share/locale/ta/LC_MESSAGES/phonon_kde_plugin.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/ta/LC_MESSAGES/plasma_runner_kill.mo share/locale/ta/LC_MESSAGES/plasma_runner_locations.mo share/locale/ta/LC_MESSAGES/plasma_runner_shell.mo share/locale/ta/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/ta/LC_MESSAGES/plasmashell.mo share/locale/ta/LC_MESSAGES/soliduiserver5.mo share/locale/ta/LC_MESSAGES/systemmonitor.mo share/locale/te/LC_MESSAGES/kcm5_icons.mo share/locale/te/LC_MESSAGES/kcm_autostart.mo share/locale/te/LC_MESSAGES/kcm_colors.mo share/locale/te/LC_MESSAGES/kcm_cursortheme.mo share/locale/te/LC_MESSAGES/kcm_desktoptheme.mo share/locale/te/LC_MESSAGES/kcm_fonts.mo share/locale/te/LC_MESSAGES/kcm_style.mo share/locale/te/LC_MESSAGES/kcmformats.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_autostart.mo share/locale/tg/LC_MESSAGES/kcm_colors.mo share/locale/tg/LC_MESSAGES/kcm_cursortheme.mo share/locale/tg/LC_MESSAGES/kcm_desktoptheme.mo share/locale/tg/LC_MESSAGES/kcm_fonts.mo share/locale/tg/LC_MESSAGES/kcm_lookandfeel.mo share/locale/tg/LC_MESSAGES/kcm_notifications.mo share/locale/tg/LC_MESSAGES/kcm_style.mo share/locale/tg/LC_MESSAGES/kcm_translations.mo share/locale/tg/LC_MESSAGES/kcmformats.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_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_autostart.mo share/locale/th/LC_MESSAGES/kcm_colors.mo share/locale/th/LC_MESSAGES/kcm_cursortheme.mo share/locale/th/LC_MESSAGES/kcm_desktoptheme.mo share/locale/th/LC_MESSAGES/kcm_fonts.mo share/locale/th/LC_MESSAGES/kcm_style.mo share/locale/th/LC_MESSAGES/kcmformats.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_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_autostart.mo share/locale/tr/LC_MESSAGES/kcm_colors.mo share/locale/tr/LC_MESSAGES/kcm_cursortheme.mo share/locale/tr/LC_MESSAGES/kcm_desktoptheme.mo share/locale/tr/LC_MESSAGES/kcm_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/kcmformats.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_applet_org.kde.plasma.systemmonitor.mo share/locale/tr/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/tr/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/tr/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/tr/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/tr/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/tr/LC_MESSAGES/plasma_engine_dict.mo share/locale/tr/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/tr/LC_MESSAGES/plasma_engine_keystate.mo share/locale/tr/LC_MESSAGES/plasma_engine_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_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_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_autostart.mo share/locale/ug/LC_MESSAGES/kcm_colors.mo share/locale/ug/LC_MESSAGES/kcm_cursortheme.mo share/locale/ug/LC_MESSAGES/kcm_desktoptheme.mo share/locale/ug/LC_MESSAGES/kcm_fonts.mo share/locale/ug/LC_MESSAGES/kcm_style.mo share/locale/ug/LC_MESSAGES/kcmformats.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_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_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_autostart.mo share/locale/uk/LC_MESSAGES/kcm_colors.mo share/locale/uk/LC_MESSAGES/kcm_cursortheme.mo share/locale/uk/LC_MESSAGES/kcm_desktoptheme.mo share/locale/uk/LC_MESSAGES/kcm_feedback.mo share/locale/uk/LC_MESSAGES/kcm_fonts.mo share/locale/uk/LC_MESSAGES/kcm_lookandfeel.mo share/locale/uk/LC_MESSAGES/kcm_nightcolor.mo share/locale/uk/LC_MESSAGES/kcm_notifications.mo share/locale/uk/LC_MESSAGES/kcm_style.mo share/locale/uk/LC_MESSAGES/kcm_translations.mo share/locale/uk/LC_MESSAGES/kcmformats.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_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_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/kcmformats.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/kcmformats.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_autostart.mo share/locale/vi/LC_MESSAGES/kcm_colors.mo share/locale/vi/LC_MESSAGES/kcm_cursortheme.mo share/locale/vi/LC_MESSAGES/kcm_desktoptheme.mo share/locale/vi/LC_MESSAGES/kcm_feedback.mo share/locale/vi/LC_MESSAGES/kcm_fonts.mo share/locale/vi/LC_MESSAGES/kcm_lookandfeel.mo share/locale/vi/LC_MESSAGES/kcm_nightcolor.mo share/locale/vi/LC_MESSAGES/kcm_notifications.mo share/locale/vi/LC_MESSAGES/kcm_style.mo share/locale/vi/LC_MESSAGES/kcm_translations.mo share/locale/vi/LC_MESSAGES/kcmformats.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_engine_keystate.mo share/locale/vi/LC_MESSAGES/plasma_engine_mpris2.mo share/locale/vi/LC_MESSAGES/plasma_engine_notifications.mo share/locale/vi/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/vi/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/vi/LC_MESSAGES/plasma_engine_time.mo share/locale/vi/LC_MESSAGES/plasma_engine_weather.mo share/locale/vi/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/vi/LC_MESSAGES/plasma_package_plasmashell.mo share/locale/vi/LC_MESSAGES/plasma_runner_appstream.mo share/locale/vi/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/vi/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/vi/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/vi/LC_MESSAGES/plasma_runner_kill.mo share/locale/vi/LC_MESSAGES/plasma_runner_locations.mo share/locale/vi/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/vi/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/vi/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/vi/LC_MESSAGES/plasma_runner_services.mo share/locale/vi/LC_MESSAGES/plasma_runner_sessions.mo share/locale/vi/LC_MESSAGES/plasma_runner_shell.mo share/locale/vi/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/vi/LC_MESSAGES/plasma_runner_windowedwidgets.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_autostart.mo share/locale/wa/LC_MESSAGES/kcm_colors.mo share/locale/wa/LC_MESSAGES/kcm_cursortheme.mo share/locale/wa/LC_MESSAGES/kcm_desktoptheme.mo share/locale/wa/LC_MESSAGES/kcm_fonts.mo share/locale/wa/LC_MESSAGES/kcm_style.mo share/locale/wa/LC_MESSAGES/kcmformats.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_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/kcmformats.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_autostart.mo share/locale/zh_CN/LC_MESSAGES/kcm_colors.mo share/locale/zh_CN/LC_MESSAGES/kcm_cursortheme.mo share/locale/zh_CN/LC_MESSAGES/kcm_desktoptheme.mo share/locale/zh_CN/LC_MESSAGES/kcm_feedback.mo share/locale/zh_CN/LC_MESSAGES/kcm_fonts.mo share/locale/zh_CN/LC_MESSAGES/kcm_lookandfeel.mo share/locale/zh_CN/LC_MESSAGES/kcm_nightcolor.mo share/locale/zh_CN/LC_MESSAGES/kcm_notifications.mo share/locale/zh_CN/LC_MESSAGES/kcm_style.mo share/locale/zh_CN/LC_MESSAGES/kcm_translations.mo share/locale/zh_CN/LC_MESSAGES/kcmformats.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_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_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_autostart.mo share/locale/zh_TW/LC_MESSAGES/kcm_colors.mo share/locale/zh_TW/LC_MESSAGES/kcm_cursortheme.mo share/locale/zh_TW/LC_MESSAGES/kcm_desktoptheme.mo share/locale/zh_TW/LC_MESSAGES/kcm_feedback.mo share/locale/zh_TW/LC_MESSAGES/kcm_fonts.mo share/locale/zh_TW/LC_MESSAGES/kcm_lookandfeel.mo share/locale/zh_TW/LC_MESSAGES/kcm_nightcolor.mo share/locale/zh_TW/LC_MESSAGES/kcm_notifications.mo share/locale/zh_TW/LC_MESSAGES/kcm_style.mo share/locale/zh_TW/LC_MESSAGES/kcm_translations.mo share/locale/zh_TW/LC_MESSAGES/kcmformats.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_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_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/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/VirtualKeyboard_wayland.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/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/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/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/SystemTrayState.qml share/plasma/plasmoids/org.kde.plasma.private.systemtray/contents/ui/items/AbstractItem.qml share/plasma/plasmoids/org.kde.plasma.private.systemtray/contents/ui/items/ItemLoader.qml share/plasma/plasmoids/org.kde.plasma.private.systemtray/contents/ui/items/PlasmoidItem.qml share/plasma/plasmoids/org.kde.plasma.private.systemtray/contents/ui/items/PulseAnimation.qml share/plasma/plasmoids/org.kde.plasma.private.systemtray/contents/ui/items/StatusNotifierItem.qml share/plasma/plasmoids/org.kde.plasma.private.systemtray/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.private.systemtray/metadata.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.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/kcm_translations.categories 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/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/VirtualKeyboard_wayland.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