Index: head/Mk/Uses/kde.mk =================================================================== --- head/Mk/Uses/kde.mk (revision 522347) +++ head/Mk/Uses/kde.mk (revision 522348) @@ -1,856 +1,856 @@ # $FreeBSD$ # # Provides support for KDE and KF5-based ports. # # Feature: kde # Valid ARGS: 5 # # 5: Depend on KDE Frameworks 5 components and variables. # # Variables that can be set by a port: # # USE_KDE List of KF5/Plasma5 components (other ports) that this # port depends on. # * foo_build Add a build-time dependency (BUILD_DEPENDS) # * foo_run Add a run-time dependency (RUN_DEPENDS) # * foo (default) Add both dependencies on component , or # a LIB_DEPENDS if applicable. # # To simplify the ports, also: # CATEGORIES If the port is part of one of the KDE Software distribution, # it can add, in addition to 'kde' one of the following: # kde-application: part of applications release # kde-frameworks: part of frameworks release # kde-plasma: part of plasma release # this will then set default values for MASTER_SITES and DIST_SUBDIR # as well as CPE_VENDOR and LICENSE. # # MAINTAINER: kde@FreeBSD.org .if !defined(_INCLUDE_USES_KDE_MK) _INCLUDE_USES_KDE_MK= yes _KDE_SUPPORTED= 5 . if empty(kde_ARGS) IGNORE= kde needs a version (${_KDE_SUPPORTED}) . endif . for ver in ${_KDE_SUPPORTED:O:u} . if ${kde_ARGS:M${ver}} . if !defined(_KDE_VERSION) _KDE_VERSION= ${ver} . else IGNORE?= cannot be installed: different KDE versions specified via kde:[${_KDE_SUPPORTED:S/ //g}] #' . endif . endif . endfor . if empty(_KDE_VERSION) IGNORE?= kde:[${_KDE_SUPPORTED:S/ //g}] needs an argument #' . else _KDE_RELNAME= KDE${_KDE_VERSION} # === VERSIONS OF THE DIFFERENT COMPONENTS ===================================== # Current KDE desktop. -KDE_PLASMA_VERSION?= 5.17.4 +KDE_PLASMA_VERSION?= 5.17.5 KDE_PLASMA_BRANCH?= stable # Current KDE frameworks. KDE_FRAMEWORKS_VERSION?= 5.65.0 KDE_FRAMEWORKS_BRANCH?= stable # Current KDE applications. KDE_APPLICATIONS_VERSION?= 19.12.0 KDE_APPLICATIONS_SHLIB_VER?= 5.13.0 KDE_APPLICATIONS_BRANCH?= stable # Upstream moves old software to Attic/. Specify the newest applications release there. # Only the major version is used for the comparison. _KDE_APPLICATIONS_ATTIC_VERSION= 17.08.3 # Extended KDE universe applications. CALLIGRA_VERSION?= 2.9.11 CALLIGRA_BRANCH?= stable # ============================================================================== # === INSTALLATION PREFIXES AND HEADER LOCATION ================================ # Define unversioned prefix variable. KDE_PREFIX= ${LOCALBASE} # ============================================================================== # === CATEGORIES HANDLING -- SETTING DEFAULT VALUES ============================ # Doing MASTER_SITES magic based on the category of the port _KDE_CATEGORIES_SUPPORTED= kde-applications kde-frameworks kde-plasma . for cat in ${_KDE_CATEGORIES_SUPPORTED} . if ${CATEGORIES:M${cat}} . if !defined(_KDE_CATEGORY) _KDE_CATEGORY= ${cat} . else IGNORE?= cannot be installed: multiple kde-<...> categories specified via CATEGORIES=${CATEGORIES} #' . endif . endif . endfor . if defined(_KDE_CATEGORY) # KDE is normally licensed under the LGPL 2.0. LICENSE?= LGPL20 # Set CPE Vendor Information # As _KDE_CATEGORY is set we can assume it is port release by KDE and the # vendor is therefore kde. CPE_VENDOR?= kde . if ${_KDE_CATEGORY:Mkde-applications} PORTVERSION?= ${KDE_APPLICATIONS_VERSION} # Decide where the file lies on KDE's servers: Check whether the file lies in Attic . if ${KDE_APPLICATIONS_VERSION:R:R} <= ${_KDE_APPLICATIONS_ATTIC_VERSION:R:R} MASTER_SITES?= KDE/Attic/applications/${KDE_APPLICATIONS_VERSION}/src . elseif ${KDE_APPLICATIONS_VERSION:R} < 19.12 MASTER_SITES?= KDE/${KDE_APPLICATIONS_BRANCH}/applications/${KDE_APPLICATIONS_VERSION}/src . else MASTER_SITES?= KDE/${KDE_APPLICATIONS_BRANCH}/release-service/${KDE_APPLICATIONS_VERSION}/src # Let bsd.port.mk create the plist-entries for the documentation. # KDE Applications ports install their documentation to # ${PREFIX}/share/doc. DOCSDIR= ${PREFIX}/share/doc PORTDOCS?= HTML/* # Further pass along a SHLIB_VER PLIST_SUB PLIST_SUB+= KDE_APPLICATIONS_SHLIB_VER=${KDE_APPLICATIONS_SHLIB_VER} \ KDE_APPLICATIONS_VERSION_SHORT="${KDE_APPLICATIONS_VERSION:R:R}" . endif DIST_SUBDIR?= KDE/applications/${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 . if ${_PORTINGAIDS:M*${PORTNAME}*} MASTER_SITES?= KDE/${KDE_FRAMEWORKS_BRANCH}/frameworks/${KDE_FRAMEWORKS_VERSION:R}/portingAids . else MASTER_SITES?= KDE/${KDE_FRAMEWORKS_BRANCH}/frameworks/${KDE_FRAMEWORKS_VERSION:R} . endif DIST_SUBDIR?= KDE/frameworks/${KDE_FRAMEWORKS_VERSION} . else IGNORE?= unknown CATEGORY value '${_KDE_CATEGORY}' #' . endif . endif #defined(_KDE_CATEGORY) # ============================================================================== # ==== SETUP CMAKE ENVIRONMENT ================================================= # Help cmake to find files when testing ports with non-default PREFIX. CMAKE_ARGS+= -DCMAKE_PREFIX_PATH="${LOCALBASE}" . if ${_KDE_VERSION:M*5*} # We set KDE_INSTALL_USE_QT_SYS_PATHS to install mkspecs files, plugins and # imports to the Qt 5 install directory. CMAKE_ARGS+= -DBUILD_TESTING:BOOL=OFF \ -DCMAKE_MODULE_PATH="${LOCALBASE};${KDE_PREFIX}" \ -DCMAKE_INSTALL_PREFIX="${KDE_PREFIX}" \ -DKDE_INSTALL_USE_QT_SYS_PATHS:BOOL=TRUE . endif # Set man-page installation prefix. CMAKE_ARGS+= -DKDE_INSTALL_MANDIR:PATH="${KDE_PREFIX}/man" \ -DMAN_INSTALL_DIR:PATH="${KDE_PREFIX}/man" # ============================================================================== # === SET-UP PLIST_SUB ========================================================= # Prefix and include directory. PLIST_SUB+= KDE_PREFIX="${KDE_PREFIX}" # KDE Applications version. PLIST_SUB+= KDE_APPLICATIONS_VERSION="${KDE_APPLICATIONS_VERSION}" . if ${_KDE_VERSION:M*5*} PLIST_SUB+= KDE_PLASMA_VERSION="${KDE_PLASMA_VERSION}" \ KDE_FRAMEWORKS_VERSION="${KDE_FRAMEWORKS_VERSION}" . endif # ============================================================================== _USE_KDE_BOTH= akonadi attica libkcddb libkcompactdisc libkdcraw libkdegames \ libkeduvocdocument libkexiv2 libkipi libksane okular \ baloo baloo-widgets kate marble # List of components of the KDE Frameworks distribution. # The *_TIER variables are internal, primarily for checking # that our list of frameworks matches the structure offered upstream. _USE_FRAMEWORKS_TIER1= apidox archive attica5 breeze-icons codecs config \ coreaddons dbusaddons dnssd holidays i18n idletime itemmodels \ itemviews kirigami2 kquickcharts oxygen-icons5 plotting prison \ qqc2-desktop-style solid sonnet syntaxhighlighting \ threadweaver wayland widgetsaddons windowsystem # NOT LISTED TIER1: modemmanagerqt networkmanagerqt (not applicable) _USE_FRAMEWORKS_TIER2= auth completion crash doctools \ filemetadata kimageformats jobwidgets notifications \ package pty syndication unitconversion _USE_FRAMEWORKS_TIER3= activities activities-stats baloo5 bookmarks configwidgets \ designerplugin emoticons globalaccel guiaddons \ iconthemes init kcmutils kdeclarative \ kded kdesu kdewebkit kio newstuff notifyconfig parts \ people plasma-framework purpose runner service texteditor \ textwidgets wallet xmlgui xmlrpcclient _USE_FRAMEWORKS_TIER4= frameworkintegration calendarcore contacts # Porting Aids frameworks provide code and utilities to ease the transition from # kdelibs 4 to KDE Frameworks 5. Code should aim to port away from this framework, # new projects should avoid using these libraries. _USE_FRAMEWORKS_PORTING=js jsembed kdelibs4support khtml mediaplayer kross _USE_FRAMEWORKS_ALL= ecm \ ${_USE_FRAMEWORKS_TIER1} \ ${_USE_FRAMEWORKS_TIER2} \ ${_USE_FRAMEWORKS_TIER3} \ ${_USE_FRAMEWORKS_TIER4} \ ${_USE_FRAMEWORKS_PORTING} \ ${_USE_FRAMEWORKS_EXTRA} # List of components of the KDE Plasma distribution. _USE_PLASMA_ALL= activitymanagerd breeze breeze-gtk \ decoration discover drkonqi hotkeys \ infocenter kde-cli-tools kde-gtk-config \ kdeplasma-addons kgamma5 kmenuedit kscreen \ kscreenlocker ksshaskpass ksysguard kwallet-pam \ kwayland-integration kwin kwrited libkscreen \ libksysguard milou oxygen plasma-browser-integration \ plasma-desktop plasma-integration plasma-pa \ plasma-sdk plasma-workspace plasma-workspace-wallpapers \ polkit-kde-agent-1 powerdevil systemsettings \ user-manager # List of components of the KDE PIM distribution (part of applications). _USE_KDEPIM5_ALL= akonadicontacts akonadiimportwizard akonadimime akonadinotes \ akonadicalendar akonadisearch alarmcalendar \ blog calendarcore calendarsupport calendarutils \ contacts eventviews gapi grantleetheme \ gravatar identitymanagement imap \ incidenceeditor kdepim-addons kdepim-apps-libs \ kdepim-runtime5 kitinerary kontactinterface kpimdav 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-mediaplayer_PORT= multimedia/kf5-kmediaplayer kde-mediaplayer_LIB= libKF5MediaPlayer.so.5 kde-newstuff_PORT= devel/kf5-knewstuff kde-newstuff_LIB= libKF5NewStuff.so kde-notifications_PORT= devel/kf5-knotifications kde-notifications_LIB= libKF5Notifications.so kde-notifyconfig_PORT= devel/kf5-knotifyconfig kde-notifyconfig_LIB= libKF5NotifyConfig.so kde-oxygen-icons5_PORT= x11-themes/kf5-oxygen-icons5 kde-oxygen-icons5_PATH= ${KDE_PREFIX}/share/icons/oxygen/index.theme kde-oxygen-icons5_TYPE= run kde-package_PORT= devel/kf5-kpackage kde-package_LIB= libKF5Package.so kde-parts_PORT= devel/kf5-kparts kde-parts_LIB= libKF5Parts.so kde-people_PORT= devel/kf5-kpeople kde-people_LIB= libKF5People.so kde-plasma-framework_PORT= x11/kf5-plasma-framework kde-plasma-framework_LIB= libKF5Plasma.so kde-plotting_PORT= graphics/kf5-kplotting kde-plotting_LIB= libKF5Plotting.so kde-prison_PORT= graphics/kf5-prison kde-prison_LIB= libKF5Prison.so kde-pty_PORT= devel/kf5-kpty kde-pty_LIB= libKF5Pty.so kde-purpose_PORT= misc/kf5-purpose kde-purpose_LIB= libKF5Purpose.so kde-qqc2-desktop-style_PORT= x11-themes/kf5-qqc2-desktop-style kde-qqc2-desktop-style_PATH= ${QT_PLUGINDIR}/kf5/kirigami/org.kde.desktop.so kde-runner_PORT= x11/kf5-krunner kde-runner_LIB= libKF5Runner.so kde-service_PORT= devel/kf5-kservice kde-service_PATH= ${KDE_PREFIX}/bin/kbuildsycoca5 kde-solid_PORT= devel/kf5-solid kde-solid_LIB= libKF5Solid.so kde-sonnet_PORT= textproc/kf5-sonnet kde-sonnet_LIB= libKF5SonnetCore.so kde-syndication_PORT= net/kf5-syndication kde-syndication_LIB= libKF5Syndication.so kde-syntaxhighlighting_PORT= textproc/kf5-syntax-highlighting kde-syntaxhighlighting_LIB= libKF5SyntaxHighlighting.so kde-texteditor_PORT= devel/kf5-ktexteditor kde-texteditor_LIB= libKF5TextEditor.so kde-textwidgets_PORT= x11-toolkits/kf5-ktextwidgets kde-textwidgets_LIB= libKF5TextWidgets.so kde-threadweaver_PORT= devel/kf5-threadweaver kde-threadweaver_LIB= libKF5ThreadWeaver.so kde-unitconversion_PORT= devel/kf5-kunitconversion kde-unitconversion_LIB= libKF5UnitConversion.so kde-wallet_PORT= sysutils/kf5-kwallet kde-wallet_LIB= libKF5Wallet.so kde-wayland_PORT= x11/kf5-kwayland kde-wayland_LIB= libKF5WaylandClient.so kde-widgetsaddons_PORT= x11-toolkits/kf5-kwidgetsaddons kde-widgetsaddons_LIB= libKF5WidgetsAddons.so kde-windowsystem_PORT= x11/kf5-kwindowsystem kde-windowsystem_LIB= libKF5WindowSystem.so kde-xmlgui_PORT= x11-toolkits/kf5-kxmlgui kde-xmlgui_LIB= libKF5XmlGui.so kde-xmlrpcclient_PORT= net/kf5-kxmlrpcclient kde-xmlrpcclient_LIB= libKF5XmlRpcClient.so # ====================== end of frameworks components ========================== # ====================== plasma components ===================================== kde-activitymanagerd_PORT= x11/plasma5-kactivitymanagerd kde-activitymanagerd_LIB= libkactivitymanagerd_plugin.so kde-breeze_PORT= x11-themes/plasma5-breeze kde-breeze_PATH= ${KDE_PREFIX}/share/QtCurve/Breeze.qtcurve kde-breeze-gtk_PORT= x11-themes/plasma5-breeze-gtk kde-breeze-gtk_PATH= ${KDE_PREFIX}/lib/kconf_update_bin/gtkbreeze5.5 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= ${QT_PLUGINDIR}/kcm_kdegtkconfig.so 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_LIB= libkdeinit5_kmenuedit.so 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/krdb 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 kde-user-manager_PORT= sysutils/plasma5-user-manager kde-user-manager_PATH= ${QT_PLUGINDIR}/user_manager.so # ====================== 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-blog_PORT= net/kblog kde-blog_LIB= libKF5Blog.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-kdepim-addons_PORT= deskutils/kdepim-addons kde-kdepim-addons_PATH= ${KDE_PREFIX}/lib/contacteditor/editorpageplugins/cryptopageplugin.so kde-kdepim-apps-libs_PORT= deskutils/kdepim-apps-libs kde-kdepim-apps-libs_LIB= libKF5SendLater.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-kpimdav_PORT= net/kdav kde-kpimdav_LIB= libKPimKDAV.so kde-kpkpass_PORT= security/kpkpass kde-kpkpass_LIB= libKPimPkPass.so kde-ksmtp_PORT= net/ksmtp kde-ksmtp_LIB= libKPimSMTP.so kde-ldap_PORT= net/kldap kde-ldap_LIB= libKF5Ldap.so kde-libkdepim_PORT= deskutils/libkdepim kde-libkdepim_LIB= libKF5Libkdepim.so kde-libkleo_PORT= security/libkleo kde-libkleo_LIB= libKF5Libkleo.so kde-libksieve_PORT= net/libksieve kde-libksieve_LIB= libKF5KSieve.so kde-mailcommon_PORT= net/mailcommon kde-mailcommon_LIB= libKF5MailCommon.so kde-mailimporter_PORT= net/mailimporter kde-mailimporter_LIB= libKF5MailImporter.so kde-mailtransport_PORT= net/kmailtransport kde-mailtransport_LIB= libKF5MailTransport.so kde-mbox_PORT= net/kmbox kde-mbox_LIB= libKF5Mbox.so kde-messagelib_PORT= net/messagelib kde-messagelib_LIB= libKF5MessageList.so kde-mime_PORT= net/kmime kde-mime_LIB= libKF5Mime.so kde-pimcommon_PORT= net/pimcommon kde-pimcommon_LIB= libKF5PimCommon.so kde-pimtextedit_PORT= net/kpimtextedit kde-pimtextedit_LIB= libKF5PimTextEdit.so kde-tnef_PORT= net/ktnef kde-tnef_LIB= libKF5Tnef.so # PIM Applications kde-akonadiconsole_PORT= deskutils/akonadiconsole kde-akonadiconsole_PATH= ${KDE_PREFIX}/bin/akonadiconsole kde-akregator_PORT= deskutils/akregator kde-akregator_PATH= ${KDE_PREFIX}/bin/akregator kde-grantlee-editor_PORT= deskutils/grantlee-editor kde-grantlee-editor_PATH= ${KDE_PREFIX}/bin/contactthemeeditor kde-kaddressbook_PORT= deskutils/kaddressbook kde-kaddressbook_PATH= ${KDE_PREFIX}/bin/kaddressbook kde-kalarm_PORT= deskutils/kalarm kde-kalarm_PATH= ${KDE_PREFIX}/bin/kalarm kde-kmail_PORT= deskutils/kmail kde-kmail_PATH= ${KDE_PREFIX}/bin/kmail kde-kmail-account-wizard_PORT= deskutils/kmail-account-wizard kde-kmail-account-wizard_PATH= ${KDE_PREFIX}/bin/accountwizard kde-knotes_PORT= deskutils/knotes kde-knotex_PATH= ${KDE_PREFIX}/bin/knotes kde-kontact_PORT= deskutils/kontact kde-kontact_PATH= ${KDE_PREFIX}/bin/kontact kde-korganizer_PORT= deskutils/korganizer kde-korganizer_PATH= ${KDE_PREFIX}/bin/korganizer kde-mbox-importer_PORT= deskutils/mbox-importer kde-mbox-importer_PATH= ${KDE_PREFIX}/bin/mboximporter kde-pim-data-exporter_PORT= deskutils/pim-data-exporter kde-pim-data-exporter_PATH= ${KDE_PREFIX}/bin/pimdataexporter # ====================== end of pim5 components ================================ # ====================== multiversion component ================================ kde-akonadi5_PORT= databases/akonadi kde-akonadi5_LIB= libKF5AkonadiPrivate.so kde-baloo-widgets5_PORT= sysutils/baloo-widgets kde-baloo-widgets5_LIB= libKF5BalooWidgets.so kde-kate5_PORT= editors/kate kde-kate5_PATH= ${QT_PLUGINDIR}/ktexteditor/katebacktracebrowserplugin.so kde-libkcddb5_PORT= audio/libkcddb kde-libkcddb5_LIB= libKF5Cddb.so kde-libkcompactdisc5_PORT= audio/libkcompactdisc kde-libkcompactdisc5_LIB= libKF5CompactDisc.so kde-libkdcraw5_PORT= graphics/libkdcraw kde-libkdcraw5_LIB= libKF5KDcraw.so kde-libkdegames5_PORT= games/libkdegames kde-libkdegames5_LIB= libKF5KDEGames.so kde-libkeduvocdocument5_PORT= misc/libkeduvocdocument kde-libkeduvocdocument5_LIB= libKEduVocDocument.so kde-libkexiv25_PORT= graphics/libkexiv2 kde-libkexiv25_LIB= libKF5KExiv2.so kde-libkipi5_PORT= graphics/libkipi kde-libkipi5_LIB= libKF5Kipi.so kde-libksane5_PORT= graphics/libksane kde-libksane5_LIB= libKF5Sane.so kde-marble5_PORT= astro/marble kde-marble5_LIB= libmarblewidget-qt5.so kde-okular5_PORT= graphics/okular kde-okular5_LIB= libOkular5Core.so # ====================== end of multiversion components ======================== # ====================== select the proper multiversion component ============== . for comp in ${_USE_KDE_BOTH} kde-${comp}_PORT= ${kde-${comp}${_KDE_VERSION}_PORT} . if defined(kde-${comp}${_KDE_VERSION}_LIB) kde-${comp}_LIB= ${kde-${comp}${_KDE_VERSION}_LIB} . else . if defined(kde-${comp}${_KDE_VERSION}_PATH}) kde-${comp}_PATH= ${kde-${comp}${_KDE_VERSION}_LIB} . endif # If neither is defined, this gets caught below when checking components . endif . endfor #=============================================================================== # end of component list ######################################################## _USE_KDE_ALL= ${_USE_${_KDE_RELNAME}_ALL} # Iterate through components deprived of suffix. . for component in ${USE_KDE:O:u:C/_.+//} # Check that the component is valid. . if ${_USE_KDE_ALL:M${component}} != "" # Skip meta-components (currently none). . if defined(kde-${component}_PORT) && (defined(kde-${component}_PATH) || defined(kde-${component}_LIB)) # Check if a dependency type is explicitly requested. . if ${USE_KDE:M${component}_*} != "" && ${USE_KDE:M${component}} == "" kde-${component}_TYPE= # empty . if ${USE_KDE:M${component}_build} != "" kde-${component}_TYPE+= build . endif . if ${USE_KDE:M${component}_run} != "" kde-${component}_TYPE+= run . endif . endif # ${USE_KDE:M${component}_*} != "" && ${USE_KDE:M${component}} == "" # If no dependency type is set, default to full dependency. . if !defined(kde-${component}_TYPE) kde-${component}_TYPE= build run . endif # Set real dependencies. . if defined(kde-${component}_LIB) && ${kde-${component}_TYPE:Mbuild} && ${kde-${component}_TYPE:Mrun} LIB_DEPENDS+= ${kde-${component}_LIB}:${kde-${component}_PORT} . else kde-${component}_PATH?= ${KDE_PREFIX}/lib/${kde-${component}_LIB} kde-${component}_DEPENDS= ${kde-${component}_PATH}:${kde-${component}_PORT} . if ${kde-${component}_TYPE:Mbuild} != "" BUILD_DEPENDS+= ${kde-${component}_DEPENDS} . endif . if ${kde-${component}_TYPE:Mrun} != "" RUN_DEPENDS+= ${kde-${component}_DEPENDS} . endif . endif # ${kde-${component}_LIB} && ${kde-${component}_TYPE:Mbuild} && ${kde-${component}_TYPE:Mrun} . endif # defined(kde-${component}_PORT) && defined(kde-${component}_PATH) . else # ! ${_USE_KDE_ALL:M${component}} != "" IGNORE= cannot be installed: unknown USE_KDE component '${component}' . endif # ${_USE_KDE_ALL:M${component}} != "" . endfor . endif .endif Index: head/audio/plasma5-plasma-pa/distinfo =================================================================== --- head/audio/plasma5-plasma-pa/distinfo (revision 522347) +++ head/audio/plasma5-plasma-pa/distinfo (revision 522348) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575440787 -SHA256 (KDE/plasma/5.17.4/plasma-pa-5.17.4.tar.xz) = 43a366147323c583dd032c46fab68e4b1ff3a28e4ff1239eebed5b7536f41dde -SIZE (KDE/plasma/5.17.4/plasma-pa-5.17.4.tar.xz) = 103976 +TIMESTAMP = 1578414618 +SHA256 (KDE/plasma/5.17.5/plasma-pa-5.17.5.tar.xz) = 933c6ab1fda52b336a157a48b1ea64b81fd1d84ca08a40a52bfae276cca2bf23 +SIZE (KDE/plasma/5.17.5/plasma-pa-5.17.5.tar.xz) = 104280 Index: head/deskutils/plasma5-milou/distinfo =================================================================== --- head/deskutils/plasma5-milou/distinfo (revision 522347) +++ head/deskutils/plasma5-milou/distinfo (revision 522348) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575440789 -SHA256 (KDE/plasma/5.17.4/milou-5.17.4.tar.xz) = 53eb074ea4dda3172e44eafefac1c1b53aa166b60dfedce4fedb15ee8d5ec5b5 -SIZE (KDE/plasma/5.17.4/milou-5.17.4.tar.xz) = 63376 +TIMESTAMP = 1578414620 +SHA256 (KDE/plasma/5.17.5/milou-5.17.5.tar.xz) = b89796e34cc8b6d6d4196169e814249f7b75c1c15763e0b4c1da5c97ccc2c8cf +SIZE (KDE/plasma/5.17.5/milou-5.17.5.tar.xz) = 63276 Index: head/deskutils/plasma5-sddm-kcm/distinfo =================================================================== --- head/deskutils/plasma5-sddm-kcm/distinfo (revision 522347) +++ head/deskutils/plasma5-sddm-kcm/distinfo (revision 522348) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575440790 -SHA256 (KDE/plasma/5.17.4/sddm-kcm-5.17.4.tar.xz) = b2fe7cc5d6aa8d26922aea122ce5b4dbd9621051b7e4c08e0d9ad382917f2e25 -SIZE (KDE/plasma/5.17.4/sddm-kcm-5.17.4.tar.xz) = 59004 +TIMESTAMP = 1578414621 +SHA256 (KDE/plasma/5.17.5/sddm-kcm-5.17.5.tar.xz) = e85fb9e014439e8c0e73638112139561aff9a9f71f26c3eafedff5a98a07b33b +SIZE (KDE/plasma/5.17.5/sddm-kcm-5.17.5.tar.xz) = 59304 Index: head/devel/plasma5-khotkeys/distinfo =================================================================== --- head/devel/plasma5-khotkeys/distinfo (revision 522347) +++ head/devel/plasma5-khotkeys/distinfo (revision 522348) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575440792 -SHA256 (KDE/plasma/5.17.4/khotkeys-5.17.4.tar.xz) = 2333a6a12cc0e30fd7f449daf1f74ffe22125a5c7cc62f92bcff59b6817a2baf -SIZE (KDE/plasma/5.17.4/khotkeys-5.17.4.tar.xz) = 1854756 +TIMESTAMP = 1578414622 +SHA256 (KDE/plasma/5.17.5/khotkeys-5.17.5.tar.xz) = cf78b5bfb8568fb4eea592b209bdb79aeac92bd08a580c3b6c08d45dd34a2d56 +SIZE (KDE/plasma/5.17.5/khotkeys-5.17.5.tar.xz) = 1853632 Index: head/devel/plasma5-kwrited/distinfo =================================================================== --- head/devel/plasma5-kwrited/distinfo (revision 522347) +++ head/devel/plasma5-kwrited/distinfo (revision 522348) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575440794 -SHA256 (KDE/plasma/5.17.4/kwrited-5.17.4.tar.xz) = d772e968be4ad96166f3747da2a252a9978f879b9fcd8a6e84ad86f78baf4d36 -SIZE (KDE/plasma/5.17.4/kwrited-5.17.4.tar.xz) = 20040 +TIMESTAMP = 1578414623 +SHA256 (KDE/plasma/5.17.5/kwrited-5.17.5.tar.xz) = ca22b1fa3e657fa2e58bf0c9dc1ebff3be8c0e003750223e7a7c5932d5b90823 +SIZE (KDE/plasma/5.17.5/kwrited-5.17.5.tar.xz) = 20080 Index: head/devel/plasma5-plasma-sdk/distinfo =================================================================== --- head/devel/plasma5-plasma-sdk/distinfo (revision 522347) +++ head/devel/plasma5-plasma-sdk/distinfo (revision 522348) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575440795 -SHA256 (KDE/plasma/5.17.4/plasma-sdk-5.17.4.tar.xz) = f7766bb713b37881bd1095d1a11d6d90e350e75cca275dabb60dc3db20e127ef -SIZE (KDE/plasma/5.17.4/plasma-sdk-5.17.4.tar.xz) = 258456 +TIMESTAMP = 1578414624 +SHA256 (KDE/plasma/5.17.5/plasma-sdk-5.17.5.tar.xz) = ff736029b1ae5773991db06f5827d9dcbd8e7a4e9a430c9014c35ddee2c55314 +SIZE (KDE/plasma/5.17.5/plasma-sdk-5.17.5.tar.xz) = 260124 Index: head/security/plasma5-kscreenlocker/distinfo =================================================================== --- head/security/plasma5-kscreenlocker/distinfo (revision 522347) +++ head/security/plasma5-kscreenlocker/distinfo (revision 522348) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575440797 -SHA256 (KDE/plasma/5.17.4/kscreenlocker-5.17.4.tar.xz) = 9c7d0d5efad6a8d28889b75b08f17b074000959f03ed2c78b7f69e0af6c1466c -SIZE (KDE/plasma/5.17.4/kscreenlocker-5.17.4.tar.xz) = 123716 +TIMESTAMP = 1578414625 +SHA256 (KDE/plasma/5.17.5/kscreenlocker-5.17.5.tar.xz) = 078cfaa9f117a985f5c71152bdf4a9f5cb65ef23c0090cfaaccc9539770f138f +SIZE (KDE/plasma/5.17.5/kscreenlocker-5.17.5.tar.xz) = 123744 Index: head/security/plasma5-ksshaskpass/distinfo =================================================================== --- head/security/plasma5-ksshaskpass/distinfo (revision 522347) +++ head/security/plasma5-ksshaskpass/distinfo (revision 522348) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575440799 -SHA256 (KDE/plasma/5.17.4/ksshaskpass-5.17.4.tar.xz) = ab42898b0dc1250c131ae00c67f8b8a2e7d3d116a22baccf1486161178b8392f -SIZE (KDE/plasma/5.17.4/ksshaskpass-5.17.4.tar.xz) = 21468 +TIMESTAMP = 1578414626 +SHA256 (KDE/plasma/5.17.5/ksshaskpass-5.17.5.tar.xz) = b09e0d780340fc5a6a65e67a30d08a3f117f31e2dbfbb35579aa4cefb15c3b27 +SIZE (KDE/plasma/5.17.5/ksshaskpass-5.17.5.tar.xz) = 21372 Index: head/security/plasma5-kwallet-pam/distinfo =================================================================== --- head/security/plasma5-kwallet-pam/distinfo (revision 522347) +++ head/security/plasma5-kwallet-pam/distinfo (revision 522348) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575440799 -SHA256 (KDE/plasma/5.17.4/kwallet-pam-5.17.4.tar.xz) = 43bbe31e0c5f4092b3ba42b73deadb4e28d10fb1566320fa48ba377a1fa1c3db -SIZE (KDE/plasma/5.17.4/kwallet-pam-5.17.4.tar.xz) = 19716 +TIMESTAMP = 1578414627 +SHA256 (KDE/plasma/5.17.5/kwallet-pam-5.17.5.tar.xz) = c829c7a44408e58beb87c71f5c70bccd349d285c3fcefb16df98bf2f29357fe9 +SIZE (KDE/plasma/5.17.5/kwallet-pam-5.17.5.tar.xz) = 19712 Index: head/sysutils/plasma5-discover/distinfo =================================================================== --- head/sysutils/plasma5-discover/distinfo (revision 522347) +++ head/sysutils/plasma5-discover/distinfo (revision 522348) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575440802 -SHA256 (KDE/plasma/5.17.4/discover-5.17.4.tar.xz) = 530dae9da8e511f190c87c7e81db9b8cdcbd5d0d0cbf2651bb0dd627fb9ed1ba -SIZE (KDE/plasma/5.17.4/discover-5.17.4.tar.xz) = 10449080 +TIMESTAMP = 1578414629 +SHA256 (KDE/plasma/5.17.5/discover-5.17.5.tar.xz) = 986ef367aef59c5a956d4163f987a60cfd3674a300880376ddedc0222769789f +SIZE (KDE/plasma/5.17.5/discover-5.17.5.tar.xz) = 10449596 Index: head/sysutils/plasma5-drkonqi/distinfo =================================================================== --- head/sysutils/plasma5-drkonqi/distinfo (revision 522347) +++ head/sysutils/plasma5-drkonqi/distinfo (revision 522348) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575440804 -SHA256 (KDE/plasma/5.17.4/drkonqi-5.17.4.tar.xz) = b85c63f731e3adc368c5b43e8572e769cd0f89db7bc40014854f2e1ff336c3bd -SIZE (KDE/plasma/5.17.4/drkonqi-5.17.4.tar.xz) = 740416 +TIMESTAMP = 1578414631 +SHA256 (KDE/plasma/5.17.5/drkonqi-5.17.5.tar.xz) = 756c50f2458a8c564e608ea97244f6b2b3d5fb4a675a8cec29307be1d5ab5457 +SIZE (KDE/plasma/5.17.5/drkonqi-5.17.5.tar.xz) = 740416 Index: head/sysutils/plasma5-kde-cli-tools/distinfo =================================================================== --- head/sysutils/plasma5-kde-cli-tools/distinfo (revision 522347) +++ head/sysutils/plasma5-kde-cli-tools/distinfo (revision 522348) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575440806 -SHA256 (KDE/plasma/5.17.4/kde-cli-tools-5.17.4.tar.xz) = e63f5e2f8abeb8e3478174609b1671ff61301bef7b9e50ca5a7c35e7448d3b9e -SIZE (KDE/plasma/5.17.4/kde-cli-tools-5.17.4.tar.xz) = 592128 +TIMESTAMP = 1578414632 +SHA256 (KDE/plasma/5.17.5/kde-cli-tools-5.17.5.tar.xz) = d14299ebeaf89854cb89435cfaaa4da1d84bf23a97df23ff8c7f95dae5bec55f +SIZE (KDE/plasma/5.17.5/kde-cli-tools-5.17.5.tar.xz) = 590264 Index: head/sysutils/plasma5-kinfocenter/distinfo =================================================================== --- head/sysutils/plasma5-kinfocenter/distinfo (revision 522347) +++ head/sysutils/plasma5-kinfocenter/distinfo (revision 522348) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575440808 -SHA256 (KDE/plasma/5.17.4/kinfocenter-5.17.4.tar.xz) = 2e6a542870b37e7e36a255205648c957723215f4fa7f1154e2fbdfe78d15d502 -SIZE (KDE/plasma/5.17.4/kinfocenter-5.17.4.tar.xz) = 1344288 +TIMESTAMP = 1578414633 +SHA256 (KDE/plasma/5.17.5/kinfocenter-5.17.5.tar.xz) = 679870f10ee6494136d87a897a57a23c2905054d7a83ff11a4e85c204eb9fd9a +SIZE (KDE/plasma/5.17.5/kinfocenter-5.17.5.tar.xz) = 1343896 Index: head/sysutils/plasma5-kmenuedit/distinfo =================================================================== --- head/sysutils/plasma5-kmenuedit/distinfo (revision 522347) +++ head/sysutils/plasma5-kmenuedit/distinfo (revision 522348) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575440809 -SHA256 (KDE/plasma/5.17.4/kmenuedit-5.17.4.tar.xz) = 4b0cb5cc5c29915def13818670746a018bb760b5fcfa4ee936a1181fc788628a -SIZE (KDE/plasma/5.17.4/kmenuedit-5.17.4.tar.xz) = 815840 +TIMESTAMP = 1578414634 +SHA256 (KDE/plasma/5.17.5/kmenuedit-5.17.5.tar.xz) = 59beed03298cd9fd6b05d67844794ed6a77be0d1b25b55d5bbcdf72e15e357de +SIZE (KDE/plasma/5.17.5/kmenuedit-5.17.5.tar.xz) = 815568 Index: head/sysutils/plasma5-ksysguard/distinfo =================================================================== --- head/sysutils/plasma5-ksysguard/distinfo (revision 522347) +++ head/sysutils/plasma5-ksysguard/distinfo (revision 522348) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575440811 -SHA256 (KDE/plasma/5.17.4/ksysguard-5.17.4.tar.xz) = e43a241ad0810fc1abbad9bb5ac631eda9d2127370fbfab52c7b5b3feb0040a6 -SIZE (KDE/plasma/5.17.4/ksysguard-5.17.4.tar.xz) = 514576 +TIMESTAMP = 1578414635 +SHA256 (KDE/plasma/5.17.5/ksysguard-5.17.5.tar.xz) = 69bc12311dcf363b168a259139d30456ed395ec03b948bd35e992300c7e7bd82 +SIZE (KDE/plasma/5.17.5/ksysguard-5.17.5.tar.xz) = 515292 Index: head/sysutils/plasma5-libksysguard/distinfo =================================================================== --- head/sysutils/plasma5-libksysguard/distinfo (revision 522347) +++ head/sysutils/plasma5-libksysguard/distinfo (revision 522348) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575440813 -SHA256 (KDE/plasma/5.17.4/libksysguard-5.17.4.tar.xz) = e88c20e9e0112c00f5dd4fa26fcc5a7f2e682e8672e32913970f138a1c8f1ec6 -SIZE (KDE/plasma/5.17.4/libksysguard-5.17.4.tar.xz) = 606328 +TIMESTAMP = 1578414637 +SHA256 (KDE/plasma/5.17.5/libksysguard-5.17.5.tar.xz) = f5d237af554d65740a28360e6d8fa39d4912239c5f21288846b1c934897a7e14 +SIZE (KDE/plasma/5.17.5/libksysguard-5.17.5.tar.xz) = 605628 Index: head/sysutils/plasma5-polkit-kde-agent-1/distinfo =================================================================== --- head/sysutils/plasma5-polkit-kde-agent-1/distinfo (revision 522347) +++ head/sysutils/plasma5-polkit-kde-agent-1/distinfo (revision 522348) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575440814 -SHA256 (KDE/plasma/5.17.4/polkit-kde-agent-1-5.17.4.tar.xz) = 042677cab65ab4c51632398bb9b3204cd09cef5bb4648949a7a3914bba4c6d49 -SIZE (KDE/plasma/5.17.4/polkit-kde-agent-1-5.17.4.tar.xz) = 43308 +TIMESTAMP = 1578414638 +SHA256 (KDE/plasma/5.17.5/polkit-kde-agent-1-5.17.5.tar.xz) = a79d76a2f584f6567639228fde6f75b3960484f7a65cfc69b6acb6df1de53f5d +SIZE (KDE/plasma/5.17.5/polkit-kde-agent-1-5.17.5.tar.xz) = 43340 Index: head/sysutils/plasma5-powerdevil/distinfo =================================================================== --- head/sysutils/plasma5-powerdevil/distinfo (revision 522347) +++ head/sysutils/plasma5-powerdevil/distinfo (revision 522348) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575440816 -SHA256 (KDE/plasma/5.17.4/powerdevil-5.17.4.tar.xz) = 8bd49fa5d1f5886dbc23f42e35c3e7b1ece6502c2c22cb20c981060ac250de80 -SIZE (KDE/plasma/5.17.4/powerdevil-5.17.4.tar.xz) = 594592 +TIMESTAMP = 1578414639 +SHA256 (KDE/plasma/5.17.5/powerdevil-5.17.5.tar.xz) = 27904361e85e1267d933d8f0a0d3be4dc712099ed2eb3cf90959209a4443dd82 +SIZE (KDE/plasma/5.17.5/powerdevil-5.17.5.tar.xz) = 593788 Index: head/sysutils/plasma5-systemsettings/distinfo =================================================================== --- head/sysutils/plasma5-systemsettings/distinfo (revision 522347) +++ head/sysutils/plasma5-systemsettings/distinfo (revision 522348) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575440819 -SHA256 (KDE/plasma/5.17.4/systemsettings-5.17.4.tar.xz) = 12055008f90f4d53f3b5dccaefe1082032522f17d64e8925b680a5cb97853bd9 -SIZE (KDE/plasma/5.17.4/systemsettings-5.17.4.tar.xz) = 172764 +TIMESTAMP = 1578414640 +SHA256 (KDE/plasma/5.17.5/systemsettings-5.17.5.tar.xz) = 50fa4d7866639995a6859446fc6a02a73ae05203e8f2ed31221e232ed3491eaf +SIZE (KDE/plasma/5.17.5/systemsettings-5.17.5.tar.xz) = 172720 Index: head/sysutils/plasma5-user-manager/distinfo =================================================================== --- head/sysutils/plasma5-user-manager/distinfo (revision 522347) +++ head/sysutils/plasma5-user-manager/distinfo (revision 522348) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575440821 -SHA256 (KDE/plasma/5.17.4/user-manager-5.17.4.tar.xz) = 1e8021ffeba4eb146c9bc1bf12f0d563d5c0da1bf75d0d63779b1f98b02c0be4 -SIZE (KDE/plasma/5.17.4/user-manager-5.17.4.tar.xz) = 2163860 +TIMESTAMP = 1578414641 +SHA256 (KDE/plasma/5.17.5/user-manager-5.17.5.tar.xz) = 10ed3196063c7dfed3b3f25dd199a48ca39fa86db5d0126ec84a543b1c212f0d +SIZE (KDE/plasma/5.17.5/user-manager-5.17.5.tar.xz) = 2163828 Index: head/www/plasma5-plasma-browser-integration/distinfo =================================================================== --- head/www/plasma5-plasma-browser-integration/distinfo (revision 522347) +++ head/www/plasma5-plasma-browser-integration/distinfo (revision 522348) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575440822 -SHA256 (KDE/plasma/5.17.4/plasma-browser-integration-5.17.4.tar.xz) = 312a45447d76ee01fd45c656c256b1b2b2ec9805ebec7d8bcc93ae7cd9e9c628 -SIZE (KDE/plasma/5.17.4/plasma-browser-integration-5.17.4.tar.xz) = 146496 +TIMESTAMP = 1578414643 +SHA256 (KDE/plasma/5.17.5/plasma-browser-integration-5.17.5.tar.xz) = 07bc4285991ab43830873a12b8c07f60e4faea1ec81121db783c425f18a4f87d +SIZE (KDE/plasma/5.17.5/plasma-browser-integration-5.17.5.tar.xz) = 147220 Index: head/x11/plasma5-kactivitymanagerd/distinfo =================================================================== --- head/x11/plasma5-kactivitymanagerd/distinfo (revision 522347) +++ head/x11/plasma5-kactivitymanagerd/distinfo (revision 522348) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575440873 -SHA256 (KDE/plasma/5.17.4/kactivitymanagerd-5.17.4.tar.xz) = 60c3214adf0bd4bbbe558b897fadcf800e9f8b4aaf32bf7f116d43c1c35705b3 -SIZE (KDE/plasma/5.17.4/kactivitymanagerd-5.17.4.tar.xz) = 86564 +TIMESTAMP = 1578414659 +SHA256 (KDE/plasma/5.17.5/kactivitymanagerd-5.17.5.tar.xz) = 362721c3a9712751fba29cd1f1ef440a1e74561a611f2d171692a4ddc895b3e4 +SIZE (KDE/plasma/5.17.5/kactivitymanagerd-5.17.5.tar.xz) = 86660 Index: head/x11/plasma5-kgamma5/distinfo =================================================================== --- head/x11/plasma5-kgamma5/distinfo (revision 522347) +++ head/x11/plasma5-kgamma5/distinfo (revision 522348) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575440875 -SHA256 (KDE/plasma/5.17.4/kgamma5-5.17.4.tar.xz) = ab8cd07b519816a6ccb316cebece2381232e113bdb22007535950f8324f5f398 -SIZE (KDE/plasma/5.17.4/kgamma5-5.17.4.tar.xz) = 80156 +TIMESTAMP = 1578414660 +SHA256 (KDE/plasma/5.17.5/kgamma5-5.17.5.tar.xz) = 3b8fd1539d035d4d39dcde6ca0dd214e6653c98778ac79b9cbf2f7009b155ca9 +SIZE (KDE/plasma/5.17.5/kgamma5-5.17.5.tar.xz) = 80304 Index: head/x11/plasma5-kscreen/distinfo =================================================================== --- head/x11/plasma5-kscreen/distinfo (revision 522347) +++ head/x11/plasma5-kscreen/distinfo (revision 522348) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575440876 -SHA256 (KDE/plasma/5.17.4/kscreen-5.17.4.tar.xz) = 7f3c5849975d870ef510f1b0dc819e8d1f0a67e13cca91a849333d90077d6878 -SIZE (KDE/plasma/5.17.4/kscreen-5.17.4.tar.xz) = 100032 +TIMESTAMP = 1578414661 +SHA256 (KDE/plasma/5.17.5/kscreen-5.17.5.tar.xz) = de8a00b33d0254245a53a5c097347aa86709d415754b3e3c675eef8fb4fe5bc0 +SIZE (KDE/plasma/5.17.5/kscreen-5.17.5.tar.xz) = 100672 Index: head/x11/plasma5-kwayland-integration/distinfo =================================================================== --- head/x11/plasma5-kwayland-integration/distinfo (revision 522347) +++ head/x11/plasma5-kwayland-integration/distinfo (revision 522348) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575440878 -SHA256 (KDE/plasma/5.17.4/kwayland-integration-5.17.4.tar.xz) = 3c6b14bcf7f6f3a927d485afba9ed3051cbe513441ed17f5d484419388da825c -SIZE (KDE/plasma/5.17.4/kwayland-integration-5.17.4.tar.xz) = 20236 +TIMESTAMP = 1578414662 +SHA256 (KDE/plasma/5.17.5/kwayland-integration-5.17.5.tar.xz) = 818b4e14611e26f297ef60427d399edc458a44e113bc092390fa65ecababcedb +SIZE (KDE/plasma/5.17.5/kwayland-integration-5.17.5.tar.xz) = 20184 Index: head/x11/plasma5-libkscreen/distinfo =================================================================== --- head/x11/plasma5-libkscreen/distinfo (revision 522347) +++ head/x11/plasma5-libkscreen/distinfo (revision 522348) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575440879 -SHA256 (KDE/plasma/5.17.4/libkscreen-5.17.4.tar.xz) = 9d9e1871959948b1d4eea67c070c2123e0c9565ab011e43f3489e7a0f4c4ab29 -SIZE (KDE/plasma/5.17.4/libkscreen-5.17.4.tar.xz) = 82852 +TIMESTAMP = 1578414663 +SHA256 (KDE/plasma/5.17.5/libkscreen-5.17.5.tar.xz) = aa186e5751287701daec4d036aba776a911e4b84ca7eea44dc5fb531875afd94 +SIZE (KDE/plasma/5.17.5/libkscreen-5.17.5.tar.xz) = 83028 Index: head/x11/plasma5-plasma-desktop/Makefile =================================================================== --- head/x11/plasma5-plasma-desktop/Makefile (revision 522347) +++ head/x11/plasma5-plasma-desktop/Makefile (revision 522348) @@ -1,73 +1,72 @@ # $FreeBSD$ PORTNAME= plasma-desktop DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 2 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 \ 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-libinput>0:x11-drivers/xf86-input-libinput USES= cmake compiler:c++11-lib cpe desktop-file-utils \ gettext gnome kde:5 pkgconfig qt:5 tar:xz xorg USE_GNOME= glib20 USE_KDE= activities activities-stats archive attica auth baloo \ bookmarks codecs completion config configwidgets coreaddons \ crash dbusaddons doctools ecm emoticons filemetadata \ globalaccel guiaddons i18n iconthemes init itemmodels \ itemviews jobwidgets kcmutils kdeclarative kdelibs4support \ kio newstuff notifications \ notifyconfig package parts people plasma-framework \ plasma-workspace runner service solid \ sonnet textwidgets unitconversion wallet \ widgetsaddons windowsystem xmlgui USE_KDE+= 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 OPTIONS_DEFINE= SYNAPTICS OPTIONS_SUB= yes OPTIONS_GROUP= IM OPTIONS_GROUP_IM= IBUS SCIM IM_DESC= Input Method Support OPTIONS_DEFAULT= SYNAPTICS SYNAPTICS_DESC= Build touchpad KCM SYNAPTICS_BUILD_DEPENDS= xf86-input-synaptics>0:x11-drivers/xf86-input-synaptics SYNAPTICS_RUN_DEPENDS= xf86-input-synaptics>0:x11-drivers/xf86-input-synaptics SYNAPTICS_CMAKE_BOOL= WANT_SYNAPTICS 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 Index: head/x11/plasma5-plasma-desktop/distinfo =================================================================== --- head/x11/plasma5-plasma-desktop/distinfo (revision 522347) +++ head/x11/plasma5-plasma-desktop/distinfo (revision 522348) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575440882 -SHA256 (KDE/plasma/5.17.4/plasma-desktop-5.17.4.tar.xz) = c17d1854947c6e647bcf359773da8c8081fb562338b84fdc6739a063348943ff -SIZE (KDE/plasma/5.17.4/plasma-desktop-5.17.4.tar.xz) = 9452532 +TIMESTAMP = 1578414666 +SHA256 (KDE/plasma/5.17.5/plasma-desktop-5.17.5.tar.xz) = 7f741ab026989bdcc68701955fc290d5ead38bf4bc310f18a2f32c64b411ab04 +SIZE (KDE/plasma/5.17.5/plasma-desktop-5.17.5.tar.xz) = 9448300 Index: head/x11/plasma5-plasma-desktop/pkg-plist =================================================================== --- head/x11/plasma5-plasma-desktop/pkg-plist (revision 522347) +++ head/x11/plasma5-plasma-desktop/pkg-plist (revision 522348) @@ -1,5201 +1,5206 @@ bin/kaccess bin/kapplymousetheme %%SYNAPTICS%%bin/kcm-touchpad-list-devices bin/kcolorschemeeditor bin/kfontinst bin/kfontview bin/knetattach bin/krdb bin/lookandfeeltool bin/solid-action-desktop-gen lib/kconf_update_bin/krdb_clearlibrarypath lib/libexec/kauth/fontinst lib/libexec/kauth/fontinst_helper lib/libexec/kauth/fontinst_x11 lib/libexec/kauth/kcmdatetimehelper lib/libexec/kfontprint %%IBUS%%lib/libexec/kimpanel-ibus-panel %%IBUS%%lib/libexec/kimpanel-ibus-panel-launcher %%SCIM%%lib/libexec/kimpanel-scim-panel lib/libexec/plasma-changeicons lib/libkdeinit5_kaccess.so lib/libkfontinst.so lib/libkfontinst.so.5 lib/libkfontinst.so.%%KDE_PLASMA_VERSION%% lib/libkfontinstui.so lib/libkfontinstui.so.5 lib/libkfontinstui.so.%%KDE_PLASMA_VERSION%% %%QT_PLUGINDIR%%/attica_kde.so %%QT_PLUGINDIR%%/fontthumbnail.so %%QT_PLUGINDIR%%/kcm_access.so %%QT_PLUGINDIR%%/kcm_activities.so %%QT_PLUGINDIR%%/kcm_autostart.so %%QT_PLUGINDIR%%/kcm_baloofile.so %%QT_PLUGINDIR%%/kcm_clock.so %%QT_PLUGINDIR%%/kcm_componentchooser.so %%QT_PLUGINDIR%%/kcm_desktoppaths.so %%QT_PLUGINDIR%%/kcm_emoticons.so %%QT_PLUGINDIR%%/kcm_fontinst.so %%QT_PLUGINDIR%%/kcm_formats.so %%QT_PLUGINDIR%%/kcm_kded.so %%QT_PLUGINDIR%%/kcm_keyboard.so %%QT_PLUGINDIR%%/kcm_keys.so %%QT_PLUGINDIR%%/kcm_mouse.so %%QT_PLUGINDIR%%/kcm_plasmasearch.so %%QT_PLUGINDIR%%/kcm_smserver.so %%QT_PLUGINDIR%%/kcm_solid_actions.so %%QT_PLUGINDIR%%/kcm_standard_actions.so %%QT_PLUGINDIR%%/kcm_style.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_launchfeedback.so %%QT_PLUGINDIR%%/kcms/kcm_lookandfeel.so %%QT_PLUGINDIR%%/kcms/kcm_nightcolor.so %%QT_PLUGINDIR%%/kcms/kcm_notifications.so %%QT_PLUGINDIR%%/kcms/kcm_splashscreen.so %%QT_PLUGINDIR%%/kcms/kcm_workspace.so %%QT_PLUGINDIR%%/kcmspellchecking.so %%SYNAPTICS%%%%QT_PLUGINDIR%%/kded_touchpad.so %%QT_PLUGINDIR%%/kf5/kded/device_automounter.so %%QT_PLUGINDIR%%/kf5/kded/keyboard.so %%QT_PLUGINDIR%%/kfontviewpart.so %%QT_PLUGINDIR%%/kio_fonts.so %%QT_PLUGINDIR%%/krunner_kwin.so %%QT_PLUGINDIR%%/krunner_plasma-desktop.so %%QT_PLUGINDIR%%/libkcm_device_automounter.so %%QT_PLUGINDIR%%/libkcm_qtquicksettings.so %%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_kimpanel.so %%SYNAPTICS%%%%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_touchpad.so %%QT_QMLDIR%%/org/kde/activities/settings/libkactivitiessettingsplugin.so %%QT_QMLDIR%%/org/kde/activities/settings/qmldir %%QT_QMLDIR%%/org/kde/plasma/activityswitcher/libactivityswitcherextensionplugin.so %%QT_QMLDIR%%/org/kde/plasma/activityswitcher/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/kimpanel/libkimpanelplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/kimpanel/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/pager/libpagerplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/pager/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/showdesktop/libshowdesktopplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/showdesktop/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/taskmanager/libtaskmanagerplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/taskmanager/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/trash/libtrashplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/trash/qmldir %%QT_QMLDIR%%/org/kde/private/desktopcontainment/desktop/libdesktopplugin.so %%QT_QMLDIR%%/org/kde/private/desktopcontainment/desktop/qmldir %%QT_QMLDIR%%/org/kde/private/desktopcontainment/folder/libfolderplugin.so %%QT_QMLDIR%%/org/kde/private/desktopcontainment/folder/qmldir share/applications/org.kde.kcolorschemeeditor.desktop share/applications/org.kde.kfontview.desktop share/applications/org.kde.knetattach.desktop %%SYNAPTICS%%share/config.kcfg/touchpad.kcfg %%SYNAPTICS%%share/config.kcfg/touchpaddaemon.kcfg %%SYNAPTICS%%share/dbus-1/interfaces/org.kde.touchpad.xml share/dbus-1/services/org.kde.fontinst.service share/dbus-1/system-services/org.kde.fontinst.service share/dbus-1/system-services/org.kde.kcontrol.kcmclock.service share/dbus-1/system.d/org.kde.fontinst.conf share/dbus-1/system.d/org.kde.kcontrol.kcmclock.conf share/doc/HTML/ca/kcontrol/autostart/index.cache.bz2 share/doc/HTML/ca/kcontrol/autostart/index.docbook share/doc/HTML/ca/kcontrol/baloo/index.cache.bz2 share/doc/HTML/ca/kcontrol/baloo/index.docbook share/doc/HTML/ca/kcontrol/clock/index.cache.bz2 share/doc/HTML/ca/kcontrol/clock/index.docbook share/doc/HTML/ca/kcontrol/colors/index.cache.bz2 share/doc/HTML/ca/kcontrol/colors/index.docbook share/doc/HTML/ca/kcontrol/componentchooser/index.cache.bz2 share/doc/HTML/ca/kcontrol/componentchooser/index.docbook share/doc/HTML/ca/kcontrol/cursortheme/index.cache.bz2 share/doc/HTML/ca/kcontrol/cursortheme/index.docbook share/doc/HTML/ca/kcontrol/desktopthemedetails/edit-delete.png share/doc/HTML/ca/kcontrol/desktopthemedetails/edit-undo.png 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/emoticons/emoticons.png share/doc/HTML/ca/kcontrol/emoticons/index.cache.bz2 share/doc/HTML/ca/kcontrol/emoticons/index.docbook 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/edit-delete.png share/doc/HTML/ca/kcontrol/icons/edit-undo.png share/doc/HTML/ca/kcontrol/icons/get-new-theme.png share/doc/HTML/ca/kcontrol/icons/index.cache.bz2 share/doc/HTML/ca/kcontrol/icons/index.docbook share/doc/HTML/ca/kcontrol/icons/main.png share/doc/HTML/ca/kcontrol/icons/use-of-icons.png share/doc/HTML/ca/kcontrol/joystick/index.cache.bz2 share/doc/HTML/ca/kcontrol/joystick/index.docbook share/doc/HTML/ca/kcontrol/kcmaccess/index.cache.bz2 share/doc/HTML/ca/kcontrol/kcmaccess/index.docbook share/doc/HTML/ca/kcontrol/kcmlaunchfeedback/index.cache.bz2 share/doc/HTML/ca/kcontrol/kcmlaunchfeedback/index.docbook share/doc/HTML/ca/kcontrol/kcmnotify/index.cache.bz2 share/doc/HTML/ca/kcontrol/kcmnotify/index.docbook share/doc/HTML/ca/kcontrol/kcmsmserver/index.cache.bz2 share/doc/HTML/ca/kcontrol/kcmsmserver/index.docbook share/doc/HTML/ca/kcontrol/kcmstyle/index.cache.bz2 share/doc/HTML/ca/kcontrol/kcmstyle/index.docbook share/doc/HTML/ca/kcontrol/kded/index.cache.bz2 share/doc/HTML/ca/kcontrol/kded/index.docbook share/doc/HTML/ca/kcontrol/keyboard/index.cache.bz2 share/doc/HTML/ca/kcontrol/keyboard/index.docbook share/doc/HTML/ca/kcontrol/keys/index.cache.bz2 share/doc/HTML/ca/kcontrol/keys/index.docbook share/doc/HTML/ca/kcontrol/keys/list-add.png share/doc/HTML/ca/kcontrol/keys/remove.png share/doc/HTML/ca/kcontrol/mouse/index.cache.bz2 share/doc/HTML/ca/kcontrol/mouse/index.docbook share/doc/HTML/ca/kcontrol/paths/index.cache.bz2 share/doc/HTML/ca/kcontrol/paths/index.docbook share/doc/HTML/ca/kcontrol/paths/paths.png share/doc/HTML/ca/kcontrol/solid-actions/add-action.png share/doc/HTML/ca/kcontrol/solid-actions/edit-action.png share/doc/HTML/ca/kcontrol/solid-actions/index.cache.bz2 share/doc/HTML/ca/kcontrol/solid-actions/index.docbook share/doc/HTML/ca/kcontrol/solid-actions/main.png share/doc/HTML/ca/kcontrol/solid-device-automounter/index.cache.bz2 share/doc/HTML/ca/kcontrol/solid-device-automounter/index.docbook share/doc/HTML/ca/kcontrol/spellchecking/index.cache.bz2 share/doc/HTML/ca/kcontrol/spellchecking/index.docbook share/doc/HTML/ca/kcontrol/splashscreen/get-new-theme.png share/doc/HTML/ca/kcontrol/splashscreen/index.cache.bz2 share/doc/HTML/ca/kcontrol/splashscreen/index.docbook share/doc/HTML/ca/kcontrol/splashscreen/splash-main.png share/doc/HTML/ca/kcontrol/workspaceoptions/index.cache.bz2 share/doc/HTML/ca/kcontrol/workspaceoptions/index.docbook share/doc/HTML/ca/kfontview/index.cache.bz2 share/doc/HTML/ca/kfontview/index.docbook share/doc/HTML/ca/kfontview/kfontview.png share/doc/HTML/ca/knetattach/index.cache.bz2 share/doc/HTML/ca/knetattach/index.docbook share/doc/HTML/ca/knetattach/screenshot.png share/doc/HTML/ca/knetattach/screenshot1.png share/doc/HTML/ca/knetattach/screenshot2.png share/doc/HTML/ca/knetattach/screenshot3.png share/doc/HTML/ca/knetattach/screenshot4.png share/doc/HTML/ca/plasma-desktop/add-widgets.png share/doc/HTML/ca/plasma-desktop/application-launcher-settings.png share/doc/HTML/ca/plasma-desktop/application-launcher.png share/doc/HTML/ca/plasma-desktop/application-menu.png share/doc/HTML/ca/plasma-desktop/device_notifier_widget.png share/doc/HTML/ca/plasma-desktop/device_notifier_widget_actions.png share/doc/HTML/ca/plasma-desktop/folder-view.png share/doc/HTML/ca/plasma-desktop/index.cache.bz2 share/doc/HTML/ca/plasma-desktop/index.docbook share/doc/HTML/ca/plasma-desktop/krunner-configure.png share/doc/HTML/ca/plasma-desktop/krunner-desktop-actions.png share/doc/HTML/ca/plasma-desktop/plasma-desktop-annotated.png share/doc/HTML/ca/plasma-desktop/remove.png share/doc/HTML/ca/plasma-desktop/system-tray-up-arrow.png share/doc/HTML/de/kcontrol/autostart/index.cache.bz2 share/doc/HTML/de/kcontrol/autostart/index.docbook share/doc/HTML/de/kcontrol/baloo/index.cache.bz2 share/doc/HTML/de/kcontrol/baloo/index.docbook share/doc/HTML/de/kcontrol/clock/index.cache.bz2 share/doc/HTML/de/kcontrol/clock/index.docbook share/doc/HTML/de/kcontrol/colors/index.cache.bz2 share/doc/HTML/de/kcontrol/colors/index.docbook share/doc/HTML/de/kcontrol/componentchooser/index.cache.bz2 share/doc/HTML/de/kcontrol/componentchooser/index.docbook share/doc/HTML/de/kcontrol/cursortheme/index.cache.bz2 share/doc/HTML/de/kcontrol/cursortheme/index.docbook share/doc/HTML/de/kcontrol/desktopthemedetails/index.cache.bz2 share/doc/HTML/de/kcontrol/desktopthemedetails/index.docbook share/doc/HTML/de/kcontrol/emoticons/index.cache.bz2 share/doc/HTML/de/kcontrol/emoticons/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/joystick/index.cache.bz2 share/doc/HTML/de/kcontrol/joystick/index.docbook share/doc/HTML/de/kcontrol/kcmaccess/index.cache.bz2 share/doc/HTML/de/kcontrol/kcmaccess/index.docbook share/doc/HTML/de/kcontrol/kcmlaunchfeedback/index.cache.bz2 share/doc/HTML/de/kcontrol/kcmlaunchfeedback/index.docbook share/doc/HTML/de/kcontrol/kcmnotify/index.cache.bz2 share/doc/HTML/de/kcontrol/kcmnotify/index.docbook share/doc/HTML/de/kcontrol/kcmsmserver/index.cache.bz2 share/doc/HTML/de/kcontrol/kcmsmserver/index.docbook share/doc/HTML/de/kcontrol/kcmstyle/index.cache.bz2 share/doc/HTML/de/kcontrol/kcmstyle/index.docbook share/doc/HTML/de/kcontrol/kded/index.cache.bz2 share/doc/HTML/de/kcontrol/kded/index.docbook share/doc/HTML/de/kcontrol/keyboard/index.cache.bz2 share/doc/HTML/de/kcontrol/keyboard/index.docbook share/doc/HTML/de/kcontrol/keys/index.cache.bz2 share/doc/HTML/de/kcontrol/keys/index.docbook share/doc/HTML/de/kcontrol/mouse/index.cache.bz2 share/doc/HTML/de/kcontrol/mouse/index.docbook share/doc/HTML/de/kcontrol/paths/index.cache.bz2 share/doc/HTML/de/kcontrol/paths/index.docbook share/doc/HTML/de/kcontrol/solid-actions/index.cache.bz2 share/doc/HTML/de/kcontrol/solid-actions/index.docbook share/doc/HTML/de/kcontrol/solid-device-automounter/index.cache.bz2 share/doc/HTML/de/kcontrol/solid-device-automounter/index.docbook share/doc/HTML/de/kcontrol/spellchecking/index.cache.bz2 share/doc/HTML/de/kcontrol/spellchecking/index.docbook share/doc/HTML/de/kcontrol/splashscreen/index.cache.bz2 share/doc/HTML/de/kcontrol/splashscreen/index.docbook share/doc/HTML/de/kcontrol/workspaceoptions/index.cache.bz2 share/doc/HTML/de/kcontrol/workspaceoptions/index.docbook share/doc/HTML/de/kfontview/index.cache.bz2 share/doc/HTML/de/kfontview/index.docbook share/doc/HTML/de/knetattach/index.cache.bz2 share/doc/HTML/de/knetattach/index.docbook share/doc/HTML/de/plasma-desktop/index.cache.bz2 share/doc/HTML/de/plasma-desktop/index.docbook share/doc/HTML/en/kcontrol/autostart/index.cache.bz2 share/doc/HTML/en/kcontrol/autostart/index.docbook share/doc/HTML/en/kcontrol/baloo/index.cache.bz2 share/doc/HTML/en/kcontrol/baloo/index.docbook share/doc/HTML/en/kcontrol/clock/index.cache.bz2 share/doc/HTML/en/kcontrol/clock/index.docbook share/doc/HTML/en/kcontrol/colors/index.cache.bz2 share/doc/HTML/en/kcontrol/colors/index.docbook share/doc/HTML/en/kcontrol/componentchooser/index.cache.bz2 share/doc/HTML/en/kcontrol/componentchooser/index.docbook share/doc/HTML/en/kcontrol/cursortheme/index.cache.bz2 share/doc/HTML/en/kcontrol/cursortheme/index.docbook share/doc/HTML/en/kcontrol/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/emoticons/emoticons.png share/doc/HTML/en/kcontrol/emoticons/index.cache.bz2 share/doc/HTML/en/kcontrol/emoticons/index.docbook 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/joystick/index.cache.bz2 share/doc/HTML/en/kcontrol/joystick/index.docbook share/doc/HTML/en/kcontrol/joystick/joystick-calibration.png share/doc/HTML/en/kcontrol/joystick/joystick-main.png share/doc/HTML/en/kcontrol/kcmaccess/index.cache.bz2 share/doc/HTML/en/kcontrol/kcmaccess/index.docbook share/doc/HTML/en/kcontrol/kcmlaunchfeedback/index.cache.bz2 share/doc/HTML/en/kcontrol/kcmlaunchfeedback/index.docbook share/doc/HTML/en/kcontrol/kcmnotify/index.cache.bz2 share/doc/HTML/en/kcontrol/kcmnotify/index.docbook share/doc/HTML/en/kcontrol/kcmsmserver/index.cache.bz2 share/doc/HTML/en/kcontrol/kcmsmserver/index.docbook share/doc/HTML/en/kcontrol/kcmstyle/index.cache.bz2 share/doc/HTML/en/kcontrol/kcmstyle/index.docbook share/doc/HTML/en/kcontrol/kded/index.cache.bz2 share/doc/HTML/en/kcontrol/kded/index.docbook share/doc/HTML/en/kcontrol/keyboard/index.cache.bz2 share/doc/HTML/en/kcontrol/keyboard/index.docbook share/doc/HTML/en/kcontrol/keys/index.cache.bz2 share/doc/HTML/en/kcontrol/keys/index.docbook share/doc/HTML/en/kcontrol/keys/list-add.png share/doc/HTML/en/kcontrol/keys/remove.png share/doc/HTML/en/kcontrol/mouse/index.cache.bz2 share/doc/HTML/en/kcontrol/mouse/index.docbook share/doc/HTML/en/kcontrol/paths/index.cache.bz2 share/doc/HTML/en/kcontrol/paths/index.docbook share/doc/HTML/en/kcontrol/paths/paths.png share/doc/HTML/en/kcontrol/solid-actions/add-action.png share/doc/HTML/en/kcontrol/solid-actions/edit-action.png share/doc/HTML/en/kcontrol/solid-actions/index.cache.bz2 share/doc/HTML/en/kcontrol/solid-actions/index.docbook share/doc/HTML/en/kcontrol/solid-actions/main.png share/doc/HTML/en/kcontrol/solid-device-automounter/index.cache.bz2 share/doc/HTML/en/kcontrol/solid-device-automounter/index.docbook share/doc/HTML/en/kcontrol/spellchecking/index.cache.bz2 share/doc/HTML/en/kcontrol/spellchecking/index.docbook share/doc/HTML/en/kcontrol/splashscreen/get-new-theme.png share/doc/HTML/en/kcontrol/splashscreen/index.cache.bz2 share/doc/HTML/en/kcontrol/splashscreen/index.docbook share/doc/HTML/en/kcontrol/splashscreen/splash-main.png share/doc/HTML/en/kcontrol/workspaceoptions/index.cache.bz2 share/doc/HTML/en/kcontrol/workspaceoptions/index.docbook share/doc/HTML/en/kfontview/index.cache.bz2 share/doc/HTML/en/kfontview/index.docbook share/doc/HTML/en/kfontview/kfontview.png share/doc/HTML/en/knetattach/index.cache.bz2 share/doc/HTML/en/knetattach/index.docbook share/doc/HTML/en/knetattach/screenshot.png share/doc/HTML/en/knetattach/screenshot1.png share/doc/HTML/en/knetattach/screenshot2.png share/doc/HTML/en/knetattach/screenshot3.png share/doc/HTML/en/knetattach/screenshot4.png share/doc/HTML/en/plasma-desktop/add-widgets.png share/doc/HTML/en/plasma-desktop/application-launcher-settings.png share/doc/HTML/en/plasma-desktop/application-launcher.png share/doc/HTML/en/plasma-desktop/application-menu.png share/doc/HTML/en/plasma-desktop/desktop-settings.png share/doc/HTML/en/plasma-desktop/device_notifier_widget.png share/doc/HTML/en/plasma-desktop/device_notifier_widget_actions.png share/doc/HTML/en/plasma-desktop/folder-view.png share/doc/HTML/en/plasma-desktop/index.cache.bz2 share/doc/HTML/en/plasma-desktop/index.docbook share/doc/HTML/en/plasma-desktop/krunner-configure.png share/doc/HTML/en/plasma-desktop/krunner-desktop-actions.png share/doc/HTML/en/plasma-desktop/krunner.png share/doc/HTML/en/plasma-desktop/panel-settings.png share/doc/HTML/en/plasma-desktop/plasma-desktop-annotated.png share/doc/HTML/en/plasma-desktop/remove.png share/doc/HTML/en/plasma-desktop/system-tray-settings.png share/doc/HTML/en/plasma-desktop/system-tray-up-arrow.png share/doc/HTML/en/plasma-desktop/taskbar-settings.png share/doc/HTML/es/kcontrol/autostart/index.cache.bz2 share/doc/HTML/es/kcontrol/autostart/index.docbook share/doc/HTML/es/kcontrol/baloo/index.cache.bz2 share/doc/HTML/es/kcontrol/baloo/index.docbook share/doc/HTML/es/kcontrol/clock/index.cache.bz2 share/doc/HTML/es/kcontrol/clock/index.docbook share/doc/HTML/es/kcontrol/componentchooser/index.cache.bz2 share/doc/HTML/es/kcontrol/componentchooser/index.docbook share/doc/HTML/es/kcontrol/cursortheme/index.cache.bz2 share/doc/HTML/es/kcontrol/cursortheme/index.docbook share/doc/HTML/es/kcontrol/desktopthemedetails/index.cache.bz2 share/doc/HTML/es/kcontrol/desktopthemedetails/index.docbook share/doc/HTML/es/kcontrol/emoticons/index.cache.bz2 share/doc/HTML/es/kcontrol/emoticons/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/joystick/index.cache.bz2 share/doc/HTML/es/kcontrol/joystick/index.docbook share/doc/HTML/es/kcontrol/kcmlaunchfeedback/index.cache.bz2 share/doc/HTML/es/kcontrol/kcmlaunchfeedback/index.docbook share/doc/HTML/es/kcontrol/kcmnotify/index.cache.bz2 share/doc/HTML/es/kcontrol/kcmnotify/index.docbook share/doc/HTML/es/kcontrol/kcmsmserver/index.cache.bz2 share/doc/HTML/es/kcontrol/kcmsmserver/index.docbook share/doc/HTML/es/kcontrol/kcmstyle/index.cache.bz2 share/doc/HTML/es/kcontrol/kcmstyle/index.docbook share/doc/HTML/es/kcontrol/kded/index.cache.bz2 share/doc/HTML/es/kcontrol/kded/index.docbook share/doc/HTML/es/kcontrol/mouse/index.cache.bz2 share/doc/HTML/es/kcontrol/mouse/index.docbook share/doc/HTML/es/kcontrol/paths/index.cache.bz2 share/doc/HTML/es/kcontrol/paths/index.docbook share/doc/HTML/es/kcontrol/solid-device-automounter/index.cache.bz2 share/doc/HTML/es/kcontrol/solid-device-automounter/index.docbook share/doc/HTML/es/kfontview/index.cache.bz2 share/doc/HTML/es/kfontview/index.docbook share/doc/HTML/es/knetattach/index.cache.bz2 share/doc/HTML/es/knetattach/index.docbook share/doc/HTML/et/kcontrol/clock/index.cache.bz2 share/doc/HTML/et/kcontrol/clock/index.docbook share/doc/HTML/et/kcontrol/solid-actions/index.cache.bz2 share/doc/HTML/et/kcontrol/solid-actions/index.docbook share/doc/HTML/et/kcontrol/solid-device-automounter/index.cache.bz2 share/doc/HTML/et/kcontrol/solid-device-automounter/index.docbook share/doc/HTML/id/kcontrol/autostart/index.cache.bz2 share/doc/HTML/id/kcontrol/autostart/index.docbook share/doc/HTML/id/kcontrol/baloo/index.cache.bz2 share/doc/HTML/id/kcontrol/baloo/index.docbook share/doc/HTML/id/kcontrol/clock/index.cache.bz2 share/doc/HTML/id/kcontrol/clock/index.docbook share/doc/HTML/id/kcontrol/colors/index.cache.bz2 share/doc/HTML/id/kcontrol/colors/index.docbook share/doc/HTML/id/kcontrol/componentchooser/index.cache.bz2 share/doc/HTML/id/kcontrol/componentchooser/index.docbook share/doc/HTML/id/kcontrol/cursortheme/index.cache.bz2 share/doc/HTML/id/kcontrol/cursortheme/index.docbook share/doc/HTML/id/kcontrol/desktopthemedetails/index.cache.bz2 share/doc/HTML/id/kcontrol/desktopthemedetails/index.docbook share/doc/HTML/id/kcontrol/emoticons/index.cache.bz2 share/doc/HTML/id/kcontrol/emoticons/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/joystick/index.cache.bz2 share/doc/HTML/id/kcontrol/joystick/index.docbook share/doc/HTML/id/kcontrol/kcmaccess/index.cache.bz2 share/doc/HTML/id/kcontrol/kcmaccess/index.docbook share/doc/HTML/id/kcontrol/kcmlaunchfeedback/index.cache.bz2 share/doc/HTML/id/kcontrol/kcmlaunchfeedback/index.docbook share/doc/HTML/id/kcontrol/kcmnotify/index.cache.bz2 share/doc/HTML/id/kcontrol/kcmnotify/index.docbook share/doc/HTML/id/kcontrol/kcmsmserver/index.cache.bz2 share/doc/HTML/id/kcontrol/kcmsmserver/index.docbook share/doc/HTML/id/kcontrol/kcmstyle/index.cache.bz2 share/doc/HTML/id/kcontrol/kcmstyle/index.docbook share/doc/HTML/id/kcontrol/kded/index.cache.bz2 share/doc/HTML/id/kcontrol/kded/index.docbook share/doc/HTML/id/kcontrol/keyboard/index.cache.bz2 share/doc/HTML/id/kcontrol/keyboard/index.docbook share/doc/HTML/id/kcontrol/keys/index.cache.bz2 share/doc/HTML/id/kcontrol/keys/index.docbook share/doc/HTML/id/kcontrol/mouse/index.cache.bz2 share/doc/HTML/id/kcontrol/mouse/index.docbook share/doc/HTML/id/kcontrol/paths/index.cache.bz2 share/doc/HTML/id/kcontrol/paths/index.docbook share/doc/HTML/id/kcontrol/solid-actions/index.cache.bz2 share/doc/HTML/id/kcontrol/solid-actions/index.docbook share/doc/HTML/id/kcontrol/solid-device-automounter/index.cache.bz2 share/doc/HTML/id/kcontrol/solid-device-automounter/index.docbook share/doc/HTML/id/kcontrol/spellchecking/index.cache.bz2 share/doc/HTML/id/kcontrol/spellchecking/index.docbook share/doc/HTML/id/kcontrol/splashscreen/index.cache.bz2 share/doc/HTML/id/kcontrol/splashscreen/index.docbook share/doc/HTML/id/kcontrol/workspaceoptions/index.cache.bz2 share/doc/HTML/id/kcontrol/workspaceoptions/index.docbook share/doc/HTML/id/kfontview/index.cache.bz2 share/doc/HTML/id/kfontview/index.docbook share/doc/HTML/id/knetattach/index.cache.bz2 share/doc/HTML/id/knetattach/index.docbook share/doc/HTML/id/plasma-desktop/index.cache.bz2 share/doc/HTML/id/plasma-desktop/index.docbook share/doc/HTML/it/kcontrol/autostart/index.cache.bz2 share/doc/HTML/it/kcontrol/autostart/index.docbook share/doc/HTML/it/kcontrol/baloo/index.cache.bz2 share/doc/HTML/it/kcontrol/baloo/index.docbook share/doc/HTML/it/kcontrol/clock/index.cache.bz2 share/doc/HTML/it/kcontrol/clock/index.docbook share/doc/HTML/it/kcontrol/colors/index.cache.bz2 share/doc/HTML/it/kcontrol/colors/index.docbook share/doc/HTML/it/kcontrol/componentchooser/index.cache.bz2 share/doc/HTML/it/kcontrol/componentchooser/index.docbook share/doc/HTML/it/kcontrol/cursortheme/index.cache.bz2 share/doc/HTML/it/kcontrol/cursortheme/index.docbook share/doc/HTML/it/kcontrol/desktopthemedetails/index.cache.bz2 share/doc/HTML/it/kcontrol/desktopthemedetails/index.docbook share/doc/HTML/it/kcontrol/emoticons/index.cache.bz2 share/doc/HTML/it/kcontrol/emoticons/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/joystick/index.cache.bz2 share/doc/HTML/it/kcontrol/joystick/index.docbook share/doc/HTML/it/kcontrol/kcmaccess/index.cache.bz2 share/doc/HTML/it/kcontrol/kcmaccess/index.docbook share/doc/HTML/it/kcontrol/kcmlaunchfeedback/index.cache.bz2 share/doc/HTML/it/kcontrol/kcmlaunchfeedback/index.docbook share/doc/HTML/it/kcontrol/kcmnotify/index.cache.bz2 share/doc/HTML/it/kcontrol/kcmnotify/index.docbook share/doc/HTML/it/kcontrol/kcmsmserver/index.cache.bz2 share/doc/HTML/it/kcontrol/kcmsmserver/index.docbook share/doc/HTML/it/kcontrol/kcmstyle/index.cache.bz2 share/doc/HTML/it/kcontrol/kcmstyle/index.docbook share/doc/HTML/it/kcontrol/kded/index.cache.bz2 share/doc/HTML/it/kcontrol/kded/index.docbook share/doc/HTML/it/kcontrol/keyboard/index.cache.bz2 share/doc/HTML/it/kcontrol/keyboard/index.docbook share/doc/HTML/it/kcontrol/keys/index.cache.bz2 share/doc/HTML/it/kcontrol/keys/index.docbook share/doc/HTML/it/kcontrol/mouse/index.cache.bz2 share/doc/HTML/it/kcontrol/mouse/index.docbook share/doc/HTML/it/kcontrol/paths/index.cache.bz2 share/doc/HTML/it/kcontrol/paths/index.docbook share/doc/HTML/it/kcontrol/solid-actions/index.cache.bz2 share/doc/HTML/it/kcontrol/solid-actions/index.docbook share/doc/HTML/it/kcontrol/solid-device-automounter/index.cache.bz2 share/doc/HTML/it/kcontrol/solid-device-automounter/index.docbook share/doc/HTML/it/kcontrol/spellchecking/index.cache.bz2 share/doc/HTML/it/kcontrol/spellchecking/index.docbook share/doc/HTML/it/kcontrol/splashscreen/index.cache.bz2 share/doc/HTML/it/kcontrol/splashscreen/index.docbook share/doc/HTML/it/kcontrol/workspaceoptions/index.cache.bz2 share/doc/HTML/it/kcontrol/workspaceoptions/index.docbook share/doc/HTML/it/kfontview/index.cache.bz2 share/doc/HTML/it/kfontview/index.docbook share/doc/HTML/it/knetattach/index.cache.bz2 share/doc/HTML/it/knetattach/index.docbook share/doc/HTML/it/plasma-desktop/index.cache.bz2 share/doc/HTML/it/plasma-desktop/index.docbook share/doc/HTML/nl/kcontrol/autostart/index.cache.bz2 share/doc/HTML/nl/kcontrol/autostart/index.docbook share/doc/HTML/nl/kcontrol/baloo/index.cache.bz2 share/doc/HTML/nl/kcontrol/baloo/index.docbook share/doc/HTML/nl/kcontrol/clock/index.cache.bz2 share/doc/HTML/nl/kcontrol/clock/index.docbook share/doc/HTML/nl/kcontrol/colors/index.cache.bz2 share/doc/HTML/nl/kcontrol/colors/index.docbook share/doc/HTML/nl/kcontrol/componentchooser/index.cache.bz2 share/doc/HTML/nl/kcontrol/componentchooser/index.docbook share/doc/HTML/nl/kcontrol/cursortheme/index.cache.bz2 share/doc/HTML/nl/kcontrol/cursortheme/index.docbook share/doc/HTML/nl/kcontrol/desktopthemedetails/index.cache.bz2 share/doc/HTML/nl/kcontrol/desktopthemedetails/index.docbook share/doc/HTML/nl/kcontrol/emoticons/index.cache.bz2 share/doc/HTML/nl/kcontrol/emoticons/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/joystick/index.cache.bz2 share/doc/HTML/nl/kcontrol/joystick/index.docbook share/doc/HTML/nl/kcontrol/kcmaccess/index.cache.bz2 share/doc/HTML/nl/kcontrol/kcmaccess/index.docbook share/doc/HTML/nl/kcontrol/kcmlaunchfeedback/index.cache.bz2 share/doc/HTML/nl/kcontrol/kcmlaunchfeedback/index.docbook share/doc/HTML/nl/kcontrol/kcmnotify/index.cache.bz2 share/doc/HTML/nl/kcontrol/kcmnotify/index.docbook share/doc/HTML/nl/kcontrol/kcmsmserver/index.cache.bz2 share/doc/HTML/nl/kcontrol/kcmsmserver/index.docbook share/doc/HTML/nl/kcontrol/kcmstyle/index.cache.bz2 share/doc/HTML/nl/kcontrol/kcmstyle/index.docbook share/doc/HTML/nl/kcontrol/kded/index.cache.bz2 share/doc/HTML/nl/kcontrol/kded/index.docbook share/doc/HTML/nl/kcontrol/keyboard/index.cache.bz2 share/doc/HTML/nl/kcontrol/keyboard/index.docbook share/doc/HTML/nl/kcontrol/keys/index.cache.bz2 share/doc/HTML/nl/kcontrol/keys/index.docbook share/doc/HTML/nl/kcontrol/mouse/index.cache.bz2 share/doc/HTML/nl/kcontrol/mouse/index.docbook share/doc/HTML/nl/kcontrol/paths/index.cache.bz2 share/doc/HTML/nl/kcontrol/paths/index.docbook share/doc/HTML/nl/kcontrol/solid-actions/index.cache.bz2 share/doc/HTML/nl/kcontrol/solid-actions/index.docbook share/doc/HTML/nl/kcontrol/solid-device-automounter/index.cache.bz2 share/doc/HTML/nl/kcontrol/solid-device-automounter/index.docbook share/doc/HTML/nl/kcontrol/spellchecking/index.cache.bz2 share/doc/HTML/nl/kcontrol/spellchecking/index.docbook share/doc/HTML/nl/kcontrol/splashscreen/index.cache.bz2 share/doc/HTML/nl/kcontrol/splashscreen/index.docbook share/doc/HTML/nl/kcontrol/workspaceoptions/index.cache.bz2 share/doc/HTML/nl/kcontrol/workspaceoptions/index.docbook share/doc/HTML/nl/kfontview/index.cache.bz2 share/doc/HTML/nl/kfontview/index.docbook share/doc/HTML/nl/knetattach/index.cache.bz2 share/doc/HTML/nl/knetattach/index.docbook share/doc/HTML/nl/plasma-desktop/index.cache.bz2 share/doc/HTML/nl/plasma-desktop/index.docbook share/doc/HTML/pt/kcontrol/autostart/index.cache.bz2 share/doc/HTML/pt/kcontrol/autostart/index.docbook share/doc/HTML/pt/kcontrol/baloo/index.cache.bz2 share/doc/HTML/pt/kcontrol/baloo/index.docbook share/doc/HTML/pt/kcontrol/clock/index.cache.bz2 share/doc/HTML/pt/kcontrol/clock/index.docbook share/doc/HTML/pt/kcontrol/colors/index.cache.bz2 share/doc/HTML/pt/kcontrol/colors/index.docbook share/doc/HTML/pt/kcontrol/componentchooser/index.cache.bz2 share/doc/HTML/pt/kcontrol/componentchooser/index.docbook share/doc/HTML/pt/kcontrol/cursortheme/index.cache.bz2 share/doc/HTML/pt/kcontrol/cursortheme/index.docbook share/doc/HTML/pt/kcontrol/desktopthemedetails/index.cache.bz2 share/doc/HTML/pt/kcontrol/desktopthemedetails/index.docbook share/doc/HTML/pt/kcontrol/emoticons/index.cache.bz2 share/doc/HTML/pt/kcontrol/emoticons/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/joystick/index.cache.bz2 share/doc/HTML/pt/kcontrol/joystick/index.docbook share/doc/HTML/pt/kcontrol/kcmaccess/index.cache.bz2 share/doc/HTML/pt/kcontrol/kcmaccess/index.docbook share/doc/HTML/pt/kcontrol/kcmlaunchfeedback/index.cache.bz2 share/doc/HTML/pt/kcontrol/kcmlaunchfeedback/index.docbook share/doc/HTML/pt/kcontrol/kcmnotify/index.cache.bz2 share/doc/HTML/pt/kcontrol/kcmnotify/index.docbook share/doc/HTML/pt/kcontrol/kcmsmserver/index.cache.bz2 share/doc/HTML/pt/kcontrol/kcmsmserver/index.docbook share/doc/HTML/pt/kcontrol/kcmstyle/index.cache.bz2 share/doc/HTML/pt/kcontrol/kcmstyle/index.docbook share/doc/HTML/pt/kcontrol/kded/index.cache.bz2 share/doc/HTML/pt/kcontrol/kded/index.docbook share/doc/HTML/pt/kcontrol/keyboard/index.cache.bz2 share/doc/HTML/pt/kcontrol/keyboard/index.docbook share/doc/HTML/pt/kcontrol/keys/index.cache.bz2 share/doc/HTML/pt/kcontrol/keys/index.docbook share/doc/HTML/pt/kcontrol/mouse/index.cache.bz2 share/doc/HTML/pt/kcontrol/mouse/index.docbook share/doc/HTML/pt/kcontrol/paths/index.cache.bz2 share/doc/HTML/pt/kcontrol/paths/index.docbook share/doc/HTML/pt/kcontrol/solid-actions/index.cache.bz2 share/doc/HTML/pt/kcontrol/solid-actions/index.docbook share/doc/HTML/pt/kcontrol/solid-device-automounter/index.cache.bz2 share/doc/HTML/pt/kcontrol/solid-device-automounter/index.docbook share/doc/HTML/pt/kcontrol/spellchecking/index.cache.bz2 share/doc/HTML/pt/kcontrol/spellchecking/index.docbook share/doc/HTML/pt/kcontrol/splashscreen/index.cache.bz2 share/doc/HTML/pt/kcontrol/splashscreen/index.docbook share/doc/HTML/pt/kfontview/index.cache.bz2 share/doc/HTML/pt/kfontview/index.docbook share/doc/HTML/pt/knetattach/index.cache.bz2 share/doc/HTML/pt/knetattach/index.docbook share/doc/HTML/pt/plasma-desktop/index.cache.bz2 share/doc/HTML/pt/plasma-desktop/index.docbook share/doc/HTML/pt_BR/kcontrol/autostart/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/autostart/index.docbook share/doc/HTML/pt_BR/kcontrol/baloo/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/baloo/index.docbook share/doc/HTML/pt_BR/kcontrol/clock/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/clock/index.docbook share/doc/HTML/pt_BR/kcontrol/colors/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/colors/index.docbook share/doc/HTML/pt_BR/kcontrol/componentchooser/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/componentchooser/index.docbook share/doc/HTML/pt_BR/kcontrol/cursortheme/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/cursortheme/index.docbook share/doc/HTML/pt_BR/kcontrol/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/emoticons/emoticons.png share/doc/HTML/pt_BR/kcontrol/emoticons/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/emoticons/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/joystick/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/joystick/index.docbook share/doc/HTML/pt_BR/kcontrol/kcmaccess/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/kcmaccess/index.docbook share/doc/HTML/pt_BR/kcontrol/kcmlaunchfeedback/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/kcmlaunchfeedback/index.docbook share/doc/HTML/pt_BR/kcontrol/kcmnotify/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/kcmnotify/index.docbook share/doc/HTML/pt_BR/kcontrol/kcmsmserver/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/kcmsmserver/index.docbook share/doc/HTML/pt_BR/kcontrol/kcmstyle/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/kcmstyle/index.docbook share/doc/HTML/pt_BR/kcontrol/kded/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/kded/index.docbook share/doc/HTML/pt_BR/kcontrol/keyboard/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/keyboard/index.docbook share/doc/HTML/pt_BR/kcontrol/keys/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/keys/index.docbook share/doc/HTML/pt_BR/kcontrol/mouse/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/mouse/index.docbook share/doc/HTML/pt_BR/kcontrol/paths/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/paths/index.docbook share/doc/HTML/pt_BR/kcontrol/solid-actions/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/solid-actions/index.docbook share/doc/HTML/pt_BR/kcontrol/solid-device-automounter/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/solid-device-automounter/index.docbook share/doc/HTML/pt_BR/kcontrol/spellchecking/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/spellchecking/index.docbook share/doc/HTML/pt_BR/kcontrol/splashscreen/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/splashscreen/index.docbook share/doc/HTML/pt_BR/kcontrol/splashscreen/splash-main.png share/doc/HTML/pt_BR/kfontview/index.cache.bz2 share/doc/HTML/pt_BR/kfontview/index.docbook share/doc/HTML/pt_BR/knetattach/index.cache.bz2 share/doc/HTML/pt_BR/knetattach/index.docbook share/doc/HTML/pt_BR/knetattach/screenshot.png share/doc/HTML/pt_BR/knetattach/screenshot1.png share/doc/HTML/pt_BR/knetattach/screenshot2.png share/doc/HTML/pt_BR/knetattach/screenshot3.png share/doc/HTML/pt_BR/knetattach/screenshot4.png share/doc/HTML/pt_BR/plasma-desktop/add-widgets.png share/doc/HTML/pt_BR/plasma-desktop/desktop-settings.png share/doc/HTML/pt_BR/plasma-desktop/index.cache.bz2 share/doc/HTML/pt_BR/plasma-desktop/index.docbook share/doc/HTML/pt_BR/plasma-desktop/krunner-configure.png share/doc/HTML/pt_BR/plasma-desktop/krunner.png share/doc/HTML/pt_BR/plasma-desktop/panel-settings.png share/doc/HTML/pt_BR/plasma-desktop/system-tray-settings.png share/doc/HTML/pt_BR/plasma-desktop/system-tray-up-arrow.png share/doc/HTML/pt_BR/plasma-desktop/taskbar-settings.png share/doc/HTML/ru/kcontrol/baloo/index.cache.bz2 share/doc/HTML/ru/kcontrol/baloo/index.docbook share/doc/HTML/ru/kcontrol/clock/index.cache.bz2 share/doc/HTML/ru/kcontrol/clock/index.docbook share/doc/HTML/ru/kcontrol/colors/index.cache.bz2 share/doc/HTML/ru/kcontrol/colors/index.docbook share/doc/HTML/ru/kcontrol/componentchooser/index.cache.bz2 share/doc/HTML/ru/kcontrol/componentchooser/index.docbook share/doc/HTML/ru/kcontrol/cursortheme/index.cache.bz2 share/doc/HTML/ru/kcontrol/cursortheme/index.docbook share/doc/HTML/ru/kcontrol/desktopthemedetails/index.cache.bz2 share/doc/HTML/ru/kcontrol/desktopthemedetails/index.docbook share/doc/HTML/ru/kcontrol/emoticons/emoticons.png share/doc/HTML/ru/kcontrol/emoticons/index.cache.bz2 share/doc/HTML/ru/kcontrol/emoticons/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/joystick/index.cache.bz2 share/doc/HTML/ru/kcontrol/joystick/index.docbook share/doc/HTML/ru/kcontrol/joystick/joystick-calibration.png share/doc/HTML/ru/kcontrol/joystick/joystick-main.png share/doc/HTML/ru/kcontrol/kcmaccess/index.cache.bz2 share/doc/HTML/ru/kcontrol/kcmaccess/index.docbook share/doc/HTML/ru/kcontrol/kcmlaunchfeedback/index.cache.bz2 share/doc/HTML/ru/kcontrol/kcmlaunchfeedback/index.docbook share/doc/HTML/ru/kcontrol/kcmnotify/index.cache.bz2 share/doc/HTML/ru/kcontrol/kcmnotify/index.docbook share/doc/HTML/ru/kcontrol/kcmsmserver/index.cache.bz2 share/doc/HTML/ru/kcontrol/kcmsmserver/index.docbook share/doc/HTML/ru/kcontrol/kcmstyle/index.cache.bz2 share/doc/HTML/ru/kcontrol/kcmstyle/index.docbook share/doc/HTML/ru/kcontrol/kded/index.cache.bz2 share/doc/HTML/ru/kcontrol/kded/index.docbook share/doc/HTML/ru/kcontrol/keyboard/index.cache.bz2 share/doc/HTML/ru/kcontrol/keyboard/index.docbook share/doc/HTML/ru/kcontrol/keys/index.cache.bz2 share/doc/HTML/ru/kcontrol/keys/index.docbook share/doc/HTML/ru/kcontrol/mouse/index.cache.bz2 share/doc/HTML/ru/kcontrol/mouse/index.docbook share/doc/HTML/ru/kcontrol/paths/index.cache.bz2 share/doc/HTML/ru/kcontrol/paths/index.docbook share/doc/HTML/ru/kcontrol/paths/paths.png share/doc/HTML/ru/kcontrol/solid-actions/add-action.png share/doc/HTML/ru/kcontrol/solid-actions/edit-action.png share/doc/HTML/ru/kcontrol/solid-actions/index.cache.bz2 share/doc/HTML/ru/kcontrol/solid-actions/index.docbook share/doc/HTML/ru/kcontrol/solid-actions/main.png share/doc/HTML/ru/kcontrol/solid-device-automounter/index.cache.bz2 share/doc/HTML/ru/kcontrol/solid-device-automounter/index.docbook share/doc/HTML/ru/kcontrol/spellchecking/index.cache.bz2 share/doc/HTML/ru/kcontrol/spellchecking/index.docbook share/doc/HTML/ru/kcontrol/splashscreen/get-new-theme.png share/doc/HTML/ru/kcontrol/splashscreen/index.cache.bz2 share/doc/HTML/ru/kcontrol/splashscreen/index.docbook share/doc/HTML/ru/kcontrol/splashscreen/splash-main.png share/doc/HTML/ru/knetattach/index.cache.bz2 share/doc/HTML/ru/knetattach/index.docbook share/doc/HTML/ru/plasma-desktop/index.cache.bz2 share/doc/HTML/ru/plasma-desktop/index.docbook share/doc/HTML/sr/kcontrol/autostart/index.cache.bz2 share/doc/HTML/sr/kcontrol/autostart/index.docbook share/doc/HTML/sr/kcontrol/clock/index.cache.bz2 share/doc/HTML/sr/kcontrol/clock/index.docbook share/doc/HTML/sr/kcontrol/emoticons/index.cache.bz2 share/doc/HTML/sr/kcontrol/emoticons/index.docbook share/doc/HTML/sr/kcontrol/icons/index.cache.bz2 share/doc/HTML/sr/kcontrol/icons/index.docbook share/doc/HTML/sr/kcontrol/kcmlaunchfeedback/index.cache.bz2 share/doc/HTML/sr/kcontrol/kcmlaunchfeedback/index.docbook share/doc/HTML/sr/kcontrol/kcmnotify/index.cache.bz2 share/doc/HTML/sr/kcontrol/kcmnotify/index.docbook share/doc/HTML/sr/kcontrol/paths/index.cache.bz2 share/doc/HTML/sr/kcontrol/paths/index.docbook share/doc/HTML/sr/kcontrol/spellchecking/index.cache.bz2 share/doc/HTML/sr/kcontrol/spellchecking/index.docbook share/doc/HTML/sr/knetattach/index.cache.bz2 share/doc/HTML/sr/knetattach/index.docbook share/doc/HTML/sr@latin/kcontrol/autostart/index.cache.bz2 share/doc/HTML/sr@latin/kcontrol/autostart/index.docbook share/doc/HTML/sr@latin/kcontrol/clock/index.cache.bz2 share/doc/HTML/sr@latin/kcontrol/clock/index.docbook share/doc/HTML/sr@latin/kcontrol/emoticons/index.cache.bz2 share/doc/HTML/sr@latin/kcontrol/emoticons/index.docbook share/doc/HTML/sr@latin/kcontrol/icons/index.cache.bz2 share/doc/HTML/sr@latin/kcontrol/icons/index.docbook share/doc/HTML/sr@latin/kcontrol/kcmlaunchfeedback/index.cache.bz2 share/doc/HTML/sr@latin/kcontrol/kcmlaunchfeedback/index.docbook share/doc/HTML/sr@latin/kcontrol/kcmnotify/index.cache.bz2 share/doc/HTML/sr@latin/kcontrol/kcmnotify/index.docbook share/doc/HTML/sr@latin/kcontrol/paths/index.cache.bz2 share/doc/HTML/sr@latin/kcontrol/paths/index.docbook share/doc/HTML/sr@latin/kcontrol/spellchecking/index.cache.bz2 share/doc/HTML/sr@latin/kcontrol/spellchecking/index.docbook share/doc/HTML/sr@latin/knetattach/index.cache.bz2 share/doc/HTML/sr@latin/knetattach/index.docbook share/doc/HTML/sv/kcontrol/autostart/index.cache.bz2 share/doc/HTML/sv/kcontrol/autostart/index.docbook share/doc/HTML/sv/kcontrol/baloo/index.cache.bz2 share/doc/HTML/sv/kcontrol/baloo/index.docbook share/doc/HTML/sv/kcontrol/clock/index.cache.bz2 share/doc/HTML/sv/kcontrol/clock/index.docbook share/doc/HTML/sv/kcontrol/colors/index.cache.bz2 share/doc/HTML/sv/kcontrol/colors/index.docbook share/doc/HTML/sv/kcontrol/componentchooser/index.cache.bz2 share/doc/HTML/sv/kcontrol/componentchooser/index.docbook share/doc/HTML/sv/kcontrol/cursortheme/index.cache.bz2 share/doc/HTML/sv/kcontrol/cursortheme/index.docbook share/doc/HTML/sv/kcontrol/desktopthemedetails/index.cache.bz2 share/doc/HTML/sv/kcontrol/desktopthemedetails/index.docbook share/doc/HTML/sv/kcontrol/emoticons/index.cache.bz2 share/doc/HTML/sv/kcontrol/emoticons/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/joystick/index.cache.bz2 share/doc/HTML/sv/kcontrol/joystick/index.docbook share/doc/HTML/sv/kcontrol/kcmaccess/index.cache.bz2 share/doc/HTML/sv/kcontrol/kcmaccess/index.docbook share/doc/HTML/sv/kcontrol/kcmlaunchfeedback/index.cache.bz2 share/doc/HTML/sv/kcontrol/kcmlaunchfeedback/index.docbook share/doc/HTML/sv/kcontrol/kcmnotify/index.cache.bz2 share/doc/HTML/sv/kcontrol/kcmnotify/index.docbook share/doc/HTML/sv/kcontrol/kcmsmserver/index.cache.bz2 share/doc/HTML/sv/kcontrol/kcmsmserver/index.docbook share/doc/HTML/sv/kcontrol/kcmstyle/index.cache.bz2 share/doc/HTML/sv/kcontrol/kcmstyle/index.docbook share/doc/HTML/sv/kcontrol/kded/index.cache.bz2 share/doc/HTML/sv/kcontrol/kded/index.docbook share/doc/HTML/sv/kcontrol/keyboard/index.cache.bz2 share/doc/HTML/sv/kcontrol/keyboard/index.docbook share/doc/HTML/sv/kcontrol/keys/index.cache.bz2 share/doc/HTML/sv/kcontrol/keys/index.docbook share/doc/HTML/sv/kcontrol/mouse/index.cache.bz2 share/doc/HTML/sv/kcontrol/mouse/index.docbook share/doc/HTML/sv/kcontrol/paths/index.cache.bz2 share/doc/HTML/sv/kcontrol/paths/index.docbook share/doc/HTML/sv/kcontrol/solid-actions/index.cache.bz2 share/doc/HTML/sv/kcontrol/solid-actions/index.docbook share/doc/HTML/sv/kcontrol/solid-device-automounter/index.cache.bz2 share/doc/HTML/sv/kcontrol/solid-device-automounter/index.docbook share/doc/HTML/sv/kcontrol/spellchecking/index.cache.bz2 share/doc/HTML/sv/kcontrol/spellchecking/index.docbook share/doc/HTML/sv/kcontrol/splashscreen/index.cache.bz2 share/doc/HTML/sv/kcontrol/splashscreen/index.docbook share/doc/HTML/sv/kcontrol/workspaceoptions/index.cache.bz2 share/doc/HTML/sv/kcontrol/workspaceoptions/index.docbook share/doc/HTML/sv/kfontview/index.cache.bz2 share/doc/HTML/sv/kfontview/index.docbook share/doc/HTML/sv/knetattach/index.cache.bz2 share/doc/HTML/sv/knetattach/index.docbook share/doc/HTML/sv/plasma-desktop/index.cache.bz2 share/doc/HTML/sv/plasma-desktop/index.docbook share/doc/HTML/uk/kcontrol/autostart/index.cache.bz2 share/doc/HTML/uk/kcontrol/autostart/index.docbook share/doc/HTML/uk/kcontrol/baloo/index.cache.bz2 share/doc/HTML/uk/kcontrol/baloo/index.docbook share/doc/HTML/uk/kcontrol/clock/index.cache.bz2 share/doc/HTML/uk/kcontrol/clock/index.docbook share/doc/HTML/uk/kcontrol/colors/index.cache.bz2 share/doc/HTML/uk/kcontrol/colors/index.docbook share/doc/HTML/uk/kcontrol/componentchooser/index.cache.bz2 share/doc/HTML/uk/kcontrol/componentchooser/index.docbook share/doc/HTML/uk/kcontrol/cursortheme/index.cache.bz2 share/doc/HTML/uk/kcontrol/cursortheme/index.docbook share/doc/HTML/uk/kcontrol/desktopthemedetails/index.cache.bz2 share/doc/HTML/uk/kcontrol/desktopthemedetails/index.docbook share/doc/HTML/uk/kcontrol/emoticons/index.cache.bz2 share/doc/HTML/uk/kcontrol/emoticons/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/joystick/index.cache.bz2 share/doc/HTML/uk/kcontrol/joystick/index.docbook share/doc/HTML/uk/kcontrol/kcmaccess/index.cache.bz2 share/doc/HTML/uk/kcontrol/kcmaccess/index.docbook share/doc/HTML/uk/kcontrol/kcmlaunchfeedback/index.cache.bz2 share/doc/HTML/uk/kcontrol/kcmlaunchfeedback/index.docbook share/doc/HTML/uk/kcontrol/kcmnotify/index.cache.bz2 share/doc/HTML/uk/kcontrol/kcmnotify/index.docbook share/doc/HTML/uk/kcontrol/kcmsmserver/index.cache.bz2 share/doc/HTML/uk/kcontrol/kcmsmserver/index.docbook share/doc/HTML/uk/kcontrol/kcmstyle/index.cache.bz2 share/doc/HTML/uk/kcontrol/kcmstyle/index.docbook share/doc/HTML/uk/kcontrol/kded/index.cache.bz2 share/doc/HTML/uk/kcontrol/kded/index.docbook share/doc/HTML/uk/kcontrol/keyboard/index.cache.bz2 share/doc/HTML/uk/kcontrol/keyboard/index.docbook share/doc/HTML/uk/kcontrol/keys/index.cache.bz2 share/doc/HTML/uk/kcontrol/keys/index.docbook share/doc/HTML/uk/kcontrol/mouse/index.cache.bz2 share/doc/HTML/uk/kcontrol/mouse/index.docbook share/doc/HTML/uk/kcontrol/paths/index.cache.bz2 share/doc/HTML/uk/kcontrol/paths/index.docbook share/doc/HTML/uk/kcontrol/paths/paths.png share/doc/HTML/uk/kcontrol/solid-actions/add-action.png share/doc/HTML/uk/kcontrol/solid-actions/edit-action.png share/doc/HTML/uk/kcontrol/solid-actions/index.cache.bz2 share/doc/HTML/uk/kcontrol/solid-actions/index.docbook share/doc/HTML/uk/kcontrol/solid-actions/main.png share/doc/HTML/uk/kcontrol/solid-device-automounter/index.cache.bz2 share/doc/HTML/uk/kcontrol/solid-device-automounter/index.docbook share/doc/HTML/uk/kcontrol/spellchecking/index.cache.bz2 share/doc/HTML/uk/kcontrol/spellchecking/index.docbook share/doc/HTML/uk/kcontrol/splashscreen/get-new-theme.png share/doc/HTML/uk/kcontrol/splashscreen/index.cache.bz2 share/doc/HTML/uk/kcontrol/splashscreen/index.docbook share/doc/HTML/uk/kcontrol/splashscreen/splash-main.png share/doc/HTML/uk/kcontrol/workspaceoptions/index.cache.bz2 share/doc/HTML/uk/kcontrol/workspaceoptions/index.docbook share/doc/HTML/uk/kfontview/index.cache.bz2 share/doc/HTML/uk/kfontview/index.docbook share/doc/HTML/uk/kfontview/kfontview.png share/doc/HTML/uk/knetattach/index.cache.bz2 share/doc/HTML/uk/knetattach/index.docbook share/doc/HTML/uk/plasma-desktop/index.cache.bz2 share/doc/HTML/uk/plasma-desktop/index.docbook %%SYNAPTICS%%share/icons/hicolor/128x128/devices/input-touchpad.png share/icons/hicolor/128x128/mimetypes/fonts-package.png share/icons/hicolor/16x16/apps/kfontview.png %%SYNAPTICS%%share/icons/hicolor/16x16/devices/input-touchpad.png share/icons/hicolor/16x16/mimetypes/fonts-package.png share/icons/hicolor/22x22/apps/kfontview.png %%SYNAPTICS%%share/icons/hicolor/22x22/devices/input-touchpad.png share/icons/hicolor/22x22/mimetypes/fonts-package.png %%SYNAPTICS%%share/icons/hicolor/24x24/devices/input-touchpad.png %%SYNAPTICS%%share/icons/hicolor/256x256/devices/input-touchpad.png share/icons/hicolor/32x32/apps/kfontview.png %%SYNAPTICS%%share/icons/hicolor/32x32/devices/input-touchpad.png share/icons/hicolor/32x32/mimetypes/fonts-package.png share/icons/hicolor/48x48/apps/kfontview.png %%SYNAPTICS%%share/icons/hicolor/48x48/devices/input-touchpad.png share/icons/hicolor/48x48/mimetypes/fonts-package.png share/icons/hicolor/64x64/apps/kfontview.png %%SYNAPTICS%%share/icons/hicolor/64x64/devices/input-touchpad.png share/icons/hicolor/64x64/mimetypes/fonts-package.png %%SYNAPTICS%%share/icons/hicolor/96x96/devices/input-touchpad.png share/icons/hicolor/scalable/apps/preferences-desktop-font-installer.svgz %%SYNAPTICS%%share/icons/hicolor/scalable/devices/input-touchpad.svgz share/kcm_componentchooser/kcm_browser.desktop share/kcm_componentchooser/kcm_filemanager.desktop share/kcm_componentchooser/kcm_kemail.desktop share/kcm_componentchooser/kcm_terminal.desktop share/kcmkeyboard/pics/epo.png share/kcmkeys/kde3.kksrc share/kcmkeys/kde4.kksrc share/kcmkeys/mac4.kksrc share/kcmkeys/unix3.kksrc share/kcmkeys/win3.kksrc share/kcmkeys/win4.kksrc share/kcmkeys/wm3.kksrc share/kcmmouse/cursor_large_black.pcf.gz share/kcmmouse/cursor_large_white.pcf.gz share/kcmmouse/cursor_small_white.pcf.gz share/kcmmouse/pics/mouse_lh.png share/kcmmouse/pics/mouse_rh.png share/kcmsolidactions/solid-action-template.desktop share/kconf_update/krdb_libpathwipe.upd share/kcontrol/pics/logo.png share/kcontrol/pics/mini-world.png 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/kf5/kactivitymanagerd/workspace/settings/qml/activitiesTab/ActivitiesView.qml share/kf5/kactivitymanagerd/workspace/settings/qml/activitiesTab/main.qml share/kf5/kactivitymanagerd/workspace/settings/qml/activityDialog/GeneralTab.qml share/kf5/kactivitymanagerd/workspace/settings/qml/privacyTab/BlacklistApplicationView.qml 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/knotifications5/kaccess.notifyrc %%SYNAPTICS%%share/knotifications5/kcm_touchpad.notifyrc share/knsrcfiles/colorschemes.knsrc share/knsrcfiles/emoticons.knsrc share/knsrcfiles/icons.knsrc share/knsrcfiles/kfontinst.knsrc share/knsrcfiles/ksplash.knsrc share/knsrcfiles/lookandfeel.knsrc share/knsrcfiles/plasma-themes.knsrc share/knsrcfiles/xcursor.knsrc share/konqsidebartng/virtual_folders/services/fonts.desktop share/kpackage/kcms/kcm5_icons/contents/ui/IconSizePopup.qml share/kpackage/kcms/kcm5_icons/contents/ui/main.qml share/kpackage/kcms/kcm5_icons/metadata.desktop share/kpackage/kcms/kcm5_icons/metadata.json share/kpackage/kcms/kcm_colors/contents/ui/main.qml share/kpackage/kcms/kcm_colors/metadata.desktop share/kpackage/kcms/kcm_colors/metadata.json share/kpackage/kcms/kcm_cursortheme/contents/ui/Delegate.qml share/kpackage/kcms/kcm_cursortheme/contents/ui/main.qml share/kpackage/kcms/kcm_cursortheme/metadata.desktop share/kpackage/kcms/kcm_cursortheme/metadata.json share/kpackage/kcms/kcm_desktoptheme/contents/ui/Hand.qml share/kpackage/kcms/kcm_desktoptheme/contents/ui/ThemePreview.qml share/kpackage/kcms/kcm_desktoptheme/contents/ui/main.qml share/kpackage/kcms/kcm_desktoptheme/metadata.desktop share/kpackage/kcms/kcm_desktoptheme/metadata.json share/kpackage/kcms/kcm_fonts/contents/ui/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_launchfeedback/contents/ui/main.qml share/kpackage/kcms/kcm_launchfeedback/metadata.desktop share/kpackage/kcms/kcm_launchfeedback/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/LocationsAutoView.qml share/kpackage/kcms/kcm_nightcolor/contents/ui/LocationsFixedView.qml share/kpackage/kcms/kcm_nightcolor/contents/ui/NumberField.qml share/kpackage/kcms/kcm_nightcolor/contents/ui/TimeField.qml share/kpackage/kcms/kcm_nightcolor/contents/ui/TimingsView.qml share/kpackage/kcms/kcm_nightcolor/contents/ui/main.qml share/kpackage/kcms/kcm_nightcolor/metadata.desktop share/kpackage/kcms/kcm_nightcolor/metadata.json share/kpackage/kcms/kcm_notifications/contents/ui/ApplicationConfiguration.qml share/kpackage/kcms/kcm_notifications/contents/ui/PopupPositionPage.qml share/kpackage/kcms/kcm_notifications/contents/ui/ScreenPositionSelector.qml share/kpackage/kcms/kcm_notifications/contents/ui/SourcesPage.qml share/kpackage/kcms/kcm_notifications/contents/ui/main.qml share/kpackage/kcms/kcm_notifications/metadata.desktop share/kpackage/kcms/kcm_notifications/metadata.json share/kpackage/kcms/kcm_splashscreen/contents/ui/main.qml share/kpackage/kcms/kcm_splashscreen/metadata.desktop share/kpackage/kcms/kcm_splashscreen/metadata.json share/kpackage/kcms/kcm_workspace/contents/ui/main.qml share/kpackage/kcms/kcm_workspace/metadata.desktop share/kpackage/kcms/kcm_workspace/metadata.json share/kservices5/ServiceMenus/installfont.desktop share/kservices5/autostart.desktop share/kservices5/clock.desktop share/kservices5/componentchooser.desktop share/kservices5/desktoppath.desktop share/kservices5/device_automounter_kcm.desktop share/kservices5/emoticons.desktop share/kservices5/fontinst.desktop share/kservices5/fonts.protocol share/kservices5/fontthumbnail.desktop share/kservices5/formats.desktop share/kservices5/kaccess.desktop share/kservices5/kcm_activities.desktop share/kservices5/kcm_baloofile.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_keyboard.desktop share/kservices5/kcm_launchfeedback.desktop share/kservices5/kcm_lookandfeel.desktop share/kservices5/kcm_nightcolor.desktop share/kservices5/kcm_notifications.desktop share/kservices5/kcm_plasmasearch.desktop share/kservices5/kcm_splashscreen.desktop %%SYNAPTICS%%share/kservices5/kcm_touchpad.desktop share/kservices5/kcm_workspace.desktop share/kservices5/kcmaccess.desktop share/kservices5/kcmkded.desktop share/kservices5/kcmsmserver.desktop %%SYNAPTICS%%share/kservices5/kded/touchpad.desktop share/kservices5/keys.desktop share/kservices5/kfontviewpart.desktop share/kservices5/mouse.desktop share/kservices5/plasma-applet-org.kde.plasma.icontasks.desktop share/kservices5/plasma-applet-org.kde.plasma.kicker.desktop share/kservices5/plasma-applet-org.kde.plasma.kickoff.desktop share/kservices5/plasma-applet-org.kde.plasma.kimpanel.desktop share/kservices5/plasma-applet-org.kde.plasma.minimizeall.desktop share/kservices5/plasma-applet-org.kde.plasma.pager.desktop share/kservices5/plasma-applet-org.kde.plasma.showActivityManager.desktop share/kservices5/plasma-applet-org.kde.plasma.showdesktop.desktop share/kservices5/plasma-applet-org.kde.plasma.taskmanager.desktop share/kservices5/plasma-applet-org.kde.plasma.trash.desktop share/kservices5/plasma-applet-org.kde.plasma.windowlist.desktop %%SYNAPTICS%%share/kservices5/plasma-applet-touchpad.desktop share/kservices5/plasma-containment-org.kde.desktopcontainment.desktop share/kservices5/plasma-containment-org.kde.panel.desktop share/kservices5/plasma-containment-org.kde.plasma.folder.desktop share/kservices5/plasma-dataengine-kimpanel.desktop %%SYNAPTICS%%share/kservices5/plasma-dataengine-touchpad.desktop share/kservices5/plasma-layout-template-org.kde.plasma.desktop.appmenubar.desktop share/kservices5/plasma-layout-template-org.kde.plasma.desktop.defaultPanel.desktop share/kservices5/plasma-layout-template-org.kde.plasma.desktop.emptyPanel.desktop share/kservices5/plasma-package-org.kde.desktoptoolbox.desktop share/kservices5/plasma-package-org.kde.paneltoolbox.desktop share/kservices5/plasma-runner-kwin.desktop share/kservices5/plasma-runner-plasma-desktop.desktop share/kservices5/plasma-shell-org.kde.plasma.desktop.desktop share/kservices5/qtquicksettings.desktop share/kservices5/solid-actions.desktop share/kservices5/spellchecking.desktop share/kservices5/standard_actions.desktop share/kservices5/style.desktop share/kservicetypes5/solid-device-type.desktop share/kxmlgui5/kfontinst/kfontviewpart.rc share/kxmlgui5/kfontview/kfontviewui.rc share/locale/af/LC_MESSAGES/kaccess.mo share/locale/af/LC_MESSAGES/kcm5_componentchooser.mo share/locale/af/LC_MESSAGES/kcm5_icons.mo share/locale/af/LC_MESSAGES/kcm5_joystick.mo share/locale/af/LC_MESSAGES/kcm5_kded.mo share/locale/af/LC_MESSAGES/kcm_colors.mo share/locale/af/LC_MESSAGES/kcm_cursortheme.mo share/locale/af/LC_MESSAGES/kcm_desktoppaths.mo share/locale/af/LC_MESSAGES/kcm_fonts.mo share/locale/af/LC_MESSAGES/kcm_launchfeedback.mo share/locale/af/LC_MESSAGES/kcmaccess.mo share/locale/af/LC_MESSAGES/kcmformats.mo share/locale/af/LC_MESSAGES/kcmkclock.mo share/locale/af/LC_MESSAGES/kcmkeyboard.mo share/locale/af/LC_MESSAGES/kcmkeys.mo share/locale/af/LC_MESSAGES/kcmmouse.mo share/locale/af/LC_MESSAGES/kcmsmserver.mo share/locale/af/LC_MESSAGES/kcmstyle.mo share/locale/af/LC_MESSAGES/kfontinst.mo share/locale/af/LC_MESSAGES/knetattach5.mo share/locale/af/LC_MESSAGES/krdb.mo share/locale/af/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ar/LC_MESSAGES/attica_kde_plugin.mo share/locale/ar/LC_MESSAGES/kaccess.mo share/locale/ar/LC_MESSAGES/kcm5_baloofile.mo share/locale/ar/LC_MESSAGES/kcm5_componentchooser.mo share/locale/ar/LC_MESSAGES/kcm5_device_automounter.mo share/locale/ar/LC_MESSAGES/kcm5_emoticons.mo share/locale/ar/LC_MESSAGES/kcm5_icons.mo share/locale/ar/LC_MESSAGES/kcm5_joystick.mo share/locale/ar/LC_MESSAGES/kcm5_kded.mo share/locale/ar/LC_MESSAGES/kcm_activities5.mo share/locale/ar/LC_MESSAGES/kcm_autostart.mo share/locale/ar/LC_MESSAGES/kcm_colors.mo share/locale/ar/LC_MESSAGES/kcm_cursortheme.mo share/locale/ar/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ar/LC_MESSAGES/kcm_desktoptheme.mo share/locale/ar/LC_MESSAGES/kcm_fonts.mo share/locale/ar/LC_MESSAGES/kcm_launchfeedback.mo share/locale/ar/LC_MESSAGES/kcm_lookandfeel.mo share/locale/ar/LC_MESSAGES/kcm_search.mo share/locale/ar/LC_MESSAGES/kcm_solid_actions.mo share/locale/ar/LC_MESSAGES/kcm_splashscreen.mo share/locale/ar/LC_MESSAGES/kcm_standard_actions.mo share/locale/ar/LC_MESSAGES/kcm_touchpad.mo share/locale/ar/LC_MESSAGES/kcm_workspace.mo share/locale/ar/LC_MESSAGES/kcmaccess.mo share/locale/ar/LC_MESSAGES/kcmformats.mo share/locale/ar/LC_MESSAGES/kcmkclock.mo share/locale/ar/LC_MESSAGES/kcmkeyboard.mo share/locale/ar/LC_MESSAGES/kcmkeys.mo share/locale/ar/LC_MESSAGES/kcmmouse.mo share/locale/ar/LC_MESSAGES/kcmsmserver.mo share/locale/ar/LC_MESSAGES/kcmstyle.mo share/locale/ar/LC_MESSAGES/kfontinst.mo share/locale/ar/LC_MESSAGES/knetattach5.mo share/locale/ar/LC_MESSAGES/krdb.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/ar/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/ar/LC_MESSAGES/plasma_runner_kwin.mo share/locale/ar/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/ar/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/ar/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/ar/LC_MESSAGES/plasmaactivitymanager.mo share/locale/as/LC_MESSAGES/kcmaccess.mo share/locale/ast/LC_MESSAGES/kcm5_componentchooser.mo share/locale/ast/LC_MESSAGES/kcm5_device_automounter.mo share/locale/ast/LC_MESSAGES/kcm_notifications.mo share/locale/ast/LC_MESSAGES/kcm_splashscreen.mo share/locale/ast/LC_MESSAGES/kcm_standard_actions.mo share/locale/ast/LC_MESSAGES/kcm_workspace.mo share/locale/ast/LC_MESSAGES/kcmkclock.mo share/locale/ast/LC_MESSAGES/kcmkeyboard.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ast/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/be/LC_MESSAGES/kaccess.mo share/locale/be/LC_MESSAGES/kcm5_componentchooser.mo share/locale/be/LC_MESSAGES/kcm5_emoticons.mo share/locale/be/LC_MESSAGES/kcm5_icons.mo share/locale/be/LC_MESSAGES/kcm5_joystick.mo share/locale/be/LC_MESSAGES/kcm5_kded.mo share/locale/be/LC_MESSAGES/kcm_colors.mo share/locale/be/LC_MESSAGES/kcm_cursortheme.mo share/locale/be/LC_MESSAGES/kcm_desktoppaths.mo share/locale/be/LC_MESSAGES/kcm_fonts.mo share/locale/be/LC_MESSAGES/kcm_launchfeedback.mo share/locale/be/LC_MESSAGES/kcmaccess.mo share/locale/be/LC_MESSAGES/kcmformats.mo share/locale/be/LC_MESSAGES/kcmkclock.mo share/locale/be/LC_MESSAGES/kcmkeyboard.mo share/locale/be/LC_MESSAGES/kcmkeys.mo share/locale/be/LC_MESSAGES/kcmmouse.mo share/locale/be/LC_MESSAGES/kcmsmserver.mo share/locale/be/LC_MESSAGES/kcmstyle.mo share/locale/be/LC_MESSAGES/kfontinst.mo share/locale/be/LC_MESSAGES/knetattach5.mo share/locale/be/LC_MESSAGES/krdb.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/be@latin/LC_MESSAGES/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/kcm_desktoppaths.mo share/locale/be@latin/LC_MESSAGES/kcm_standard_actions.mo share/locale/be@latin/LC_MESSAGES/kcmformats.mo share/locale/be@latin/LC_MESSAGES/kcmkclock.mo share/locale/be@latin/LC_MESSAGES/kcmkeyboard.mo share/locale/be@latin/LC_MESSAGES/krdb.mo share/locale/be@latin/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/be@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/be@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/be@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/bg/LC_MESSAGES/attica_kde_plugin.mo share/locale/bg/LC_MESSAGES/kaccess.mo share/locale/bg/LC_MESSAGES/kcm5_baloofile.mo share/locale/bg/LC_MESSAGES/kcm5_componentchooser.mo share/locale/bg/LC_MESSAGES/kcm5_device_automounter.mo share/locale/bg/LC_MESSAGES/kcm5_emoticons.mo share/locale/bg/LC_MESSAGES/kcm5_icons.mo share/locale/bg/LC_MESSAGES/kcm5_joystick.mo share/locale/bg/LC_MESSAGES/kcm5_kded.mo share/locale/bg/LC_MESSAGES/kcm_autostart.mo share/locale/bg/LC_MESSAGES/kcm_colors.mo share/locale/bg/LC_MESSAGES/kcm_cursortheme.mo share/locale/bg/LC_MESSAGES/kcm_desktoppaths.mo share/locale/bg/LC_MESSAGES/kcm_desktoptheme.mo share/locale/bg/LC_MESSAGES/kcm_fonts.mo share/locale/bg/LC_MESSAGES/kcm_launchfeedback.mo share/locale/bg/LC_MESSAGES/kcm_solid_actions.mo share/locale/bg/LC_MESSAGES/kcm_standard_actions.mo share/locale/bg/LC_MESSAGES/kcmaccess.mo share/locale/bg/LC_MESSAGES/kcmformats.mo share/locale/bg/LC_MESSAGES/kcmkclock.mo share/locale/bg/LC_MESSAGES/kcmkeyboard.mo share/locale/bg/LC_MESSAGES/kcmkeys.mo share/locale/bg/LC_MESSAGES/kcmmouse.mo share/locale/bg/LC_MESSAGES/kcmsmserver.mo share/locale/bg/LC_MESSAGES/kcmstyle.mo share/locale/bg/LC_MESSAGES/kfontinst.mo share/locale/bg/LC_MESSAGES/knetattach5.mo share/locale/bg/LC_MESSAGES/krdb.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/bg/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/bn/LC_MESSAGES/kaccess.mo share/locale/bn/LC_MESSAGES/kcm5_componentchooser.mo share/locale/bn/LC_MESSAGES/kcm5_icons.mo share/locale/bn/LC_MESSAGES/kcm5_kded.mo share/locale/bn/LC_MESSAGES/kcm_desktoppaths.mo share/locale/bn/LC_MESSAGES/kcm_fonts.mo share/locale/bn/LC_MESSAGES/kcmaccess.mo share/locale/bn/LC_MESSAGES/kcmformats.mo share/locale/bn/LC_MESSAGES/kcmkclock.mo share/locale/bn/LC_MESSAGES/kcmkeyboard.mo share/locale/bn/LC_MESSAGES/kcmsmserver.mo share/locale/bn/LC_MESSAGES/kcmstyle.mo share/locale/bn/LC_MESSAGES/kfontinst.mo share/locale/bn/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/bn_IN/LC_MESSAGES/kaccess.mo share/locale/bn_IN/LC_MESSAGES/kcm5_icons.mo share/locale/bn_IN/LC_MESSAGES/kcm5_kded.mo share/locale/bn_IN/LC_MESSAGES/kcm_autostart.mo share/locale/bn_IN/LC_MESSAGES/kcm_colors.mo share/locale/bn_IN/LC_MESSAGES/kcm_desktoppaths.mo share/locale/bn_IN/LC_MESSAGES/kcm_desktoptheme.mo share/locale/bn_IN/LC_MESSAGES/kcm_standard_actions.mo share/locale/bn_IN/LC_MESSAGES/kcmaccess.mo share/locale/bn_IN/LC_MESSAGES/kcmformats.mo share/locale/bn_IN/LC_MESSAGES/kcmkclock.mo share/locale/bn_IN/LC_MESSAGES/kcmkeyboard.mo share/locale/bn_IN/LC_MESSAGES/kcmkeys.mo share/locale/bn_IN/LC_MESSAGES/kcmsmserver.mo share/locale/bn_IN/LC_MESSAGES/kcmstyle.mo share/locale/bn_IN/LC_MESSAGES/kfontinst.mo share/locale/bn_IN/LC_MESSAGES/knetattach5.mo share/locale/bn_IN/LC_MESSAGES/krdb.mo share/locale/bn_IN/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/bn_IN/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/bn_IN/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/bn_IN/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/br/LC_MESSAGES/kaccess.mo share/locale/br/LC_MESSAGES/kcm5_componentchooser.mo share/locale/br/LC_MESSAGES/kcm5_icons.mo share/locale/br/LC_MESSAGES/kcm5_joystick.mo share/locale/br/LC_MESSAGES/kcm5_kded.mo share/locale/br/LC_MESSAGES/kcm_colors.mo share/locale/br/LC_MESSAGES/kcm_cursortheme.mo share/locale/br/LC_MESSAGES/kcm_desktoppaths.mo share/locale/br/LC_MESSAGES/kcm_fonts.mo share/locale/br/LC_MESSAGES/kcm_launchfeedback.mo share/locale/br/LC_MESSAGES/kcmaccess.mo share/locale/br/LC_MESSAGES/kcmformats.mo share/locale/br/LC_MESSAGES/kcmkclock.mo share/locale/br/LC_MESSAGES/kcmkeyboard.mo share/locale/br/LC_MESSAGES/kcmkeys.mo share/locale/br/LC_MESSAGES/kcmmouse.mo share/locale/br/LC_MESSAGES/kcmsmserver.mo share/locale/br/LC_MESSAGES/kcmstyle.mo share/locale/br/LC_MESSAGES/kfontinst.mo share/locale/br/LC_MESSAGES/knetattach5.mo share/locale/br/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/bs/LC_MESSAGES/attica_kde_plugin.mo share/locale/bs/LC_MESSAGES/kaccess.mo share/locale/bs/LC_MESSAGES/kcm5_baloofile.mo share/locale/bs/LC_MESSAGES/kcm5_componentchooser.mo share/locale/bs/LC_MESSAGES/kcm5_device_automounter.mo share/locale/bs/LC_MESSAGES/kcm5_emoticons.mo share/locale/bs/LC_MESSAGES/kcm5_icons.mo share/locale/bs/LC_MESSAGES/kcm5_joystick.mo share/locale/bs/LC_MESSAGES/kcm5_kded.mo share/locale/bs/LC_MESSAGES/kcm_autostart.mo share/locale/bs/LC_MESSAGES/kcm_colors.mo share/locale/bs/LC_MESSAGES/kcm_cursortheme.mo share/locale/bs/LC_MESSAGES/kcm_desktoppaths.mo share/locale/bs/LC_MESSAGES/kcm_desktoptheme.mo share/locale/bs/LC_MESSAGES/kcm_fonts.mo share/locale/bs/LC_MESSAGES/kcm_launchfeedback.mo share/locale/bs/LC_MESSAGES/kcm_lookandfeel.mo share/locale/bs/LC_MESSAGES/kcm_search.mo share/locale/bs/LC_MESSAGES/kcm_solid_actions.mo share/locale/bs/LC_MESSAGES/kcm_splashscreen.mo share/locale/bs/LC_MESSAGES/kcm_standard_actions.mo share/locale/bs/LC_MESSAGES/kcm_touchpad.mo share/locale/bs/LC_MESSAGES/kcm_workspace.mo share/locale/bs/LC_MESSAGES/kcmaccess.mo share/locale/bs/LC_MESSAGES/kcmformats.mo share/locale/bs/LC_MESSAGES/kcmkclock.mo share/locale/bs/LC_MESSAGES/kcmkeyboard.mo share/locale/bs/LC_MESSAGES/kcmkeys.mo share/locale/bs/LC_MESSAGES/kcmmouse.mo share/locale/bs/LC_MESSAGES/kcmsmserver.mo share/locale/bs/LC_MESSAGES/kcmstyle.mo share/locale/bs/LC_MESSAGES/kfontinst.mo share/locale/bs/LC_MESSAGES/knetattach5.mo share/locale/bs/LC_MESSAGES/krdb.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/bs/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/bs/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/bs/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/bs/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/ca/LC_MESSAGES/attica_kde_plugin.mo share/locale/ca/LC_MESSAGES/kaccess.mo share/locale/ca/LC_MESSAGES/kcm5_baloofile.mo share/locale/ca/LC_MESSAGES/kcm5_componentchooser.mo share/locale/ca/LC_MESSAGES/kcm5_device_automounter.mo share/locale/ca/LC_MESSAGES/kcm5_emoticons.mo share/locale/ca/LC_MESSAGES/kcm5_icons.mo share/locale/ca/LC_MESSAGES/kcm5_joystick.mo share/locale/ca/LC_MESSAGES/kcm5_kded.mo share/locale/ca/LC_MESSAGES/kcm_activities5.mo share/locale/ca/LC_MESSAGES/kcm_autostart.mo share/locale/ca/LC_MESSAGES/kcm_colors.mo share/locale/ca/LC_MESSAGES/kcm_cursortheme.mo share/locale/ca/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ca/LC_MESSAGES/kcm_desktoptheme.mo share/locale/ca/LC_MESSAGES/kcm_fonts.mo share/locale/ca/LC_MESSAGES/kcm_launchfeedback.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_search.mo share/locale/ca/LC_MESSAGES/kcm_solid_actions.mo share/locale/ca/LC_MESSAGES/kcm_splashscreen.mo share/locale/ca/LC_MESSAGES/kcm_standard_actions.mo share/locale/ca/LC_MESSAGES/kcm_touchpad.mo share/locale/ca/LC_MESSAGES/kcm_workspace.mo share/locale/ca/LC_MESSAGES/kcmaccess.mo share/locale/ca/LC_MESSAGES/kcmformats.mo share/locale/ca/LC_MESSAGES/kcmkclock.mo share/locale/ca/LC_MESSAGES/kcmkeyboard.mo share/locale/ca/LC_MESSAGES/kcmkeys.mo share/locale/ca/LC_MESSAGES/kcmmouse.mo share/locale/ca/LC_MESSAGES/kcmqtquicksettings.mo share/locale/ca/LC_MESSAGES/kcmsmserver.mo share/locale/ca/LC_MESSAGES/kcmstyle.mo share/locale/ca/LC_MESSAGES/kfontinst.mo share/locale/ca/LC_MESSAGES/knetattach5.mo share/locale/ca/LC_MESSAGES/krdb.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/ca/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/ca/LC_MESSAGES/plasma_runner_kwin.mo share/locale/ca/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/ca/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/ca/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/ca/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/ca/LC_MESSAGES/plasmaactivitymanager.mo share/locale/ca@valencia/LC_MESSAGES/attica_kde_plugin.mo share/locale/ca@valencia/LC_MESSAGES/kaccess.mo share/locale/ca@valencia/LC_MESSAGES/kcm5_baloofile.mo share/locale/ca@valencia/LC_MESSAGES/kcm5_componentchooser.mo share/locale/ca@valencia/LC_MESSAGES/kcm5_device_automounter.mo share/locale/ca@valencia/LC_MESSAGES/kcm5_emoticons.mo share/locale/ca@valencia/LC_MESSAGES/kcm5_icons.mo share/locale/ca@valencia/LC_MESSAGES/kcm5_joystick.mo share/locale/ca@valencia/LC_MESSAGES/kcm5_kded.mo share/locale/ca@valencia/LC_MESSAGES/kcm_activities5.mo share/locale/ca@valencia/LC_MESSAGES/kcm_autostart.mo share/locale/ca@valencia/LC_MESSAGES/kcm_colors.mo share/locale/ca@valencia/LC_MESSAGES/kcm_cursortheme.mo share/locale/ca@valencia/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ca@valencia/LC_MESSAGES/kcm_desktoptheme.mo share/locale/ca@valencia/LC_MESSAGES/kcm_fonts.mo share/locale/ca@valencia/LC_MESSAGES/kcm_launchfeedback.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_search.mo share/locale/ca@valencia/LC_MESSAGES/kcm_solid_actions.mo share/locale/ca@valencia/LC_MESSAGES/kcm_splashscreen.mo share/locale/ca@valencia/LC_MESSAGES/kcm_standard_actions.mo share/locale/ca@valencia/LC_MESSAGES/kcm_touchpad.mo share/locale/ca@valencia/LC_MESSAGES/kcm_workspace.mo share/locale/ca@valencia/LC_MESSAGES/kcmaccess.mo share/locale/ca@valencia/LC_MESSAGES/kcmformats.mo share/locale/ca@valencia/LC_MESSAGES/kcmkclock.mo share/locale/ca@valencia/LC_MESSAGES/kcmkeyboard.mo share/locale/ca@valencia/LC_MESSAGES/kcmkeys.mo share/locale/ca@valencia/LC_MESSAGES/kcmmouse.mo share/locale/ca@valencia/LC_MESSAGES/kcmqtquicksettings.mo share/locale/ca@valencia/LC_MESSAGES/kcmsmserver.mo share/locale/ca@valencia/LC_MESSAGES/kcmstyle.mo share/locale/ca@valencia/LC_MESSAGES/kfontinst.mo share/locale/ca@valencia/LC_MESSAGES/knetattach5.mo share/locale/ca@valencia/LC_MESSAGES/krdb.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_kwin.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/ca@valencia/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/ca@valencia/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/ca@valencia/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/ca@valencia/LC_MESSAGES/plasmaactivitymanager.mo share/locale/cs/LC_MESSAGES/attica_kde_plugin.mo share/locale/cs/LC_MESSAGES/kaccess.mo share/locale/cs/LC_MESSAGES/kcm5_baloofile.mo share/locale/cs/LC_MESSAGES/kcm5_componentchooser.mo share/locale/cs/LC_MESSAGES/kcm5_device_automounter.mo share/locale/cs/LC_MESSAGES/kcm5_emoticons.mo share/locale/cs/LC_MESSAGES/kcm5_icons.mo share/locale/cs/LC_MESSAGES/kcm5_joystick.mo share/locale/cs/LC_MESSAGES/kcm5_kded.mo share/locale/cs/LC_MESSAGES/kcm_activities5.mo share/locale/cs/LC_MESSAGES/kcm_autostart.mo share/locale/cs/LC_MESSAGES/kcm_colors.mo share/locale/cs/LC_MESSAGES/kcm_cursortheme.mo share/locale/cs/LC_MESSAGES/kcm_desktoppaths.mo share/locale/cs/LC_MESSAGES/kcm_desktoptheme.mo share/locale/cs/LC_MESSAGES/kcm_fonts.mo share/locale/cs/LC_MESSAGES/kcm_launchfeedback.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_search.mo share/locale/cs/LC_MESSAGES/kcm_solid_actions.mo share/locale/cs/LC_MESSAGES/kcm_splashscreen.mo share/locale/cs/LC_MESSAGES/kcm_standard_actions.mo share/locale/cs/LC_MESSAGES/kcm_touchpad.mo share/locale/cs/LC_MESSAGES/kcm_workspace.mo share/locale/cs/LC_MESSAGES/kcmaccess.mo share/locale/cs/LC_MESSAGES/kcmformats.mo share/locale/cs/LC_MESSAGES/kcmkclock.mo share/locale/cs/LC_MESSAGES/kcmkeyboard.mo share/locale/cs/LC_MESSAGES/kcmkeys.mo share/locale/cs/LC_MESSAGES/kcmmouse.mo share/locale/cs/LC_MESSAGES/kcmqtquicksettings.mo share/locale/cs/LC_MESSAGES/kcmsmserver.mo share/locale/cs/LC_MESSAGES/kcmstyle.mo share/locale/cs/LC_MESSAGES/kfontinst.mo share/locale/cs/LC_MESSAGES/knetattach5.mo share/locale/cs/LC_MESSAGES/krdb.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/cs/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/cs/LC_MESSAGES/plasma_runner_kwin.mo share/locale/cs/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/cs/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/cs/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/cs/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/cs/LC_MESSAGES/plasmaactivitymanager.mo share/locale/csb/LC_MESSAGES/kaccess.mo share/locale/csb/LC_MESSAGES/kcm5_componentchooser.mo share/locale/csb/LC_MESSAGES/kcm5_emoticons.mo share/locale/csb/LC_MESSAGES/kcm5_icons.mo share/locale/csb/LC_MESSAGES/kcm5_joystick.mo share/locale/csb/LC_MESSAGES/kcm5_kded.mo share/locale/csb/LC_MESSAGES/kcm_colors.mo share/locale/csb/LC_MESSAGES/kcm_fonts.mo share/locale/csb/LC_MESSAGES/kcm_launchfeedback.mo share/locale/csb/LC_MESSAGES/kcmaccess.mo share/locale/csb/LC_MESSAGES/kcmformats.mo share/locale/csb/LC_MESSAGES/kcmkclock.mo share/locale/csb/LC_MESSAGES/kcmkeyboard.mo share/locale/csb/LC_MESSAGES/kcmsmserver.mo share/locale/csb/LC_MESSAGES/kcmstyle.mo share/locale/csb/LC_MESSAGES/kfontinst.mo share/locale/csb/LC_MESSAGES/knetattach5.mo share/locale/csb/LC_MESSAGES/krdb.mo share/locale/csb/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/csb/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/csb/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/csb/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/csb/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/cy/LC_MESSAGES/kaccess.mo share/locale/cy/LC_MESSAGES/kcm5_componentchooser.mo share/locale/cy/LC_MESSAGES/kcm5_icons.mo share/locale/cy/LC_MESSAGES/kcm5_joystick.mo share/locale/cy/LC_MESSAGES/kcm5_kded.mo share/locale/cy/LC_MESSAGES/kcm_colors.mo share/locale/cy/LC_MESSAGES/kcm_cursortheme.mo share/locale/cy/LC_MESSAGES/kcm_desktoppaths.mo share/locale/cy/LC_MESSAGES/kcm_fonts.mo share/locale/cy/LC_MESSAGES/kcm_launchfeedback.mo share/locale/cy/LC_MESSAGES/kcmaccess.mo share/locale/cy/LC_MESSAGES/kcmformats.mo share/locale/cy/LC_MESSAGES/kcmkclock.mo share/locale/cy/LC_MESSAGES/kcmkeyboard.mo share/locale/cy/LC_MESSAGES/kcmkeys.mo share/locale/cy/LC_MESSAGES/kcmmouse.mo share/locale/cy/LC_MESSAGES/kcmsmserver.mo share/locale/cy/LC_MESSAGES/kcmstyle.mo share/locale/cy/LC_MESSAGES/kfontinst.mo share/locale/cy/LC_MESSAGES/knetattach5.mo share/locale/cy/LC_MESSAGES/krdb.mo share/locale/cy/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/da/LC_MESSAGES/attica_kde_plugin.mo share/locale/da/LC_MESSAGES/kaccess.mo share/locale/da/LC_MESSAGES/kcm5_baloofile.mo share/locale/da/LC_MESSAGES/kcm5_componentchooser.mo share/locale/da/LC_MESSAGES/kcm5_device_automounter.mo share/locale/da/LC_MESSAGES/kcm5_emoticons.mo share/locale/da/LC_MESSAGES/kcm5_icons.mo share/locale/da/LC_MESSAGES/kcm5_joystick.mo share/locale/da/LC_MESSAGES/kcm5_kded.mo share/locale/da/LC_MESSAGES/kcm_activities5.mo share/locale/da/LC_MESSAGES/kcm_autostart.mo share/locale/da/LC_MESSAGES/kcm_colors.mo share/locale/da/LC_MESSAGES/kcm_cursortheme.mo share/locale/da/LC_MESSAGES/kcm_desktoppaths.mo share/locale/da/LC_MESSAGES/kcm_desktoptheme.mo share/locale/da/LC_MESSAGES/kcm_fonts.mo share/locale/da/LC_MESSAGES/kcm_launchfeedback.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_search.mo share/locale/da/LC_MESSAGES/kcm_solid_actions.mo share/locale/da/LC_MESSAGES/kcm_splashscreen.mo share/locale/da/LC_MESSAGES/kcm_standard_actions.mo share/locale/da/LC_MESSAGES/kcm_touchpad.mo share/locale/da/LC_MESSAGES/kcm_workspace.mo share/locale/da/LC_MESSAGES/kcmaccess.mo share/locale/da/LC_MESSAGES/kcmformats.mo share/locale/da/LC_MESSAGES/kcmkclock.mo share/locale/da/LC_MESSAGES/kcmkeyboard.mo share/locale/da/LC_MESSAGES/kcmkeys.mo share/locale/da/LC_MESSAGES/kcmmouse.mo share/locale/da/LC_MESSAGES/kcmqtquicksettings.mo share/locale/da/LC_MESSAGES/kcmsmserver.mo share/locale/da/LC_MESSAGES/kcmstyle.mo share/locale/da/LC_MESSAGES/kfontinst.mo share/locale/da/LC_MESSAGES/knetattach5.mo share/locale/da/LC_MESSAGES/krdb.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/da/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/da/LC_MESSAGES/plasma_runner_kwin.mo share/locale/da/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/da/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/da/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/da/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/da/LC_MESSAGES/plasmaactivitymanager.mo share/locale/de/LC_MESSAGES/attica_kde_plugin.mo share/locale/de/LC_MESSAGES/kaccess.mo share/locale/de/LC_MESSAGES/kcm5_baloofile.mo share/locale/de/LC_MESSAGES/kcm5_componentchooser.mo share/locale/de/LC_MESSAGES/kcm5_device_automounter.mo share/locale/de/LC_MESSAGES/kcm5_emoticons.mo share/locale/de/LC_MESSAGES/kcm5_icons.mo share/locale/de/LC_MESSAGES/kcm5_joystick.mo share/locale/de/LC_MESSAGES/kcm5_kded.mo share/locale/de/LC_MESSAGES/kcm_activities5.mo share/locale/de/LC_MESSAGES/kcm_autostart.mo share/locale/de/LC_MESSAGES/kcm_colors.mo share/locale/de/LC_MESSAGES/kcm_cursortheme.mo share/locale/de/LC_MESSAGES/kcm_desktoppaths.mo share/locale/de/LC_MESSAGES/kcm_desktoptheme.mo share/locale/de/LC_MESSAGES/kcm_fonts.mo share/locale/de/LC_MESSAGES/kcm_launchfeedback.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_search.mo share/locale/de/LC_MESSAGES/kcm_solid_actions.mo share/locale/de/LC_MESSAGES/kcm_splashscreen.mo share/locale/de/LC_MESSAGES/kcm_standard_actions.mo share/locale/de/LC_MESSAGES/kcm_touchpad.mo share/locale/de/LC_MESSAGES/kcm_workspace.mo share/locale/de/LC_MESSAGES/kcmaccess.mo share/locale/de/LC_MESSAGES/kcmformats.mo share/locale/de/LC_MESSAGES/kcmkclock.mo share/locale/de/LC_MESSAGES/kcmkeyboard.mo share/locale/de/LC_MESSAGES/kcmkeys.mo share/locale/de/LC_MESSAGES/kcmmouse.mo share/locale/de/LC_MESSAGES/kcmqtquicksettings.mo share/locale/de/LC_MESSAGES/kcmsmserver.mo share/locale/de/LC_MESSAGES/kcmstyle.mo share/locale/de/LC_MESSAGES/kfontinst.mo share/locale/de/LC_MESSAGES/knetattach5.mo share/locale/de/LC_MESSAGES/krdb.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/de/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/de/LC_MESSAGES/plasma_runner_kwin.mo share/locale/de/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/de/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/de/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/de/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/de/LC_MESSAGES/plasmaactivitymanager.mo share/locale/el/LC_MESSAGES/attica_kde_plugin.mo share/locale/el/LC_MESSAGES/kaccess.mo share/locale/el/LC_MESSAGES/kcm5_baloofile.mo share/locale/el/LC_MESSAGES/kcm5_componentchooser.mo share/locale/el/LC_MESSAGES/kcm5_device_automounter.mo share/locale/el/LC_MESSAGES/kcm5_emoticons.mo share/locale/el/LC_MESSAGES/kcm5_icons.mo share/locale/el/LC_MESSAGES/kcm5_joystick.mo share/locale/el/LC_MESSAGES/kcm5_kded.mo share/locale/el/LC_MESSAGES/kcm_activities5.mo share/locale/el/LC_MESSAGES/kcm_autostart.mo share/locale/el/LC_MESSAGES/kcm_colors.mo share/locale/el/LC_MESSAGES/kcm_cursortheme.mo share/locale/el/LC_MESSAGES/kcm_desktoppaths.mo share/locale/el/LC_MESSAGES/kcm_desktoptheme.mo share/locale/el/LC_MESSAGES/kcm_fonts.mo share/locale/el/LC_MESSAGES/kcm_launchfeedback.mo share/locale/el/LC_MESSAGES/kcm_lookandfeel.mo share/locale/el/LC_MESSAGES/kcm_search.mo share/locale/el/LC_MESSAGES/kcm_solid_actions.mo share/locale/el/LC_MESSAGES/kcm_splashscreen.mo share/locale/el/LC_MESSAGES/kcm_standard_actions.mo share/locale/el/LC_MESSAGES/kcm_touchpad.mo share/locale/el/LC_MESSAGES/kcm_workspace.mo share/locale/el/LC_MESSAGES/kcmaccess.mo share/locale/el/LC_MESSAGES/kcmformats.mo share/locale/el/LC_MESSAGES/kcmkclock.mo share/locale/el/LC_MESSAGES/kcmkeyboard.mo share/locale/el/LC_MESSAGES/kcmkeys.mo share/locale/el/LC_MESSAGES/kcmmouse.mo share/locale/el/LC_MESSAGES/kcmsmserver.mo share/locale/el/LC_MESSAGES/kcmstyle.mo share/locale/el/LC_MESSAGES/kfontinst.mo share/locale/el/LC_MESSAGES/knetattach5.mo share/locale/el/LC_MESSAGES/krdb.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/el/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/el/LC_MESSAGES/plasma_runner_kwin.mo share/locale/el/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/el/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/el/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/el/LC_MESSAGES/plasmaactivitymanager.mo share/locale/en_GB/LC_MESSAGES/attica_kde_plugin.mo share/locale/en_GB/LC_MESSAGES/kaccess.mo share/locale/en_GB/LC_MESSAGES/kcm5_baloofile.mo share/locale/en_GB/LC_MESSAGES/kcm5_componentchooser.mo share/locale/en_GB/LC_MESSAGES/kcm5_device_automounter.mo share/locale/en_GB/LC_MESSAGES/kcm5_emoticons.mo share/locale/en_GB/LC_MESSAGES/kcm5_icons.mo share/locale/en_GB/LC_MESSAGES/kcm5_joystick.mo share/locale/en_GB/LC_MESSAGES/kcm5_kded.mo share/locale/en_GB/LC_MESSAGES/kcm_activities5.mo share/locale/en_GB/LC_MESSAGES/kcm_autostart.mo share/locale/en_GB/LC_MESSAGES/kcm_colors.mo share/locale/en_GB/LC_MESSAGES/kcm_cursortheme.mo share/locale/en_GB/LC_MESSAGES/kcm_desktoppaths.mo share/locale/en_GB/LC_MESSAGES/kcm_desktoptheme.mo share/locale/en_GB/LC_MESSAGES/kcm_fonts.mo share/locale/en_GB/LC_MESSAGES/kcm_launchfeedback.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_search.mo share/locale/en_GB/LC_MESSAGES/kcm_solid_actions.mo share/locale/en_GB/LC_MESSAGES/kcm_splashscreen.mo share/locale/en_GB/LC_MESSAGES/kcm_standard_actions.mo share/locale/en_GB/LC_MESSAGES/kcm_touchpad.mo share/locale/en_GB/LC_MESSAGES/kcm_workspace.mo share/locale/en_GB/LC_MESSAGES/kcmaccess.mo share/locale/en_GB/LC_MESSAGES/kcmformats.mo share/locale/en_GB/LC_MESSAGES/kcmkclock.mo share/locale/en_GB/LC_MESSAGES/kcmkeyboard.mo share/locale/en_GB/LC_MESSAGES/kcmkeys.mo share/locale/en_GB/LC_MESSAGES/kcmmouse.mo share/locale/en_GB/LC_MESSAGES/kcmqtquicksettings.mo share/locale/en_GB/LC_MESSAGES/kcmsmserver.mo share/locale/en_GB/LC_MESSAGES/kcmstyle.mo share/locale/en_GB/LC_MESSAGES/kfontinst.mo share/locale/en_GB/LC_MESSAGES/knetattach5.mo share/locale/en_GB/LC_MESSAGES/krdb.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_kwin.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/en_GB/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/en_GB/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/en_GB/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/en_GB/LC_MESSAGES/plasmaactivitymanager.mo share/locale/eo/LC_MESSAGES/attica_kde_plugin.mo share/locale/eo/LC_MESSAGES/kaccess.mo share/locale/eo/LC_MESSAGES/kcm5_componentchooser.mo share/locale/eo/LC_MESSAGES/kcm5_device_automounter.mo share/locale/eo/LC_MESSAGES/kcm5_emoticons.mo share/locale/eo/LC_MESSAGES/kcm5_icons.mo share/locale/eo/LC_MESSAGES/kcm5_joystick.mo share/locale/eo/LC_MESSAGES/kcm5_kded.mo share/locale/eo/LC_MESSAGES/kcm_autostart.mo share/locale/eo/LC_MESSAGES/kcm_colors.mo share/locale/eo/LC_MESSAGES/kcm_cursortheme.mo share/locale/eo/LC_MESSAGES/kcm_desktoppaths.mo share/locale/eo/LC_MESSAGES/kcm_desktoptheme.mo share/locale/eo/LC_MESSAGES/kcm_fonts.mo share/locale/eo/LC_MESSAGES/kcm_launchfeedback.mo share/locale/eo/LC_MESSAGES/kcm_solid_actions.mo share/locale/eo/LC_MESSAGES/kcm_standard_actions.mo share/locale/eo/LC_MESSAGES/kcmaccess.mo share/locale/eo/LC_MESSAGES/kcmformats.mo share/locale/eo/LC_MESSAGES/kcmkclock.mo share/locale/eo/LC_MESSAGES/kcmkeyboard.mo share/locale/eo/LC_MESSAGES/kcmkeys.mo share/locale/eo/LC_MESSAGES/kcmmouse.mo share/locale/eo/LC_MESSAGES/kcmsmserver.mo share/locale/eo/LC_MESSAGES/kcmstyle.mo share/locale/eo/LC_MESSAGES/kfontinst.mo share/locale/eo/LC_MESSAGES/knetattach5.mo share/locale/eo/LC_MESSAGES/krdb.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/eo/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/es/LC_MESSAGES/attica_kde_plugin.mo share/locale/es/LC_MESSAGES/kaccess.mo share/locale/es/LC_MESSAGES/kcm5_baloofile.mo share/locale/es/LC_MESSAGES/kcm5_componentchooser.mo share/locale/es/LC_MESSAGES/kcm5_device_automounter.mo share/locale/es/LC_MESSAGES/kcm5_emoticons.mo share/locale/es/LC_MESSAGES/kcm5_icons.mo share/locale/es/LC_MESSAGES/kcm5_joystick.mo share/locale/es/LC_MESSAGES/kcm5_kded.mo share/locale/es/LC_MESSAGES/kcm_activities5.mo share/locale/es/LC_MESSAGES/kcm_autostart.mo share/locale/es/LC_MESSAGES/kcm_colors.mo share/locale/es/LC_MESSAGES/kcm_cursortheme.mo share/locale/es/LC_MESSAGES/kcm_desktoppaths.mo share/locale/es/LC_MESSAGES/kcm_desktoptheme.mo share/locale/es/LC_MESSAGES/kcm_fonts.mo share/locale/es/LC_MESSAGES/kcm_launchfeedback.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_search.mo share/locale/es/LC_MESSAGES/kcm_solid_actions.mo share/locale/es/LC_MESSAGES/kcm_splashscreen.mo share/locale/es/LC_MESSAGES/kcm_standard_actions.mo share/locale/es/LC_MESSAGES/kcm_touchpad.mo share/locale/es/LC_MESSAGES/kcm_workspace.mo share/locale/es/LC_MESSAGES/kcmaccess.mo share/locale/es/LC_MESSAGES/kcmformats.mo share/locale/es/LC_MESSAGES/kcmkclock.mo share/locale/es/LC_MESSAGES/kcmkeyboard.mo share/locale/es/LC_MESSAGES/kcmkeys.mo share/locale/es/LC_MESSAGES/kcmmouse.mo share/locale/es/LC_MESSAGES/kcmqtquicksettings.mo share/locale/es/LC_MESSAGES/kcmsmserver.mo share/locale/es/LC_MESSAGES/kcmstyle.mo share/locale/es/LC_MESSAGES/kfontinst.mo share/locale/es/LC_MESSAGES/knetattach5.mo share/locale/es/LC_MESSAGES/krdb.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/es/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/es/LC_MESSAGES/plasma_runner_kwin.mo share/locale/es/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/es/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/es/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/es/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/es/LC_MESSAGES/plasmaactivitymanager.mo share/locale/et/LC_MESSAGES/attica_kde_plugin.mo share/locale/et/LC_MESSAGES/kaccess.mo share/locale/et/LC_MESSAGES/kcm5_baloofile.mo share/locale/et/LC_MESSAGES/kcm5_componentchooser.mo share/locale/et/LC_MESSAGES/kcm5_device_automounter.mo share/locale/et/LC_MESSAGES/kcm5_emoticons.mo share/locale/et/LC_MESSAGES/kcm5_icons.mo share/locale/et/LC_MESSAGES/kcm5_joystick.mo share/locale/et/LC_MESSAGES/kcm5_kded.mo share/locale/et/LC_MESSAGES/kcm_activities5.mo share/locale/et/LC_MESSAGES/kcm_autostart.mo share/locale/et/LC_MESSAGES/kcm_colors.mo share/locale/et/LC_MESSAGES/kcm_cursortheme.mo share/locale/et/LC_MESSAGES/kcm_desktoppaths.mo share/locale/et/LC_MESSAGES/kcm_desktoptheme.mo share/locale/et/LC_MESSAGES/kcm_fonts.mo share/locale/et/LC_MESSAGES/kcm_launchfeedback.mo share/locale/et/LC_MESSAGES/kcm_lookandfeel.mo share/locale/et/LC_MESSAGES/kcm_search.mo share/locale/et/LC_MESSAGES/kcm_solid_actions.mo share/locale/et/LC_MESSAGES/kcm_splashscreen.mo share/locale/et/LC_MESSAGES/kcm_standard_actions.mo share/locale/et/LC_MESSAGES/kcm_touchpad.mo share/locale/et/LC_MESSAGES/kcm_workspace.mo share/locale/et/LC_MESSAGES/kcmaccess.mo share/locale/et/LC_MESSAGES/kcmformats.mo share/locale/et/LC_MESSAGES/kcmkclock.mo share/locale/et/LC_MESSAGES/kcmkeyboard.mo share/locale/et/LC_MESSAGES/kcmkeys.mo share/locale/et/LC_MESSAGES/kcmmouse.mo share/locale/et/LC_MESSAGES/kcmsmserver.mo share/locale/et/LC_MESSAGES/kcmstyle.mo share/locale/et/LC_MESSAGES/kfontinst.mo share/locale/et/LC_MESSAGES/knetattach5.mo share/locale/et/LC_MESSAGES/krdb.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/et/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/et/LC_MESSAGES/plasma_runner_kwin.mo share/locale/et/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/et/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/et/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/et/LC_MESSAGES/plasmaactivitymanager.mo share/locale/eu/LC_MESSAGES/attica_kde_plugin.mo share/locale/eu/LC_MESSAGES/kaccess.mo share/locale/eu/LC_MESSAGES/kcm5_baloofile.mo share/locale/eu/LC_MESSAGES/kcm5_componentchooser.mo share/locale/eu/LC_MESSAGES/kcm5_device_automounter.mo share/locale/eu/LC_MESSAGES/kcm5_emoticons.mo share/locale/eu/LC_MESSAGES/kcm5_icons.mo share/locale/eu/LC_MESSAGES/kcm5_joystick.mo share/locale/eu/LC_MESSAGES/kcm5_kded.mo share/locale/eu/LC_MESSAGES/kcm_activities5.mo share/locale/eu/LC_MESSAGES/kcm_autostart.mo share/locale/eu/LC_MESSAGES/kcm_colors.mo share/locale/eu/LC_MESSAGES/kcm_cursortheme.mo share/locale/eu/LC_MESSAGES/kcm_desktoppaths.mo share/locale/eu/LC_MESSAGES/kcm_desktoptheme.mo share/locale/eu/LC_MESSAGES/kcm_fonts.mo share/locale/eu/LC_MESSAGES/kcm_launchfeedback.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_search.mo share/locale/eu/LC_MESSAGES/kcm_solid_actions.mo share/locale/eu/LC_MESSAGES/kcm_splashscreen.mo share/locale/eu/LC_MESSAGES/kcm_standard_actions.mo share/locale/eu/LC_MESSAGES/kcm_touchpad.mo share/locale/eu/LC_MESSAGES/kcm_workspace.mo share/locale/eu/LC_MESSAGES/kcmaccess.mo share/locale/eu/LC_MESSAGES/kcmformats.mo share/locale/eu/LC_MESSAGES/kcmkclock.mo share/locale/eu/LC_MESSAGES/kcmkeyboard.mo share/locale/eu/LC_MESSAGES/kcmkeys.mo share/locale/eu/LC_MESSAGES/kcmmouse.mo share/locale/eu/LC_MESSAGES/kcmqtquicksettings.mo share/locale/eu/LC_MESSAGES/kcmsmserver.mo share/locale/eu/LC_MESSAGES/kcmstyle.mo share/locale/eu/LC_MESSAGES/kfontinst.mo share/locale/eu/LC_MESSAGES/knetattach5.mo share/locale/eu/LC_MESSAGES/krdb.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/eu/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/eu/LC_MESSAGES/plasma_runner_kwin.mo share/locale/eu/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/eu/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/eu/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/eu/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/eu/LC_MESSAGES/plasmaactivitymanager.mo share/locale/fa/LC_MESSAGES/attica_kde_plugin.mo share/locale/fa/LC_MESSAGES/kaccess.mo share/locale/fa/LC_MESSAGES/kcm5_componentchooser.mo share/locale/fa/LC_MESSAGES/kcm5_device_automounter.mo share/locale/fa/LC_MESSAGES/kcm5_emoticons.mo share/locale/fa/LC_MESSAGES/kcm5_icons.mo share/locale/fa/LC_MESSAGES/kcm5_joystick.mo share/locale/fa/LC_MESSAGES/kcm5_kded.mo share/locale/fa/LC_MESSAGES/kcm_autostart.mo share/locale/fa/LC_MESSAGES/kcm_colors.mo share/locale/fa/LC_MESSAGES/kcm_cursortheme.mo share/locale/fa/LC_MESSAGES/kcm_desktoppaths.mo share/locale/fa/LC_MESSAGES/kcm_desktoptheme.mo share/locale/fa/LC_MESSAGES/kcm_fonts.mo share/locale/fa/LC_MESSAGES/kcm_launchfeedback.mo share/locale/fa/LC_MESSAGES/kcm_solid_actions.mo share/locale/fa/LC_MESSAGES/kcm_standard_actions.mo share/locale/fa/LC_MESSAGES/kcmaccess.mo share/locale/fa/LC_MESSAGES/kcmformats.mo share/locale/fa/LC_MESSAGES/kcmkclock.mo share/locale/fa/LC_MESSAGES/kcmkeyboard.mo share/locale/fa/LC_MESSAGES/kcmkeys.mo share/locale/fa/LC_MESSAGES/kcmmouse.mo share/locale/fa/LC_MESSAGES/kcmsmserver.mo share/locale/fa/LC_MESSAGES/kcmstyle.mo share/locale/fa/LC_MESSAGES/kfontinst.mo share/locale/fa/LC_MESSAGES/knetattach5.mo share/locale/fa/LC_MESSAGES/krdb.mo share/locale/fa/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/fa/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/fa/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/fa/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/fi/LC_MESSAGES/attica_kde_plugin.mo share/locale/fi/LC_MESSAGES/kaccess.mo share/locale/fi/LC_MESSAGES/kcm5_baloofile.mo share/locale/fi/LC_MESSAGES/kcm5_componentchooser.mo share/locale/fi/LC_MESSAGES/kcm5_device_automounter.mo share/locale/fi/LC_MESSAGES/kcm5_emoticons.mo share/locale/fi/LC_MESSAGES/kcm5_icons.mo share/locale/fi/LC_MESSAGES/kcm5_joystick.mo share/locale/fi/LC_MESSAGES/kcm5_kded.mo share/locale/fi/LC_MESSAGES/kcm_activities5.mo share/locale/fi/LC_MESSAGES/kcm_autostart.mo share/locale/fi/LC_MESSAGES/kcm_colors.mo share/locale/fi/LC_MESSAGES/kcm_cursortheme.mo share/locale/fi/LC_MESSAGES/kcm_desktoppaths.mo share/locale/fi/LC_MESSAGES/kcm_desktoptheme.mo share/locale/fi/LC_MESSAGES/kcm_fonts.mo share/locale/fi/LC_MESSAGES/kcm_launchfeedback.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_search.mo share/locale/fi/LC_MESSAGES/kcm_solid_actions.mo share/locale/fi/LC_MESSAGES/kcm_splashscreen.mo share/locale/fi/LC_MESSAGES/kcm_standard_actions.mo share/locale/fi/LC_MESSAGES/kcm_touchpad.mo share/locale/fi/LC_MESSAGES/kcm_workspace.mo share/locale/fi/LC_MESSAGES/kcmaccess.mo share/locale/fi/LC_MESSAGES/kcmformats.mo share/locale/fi/LC_MESSAGES/kcmkclock.mo share/locale/fi/LC_MESSAGES/kcmkeyboard.mo share/locale/fi/LC_MESSAGES/kcmkeys.mo share/locale/fi/LC_MESSAGES/kcmmouse.mo share/locale/fi/LC_MESSAGES/kcmqtquicksettings.mo share/locale/fi/LC_MESSAGES/kcmsmserver.mo share/locale/fi/LC_MESSAGES/kcmstyle.mo share/locale/fi/LC_MESSAGES/kfontinst.mo share/locale/fi/LC_MESSAGES/knetattach5.mo share/locale/fi/LC_MESSAGES/krdb.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/fi/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/fi/LC_MESSAGES/plasma_runner_kwin.mo share/locale/fi/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/fi/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/fi/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/fi/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/fi/LC_MESSAGES/plasmaactivitymanager.mo share/locale/fr/LC_MESSAGES/attica_kde_plugin.mo share/locale/fr/LC_MESSAGES/kaccess.mo share/locale/fr/LC_MESSAGES/kcm5_baloofile.mo share/locale/fr/LC_MESSAGES/kcm5_componentchooser.mo share/locale/fr/LC_MESSAGES/kcm5_device_automounter.mo share/locale/fr/LC_MESSAGES/kcm5_emoticons.mo share/locale/fr/LC_MESSAGES/kcm5_icons.mo share/locale/fr/LC_MESSAGES/kcm5_joystick.mo share/locale/fr/LC_MESSAGES/kcm5_kded.mo share/locale/fr/LC_MESSAGES/kcm_activities5.mo share/locale/fr/LC_MESSAGES/kcm_autostart.mo share/locale/fr/LC_MESSAGES/kcm_colors.mo share/locale/fr/LC_MESSAGES/kcm_cursortheme.mo share/locale/fr/LC_MESSAGES/kcm_desktoppaths.mo share/locale/fr/LC_MESSAGES/kcm_desktoptheme.mo share/locale/fr/LC_MESSAGES/kcm_fonts.mo share/locale/fr/LC_MESSAGES/kcm_launchfeedback.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_search.mo share/locale/fr/LC_MESSAGES/kcm_solid_actions.mo share/locale/fr/LC_MESSAGES/kcm_splashscreen.mo share/locale/fr/LC_MESSAGES/kcm_standard_actions.mo share/locale/fr/LC_MESSAGES/kcm_touchpad.mo share/locale/fr/LC_MESSAGES/kcm_workspace.mo share/locale/fr/LC_MESSAGES/kcmaccess.mo share/locale/fr/LC_MESSAGES/kcmformats.mo share/locale/fr/LC_MESSAGES/kcmkclock.mo share/locale/fr/LC_MESSAGES/kcmkeyboard.mo share/locale/fr/LC_MESSAGES/kcmkeys.mo share/locale/fr/LC_MESSAGES/kcmmouse.mo share/locale/fr/LC_MESSAGES/kcmqtquicksettings.mo share/locale/fr/LC_MESSAGES/kcmsmserver.mo share/locale/fr/LC_MESSAGES/kcmstyle.mo share/locale/fr/LC_MESSAGES/kfontinst.mo share/locale/fr/LC_MESSAGES/knetattach5.mo share/locale/fr/LC_MESSAGES/krdb.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/fr/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/fr/LC_MESSAGES/plasma_runner_kwin.mo share/locale/fr/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/fr/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/fr/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/fr/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/fr/LC_MESSAGES/plasmaactivitymanager.mo share/locale/fy/LC_MESSAGES/attica_kde_plugin.mo share/locale/fy/LC_MESSAGES/kaccess.mo share/locale/fy/LC_MESSAGES/kcm5_componentchooser.mo share/locale/fy/LC_MESSAGES/kcm5_emoticons.mo share/locale/fy/LC_MESSAGES/kcm5_icons.mo share/locale/fy/LC_MESSAGES/kcm5_joystick.mo share/locale/fy/LC_MESSAGES/kcm5_kded.mo share/locale/fy/LC_MESSAGES/kcm_autostart.mo share/locale/fy/LC_MESSAGES/kcm_colors.mo share/locale/fy/LC_MESSAGES/kcm_cursortheme.mo share/locale/fy/LC_MESSAGES/kcm_desktoppaths.mo share/locale/fy/LC_MESSAGES/kcm_desktoptheme.mo share/locale/fy/LC_MESSAGES/kcm_fonts.mo share/locale/fy/LC_MESSAGES/kcm_launchfeedback.mo share/locale/fy/LC_MESSAGES/kcm_solid_actions.mo share/locale/fy/LC_MESSAGES/kcm_standard_actions.mo share/locale/fy/LC_MESSAGES/kcmaccess.mo share/locale/fy/LC_MESSAGES/kcmformats.mo share/locale/fy/LC_MESSAGES/kcmkclock.mo share/locale/fy/LC_MESSAGES/kcmkeyboard.mo share/locale/fy/LC_MESSAGES/kcmkeys.mo share/locale/fy/LC_MESSAGES/kcmmouse.mo share/locale/fy/LC_MESSAGES/kcmsmserver.mo share/locale/fy/LC_MESSAGES/kcmstyle.mo share/locale/fy/LC_MESSAGES/kfontinst.mo share/locale/fy/LC_MESSAGES/knetattach5.mo share/locale/fy/LC_MESSAGES/krdb.mo share/locale/fy/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/fy/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/fy/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/fy/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ga/LC_MESSAGES/attica_kde_plugin.mo share/locale/ga/LC_MESSAGES/kaccess.mo share/locale/ga/LC_MESSAGES/kcm5_componentchooser.mo share/locale/ga/LC_MESSAGES/kcm5_device_automounter.mo share/locale/ga/LC_MESSAGES/kcm5_emoticons.mo share/locale/ga/LC_MESSAGES/kcm5_icons.mo share/locale/ga/LC_MESSAGES/kcm5_joystick.mo share/locale/ga/LC_MESSAGES/kcm5_kded.mo share/locale/ga/LC_MESSAGES/kcm_autostart.mo share/locale/ga/LC_MESSAGES/kcm_colors.mo share/locale/ga/LC_MESSAGES/kcm_cursortheme.mo share/locale/ga/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ga/LC_MESSAGES/kcm_desktoptheme.mo share/locale/ga/LC_MESSAGES/kcm_fonts.mo share/locale/ga/LC_MESSAGES/kcm_launchfeedback.mo share/locale/ga/LC_MESSAGES/kcm_solid_actions.mo share/locale/ga/LC_MESSAGES/kcm_standard_actions.mo share/locale/ga/LC_MESSAGES/kcmaccess.mo share/locale/ga/LC_MESSAGES/kcmformats.mo share/locale/ga/LC_MESSAGES/kcmkclock.mo share/locale/ga/LC_MESSAGES/kcmkeyboard.mo share/locale/ga/LC_MESSAGES/kcmkeys.mo share/locale/ga/LC_MESSAGES/kcmmouse.mo share/locale/ga/LC_MESSAGES/kcmsmserver.mo share/locale/ga/LC_MESSAGES/kcmstyle.mo share/locale/ga/LC_MESSAGES/kfontinst.mo share/locale/ga/LC_MESSAGES/knetattach5.mo share/locale/ga/LC_MESSAGES/krdb.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/ga/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/gl/LC_MESSAGES/attica_kde_plugin.mo share/locale/gl/LC_MESSAGES/kaccess.mo share/locale/gl/LC_MESSAGES/kcm5_baloofile.mo share/locale/gl/LC_MESSAGES/kcm5_componentchooser.mo share/locale/gl/LC_MESSAGES/kcm5_device_automounter.mo share/locale/gl/LC_MESSAGES/kcm5_emoticons.mo share/locale/gl/LC_MESSAGES/kcm5_icons.mo share/locale/gl/LC_MESSAGES/kcm5_joystick.mo share/locale/gl/LC_MESSAGES/kcm5_kded.mo share/locale/gl/LC_MESSAGES/kcm_activities5.mo share/locale/gl/LC_MESSAGES/kcm_autostart.mo share/locale/gl/LC_MESSAGES/kcm_colors.mo share/locale/gl/LC_MESSAGES/kcm_cursortheme.mo share/locale/gl/LC_MESSAGES/kcm_desktoppaths.mo share/locale/gl/LC_MESSAGES/kcm_desktoptheme.mo share/locale/gl/LC_MESSAGES/kcm_fonts.mo share/locale/gl/LC_MESSAGES/kcm_launchfeedback.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_search.mo share/locale/gl/LC_MESSAGES/kcm_solid_actions.mo share/locale/gl/LC_MESSAGES/kcm_splashscreen.mo share/locale/gl/LC_MESSAGES/kcm_standard_actions.mo share/locale/gl/LC_MESSAGES/kcm_touchpad.mo share/locale/gl/LC_MESSAGES/kcm_workspace.mo share/locale/gl/LC_MESSAGES/kcmaccess.mo share/locale/gl/LC_MESSAGES/kcmformats.mo share/locale/gl/LC_MESSAGES/kcmkclock.mo share/locale/gl/LC_MESSAGES/kcmkeyboard.mo share/locale/gl/LC_MESSAGES/kcmkeys.mo share/locale/gl/LC_MESSAGES/kcmmouse.mo share/locale/gl/LC_MESSAGES/kcmqtquicksettings.mo share/locale/gl/LC_MESSAGES/kcmsmserver.mo share/locale/gl/LC_MESSAGES/kcmstyle.mo share/locale/gl/LC_MESSAGES/kfontinst.mo share/locale/gl/LC_MESSAGES/knetattach5.mo share/locale/gl/LC_MESSAGES/krdb.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/gl/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/gl/LC_MESSAGES/plasma_runner_kwin.mo share/locale/gl/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/gl/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/gl/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/gl/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/gl/LC_MESSAGES/plasmaactivitymanager.mo share/locale/gu/LC_MESSAGES/attica_kde_plugin.mo share/locale/gu/LC_MESSAGES/kaccess.mo share/locale/gu/LC_MESSAGES/kcm5_componentchooser.mo share/locale/gu/LC_MESSAGES/kcm5_device_automounter.mo share/locale/gu/LC_MESSAGES/kcm5_emoticons.mo share/locale/gu/LC_MESSAGES/kcm5_icons.mo share/locale/gu/LC_MESSAGES/kcm5_joystick.mo share/locale/gu/LC_MESSAGES/kcm5_kded.mo share/locale/gu/LC_MESSAGES/kcm_autostart.mo share/locale/gu/LC_MESSAGES/kcm_colors.mo share/locale/gu/LC_MESSAGES/kcm_cursortheme.mo share/locale/gu/LC_MESSAGES/kcm_desktoppaths.mo share/locale/gu/LC_MESSAGES/kcm_desktoptheme.mo share/locale/gu/LC_MESSAGES/kcm_fonts.mo share/locale/gu/LC_MESSAGES/kcm_launchfeedback.mo share/locale/gu/LC_MESSAGES/kcm_solid_actions.mo share/locale/gu/LC_MESSAGES/kcm_standard_actions.mo share/locale/gu/LC_MESSAGES/kcmaccess.mo share/locale/gu/LC_MESSAGES/kcmformats.mo share/locale/gu/LC_MESSAGES/kcmkclock.mo share/locale/gu/LC_MESSAGES/kcmkeyboard.mo share/locale/gu/LC_MESSAGES/kcmkeys.mo share/locale/gu/LC_MESSAGES/kcmmouse.mo share/locale/gu/LC_MESSAGES/kcmsmserver.mo share/locale/gu/LC_MESSAGES/kcmstyle.mo share/locale/gu/LC_MESSAGES/kfontinst.mo share/locale/gu/LC_MESSAGES/knetattach5.mo share/locale/gu/LC_MESSAGES/krdb.mo share/locale/gu/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/gu/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/gu/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/gu/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/gu/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/gu/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/he/LC_MESSAGES/attica_kde_plugin.mo share/locale/he/LC_MESSAGES/kaccess.mo share/locale/he/LC_MESSAGES/kcm5_baloofile.mo share/locale/he/LC_MESSAGES/kcm5_componentchooser.mo share/locale/he/LC_MESSAGES/kcm5_device_automounter.mo share/locale/he/LC_MESSAGES/kcm5_emoticons.mo share/locale/he/LC_MESSAGES/kcm5_icons.mo share/locale/he/LC_MESSAGES/kcm5_joystick.mo share/locale/he/LC_MESSAGES/kcm5_kded.mo share/locale/he/LC_MESSAGES/kcm_activities5.mo share/locale/he/LC_MESSAGES/kcm_autostart.mo share/locale/he/LC_MESSAGES/kcm_colors.mo share/locale/he/LC_MESSAGES/kcm_cursortheme.mo share/locale/he/LC_MESSAGES/kcm_desktoppaths.mo share/locale/he/LC_MESSAGES/kcm_desktoptheme.mo share/locale/he/LC_MESSAGES/kcm_fonts.mo share/locale/he/LC_MESSAGES/kcm_launchfeedback.mo share/locale/he/LC_MESSAGES/kcm_lookandfeel.mo share/locale/he/LC_MESSAGES/kcm_search.mo share/locale/he/LC_MESSAGES/kcm_solid_actions.mo share/locale/he/LC_MESSAGES/kcm_splashscreen.mo share/locale/he/LC_MESSAGES/kcm_standard_actions.mo share/locale/he/LC_MESSAGES/kcm_touchpad.mo share/locale/he/LC_MESSAGES/kcm_workspace.mo share/locale/he/LC_MESSAGES/kcmaccess.mo share/locale/he/LC_MESSAGES/kcmformats.mo share/locale/he/LC_MESSAGES/kcmkclock.mo share/locale/he/LC_MESSAGES/kcmkeyboard.mo share/locale/he/LC_MESSAGES/kcmkeys.mo share/locale/he/LC_MESSAGES/kcmmouse.mo share/locale/he/LC_MESSAGES/kcmsmserver.mo share/locale/he/LC_MESSAGES/kcmstyle.mo share/locale/he/LC_MESSAGES/kfontinst.mo share/locale/he/LC_MESSAGES/knetattach5.mo share/locale/he/LC_MESSAGES/krdb.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/he/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/he/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/he/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/he/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/he/LC_MESSAGES/plasmaactivitymanager.mo share/locale/hi/LC_MESSAGES/attica_kde_plugin.mo share/locale/hi/LC_MESSAGES/kaccess.mo share/locale/hi/LC_MESSAGES/kcm5_componentchooser.mo share/locale/hi/LC_MESSAGES/kcm5_device_automounter.mo share/locale/hi/LC_MESSAGES/kcm5_emoticons.mo share/locale/hi/LC_MESSAGES/kcm5_icons.mo share/locale/hi/LC_MESSAGES/kcm5_joystick.mo share/locale/hi/LC_MESSAGES/kcm5_kded.mo share/locale/hi/LC_MESSAGES/kcm_autostart.mo share/locale/hi/LC_MESSAGES/kcm_colors.mo share/locale/hi/LC_MESSAGES/kcm_cursortheme.mo share/locale/hi/LC_MESSAGES/kcm_desktoppaths.mo share/locale/hi/LC_MESSAGES/kcm_desktoptheme.mo share/locale/hi/LC_MESSAGES/kcm_fonts.mo share/locale/hi/LC_MESSAGES/kcm_launchfeedback.mo share/locale/hi/LC_MESSAGES/kcm_solid_actions.mo share/locale/hi/LC_MESSAGES/kcmaccess.mo share/locale/hi/LC_MESSAGES/kcmformats.mo share/locale/hi/LC_MESSAGES/kcmkclock.mo share/locale/hi/LC_MESSAGES/kcmkeyboard.mo share/locale/hi/LC_MESSAGES/kcmkeys.mo share/locale/hi/LC_MESSAGES/kcmmouse.mo share/locale/hi/LC_MESSAGES/kcmsmserver.mo share/locale/hi/LC_MESSAGES/kcmstyle.mo share/locale/hi/LC_MESSAGES/kfontinst.mo share/locale/hi/LC_MESSAGES/knetattach5.mo share/locale/hi/LC_MESSAGES/krdb.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/hi/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/hne/LC_MESSAGES/kaccess.mo share/locale/hne/LC_MESSAGES/kcm5_componentchooser.mo share/locale/hne/LC_MESSAGES/kcm5_emoticons.mo share/locale/hne/LC_MESSAGES/kcm5_icons.mo share/locale/hne/LC_MESSAGES/kcm5_joystick.mo share/locale/hne/LC_MESSAGES/kcm5_kded.mo share/locale/hne/LC_MESSAGES/kcm_autostart.mo share/locale/hne/LC_MESSAGES/kcm_colors.mo share/locale/hne/LC_MESSAGES/kcm_cursortheme.mo share/locale/hne/LC_MESSAGES/kcm_desktoppaths.mo share/locale/hne/LC_MESSAGES/kcm_fonts.mo share/locale/hne/LC_MESSAGES/kcm_launchfeedback.mo share/locale/hne/LC_MESSAGES/kcmaccess.mo share/locale/hne/LC_MESSAGES/kcmformats.mo share/locale/hne/LC_MESSAGES/kcmkclock.mo share/locale/hne/LC_MESSAGES/kcmkeyboard.mo share/locale/hne/LC_MESSAGES/kcmkeys.mo share/locale/hne/LC_MESSAGES/kcmmouse.mo share/locale/hne/LC_MESSAGES/kcmsmserver.mo share/locale/hne/LC_MESSAGES/kcmstyle.mo share/locale/hne/LC_MESSAGES/kfontinst.mo share/locale/hne/LC_MESSAGES/knetattach5.mo share/locale/hne/LC_MESSAGES/krdb.mo share/locale/hne/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/hne/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/hne/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/hne/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/hr/LC_MESSAGES/attica_kde_plugin.mo share/locale/hr/LC_MESSAGES/kaccess.mo share/locale/hr/LC_MESSAGES/kcm5_componentchooser.mo share/locale/hr/LC_MESSAGES/kcm5_device_automounter.mo share/locale/hr/LC_MESSAGES/kcm5_emoticons.mo share/locale/hr/LC_MESSAGES/kcm5_icons.mo share/locale/hr/LC_MESSAGES/kcm5_joystick.mo share/locale/hr/LC_MESSAGES/kcm5_kded.mo share/locale/hr/LC_MESSAGES/kcm_autostart.mo share/locale/hr/LC_MESSAGES/kcm_colors.mo share/locale/hr/LC_MESSAGES/kcm_cursortheme.mo share/locale/hr/LC_MESSAGES/kcm_desktoppaths.mo share/locale/hr/LC_MESSAGES/kcm_desktoptheme.mo share/locale/hr/LC_MESSAGES/kcm_fonts.mo share/locale/hr/LC_MESSAGES/kcm_launchfeedback.mo share/locale/hr/LC_MESSAGES/kcm_solid_actions.mo share/locale/hr/LC_MESSAGES/kcm_standard_actions.mo share/locale/hr/LC_MESSAGES/kcmaccess.mo share/locale/hr/LC_MESSAGES/kcmformats.mo share/locale/hr/LC_MESSAGES/kcmkclock.mo share/locale/hr/LC_MESSAGES/kcmkeyboard.mo share/locale/hr/LC_MESSAGES/kcmkeys.mo share/locale/hr/LC_MESSAGES/kcmmouse.mo share/locale/hr/LC_MESSAGES/kcmsmserver.mo share/locale/hr/LC_MESSAGES/kcmstyle.mo share/locale/hr/LC_MESSAGES/kfontinst.mo share/locale/hr/LC_MESSAGES/knetattach5.mo share/locale/hr/LC_MESSAGES/krdb.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/hr/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/hsb/LC_MESSAGES/kaccess.mo share/locale/hsb/LC_MESSAGES/kcm5_componentchooser.mo share/locale/hsb/LC_MESSAGES/kcm5_emoticons.mo share/locale/hsb/LC_MESSAGES/kcm5_icons.mo share/locale/hsb/LC_MESSAGES/kcm5_joystick.mo share/locale/hsb/LC_MESSAGES/kcm5_kded.mo share/locale/hsb/LC_MESSAGES/kcm_autostart.mo share/locale/hsb/LC_MESSAGES/kcm_colors.mo share/locale/hsb/LC_MESSAGES/kcm_cursortheme.mo share/locale/hsb/LC_MESSAGES/kcm_desktoppaths.mo share/locale/hsb/LC_MESSAGES/kcm_desktoptheme.mo share/locale/hsb/LC_MESSAGES/kcm_fonts.mo share/locale/hsb/LC_MESSAGES/kcm_launchfeedback.mo share/locale/hsb/LC_MESSAGES/kcm_standard_actions.mo share/locale/hsb/LC_MESSAGES/kcmaccess.mo share/locale/hsb/LC_MESSAGES/kcmformats.mo share/locale/hsb/LC_MESSAGES/kcmkclock.mo share/locale/hsb/LC_MESSAGES/kcmkeyboard.mo share/locale/hsb/LC_MESSAGES/kcmkeys.mo share/locale/hsb/LC_MESSAGES/kcmmouse.mo share/locale/hsb/LC_MESSAGES/kcmsmserver.mo share/locale/hsb/LC_MESSAGES/kcmstyle.mo share/locale/hsb/LC_MESSAGES/kfontinst.mo share/locale/hsb/LC_MESSAGES/knetattach5.mo share/locale/hsb/LC_MESSAGES/krdb.mo share/locale/hsb/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/hsb/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/hsb/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/hsb/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/hu/LC_MESSAGES/attica_kde_plugin.mo share/locale/hu/LC_MESSAGES/kaccess.mo share/locale/hu/LC_MESSAGES/kcm5_baloofile.mo share/locale/hu/LC_MESSAGES/kcm5_componentchooser.mo share/locale/hu/LC_MESSAGES/kcm5_device_automounter.mo share/locale/hu/LC_MESSAGES/kcm5_emoticons.mo share/locale/hu/LC_MESSAGES/kcm5_icons.mo share/locale/hu/LC_MESSAGES/kcm5_joystick.mo share/locale/hu/LC_MESSAGES/kcm5_kded.mo share/locale/hu/LC_MESSAGES/kcm_activities5.mo share/locale/hu/LC_MESSAGES/kcm_autostart.mo share/locale/hu/LC_MESSAGES/kcm_colors.mo share/locale/hu/LC_MESSAGES/kcm_cursortheme.mo share/locale/hu/LC_MESSAGES/kcm_desktoppaths.mo share/locale/hu/LC_MESSAGES/kcm_desktoptheme.mo share/locale/hu/LC_MESSAGES/kcm_fonts.mo share/locale/hu/LC_MESSAGES/kcm_launchfeedback.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_search.mo share/locale/hu/LC_MESSAGES/kcm_solid_actions.mo share/locale/hu/LC_MESSAGES/kcm_splashscreen.mo share/locale/hu/LC_MESSAGES/kcm_standard_actions.mo share/locale/hu/LC_MESSAGES/kcm_touchpad.mo share/locale/hu/LC_MESSAGES/kcm_workspace.mo share/locale/hu/LC_MESSAGES/kcmaccess.mo share/locale/hu/LC_MESSAGES/kcmformats.mo share/locale/hu/LC_MESSAGES/kcmkclock.mo share/locale/hu/LC_MESSAGES/kcmkeyboard.mo share/locale/hu/LC_MESSAGES/kcmkeys.mo share/locale/hu/LC_MESSAGES/kcmmouse.mo +share/locale/hu/LC_MESSAGES/kcmqtquicksettings.mo share/locale/hu/LC_MESSAGES/kcmsmserver.mo share/locale/hu/LC_MESSAGES/kcmstyle.mo share/locale/hu/LC_MESSAGES/kfontinst.mo share/locale/hu/LC_MESSAGES/knetattach5.mo share/locale/hu/LC_MESSAGES/krdb.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/hu/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/hu/LC_MESSAGES/plasma_runner_kwin.mo share/locale/hu/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/hu/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/hu/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/hu/LC_MESSAGES/plasmaactivitymanager.mo share/locale/hy/LC_MESSAGES/kfontinst.mo share/locale/ia/LC_MESSAGES/attica_kde_plugin.mo share/locale/ia/LC_MESSAGES/kaccess.mo share/locale/ia/LC_MESSAGES/kcm5_baloofile.mo share/locale/ia/LC_MESSAGES/kcm5_componentchooser.mo share/locale/ia/LC_MESSAGES/kcm5_device_automounter.mo share/locale/ia/LC_MESSAGES/kcm5_emoticons.mo share/locale/ia/LC_MESSAGES/kcm5_icons.mo share/locale/ia/LC_MESSAGES/kcm5_joystick.mo share/locale/ia/LC_MESSAGES/kcm5_kded.mo share/locale/ia/LC_MESSAGES/kcm_activities5.mo share/locale/ia/LC_MESSAGES/kcm_autostart.mo share/locale/ia/LC_MESSAGES/kcm_colors.mo share/locale/ia/LC_MESSAGES/kcm_cursortheme.mo share/locale/ia/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ia/LC_MESSAGES/kcm_desktoptheme.mo share/locale/ia/LC_MESSAGES/kcm_fonts.mo share/locale/ia/LC_MESSAGES/kcm_launchfeedback.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_search.mo share/locale/ia/LC_MESSAGES/kcm_solid_actions.mo share/locale/ia/LC_MESSAGES/kcm_splashscreen.mo share/locale/ia/LC_MESSAGES/kcm_standard_actions.mo share/locale/ia/LC_MESSAGES/kcm_touchpad.mo share/locale/ia/LC_MESSAGES/kcm_workspace.mo share/locale/ia/LC_MESSAGES/kcmaccess.mo share/locale/ia/LC_MESSAGES/kcmformats.mo share/locale/ia/LC_MESSAGES/kcmkclock.mo share/locale/ia/LC_MESSAGES/kcmkeyboard.mo share/locale/ia/LC_MESSAGES/kcmkeys.mo share/locale/ia/LC_MESSAGES/kcmmouse.mo share/locale/ia/LC_MESSAGES/kcmsmserver.mo share/locale/ia/LC_MESSAGES/kcmstyle.mo share/locale/ia/LC_MESSAGES/kfontinst.mo share/locale/ia/LC_MESSAGES/knetattach5.mo share/locale/ia/LC_MESSAGES/krdb.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/ia/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/ia/LC_MESSAGES/plasma_runner_kwin.mo share/locale/ia/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/ia/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/ia/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/ia/LC_MESSAGES/plasmaactivitymanager.mo share/locale/id/LC_MESSAGES/attica_kde_plugin.mo share/locale/id/LC_MESSAGES/kaccess.mo share/locale/id/LC_MESSAGES/kcm5_baloofile.mo share/locale/id/LC_MESSAGES/kcm5_componentchooser.mo share/locale/id/LC_MESSAGES/kcm5_device_automounter.mo share/locale/id/LC_MESSAGES/kcm5_emoticons.mo share/locale/id/LC_MESSAGES/kcm5_icons.mo share/locale/id/LC_MESSAGES/kcm5_joystick.mo share/locale/id/LC_MESSAGES/kcm5_kded.mo share/locale/id/LC_MESSAGES/kcm_activities5.mo share/locale/id/LC_MESSAGES/kcm_autostart.mo share/locale/id/LC_MESSAGES/kcm_colors.mo share/locale/id/LC_MESSAGES/kcm_cursortheme.mo share/locale/id/LC_MESSAGES/kcm_desktoppaths.mo share/locale/id/LC_MESSAGES/kcm_desktoptheme.mo share/locale/id/LC_MESSAGES/kcm_fonts.mo share/locale/id/LC_MESSAGES/kcm_launchfeedback.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_search.mo share/locale/id/LC_MESSAGES/kcm_solid_actions.mo share/locale/id/LC_MESSAGES/kcm_splashscreen.mo share/locale/id/LC_MESSAGES/kcm_standard_actions.mo share/locale/id/LC_MESSAGES/kcm_touchpad.mo share/locale/id/LC_MESSAGES/kcm_workspace.mo share/locale/id/LC_MESSAGES/kcmaccess.mo share/locale/id/LC_MESSAGES/kcmformats.mo share/locale/id/LC_MESSAGES/kcmkclock.mo share/locale/id/LC_MESSAGES/kcmkeyboard.mo share/locale/id/LC_MESSAGES/kcmkeys.mo share/locale/id/LC_MESSAGES/kcmmouse.mo share/locale/id/LC_MESSAGES/kcmqtquicksettings.mo share/locale/id/LC_MESSAGES/kcmsmserver.mo share/locale/id/LC_MESSAGES/kcmstyle.mo share/locale/id/LC_MESSAGES/kfontinst.mo share/locale/id/LC_MESSAGES/knetattach5.mo share/locale/id/LC_MESSAGES/krdb.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/id/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/id/LC_MESSAGES/plasma_runner_kwin.mo share/locale/id/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/id/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/id/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/id/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/id/LC_MESSAGES/plasmaactivitymanager.mo share/locale/is/LC_MESSAGES/attica_kde_plugin.mo share/locale/is/LC_MESSAGES/kaccess.mo share/locale/is/LC_MESSAGES/kcm5_componentchooser.mo share/locale/is/LC_MESSAGES/kcm5_device_automounter.mo share/locale/is/LC_MESSAGES/kcm5_emoticons.mo share/locale/is/LC_MESSAGES/kcm5_icons.mo share/locale/is/LC_MESSAGES/kcm5_joystick.mo share/locale/is/LC_MESSAGES/kcm5_kded.mo share/locale/is/LC_MESSAGES/kcm_autostart.mo share/locale/is/LC_MESSAGES/kcm_colors.mo share/locale/is/LC_MESSAGES/kcm_cursortheme.mo share/locale/is/LC_MESSAGES/kcm_desktoppaths.mo share/locale/is/LC_MESSAGES/kcm_desktoptheme.mo share/locale/is/LC_MESSAGES/kcm_fonts.mo share/locale/is/LC_MESSAGES/kcm_launchfeedback.mo share/locale/is/LC_MESSAGES/kcm_solid_actions.mo share/locale/is/LC_MESSAGES/kcm_standard_actions.mo share/locale/is/LC_MESSAGES/kcmaccess.mo share/locale/is/LC_MESSAGES/kcmformats.mo share/locale/is/LC_MESSAGES/kcmkclock.mo share/locale/is/LC_MESSAGES/kcmkeyboard.mo share/locale/is/LC_MESSAGES/kcmkeys.mo share/locale/is/LC_MESSAGES/kcmmouse.mo share/locale/is/LC_MESSAGES/kcmsmserver.mo share/locale/is/LC_MESSAGES/kcmstyle.mo share/locale/is/LC_MESSAGES/kfontinst.mo share/locale/is/LC_MESSAGES/knetattach5.mo share/locale/is/LC_MESSAGES/krdb.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/is/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/it/LC_MESSAGES/attica_kde_plugin.mo share/locale/it/LC_MESSAGES/kaccess.mo share/locale/it/LC_MESSAGES/kcm5_baloofile.mo share/locale/it/LC_MESSAGES/kcm5_componentchooser.mo share/locale/it/LC_MESSAGES/kcm5_device_automounter.mo share/locale/it/LC_MESSAGES/kcm5_emoticons.mo share/locale/it/LC_MESSAGES/kcm5_icons.mo share/locale/it/LC_MESSAGES/kcm5_joystick.mo share/locale/it/LC_MESSAGES/kcm5_kded.mo share/locale/it/LC_MESSAGES/kcm_activities5.mo share/locale/it/LC_MESSAGES/kcm_autostart.mo share/locale/it/LC_MESSAGES/kcm_colors.mo share/locale/it/LC_MESSAGES/kcm_cursortheme.mo share/locale/it/LC_MESSAGES/kcm_desktoppaths.mo share/locale/it/LC_MESSAGES/kcm_desktoptheme.mo share/locale/it/LC_MESSAGES/kcm_fonts.mo share/locale/it/LC_MESSAGES/kcm_launchfeedback.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_search.mo share/locale/it/LC_MESSAGES/kcm_solid_actions.mo share/locale/it/LC_MESSAGES/kcm_splashscreen.mo share/locale/it/LC_MESSAGES/kcm_standard_actions.mo share/locale/it/LC_MESSAGES/kcm_touchpad.mo share/locale/it/LC_MESSAGES/kcm_workspace.mo share/locale/it/LC_MESSAGES/kcmaccess.mo share/locale/it/LC_MESSAGES/kcmformats.mo share/locale/it/LC_MESSAGES/kcmkclock.mo share/locale/it/LC_MESSAGES/kcmkeyboard.mo share/locale/it/LC_MESSAGES/kcmkeys.mo share/locale/it/LC_MESSAGES/kcmmouse.mo share/locale/it/LC_MESSAGES/kcmqtquicksettings.mo share/locale/it/LC_MESSAGES/kcmsmserver.mo share/locale/it/LC_MESSAGES/kcmstyle.mo share/locale/it/LC_MESSAGES/kfontinst.mo share/locale/it/LC_MESSAGES/knetattach5.mo share/locale/it/LC_MESSAGES/krdb.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/it/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/it/LC_MESSAGES/plasma_runner_kwin.mo share/locale/it/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/it/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/it/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/it/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/it/LC_MESSAGES/plasmaactivitymanager.mo share/locale/ja/LC_MESSAGES/attica_kde_plugin.mo share/locale/ja/LC_MESSAGES/kaccess.mo share/locale/ja/LC_MESSAGES/kcm5_baloofile.mo share/locale/ja/LC_MESSAGES/kcm5_componentchooser.mo share/locale/ja/LC_MESSAGES/kcm5_device_automounter.mo share/locale/ja/LC_MESSAGES/kcm5_emoticons.mo share/locale/ja/LC_MESSAGES/kcm5_icons.mo share/locale/ja/LC_MESSAGES/kcm5_joystick.mo share/locale/ja/LC_MESSAGES/kcm5_kded.mo share/locale/ja/LC_MESSAGES/kcm_activities5.mo share/locale/ja/LC_MESSAGES/kcm_autostart.mo share/locale/ja/LC_MESSAGES/kcm_colors.mo share/locale/ja/LC_MESSAGES/kcm_cursortheme.mo share/locale/ja/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ja/LC_MESSAGES/kcm_desktoptheme.mo share/locale/ja/LC_MESSAGES/kcm_fonts.mo share/locale/ja/LC_MESSAGES/kcm_launchfeedback.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_search.mo share/locale/ja/LC_MESSAGES/kcm_solid_actions.mo share/locale/ja/LC_MESSAGES/kcm_splashscreen.mo share/locale/ja/LC_MESSAGES/kcm_standard_actions.mo share/locale/ja/LC_MESSAGES/kcm_touchpad.mo share/locale/ja/LC_MESSAGES/kcm_workspace.mo share/locale/ja/LC_MESSAGES/kcmaccess.mo share/locale/ja/LC_MESSAGES/kcmformats.mo share/locale/ja/LC_MESSAGES/kcmkclock.mo share/locale/ja/LC_MESSAGES/kcmkeyboard.mo share/locale/ja/LC_MESSAGES/kcmkeys.mo share/locale/ja/LC_MESSAGES/kcmmouse.mo share/locale/ja/LC_MESSAGES/kcmqtquicksettings.mo share/locale/ja/LC_MESSAGES/kcmsmserver.mo share/locale/ja/LC_MESSAGES/kcmstyle.mo share/locale/ja/LC_MESSAGES/kfontinst.mo share/locale/ja/LC_MESSAGES/knetattach5.mo share/locale/ja/LC_MESSAGES/krdb.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/ja/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/ja/LC_MESSAGES/plasma_runner_kwin.mo share/locale/ja/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/ja/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/ja/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/ja/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/ja/LC_MESSAGES/plasmaactivitymanager.mo share/locale/kk/LC_MESSAGES/attica_kde_plugin.mo share/locale/kk/LC_MESSAGES/kaccess.mo share/locale/kk/LC_MESSAGES/kcm5_componentchooser.mo share/locale/kk/LC_MESSAGES/kcm5_device_automounter.mo share/locale/kk/LC_MESSAGES/kcm5_emoticons.mo share/locale/kk/LC_MESSAGES/kcm5_icons.mo share/locale/kk/LC_MESSAGES/kcm5_joystick.mo share/locale/kk/LC_MESSAGES/kcm5_kded.mo share/locale/kk/LC_MESSAGES/kcm_autostart.mo share/locale/kk/LC_MESSAGES/kcm_colors.mo share/locale/kk/LC_MESSAGES/kcm_cursortheme.mo share/locale/kk/LC_MESSAGES/kcm_desktoppaths.mo share/locale/kk/LC_MESSAGES/kcm_desktoptheme.mo share/locale/kk/LC_MESSAGES/kcm_fonts.mo share/locale/kk/LC_MESSAGES/kcm_launchfeedback.mo share/locale/kk/LC_MESSAGES/kcm_solid_actions.mo share/locale/kk/LC_MESSAGES/kcm_standard_actions.mo share/locale/kk/LC_MESSAGES/kcmaccess.mo share/locale/kk/LC_MESSAGES/kcmformats.mo share/locale/kk/LC_MESSAGES/kcmkclock.mo share/locale/kk/LC_MESSAGES/kcmkeyboard.mo share/locale/kk/LC_MESSAGES/kcmkeys.mo share/locale/kk/LC_MESSAGES/kcmmouse.mo share/locale/kk/LC_MESSAGES/kcmsmserver.mo share/locale/kk/LC_MESSAGES/kcmstyle.mo share/locale/kk/LC_MESSAGES/kfontinst.mo share/locale/kk/LC_MESSAGES/knetattach5.mo share/locale/kk/LC_MESSAGES/krdb.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/kk/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/kk/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/km/LC_MESSAGES/attica_kde_plugin.mo share/locale/km/LC_MESSAGES/kaccess.mo share/locale/km/LC_MESSAGES/kcm5_componentchooser.mo share/locale/km/LC_MESSAGES/kcm5_device_automounter.mo share/locale/km/LC_MESSAGES/kcm5_emoticons.mo share/locale/km/LC_MESSAGES/kcm5_icons.mo share/locale/km/LC_MESSAGES/kcm5_joystick.mo share/locale/km/LC_MESSAGES/kcm5_kded.mo share/locale/km/LC_MESSAGES/kcm_autostart.mo share/locale/km/LC_MESSAGES/kcm_colors.mo share/locale/km/LC_MESSAGES/kcm_cursortheme.mo share/locale/km/LC_MESSAGES/kcm_desktoppaths.mo share/locale/km/LC_MESSAGES/kcm_desktoptheme.mo share/locale/km/LC_MESSAGES/kcm_fonts.mo share/locale/km/LC_MESSAGES/kcm_launchfeedback.mo share/locale/km/LC_MESSAGES/kcm_solid_actions.mo share/locale/km/LC_MESSAGES/kcm_standard_actions.mo share/locale/km/LC_MESSAGES/kcmaccess.mo share/locale/km/LC_MESSAGES/kcmformats.mo share/locale/km/LC_MESSAGES/kcmkclock.mo share/locale/km/LC_MESSAGES/kcmkeyboard.mo share/locale/km/LC_MESSAGES/kcmkeys.mo share/locale/km/LC_MESSAGES/kcmmouse.mo share/locale/km/LC_MESSAGES/kcmsmserver.mo share/locale/km/LC_MESSAGES/kcmstyle.mo share/locale/km/LC_MESSAGES/kfontinst.mo share/locale/km/LC_MESSAGES/knetattach5.mo share/locale/km/LC_MESSAGES/krdb.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/km/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/kn/LC_MESSAGES/attica_kde_plugin.mo share/locale/kn/LC_MESSAGES/kaccess.mo share/locale/kn/LC_MESSAGES/kcm5_componentchooser.mo share/locale/kn/LC_MESSAGES/kcm5_device_automounter.mo share/locale/kn/LC_MESSAGES/kcm5_emoticons.mo share/locale/kn/LC_MESSAGES/kcm5_icons.mo share/locale/kn/LC_MESSAGES/kcm5_joystick.mo share/locale/kn/LC_MESSAGES/kcm5_kded.mo share/locale/kn/LC_MESSAGES/kcm_autostart.mo share/locale/kn/LC_MESSAGES/kcm_colors.mo share/locale/kn/LC_MESSAGES/kcm_cursortheme.mo share/locale/kn/LC_MESSAGES/kcm_desktoppaths.mo share/locale/kn/LC_MESSAGES/kcm_desktoptheme.mo share/locale/kn/LC_MESSAGES/kcm_fonts.mo share/locale/kn/LC_MESSAGES/kcm_launchfeedback.mo share/locale/kn/LC_MESSAGES/kcm_standard_actions.mo share/locale/kn/LC_MESSAGES/kcmaccess.mo share/locale/kn/LC_MESSAGES/kcmformats.mo share/locale/kn/LC_MESSAGES/kcmkclock.mo share/locale/kn/LC_MESSAGES/kcmkeyboard.mo share/locale/kn/LC_MESSAGES/kcmkeys.mo share/locale/kn/LC_MESSAGES/kcmmouse.mo share/locale/kn/LC_MESSAGES/kcmsmserver.mo share/locale/kn/LC_MESSAGES/kcmstyle.mo share/locale/kn/LC_MESSAGES/kfontinst.mo share/locale/kn/LC_MESSAGES/knetattach5.mo share/locale/kn/LC_MESSAGES/krdb.mo share/locale/kn/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/kn/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/kn/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/kn/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/kn/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/kn/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/ko/LC_MESSAGES/attica_kde_plugin.mo share/locale/ko/LC_MESSAGES/kaccess.mo share/locale/ko/LC_MESSAGES/kcm5_baloofile.mo share/locale/ko/LC_MESSAGES/kcm5_componentchooser.mo share/locale/ko/LC_MESSAGES/kcm5_device_automounter.mo share/locale/ko/LC_MESSAGES/kcm5_emoticons.mo share/locale/ko/LC_MESSAGES/kcm5_icons.mo share/locale/ko/LC_MESSAGES/kcm5_joystick.mo share/locale/ko/LC_MESSAGES/kcm5_kded.mo share/locale/ko/LC_MESSAGES/kcm_activities5.mo share/locale/ko/LC_MESSAGES/kcm_autostart.mo share/locale/ko/LC_MESSAGES/kcm_colors.mo share/locale/ko/LC_MESSAGES/kcm_cursortheme.mo share/locale/ko/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ko/LC_MESSAGES/kcm_desktoptheme.mo share/locale/ko/LC_MESSAGES/kcm_fonts.mo share/locale/ko/LC_MESSAGES/kcm_launchfeedback.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_search.mo share/locale/ko/LC_MESSAGES/kcm_solid_actions.mo share/locale/ko/LC_MESSAGES/kcm_splashscreen.mo share/locale/ko/LC_MESSAGES/kcm_standard_actions.mo share/locale/ko/LC_MESSAGES/kcm_touchpad.mo share/locale/ko/LC_MESSAGES/kcm_workspace.mo share/locale/ko/LC_MESSAGES/kcmaccess.mo share/locale/ko/LC_MESSAGES/kcmformats.mo share/locale/ko/LC_MESSAGES/kcmkclock.mo share/locale/ko/LC_MESSAGES/kcmkeyboard.mo share/locale/ko/LC_MESSAGES/kcmkeys.mo share/locale/ko/LC_MESSAGES/kcmmouse.mo share/locale/ko/LC_MESSAGES/kcmqtquicksettings.mo share/locale/ko/LC_MESSAGES/kcmsmserver.mo share/locale/ko/LC_MESSAGES/kcmstyle.mo share/locale/ko/LC_MESSAGES/kfontinst.mo share/locale/ko/LC_MESSAGES/knetattach5.mo share/locale/ko/LC_MESSAGES/krdb.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/ko/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/ko/LC_MESSAGES/plasma_runner_kwin.mo share/locale/ko/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/ko/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/ko/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/ko/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/ko/LC_MESSAGES/plasmaactivitymanager.mo share/locale/ku/LC_MESSAGES/kaccess.mo share/locale/ku/LC_MESSAGES/kcm5_componentchooser.mo share/locale/ku/LC_MESSAGES/kcm5_emoticons.mo share/locale/ku/LC_MESSAGES/kcm5_icons.mo share/locale/ku/LC_MESSAGES/kcm5_joystick.mo share/locale/ku/LC_MESSAGES/kcm5_kded.mo share/locale/ku/LC_MESSAGES/kcm_autostart.mo share/locale/ku/LC_MESSAGES/kcm_colors.mo share/locale/ku/LC_MESSAGES/kcm_cursortheme.mo share/locale/ku/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ku/LC_MESSAGES/kcm_desktoptheme.mo share/locale/ku/LC_MESSAGES/kcm_fonts.mo share/locale/ku/LC_MESSAGES/kcm_launchfeedback.mo share/locale/ku/LC_MESSAGES/kcm_standard_actions.mo share/locale/ku/LC_MESSAGES/kcmaccess.mo share/locale/ku/LC_MESSAGES/kcmformats.mo share/locale/ku/LC_MESSAGES/kcmkclock.mo share/locale/ku/LC_MESSAGES/kcmkeyboard.mo share/locale/ku/LC_MESSAGES/kcmkeys.mo share/locale/ku/LC_MESSAGES/kcmmouse.mo share/locale/ku/LC_MESSAGES/kcmsmserver.mo share/locale/ku/LC_MESSAGES/kcmstyle.mo share/locale/ku/LC_MESSAGES/kfontinst.mo share/locale/ku/LC_MESSAGES/knetattach5.mo share/locale/ku/LC_MESSAGES/krdb.mo share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/lt/LC_MESSAGES/attica_kde_plugin.mo share/locale/lt/LC_MESSAGES/kaccess.mo share/locale/lt/LC_MESSAGES/kcm5_baloofile.mo share/locale/lt/LC_MESSAGES/kcm5_componentchooser.mo share/locale/lt/LC_MESSAGES/kcm5_device_automounter.mo share/locale/lt/LC_MESSAGES/kcm5_emoticons.mo share/locale/lt/LC_MESSAGES/kcm5_icons.mo share/locale/lt/LC_MESSAGES/kcm5_joystick.mo share/locale/lt/LC_MESSAGES/kcm5_kded.mo share/locale/lt/LC_MESSAGES/kcm_activities5.mo share/locale/lt/LC_MESSAGES/kcm_autostart.mo share/locale/lt/LC_MESSAGES/kcm_colors.mo share/locale/lt/LC_MESSAGES/kcm_cursortheme.mo share/locale/lt/LC_MESSAGES/kcm_desktoppaths.mo share/locale/lt/LC_MESSAGES/kcm_desktoptheme.mo share/locale/lt/LC_MESSAGES/kcm_fonts.mo share/locale/lt/LC_MESSAGES/kcm_launchfeedback.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_search.mo share/locale/lt/LC_MESSAGES/kcm_solid_actions.mo share/locale/lt/LC_MESSAGES/kcm_splashscreen.mo share/locale/lt/LC_MESSAGES/kcm_standard_actions.mo share/locale/lt/LC_MESSAGES/kcm_touchpad.mo share/locale/lt/LC_MESSAGES/kcm_workspace.mo share/locale/lt/LC_MESSAGES/kcmaccess.mo share/locale/lt/LC_MESSAGES/kcmformats.mo share/locale/lt/LC_MESSAGES/kcmkclock.mo share/locale/lt/LC_MESSAGES/kcmkeyboard.mo share/locale/lt/LC_MESSAGES/kcmkeys.mo share/locale/lt/LC_MESSAGES/kcmmouse.mo share/locale/lt/LC_MESSAGES/kcmqtquicksettings.mo share/locale/lt/LC_MESSAGES/kcmsmserver.mo share/locale/lt/LC_MESSAGES/kcmstyle.mo share/locale/lt/LC_MESSAGES/kfontinst.mo share/locale/lt/LC_MESSAGES/knetattach5.mo share/locale/lt/LC_MESSAGES/krdb.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/lt/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/lt/LC_MESSAGES/plasma_runner_kwin.mo share/locale/lt/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/lt/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/lt/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/lt/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/lt/LC_MESSAGES/plasmaactivitymanager.mo share/locale/lv/LC_MESSAGES/attica_kde_plugin.mo share/locale/lv/LC_MESSAGES/kaccess.mo share/locale/lv/LC_MESSAGES/kcm5_componentchooser.mo share/locale/lv/LC_MESSAGES/kcm5_device_automounter.mo share/locale/lv/LC_MESSAGES/kcm5_emoticons.mo share/locale/lv/LC_MESSAGES/kcm5_icons.mo share/locale/lv/LC_MESSAGES/kcm5_joystick.mo share/locale/lv/LC_MESSAGES/kcm5_kded.mo share/locale/lv/LC_MESSAGES/kcm_autostart.mo share/locale/lv/LC_MESSAGES/kcm_colors.mo share/locale/lv/LC_MESSAGES/kcm_cursortheme.mo share/locale/lv/LC_MESSAGES/kcm_desktoppaths.mo share/locale/lv/LC_MESSAGES/kcm_desktoptheme.mo share/locale/lv/LC_MESSAGES/kcm_fonts.mo share/locale/lv/LC_MESSAGES/kcm_launchfeedback.mo share/locale/lv/LC_MESSAGES/kcm_solid_actions.mo share/locale/lv/LC_MESSAGES/kcm_standard_actions.mo share/locale/lv/LC_MESSAGES/kcmaccess.mo share/locale/lv/LC_MESSAGES/kcmformats.mo share/locale/lv/LC_MESSAGES/kcmkclock.mo share/locale/lv/LC_MESSAGES/kcmkeyboard.mo share/locale/lv/LC_MESSAGES/kcmkeys.mo share/locale/lv/LC_MESSAGES/kcmmouse.mo share/locale/lv/LC_MESSAGES/kcmsmserver.mo share/locale/lv/LC_MESSAGES/kcmstyle.mo share/locale/lv/LC_MESSAGES/kfontinst.mo share/locale/lv/LC_MESSAGES/knetattach5.mo share/locale/lv/LC_MESSAGES/krdb.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/lv/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/mai/LC_MESSAGES/attica_kde_plugin.mo share/locale/mai/LC_MESSAGES/kaccess.mo share/locale/mai/LC_MESSAGES/kcm5_componentchooser.mo share/locale/mai/LC_MESSAGES/kcm5_device_automounter.mo share/locale/mai/LC_MESSAGES/kcm5_emoticons.mo share/locale/mai/LC_MESSAGES/kcm5_icons.mo share/locale/mai/LC_MESSAGES/kcm5_joystick.mo share/locale/mai/LC_MESSAGES/kcm5_kded.mo share/locale/mai/LC_MESSAGES/kcm_autostart.mo share/locale/mai/LC_MESSAGES/kcm_colors.mo share/locale/mai/LC_MESSAGES/kcm_cursortheme.mo share/locale/mai/LC_MESSAGES/kcm_desktoppaths.mo share/locale/mai/LC_MESSAGES/kcm_desktoptheme.mo share/locale/mai/LC_MESSAGES/kcm_fonts.mo share/locale/mai/LC_MESSAGES/kcm_launchfeedback.mo share/locale/mai/LC_MESSAGES/kcm_solid_actions.mo share/locale/mai/LC_MESSAGES/kcm_standard_actions.mo share/locale/mai/LC_MESSAGES/kcmaccess.mo share/locale/mai/LC_MESSAGES/kcmformats.mo share/locale/mai/LC_MESSAGES/kcmkclock.mo share/locale/mai/LC_MESSAGES/kcmkeyboard.mo share/locale/mai/LC_MESSAGES/kcmkeys.mo share/locale/mai/LC_MESSAGES/kcmmouse.mo share/locale/mai/LC_MESSAGES/kcmsmserver.mo share/locale/mai/LC_MESSAGES/kcmstyle.mo share/locale/mai/LC_MESSAGES/kfontinst.mo share/locale/mai/LC_MESSAGES/knetattach5.mo share/locale/mai/LC_MESSAGES/krdb.mo share/locale/mai/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/mai/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/mai/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/mai/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/mai/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/mai/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/mk/LC_MESSAGES/kaccess.mo share/locale/mk/LC_MESSAGES/kcm5_componentchooser.mo share/locale/mk/LC_MESSAGES/kcm5_emoticons.mo share/locale/mk/LC_MESSAGES/kcm5_icons.mo share/locale/mk/LC_MESSAGES/kcm5_joystick.mo share/locale/mk/LC_MESSAGES/kcm5_kded.mo share/locale/mk/LC_MESSAGES/kcm_autostart.mo share/locale/mk/LC_MESSAGES/kcm_colors.mo share/locale/mk/LC_MESSAGES/kcm_cursortheme.mo share/locale/mk/LC_MESSAGES/kcm_desktoppaths.mo share/locale/mk/LC_MESSAGES/kcm_desktoptheme.mo share/locale/mk/LC_MESSAGES/kcm_fonts.mo share/locale/mk/LC_MESSAGES/kcm_launchfeedback.mo share/locale/mk/LC_MESSAGES/kcm_standard_actions.mo share/locale/mk/LC_MESSAGES/kcmaccess.mo share/locale/mk/LC_MESSAGES/kcmformats.mo share/locale/mk/LC_MESSAGES/kcmkclock.mo share/locale/mk/LC_MESSAGES/kcmkeyboard.mo share/locale/mk/LC_MESSAGES/kcmkeys.mo share/locale/mk/LC_MESSAGES/kcmmouse.mo share/locale/mk/LC_MESSAGES/kcmsmserver.mo share/locale/mk/LC_MESSAGES/kcmstyle.mo share/locale/mk/LC_MESSAGES/kfontinst.mo share/locale/mk/LC_MESSAGES/knetattach5.mo share/locale/mk/LC_MESSAGES/krdb.mo share/locale/mk/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/mk/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/mk/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/mk/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ml/LC_MESSAGES/attica_kde_plugin.mo share/locale/ml/LC_MESSAGES/kaccess.mo share/locale/ml/LC_MESSAGES/kcm5_baloofile.mo share/locale/ml/LC_MESSAGES/kcm5_componentchooser.mo share/locale/ml/LC_MESSAGES/kcm5_device_automounter.mo share/locale/ml/LC_MESSAGES/kcm5_emoticons.mo share/locale/ml/LC_MESSAGES/kcm5_icons.mo share/locale/ml/LC_MESSAGES/kcm5_joystick.mo share/locale/ml/LC_MESSAGES/kcm5_kded.mo share/locale/ml/LC_MESSAGES/kcm_activities5.mo share/locale/ml/LC_MESSAGES/kcm_autostart.mo share/locale/ml/LC_MESSAGES/kcm_colors.mo share/locale/ml/LC_MESSAGES/kcm_cursortheme.mo share/locale/ml/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ml/LC_MESSAGES/kcm_desktoptheme.mo share/locale/ml/LC_MESSAGES/kcm_fonts.mo share/locale/ml/LC_MESSAGES/kcm_launchfeedback.mo share/locale/ml/LC_MESSAGES/kcm_lookandfeel.mo share/locale/ml/LC_MESSAGES/kcm_nightcolor.mo share/locale/ml/LC_MESSAGES/kcm_search.mo share/locale/ml/LC_MESSAGES/kcm_solid_actions.mo share/locale/ml/LC_MESSAGES/kcm_splashscreen.mo share/locale/ml/LC_MESSAGES/kcm_standard_actions.mo share/locale/ml/LC_MESSAGES/kcm_touchpad.mo share/locale/ml/LC_MESSAGES/kcm_workspace.mo share/locale/ml/LC_MESSAGES/kcmaccess.mo share/locale/ml/LC_MESSAGES/kcmformats.mo share/locale/ml/LC_MESSAGES/kcmkclock.mo share/locale/ml/LC_MESSAGES/kcmkeyboard.mo share/locale/ml/LC_MESSAGES/kcmkeys.mo share/locale/ml/LC_MESSAGES/kcmmouse.mo share/locale/ml/LC_MESSAGES/kcmqtquicksettings.mo share/locale/ml/LC_MESSAGES/kcmsmserver.mo share/locale/ml/LC_MESSAGES/kcmstyle.mo share/locale/ml/LC_MESSAGES/kfontinst.mo share/locale/ml/LC_MESSAGES/knetattach5.mo share/locale/ml/LC_MESSAGES/krdb.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/ml/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/ml/LC_MESSAGES/plasma_runner_kwin.mo share/locale/ml/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/ml/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/ml/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/ml/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/ml/LC_MESSAGES/plasmaactivitymanager.mo share/locale/mr/LC_MESSAGES/attica_kde_plugin.mo share/locale/mr/LC_MESSAGES/kaccess.mo share/locale/mr/LC_MESSAGES/kcm5_componentchooser.mo share/locale/mr/LC_MESSAGES/kcm5_device_automounter.mo share/locale/mr/LC_MESSAGES/kcm5_emoticons.mo share/locale/mr/LC_MESSAGES/kcm5_icons.mo share/locale/mr/LC_MESSAGES/kcm5_joystick.mo share/locale/mr/LC_MESSAGES/kcm5_kded.mo share/locale/mr/LC_MESSAGES/kcm_autostart.mo share/locale/mr/LC_MESSAGES/kcm_colors.mo share/locale/mr/LC_MESSAGES/kcm_cursortheme.mo share/locale/mr/LC_MESSAGES/kcm_desktoppaths.mo share/locale/mr/LC_MESSAGES/kcm_desktoptheme.mo share/locale/mr/LC_MESSAGES/kcm_fonts.mo share/locale/mr/LC_MESSAGES/kcm_launchfeedback.mo share/locale/mr/LC_MESSAGES/kcm_solid_actions.mo share/locale/mr/LC_MESSAGES/kcm_standard_actions.mo share/locale/mr/LC_MESSAGES/kcmaccess.mo share/locale/mr/LC_MESSAGES/kcmformats.mo share/locale/mr/LC_MESSAGES/kcmkclock.mo share/locale/mr/LC_MESSAGES/kcmkeyboard.mo share/locale/mr/LC_MESSAGES/kcmkeys.mo share/locale/mr/LC_MESSAGES/kcmmouse.mo share/locale/mr/LC_MESSAGES/kcmsmserver.mo share/locale/mr/LC_MESSAGES/kcmstyle.mo share/locale/mr/LC_MESSAGES/kfontinst.mo share/locale/mr/LC_MESSAGES/knetattach5.mo share/locale/mr/LC_MESSAGES/krdb.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/mr/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/mr/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/ms/LC_MESSAGES/attica_kde_plugin.mo share/locale/ms/LC_MESSAGES/kaccess.mo share/locale/ms/LC_MESSAGES/kcm5_componentchooser.mo share/locale/ms/LC_MESSAGES/kcm5_device_automounter.mo share/locale/ms/LC_MESSAGES/kcm5_emoticons.mo share/locale/ms/LC_MESSAGES/kcm5_icons.mo share/locale/ms/LC_MESSAGES/kcm5_joystick.mo share/locale/ms/LC_MESSAGES/kcm5_kded.mo share/locale/ms/LC_MESSAGES/kcm_autostart.mo share/locale/ms/LC_MESSAGES/kcm_colors.mo share/locale/ms/LC_MESSAGES/kcm_cursortheme.mo share/locale/ms/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ms/LC_MESSAGES/kcm_desktoptheme.mo share/locale/ms/LC_MESSAGES/kcm_fonts.mo share/locale/ms/LC_MESSAGES/kcm_launchfeedback.mo share/locale/ms/LC_MESSAGES/kcm_solid_actions.mo share/locale/ms/LC_MESSAGES/kcm_standard_actions.mo share/locale/ms/LC_MESSAGES/kcmaccess.mo share/locale/ms/LC_MESSAGES/kcmformats.mo share/locale/ms/LC_MESSAGES/kcmkclock.mo share/locale/ms/LC_MESSAGES/kcmkeyboard.mo share/locale/ms/LC_MESSAGES/kcmkeys.mo share/locale/ms/LC_MESSAGES/kcmmouse.mo share/locale/ms/LC_MESSAGES/kcmsmserver.mo share/locale/ms/LC_MESSAGES/kcmstyle.mo share/locale/ms/LC_MESSAGES/kfontinst.mo share/locale/ms/LC_MESSAGES/knetattach5.mo share/locale/ms/LC_MESSAGES/krdb.mo share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/ms/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/nb/LC_MESSAGES/attica_kde_plugin.mo share/locale/nb/LC_MESSAGES/kaccess.mo share/locale/nb/LC_MESSAGES/kcm5_baloofile.mo share/locale/nb/LC_MESSAGES/kcm5_componentchooser.mo share/locale/nb/LC_MESSAGES/kcm5_device_automounter.mo share/locale/nb/LC_MESSAGES/kcm5_emoticons.mo share/locale/nb/LC_MESSAGES/kcm5_icons.mo share/locale/nb/LC_MESSAGES/kcm5_joystick.mo share/locale/nb/LC_MESSAGES/kcm5_kded.mo share/locale/nb/LC_MESSAGES/kcm_autostart.mo share/locale/nb/LC_MESSAGES/kcm_colors.mo share/locale/nb/LC_MESSAGES/kcm_cursortheme.mo share/locale/nb/LC_MESSAGES/kcm_desktoppaths.mo share/locale/nb/LC_MESSAGES/kcm_desktoptheme.mo share/locale/nb/LC_MESSAGES/kcm_fonts.mo share/locale/nb/LC_MESSAGES/kcm_launchfeedback.mo share/locale/nb/LC_MESSAGES/kcm_lookandfeel.mo share/locale/nb/LC_MESSAGES/kcm_search.mo share/locale/nb/LC_MESSAGES/kcm_solid_actions.mo share/locale/nb/LC_MESSAGES/kcm_splashscreen.mo share/locale/nb/LC_MESSAGES/kcm_standard_actions.mo share/locale/nb/LC_MESSAGES/kcm_touchpad.mo share/locale/nb/LC_MESSAGES/kcm_workspace.mo share/locale/nb/LC_MESSAGES/kcmaccess.mo share/locale/nb/LC_MESSAGES/kcmformats.mo share/locale/nb/LC_MESSAGES/kcmkclock.mo share/locale/nb/LC_MESSAGES/kcmkeyboard.mo share/locale/nb/LC_MESSAGES/kcmkeys.mo share/locale/nb/LC_MESSAGES/kcmmouse.mo share/locale/nb/LC_MESSAGES/kcmsmserver.mo share/locale/nb/LC_MESSAGES/kcmstyle.mo share/locale/nb/LC_MESSAGES/kfontinst.mo share/locale/nb/LC_MESSAGES/knetattach5.mo share/locale/nb/LC_MESSAGES/krdb.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/nb/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/nb/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/nb/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/nds/LC_MESSAGES/attica_kde_plugin.mo share/locale/nds/LC_MESSAGES/kaccess.mo share/locale/nds/LC_MESSAGES/kcm5_baloofile.mo share/locale/nds/LC_MESSAGES/kcm5_componentchooser.mo share/locale/nds/LC_MESSAGES/kcm5_device_automounter.mo share/locale/nds/LC_MESSAGES/kcm5_emoticons.mo share/locale/nds/LC_MESSAGES/kcm5_icons.mo share/locale/nds/LC_MESSAGES/kcm5_joystick.mo share/locale/nds/LC_MESSAGES/kcm5_kded.mo share/locale/nds/LC_MESSAGES/kcm_autostart.mo share/locale/nds/LC_MESSAGES/kcm_colors.mo share/locale/nds/LC_MESSAGES/kcm_cursortheme.mo share/locale/nds/LC_MESSAGES/kcm_desktoppaths.mo share/locale/nds/LC_MESSAGES/kcm_desktoptheme.mo share/locale/nds/LC_MESSAGES/kcm_fonts.mo share/locale/nds/LC_MESSAGES/kcm_launchfeedback.mo share/locale/nds/LC_MESSAGES/kcm_lookandfeel.mo share/locale/nds/LC_MESSAGES/kcm_search.mo share/locale/nds/LC_MESSAGES/kcm_solid_actions.mo share/locale/nds/LC_MESSAGES/kcm_splashscreen.mo share/locale/nds/LC_MESSAGES/kcm_standard_actions.mo share/locale/nds/LC_MESSAGES/kcm_workspace.mo share/locale/nds/LC_MESSAGES/kcmaccess.mo share/locale/nds/LC_MESSAGES/kcmformats.mo share/locale/nds/LC_MESSAGES/kcmkclock.mo share/locale/nds/LC_MESSAGES/kcmkeyboard.mo share/locale/nds/LC_MESSAGES/kcmkeys.mo share/locale/nds/LC_MESSAGES/kcmmouse.mo share/locale/nds/LC_MESSAGES/kcmsmserver.mo share/locale/nds/LC_MESSAGES/kcmstyle.mo share/locale/nds/LC_MESSAGES/kfontinst.mo share/locale/nds/LC_MESSAGES/knetattach5.mo share/locale/nds/LC_MESSAGES/krdb.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/nds/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/nds/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/nds/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/ne/LC_MESSAGES/kaccess.mo share/locale/ne/LC_MESSAGES/kcm5_componentchooser.mo share/locale/ne/LC_MESSAGES/kcm5_icons.mo share/locale/ne/LC_MESSAGES/kcm5_joystick.mo share/locale/ne/LC_MESSAGES/kcm5_kded.mo share/locale/ne/LC_MESSAGES/kcm_colors.mo share/locale/ne/LC_MESSAGES/kcm_cursortheme.mo share/locale/ne/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ne/LC_MESSAGES/kcm_fonts.mo share/locale/ne/LC_MESSAGES/kcm_launchfeedback.mo share/locale/ne/LC_MESSAGES/kcmaccess.mo share/locale/ne/LC_MESSAGES/kcmformats.mo share/locale/ne/LC_MESSAGES/kcmkclock.mo share/locale/ne/LC_MESSAGES/kcmkeyboard.mo share/locale/ne/LC_MESSAGES/kcmkeys.mo share/locale/ne/LC_MESSAGES/kcmmouse.mo share/locale/ne/LC_MESSAGES/kcmsmserver.mo share/locale/ne/LC_MESSAGES/kcmstyle.mo share/locale/ne/LC_MESSAGES/kfontinst.mo share/locale/ne/LC_MESSAGES/knetattach5.mo share/locale/ne/LC_MESSAGES/krdb.mo share/locale/ne/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ne/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/nl/LC_MESSAGES/attica_kde_plugin.mo share/locale/nl/LC_MESSAGES/kaccess.mo share/locale/nl/LC_MESSAGES/kcm5_baloofile.mo share/locale/nl/LC_MESSAGES/kcm5_componentchooser.mo share/locale/nl/LC_MESSAGES/kcm5_device_automounter.mo share/locale/nl/LC_MESSAGES/kcm5_emoticons.mo share/locale/nl/LC_MESSAGES/kcm5_icons.mo share/locale/nl/LC_MESSAGES/kcm5_joystick.mo share/locale/nl/LC_MESSAGES/kcm5_kded.mo share/locale/nl/LC_MESSAGES/kcm_activities5.mo share/locale/nl/LC_MESSAGES/kcm_autostart.mo share/locale/nl/LC_MESSAGES/kcm_colors.mo share/locale/nl/LC_MESSAGES/kcm_cursortheme.mo share/locale/nl/LC_MESSAGES/kcm_desktoppaths.mo share/locale/nl/LC_MESSAGES/kcm_desktoptheme.mo share/locale/nl/LC_MESSAGES/kcm_fonts.mo share/locale/nl/LC_MESSAGES/kcm_launchfeedback.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_search.mo share/locale/nl/LC_MESSAGES/kcm_solid_actions.mo share/locale/nl/LC_MESSAGES/kcm_splashscreen.mo share/locale/nl/LC_MESSAGES/kcm_standard_actions.mo share/locale/nl/LC_MESSAGES/kcm_touchpad.mo share/locale/nl/LC_MESSAGES/kcm_workspace.mo share/locale/nl/LC_MESSAGES/kcmaccess.mo share/locale/nl/LC_MESSAGES/kcmformats.mo share/locale/nl/LC_MESSAGES/kcmkclock.mo share/locale/nl/LC_MESSAGES/kcmkeyboard.mo share/locale/nl/LC_MESSAGES/kcmkeys.mo share/locale/nl/LC_MESSAGES/kcmmouse.mo share/locale/nl/LC_MESSAGES/kcmqtquicksettings.mo share/locale/nl/LC_MESSAGES/kcmsmserver.mo share/locale/nl/LC_MESSAGES/kcmstyle.mo share/locale/nl/LC_MESSAGES/kfontinst.mo share/locale/nl/LC_MESSAGES/knetattach5.mo share/locale/nl/LC_MESSAGES/krdb.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/nl/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/nl/LC_MESSAGES/plasma_runner_kwin.mo share/locale/nl/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/nl/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/nl/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/nl/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/nl/LC_MESSAGES/plasmaactivitymanager.mo share/locale/nn/LC_MESSAGES/attica_kde_plugin.mo share/locale/nn/LC_MESSAGES/kaccess.mo share/locale/nn/LC_MESSAGES/kcm5_baloofile.mo share/locale/nn/LC_MESSAGES/kcm5_componentchooser.mo share/locale/nn/LC_MESSAGES/kcm5_device_automounter.mo share/locale/nn/LC_MESSAGES/kcm5_emoticons.mo share/locale/nn/LC_MESSAGES/kcm5_icons.mo share/locale/nn/LC_MESSAGES/kcm5_joystick.mo share/locale/nn/LC_MESSAGES/kcm5_kded.mo share/locale/nn/LC_MESSAGES/kcm_activities5.mo share/locale/nn/LC_MESSAGES/kcm_autostart.mo share/locale/nn/LC_MESSAGES/kcm_colors.mo share/locale/nn/LC_MESSAGES/kcm_cursortheme.mo share/locale/nn/LC_MESSAGES/kcm_desktoppaths.mo share/locale/nn/LC_MESSAGES/kcm_desktoptheme.mo share/locale/nn/LC_MESSAGES/kcm_fonts.mo share/locale/nn/LC_MESSAGES/kcm_launchfeedback.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_search.mo share/locale/nn/LC_MESSAGES/kcm_solid_actions.mo share/locale/nn/LC_MESSAGES/kcm_splashscreen.mo share/locale/nn/LC_MESSAGES/kcm_standard_actions.mo share/locale/nn/LC_MESSAGES/kcm_touchpad.mo share/locale/nn/LC_MESSAGES/kcm_workspace.mo share/locale/nn/LC_MESSAGES/kcmaccess.mo share/locale/nn/LC_MESSAGES/kcmformats.mo share/locale/nn/LC_MESSAGES/kcmkclock.mo share/locale/nn/LC_MESSAGES/kcmkeyboard.mo share/locale/nn/LC_MESSAGES/kcmkeys.mo share/locale/nn/LC_MESSAGES/kcmmouse.mo share/locale/nn/LC_MESSAGES/kcmqtquicksettings.mo share/locale/nn/LC_MESSAGES/kcmsmserver.mo share/locale/nn/LC_MESSAGES/kcmstyle.mo share/locale/nn/LC_MESSAGES/kfontinst.mo share/locale/nn/LC_MESSAGES/knetattach5.mo share/locale/nn/LC_MESSAGES/krdb.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/nn/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/nn/LC_MESSAGES/plasma_runner_kwin.mo share/locale/nn/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/nn/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/nn/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/nn/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/nn/LC_MESSAGES/plasmaactivitymanager.mo share/locale/oc/LC_MESSAGES/kaccess.mo share/locale/oc/LC_MESSAGES/kcm5_componentchooser.mo share/locale/oc/LC_MESSAGES/kcm5_icons.mo share/locale/oc/LC_MESSAGES/kcm5_joystick.mo share/locale/oc/LC_MESSAGES/kcm5_kded.mo share/locale/oc/LC_MESSAGES/kcm_colors.mo share/locale/oc/LC_MESSAGES/kcm_cursortheme.mo share/locale/oc/LC_MESSAGES/kcm_desktoppaths.mo share/locale/oc/LC_MESSAGES/kcm_fonts.mo share/locale/oc/LC_MESSAGES/kcm_launchfeedback.mo share/locale/oc/LC_MESSAGES/kcmaccess.mo share/locale/oc/LC_MESSAGES/kcmkclock.mo share/locale/oc/LC_MESSAGES/kcmkeyboard.mo share/locale/oc/LC_MESSAGES/kcmkeys.mo share/locale/oc/LC_MESSAGES/kcmmouse.mo share/locale/oc/LC_MESSAGES/kcmsmserver.mo share/locale/oc/LC_MESSAGES/kcmstyle.mo share/locale/oc/LC_MESSAGES/kfontinst.mo share/locale/oc/LC_MESSAGES/knetattach5.mo share/locale/oc/LC_MESSAGES/krdb.mo share/locale/oc/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/or/LC_MESSAGES/kaccess.mo share/locale/or/LC_MESSAGES/kcm5_componentchooser.mo share/locale/or/LC_MESSAGES/kcm5_emoticons.mo share/locale/or/LC_MESSAGES/kcm5_icons.mo share/locale/or/LC_MESSAGES/kcm5_joystick.mo share/locale/or/LC_MESSAGES/kcm5_kded.mo share/locale/or/LC_MESSAGES/kcm_autostart.mo share/locale/or/LC_MESSAGES/kcm_colors.mo share/locale/or/LC_MESSAGES/kcm_cursortheme.mo share/locale/or/LC_MESSAGES/kcm_desktoppaths.mo share/locale/or/LC_MESSAGES/kcm_desktoptheme.mo share/locale/or/LC_MESSAGES/kcm_fonts.mo share/locale/or/LC_MESSAGES/kcm_launchfeedback.mo share/locale/or/LC_MESSAGES/kcm_standard_actions.mo share/locale/or/LC_MESSAGES/kcmaccess.mo share/locale/or/LC_MESSAGES/kcmformats.mo share/locale/or/LC_MESSAGES/kcmkclock.mo share/locale/or/LC_MESSAGES/kcmkeyboard.mo share/locale/or/LC_MESSAGES/kcmkeys.mo share/locale/or/LC_MESSAGES/kcmmouse.mo share/locale/or/LC_MESSAGES/kcmsmserver.mo share/locale/or/LC_MESSAGES/kcmstyle.mo share/locale/or/LC_MESSAGES/kfontinst.mo share/locale/or/LC_MESSAGES/knetattach5.mo share/locale/or/LC_MESSAGES/krdb.mo share/locale/or/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/or/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/or/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/or/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/pa/LC_MESSAGES/attica_kde_plugin.mo share/locale/pa/LC_MESSAGES/kaccess.mo share/locale/pa/LC_MESSAGES/kcm5_baloofile.mo share/locale/pa/LC_MESSAGES/kcm5_componentchooser.mo share/locale/pa/LC_MESSAGES/kcm5_device_automounter.mo share/locale/pa/LC_MESSAGES/kcm5_emoticons.mo share/locale/pa/LC_MESSAGES/kcm5_icons.mo share/locale/pa/LC_MESSAGES/kcm5_joystick.mo share/locale/pa/LC_MESSAGES/kcm5_kded.mo share/locale/pa/LC_MESSAGES/kcm_activities5.mo share/locale/pa/LC_MESSAGES/kcm_autostart.mo share/locale/pa/LC_MESSAGES/kcm_colors.mo share/locale/pa/LC_MESSAGES/kcm_cursortheme.mo share/locale/pa/LC_MESSAGES/kcm_desktoppaths.mo share/locale/pa/LC_MESSAGES/kcm_desktoptheme.mo share/locale/pa/LC_MESSAGES/kcm_fonts.mo share/locale/pa/LC_MESSAGES/kcm_launchfeedback.mo share/locale/pa/LC_MESSAGES/kcm_lookandfeel.mo share/locale/pa/LC_MESSAGES/kcm_search.mo share/locale/pa/LC_MESSAGES/kcm_solid_actions.mo share/locale/pa/LC_MESSAGES/kcm_splashscreen.mo share/locale/pa/LC_MESSAGES/kcm_standard_actions.mo share/locale/pa/LC_MESSAGES/kcm_touchpad.mo share/locale/pa/LC_MESSAGES/kcm_workspace.mo share/locale/pa/LC_MESSAGES/kcmaccess.mo share/locale/pa/LC_MESSAGES/kcmformats.mo share/locale/pa/LC_MESSAGES/kcmkclock.mo share/locale/pa/LC_MESSAGES/kcmkeyboard.mo share/locale/pa/LC_MESSAGES/kcmkeys.mo share/locale/pa/LC_MESSAGES/kcmmouse.mo share/locale/pa/LC_MESSAGES/kcmsmserver.mo share/locale/pa/LC_MESSAGES/kcmstyle.mo share/locale/pa/LC_MESSAGES/kfontinst.mo share/locale/pa/LC_MESSAGES/knetattach5.mo share/locale/pa/LC_MESSAGES/krdb.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/pa/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/pa/LC_MESSAGES/plasma_runner_kwin.mo share/locale/pa/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/pa/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/pa/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/pa/LC_MESSAGES/plasmaactivitymanager.mo share/locale/pl/LC_MESSAGES/attica_kde_plugin.mo share/locale/pl/LC_MESSAGES/kaccess.mo share/locale/pl/LC_MESSAGES/kcm5_baloofile.mo share/locale/pl/LC_MESSAGES/kcm5_componentchooser.mo share/locale/pl/LC_MESSAGES/kcm5_device_automounter.mo share/locale/pl/LC_MESSAGES/kcm5_emoticons.mo share/locale/pl/LC_MESSAGES/kcm5_icons.mo share/locale/pl/LC_MESSAGES/kcm5_joystick.mo share/locale/pl/LC_MESSAGES/kcm5_kded.mo share/locale/pl/LC_MESSAGES/kcm_activities5.mo share/locale/pl/LC_MESSAGES/kcm_autostart.mo share/locale/pl/LC_MESSAGES/kcm_colors.mo share/locale/pl/LC_MESSAGES/kcm_cursortheme.mo share/locale/pl/LC_MESSAGES/kcm_desktoppaths.mo share/locale/pl/LC_MESSAGES/kcm_desktoptheme.mo share/locale/pl/LC_MESSAGES/kcm_fonts.mo share/locale/pl/LC_MESSAGES/kcm_launchfeedback.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_search.mo share/locale/pl/LC_MESSAGES/kcm_solid_actions.mo share/locale/pl/LC_MESSAGES/kcm_splashscreen.mo share/locale/pl/LC_MESSAGES/kcm_standard_actions.mo share/locale/pl/LC_MESSAGES/kcm_touchpad.mo share/locale/pl/LC_MESSAGES/kcm_workspace.mo share/locale/pl/LC_MESSAGES/kcmaccess.mo share/locale/pl/LC_MESSAGES/kcmformats.mo share/locale/pl/LC_MESSAGES/kcmkclock.mo share/locale/pl/LC_MESSAGES/kcmkeyboard.mo share/locale/pl/LC_MESSAGES/kcmkeys.mo share/locale/pl/LC_MESSAGES/kcmmouse.mo share/locale/pl/LC_MESSAGES/kcmqtquicksettings.mo share/locale/pl/LC_MESSAGES/kcmsmserver.mo share/locale/pl/LC_MESSAGES/kcmstyle.mo share/locale/pl/LC_MESSAGES/kfontinst.mo share/locale/pl/LC_MESSAGES/knetattach5.mo share/locale/pl/LC_MESSAGES/krdb.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/pl/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/pl/LC_MESSAGES/plasma_runner_kwin.mo share/locale/pl/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/pl/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/pl/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/pl/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/pl/LC_MESSAGES/plasmaactivitymanager.mo share/locale/pt/LC_MESSAGES/attica_kde_plugin.mo share/locale/pt/LC_MESSAGES/kaccess.mo share/locale/pt/LC_MESSAGES/kcm5_baloofile.mo share/locale/pt/LC_MESSAGES/kcm5_componentchooser.mo share/locale/pt/LC_MESSAGES/kcm5_device_automounter.mo share/locale/pt/LC_MESSAGES/kcm5_emoticons.mo share/locale/pt/LC_MESSAGES/kcm5_icons.mo share/locale/pt/LC_MESSAGES/kcm5_joystick.mo share/locale/pt/LC_MESSAGES/kcm5_kded.mo share/locale/pt/LC_MESSAGES/kcm_activities5.mo share/locale/pt/LC_MESSAGES/kcm_autostart.mo share/locale/pt/LC_MESSAGES/kcm_colors.mo share/locale/pt/LC_MESSAGES/kcm_cursortheme.mo share/locale/pt/LC_MESSAGES/kcm_desktoppaths.mo share/locale/pt/LC_MESSAGES/kcm_desktoptheme.mo share/locale/pt/LC_MESSAGES/kcm_fonts.mo share/locale/pt/LC_MESSAGES/kcm_launchfeedback.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_search.mo share/locale/pt/LC_MESSAGES/kcm_solid_actions.mo share/locale/pt/LC_MESSAGES/kcm_splashscreen.mo share/locale/pt/LC_MESSAGES/kcm_standard_actions.mo share/locale/pt/LC_MESSAGES/kcm_touchpad.mo share/locale/pt/LC_MESSAGES/kcm_workspace.mo share/locale/pt/LC_MESSAGES/kcmaccess.mo share/locale/pt/LC_MESSAGES/kcmformats.mo share/locale/pt/LC_MESSAGES/kcmkclock.mo share/locale/pt/LC_MESSAGES/kcmkeyboard.mo share/locale/pt/LC_MESSAGES/kcmkeys.mo share/locale/pt/LC_MESSAGES/kcmmouse.mo share/locale/pt/LC_MESSAGES/kcmqtquicksettings.mo share/locale/pt/LC_MESSAGES/kcmsmserver.mo share/locale/pt/LC_MESSAGES/kcmstyle.mo share/locale/pt/LC_MESSAGES/kfontinst.mo share/locale/pt/LC_MESSAGES/knetattach5.mo share/locale/pt/LC_MESSAGES/krdb.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/pt/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/pt/LC_MESSAGES/plasma_runner_kwin.mo share/locale/pt/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/pt/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/pt/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/pt/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/pt/LC_MESSAGES/plasmaactivitymanager.mo share/locale/pt_BR/LC_MESSAGES/attica_kde_plugin.mo share/locale/pt_BR/LC_MESSAGES/kaccess.mo share/locale/pt_BR/LC_MESSAGES/kcm5_baloofile.mo share/locale/pt_BR/LC_MESSAGES/kcm5_componentchooser.mo share/locale/pt_BR/LC_MESSAGES/kcm5_device_automounter.mo share/locale/pt_BR/LC_MESSAGES/kcm5_emoticons.mo share/locale/pt_BR/LC_MESSAGES/kcm5_icons.mo share/locale/pt_BR/LC_MESSAGES/kcm5_joystick.mo share/locale/pt_BR/LC_MESSAGES/kcm5_kded.mo share/locale/pt_BR/LC_MESSAGES/kcm_activities5.mo share/locale/pt_BR/LC_MESSAGES/kcm_autostart.mo share/locale/pt_BR/LC_MESSAGES/kcm_colors.mo share/locale/pt_BR/LC_MESSAGES/kcm_cursortheme.mo share/locale/pt_BR/LC_MESSAGES/kcm_desktoppaths.mo share/locale/pt_BR/LC_MESSAGES/kcm_desktoptheme.mo share/locale/pt_BR/LC_MESSAGES/kcm_fonts.mo share/locale/pt_BR/LC_MESSAGES/kcm_launchfeedback.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_search.mo share/locale/pt_BR/LC_MESSAGES/kcm_solid_actions.mo share/locale/pt_BR/LC_MESSAGES/kcm_splashscreen.mo share/locale/pt_BR/LC_MESSAGES/kcm_standard_actions.mo share/locale/pt_BR/LC_MESSAGES/kcm_touchpad.mo share/locale/pt_BR/LC_MESSAGES/kcm_workspace.mo share/locale/pt_BR/LC_MESSAGES/kcmaccess.mo share/locale/pt_BR/LC_MESSAGES/kcmformats.mo share/locale/pt_BR/LC_MESSAGES/kcmkclock.mo share/locale/pt_BR/LC_MESSAGES/kcmkeyboard.mo share/locale/pt_BR/LC_MESSAGES/kcmkeys.mo share/locale/pt_BR/LC_MESSAGES/kcmmouse.mo share/locale/pt_BR/LC_MESSAGES/kcmqtquicksettings.mo share/locale/pt_BR/LC_MESSAGES/kcmsmserver.mo share/locale/pt_BR/LC_MESSAGES/kcmstyle.mo share/locale/pt_BR/LC_MESSAGES/kfontinst.mo share/locale/pt_BR/LC_MESSAGES/knetattach5.mo share/locale/pt_BR/LC_MESSAGES/krdb.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_kwin.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/pt_BR/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/pt_BR/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/pt_BR/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/pt_BR/LC_MESSAGES/plasmaactivitymanager.mo share/locale/ro/LC_MESSAGES/attica_kde_plugin.mo share/locale/ro/LC_MESSAGES/kaccess.mo share/locale/ro/LC_MESSAGES/kcm5_baloofile.mo share/locale/ro/LC_MESSAGES/kcm5_componentchooser.mo share/locale/ro/LC_MESSAGES/kcm5_device_automounter.mo share/locale/ro/LC_MESSAGES/kcm5_emoticons.mo share/locale/ro/LC_MESSAGES/kcm5_icons.mo share/locale/ro/LC_MESSAGES/kcm5_joystick.mo share/locale/ro/LC_MESSAGES/kcm5_kded.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_desktoppaths.mo share/locale/ro/LC_MESSAGES/kcm_desktoptheme.mo share/locale/ro/LC_MESSAGES/kcm_fonts.mo share/locale/ro/LC_MESSAGES/kcm_launchfeedback.mo share/locale/ro/LC_MESSAGES/kcm_lookandfeel.mo share/locale/ro/LC_MESSAGES/kcm_search.mo share/locale/ro/LC_MESSAGES/kcm_solid_actions.mo share/locale/ro/LC_MESSAGES/kcm_splashscreen.mo share/locale/ro/LC_MESSAGES/kcm_standard_actions.mo share/locale/ro/LC_MESSAGES/kcm_touchpad.mo share/locale/ro/LC_MESSAGES/kcm_workspace.mo share/locale/ro/LC_MESSAGES/kcmaccess.mo share/locale/ro/LC_MESSAGES/kcmformats.mo share/locale/ro/LC_MESSAGES/kcmkclock.mo share/locale/ro/LC_MESSAGES/kcmkeyboard.mo share/locale/ro/LC_MESSAGES/kcmkeys.mo share/locale/ro/LC_MESSAGES/kcmmouse.mo share/locale/ro/LC_MESSAGES/kcmsmserver.mo share/locale/ro/LC_MESSAGES/kcmstyle.mo share/locale/ro/LC_MESSAGES/kfontinst.mo share/locale/ro/LC_MESSAGES/knetattach5.mo share/locale/ro/LC_MESSAGES/krdb.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/ro/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/ro/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/ro/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/ro/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/ru/LC_MESSAGES/attica_kde_plugin.mo share/locale/ru/LC_MESSAGES/kaccess.mo share/locale/ru/LC_MESSAGES/kcm5_baloofile.mo share/locale/ru/LC_MESSAGES/kcm5_componentchooser.mo share/locale/ru/LC_MESSAGES/kcm5_device_automounter.mo share/locale/ru/LC_MESSAGES/kcm5_emoticons.mo share/locale/ru/LC_MESSAGES/kcm5_icons.mo share/locale/ru/LC_MESSAGES/kcm5_joystick.mo share/locale/ru/LC_MESSAGES/kcm5_kded.mo share/locale/ru/LC_MESSAGES/kcm_activities5.mo share/locale/ru/LC_MESSAGES/kcm_autostart.mo share/locale/ru/LC_MESSAGES/kcm_colors.mo share/locale/ru/LC_MESSAGES/kcm_cursortheme.mo share/locale/ru/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ru/LC_MESSAGES/kcm_desktoptheme.mo share/locale/ru/LC_MESSAGES/kcm_fonts.mo share/locale/ru/LC_MESSAGES/kcm_launchfeedback.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_search.mo share/locale/ru/LC_MESSAGES/kcm_solid_actions.mo share/locale/ru/LC_MESSAGES/kcm_splashscreen.mo share/locale/ru/LC_MESSAGES/kcm_standard_actions.mo share/locale/ru/LC_MESSAGES/kcm_touchpad.mo share/locale/ru/LC_MESSAGES/kcm_workspace.mo share/locale/ru/LC_MESSAGES/kcmaccess.mo share/locale/ru/LC_MESSAGES/kcmformats.mo share/locale/ru/LC_MESSAGES/kcmkclock.mo share/locale/ru/LC_MESSAGES/kcmkeyboard.mo share/locale/ru/LC_MESSAGES/kcmkeys.mo share/locale/ru/LC_MESSAGES/kcmmouse.mo share/locale/ru/LC_MESSAGES/kcmqtquicksettings.mo share/locale/ru/LC_MESSAGES/kcmsmserver.mo share/locale/ru/LC_MESSAGES/kcmstyle.mo share/locale/ru/LC_MESSAGES/kfontinst.mo share/locale/ru/LC_MESSAGES/knetattach5.mo share/locale/ru/LC_MESSAGES/krdb.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/ru/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/ru/LC_MESSAGES/plasma_runner_kwin.mo share/locale/ru/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/ru/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/ru/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/ru/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/ru/LC_MESSAGES/plasmaactivitymanager.mo share/locale/se/LC_MESSAGES/kaccess.mo share/locale/se/LC_MESSAGES/kcm5_componentchooser.mo share/locale/se/LC_MESSAGES/kcm5_icons.mo share/locale/se/LC_MESSAGES/kcm5_joystick.mo share/locale/se/LC_MESSAGES/kcm5_kded.mo share/locale/se/LC_MESSAGES/kcm_colors.mo share/locale/se/LC_MESSAGES/kcm_cursortheme.mo share/locale/se/LC_MESSAGES/kcm_desktoppaths.mo share/locale/se/LC_MESSAGES/kcm_fonts.mo share/locale/se/LC_MESSAGES/kcm_launchfeedback.mo share/locale/se/LC_MESSAGES/kcmaccess.mo share/locale/se/LC_MESSAGES/kcmformats.mo share/locale/se/LC_MESSAGES/kcmkclock.mo share/locale/se/LC_MESSAGES/kcmkeyboard.mo share/locale/se/LC_MESSAGES/kcmkeys.mo share/locale/se/LC_MESSAGES/kcmmouse.mo share/locale/se/LC_MESSAGES/kcmsmserver.mo share/locale/se/LC_MESSAGES/kcmstyle.mo share/locale/se/LC_MESSAGES/kfontinst.mo share/locale/se/LC_MESSAGES/knetattach5.mo share/locale/se/LC_MESSAGES/krdb.mo share/locale/se/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/se/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/si/LC_MESSAGES/kaccess.mo share/locale/si/LC_MESSAGES/kcm5_componentchooser.mo share/locale/si/LC_MESSAGES/kcm5_device_automounter.mo share/locale/si/LC_MESSAGES/kcm5_emoticons.mo share/locale/si/LC_MESSAGES/kcm5_icons.mo share/locale/si/LC_MESSAGES/kcm5_joystick.mo share/locale/si/LC_MESSAGES/kcm5_kded.mo share/locale/si/LC_MESSAGES/kcm_autostart.mo share/locale/si/LC_MESSAGES/kcm_colors.mo share/locale/si/LC_MESSAGES/kcm_cursortheme.mo share/locale/si/LC_MESSAGES/kcm_desktoppaths.mo share/locale/si/LC_MESSAGES/kcm_desktoptheme.mo share/locale/si/LC_MESSAGES/kcm_fonts.mo share/locale/si/LC_MESSAGES/kcm_launchfeedback.mo share/locale/si/LC_MESSAGES/kcm_solid_actions.mo share/locale/si/LC_MESSAGES/kcm_standard_actions.mo share/locale/si/LC_MESSAGES/kcmaccess.mo share/locale/si/LC_MESSAGES/kcmformats.mo share/locale/si/LC_MESSAGES/kcmkclock.mo share/locale/si/LC_MESSAGES/kcmkeyboard.mo share/locale/si/LC_MESSAGES/kcmkeys.mo share/locale/si/LC_MESSAGES/kcmmouse.mo share/locale/si/LC_MESSAGES/kcmsmserver.mo share/locale/si/LC_MESSAGES/kcmstyle.mo share/locale/si/LC_MESSAGES/kfontinst.mo share/locale/si/LC_MESSAGES/knetattach5.mo share/locale/si/LC_MESSAGES/krdb.mo share/locale/si/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/si/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/si/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/si/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/si/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/sk/LC_MESSAGES/attica_kde_plugin.mo share/locale/sk/LC_MESSAGES/kaccess.mo share/locale/sk/LC_MESSAGES/kcm5_baloofile.mo share/locale/sk/LC_MESSAGES/kcm5_componentchooser.mo share/locale/sk/LC_MESSAGES/kcm5_device_automounter.mo share/locale/sk/LC_MESSAGES/kcm5_emoticons.mo share/locale/sk/LC_MESSAGES/kcm5_icons.mo share/locale/sk/LC_MESSAGES/kcm5_joystick.mo share/locale/sk/LC_MESSAGES/kcm5_kded.mo share/locale/sk/LC_MESSAGES/kcm_activities5.mo share/locale/sk/LC_MESSAGES/kcm_autostart.mo share/locale/sk/LC_MESSAGES/kcm_colors.mo share/locale/sk/LC_MESSAGES/kcm_cursortheme.mo share/locale/sk/LC_MESSAGES/kcm_desktoppaths.mo share/locale/sk/LC_MESSAGES/kcm_desktoptheme.mo share/locale/sk/LC_MESSAGES/kcm_fonts.mo share/locale/sk/LC_MESSAGES/kcm_launchfeedback.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_search.mo share/locale/sk/LC_MESSAGES/kcm_solid_actions.mo share/locale/sk/LC_MESSAGES/kcm_splashscreen.mo share/locale/sk/LC_MESSAGES/kcm_standard_actions.mo share/locale/sk/LC_MESSAGES/kcm_touchpad.mo share/locale/sk/LC_MESSAGES/kcm_workspace.mo share/locale/sk/LC_MESSAGES/kcmaccess.mo share/locale/sk/LC_MESSAGES/kcmformats.mo share/locale/sk/LC_MESSAGES/kcmkclock.mo share/locale/sk/LC_MESSAGES/kcmkeyboard.mo share/locale/sk/LC_MESSAGES/kcmkeys.mo share/locale/sk/LC_MESSAGES/kcmmouse.mo share/locale/sk/LC_MESSAGES/kcmqtquicksettings.mo share/locale/sk/LC_MESSAGES/kcmsmserver.mo share/locale/sk/LC_MESSAGES/kcmstyle.mo share/locale/sk/LC_MESSAGES/kfontinst.mo share/locale/sk/LC_MESSAGES/knetattach5.mo share/locale/sk/LC_MESSAGES/krdb.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/sk/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/sk/LC_MESSAGES/plasma_runner_kwin.mo share/locale/sk/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/sk/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/sk/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/sk/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/sk/LC_MESSAGES/plasmaactivitymanager.mo share/locale/sl/LC_MESSAGES/attica_kde_plugin.mo share/locale/sl/LC_MESSAGES/kaccess.mo share/locale/sl/LC_MESSAGES/kcm5_baloofile.mo share/locale/sl/LC_MESSAGES/kcm5_componentchooser.mo share/locale/sl/LC_MESSAGES/kcm5_device_automounter.mo share/locale/sl/LC_MESSAGES/kcm5_emoticons.mo share/locale/sl/LC_MESSAGES/kcm5_icons.mo share/locale/sl/LC_MESSAGES/kcm5_joystick.mo share/locale/sl/LC_MESSAGES/kcm5_kded.mo share/locale/sl/LC_MESSAGES/kcm_activities5.mo share/locale/sl/LC_MESSAGES/kcm_autostart.mo share/locale/sl/LC_MESSAGES/kcm_colors.mo share/locale/sl/LC_MESSAGES/kcm_cursortheme.mo share/locale/sl/LC_MESSAGES/kcm_desktoppaths.mo share/locale/sl/LC_MESSAGES/kcm_desktoptheme.mo share/locale/sl/LC_MESSAGES/kcm_fonts.mo share/locale/sl/LC_MESSAGES/kcm_launchfeedback.mo share/locale/sl/LC_MESSAGES/kcm_lookandfeel.mo share/locale/sl/LC_MESSAGES/kcm_nightcolor.mo share/locale/sl/LC_MESSAGES/kcm_search.mo share/locale/sl/LC_MESSAGES/kcm_solid_actions.mo share/locale/sl/LC_MESSAGES/kcm_splashscreen.mo share/locale/sl/LC_MESSAGES/kcm_standard_actions.mo share/locale/sl/LC_MESSAGES/kcm_touchpad.mo share/locale/sl/LC_MESSAGES/kcm_workspace.mo share/locale/sl/LC_MESSAGES/kcmaccess.mo share/locale/sl/LC_MESSAGES/kcmformats.mo share/locale/sl/LC_MESSAGES/kcmkclock.mo share/locale/sl/LC_MESSAGES/kcmkeyboard.mo share/locale/sl/LC_MESSAGES/kcmkeys.mo share/locale/sl/LC_MESSAGES/kcmmouse.mo share/locale/sl/LC_MESSAGES/kcmsmserver.mo share/locale/sl/LC_MESSAGES/kcmstyle.mo share/locale/sl/LC_MESSAGES/kfontinst.mo share/locale/sl/LC_MESSAGES/knetattach5.mo share/locale/sl/LC_MESSAGES/krdb.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/sl/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/sl/LC_MESSAGES/plasma_runner_kwin.mo share/locale/sl/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/sl/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/sl/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/sl/LC_MESSAGES/plasmaactivitymanager.mo share/locale/sq/LC_MESSAGES/kaccess.mo share/locale/sq/LC_MESSAGES/kcm5_componentchooser.mo share/locale/sq/LC_MESSAGES/kcm5_emoticons.mo share/locale/sq/LC_MESSAGES/kcm5_icons.mo share/locale/sq/LC_MESSAGES/kcm5_joystick.mo share/locale/sq/LC_MESSAGES/kcm5_kded.mo share/locale/sq/LC_MESSAGES/kcm_autostart.mo share/locale/sq/LC_MESSAGES/kcm_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_launchfeedback.mo share/locale/sq/LC_MESSAGES/kcm_solid_actions.mo share/locale/sq/LC_MESSAGES/kcm_standard_actions.mo share/locale/sq/LC_MESSAGES/kcmaccess.mo share/locale/sq/LC_MESSAGES/kcmformats.mo share/locale/sq/LC_MESSAGES/kcmkclock.mo share/locale/sq/LC_MESSAGES/kcmkeyboard.mo share/locale/sq/LC_MESSAGES/kcmkeys.mo share/locale/sq/LC_MESSAGES/kcmmouse.mo share/locale/sq/LC_MESSAGES/kcmsmserver.mo share/locale/sq/LC_MESSAGES/kcmstyle.mo share/locale/sq/LC_MESSAGES/kfontinst.mo share/locale/sq/LC_MESSAGES/knetattach5.mo share/locale/sq/LC_MESSAGES/krdb.mo share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/sr/LC_MESSAGES/attica_kde_plugin.mo share/locale/sr/LC_MESSAGES/kaccess.mo share/locale/sr/LC_MESSAGES/kcm5_baloofile.mo share/locale/sr/LC_MESSAGES/kcm5_componentchooser.mo share/locale/sr/LC_MESSAGES/kcm5_device_automounter.mo share/locale/sr/LC_MESSAGES/kcm5_emoticons.mo share/locale/sr/LC_MESSAGES/kcm5_icons.mo share/locale/sr/LC_MESSAGES/kcm5_joystick.mo share/locale/sr/LC_MESSAGES/kcm5_kded.mo share/locale/sr/LC_MESSAGES/kcm_activities5.mo share/locale/sr/LC_MESSAGES/kcm_autostart.mo share/locale/sr/LC_MESSAGES/kcm_colors.mo share/locale/sr/LC_MESSAGES/kcm_cursortheme.mo share/locale/sr/LC_MESSAGES/kcm_desktoppaths.mo share/locale/sr/LC_MESSAGES/kcm_desktoptheme.mo share/locale/sr/LC_MESSAGES/kcm_fonts.mo share/locale/sr/LC_MESSAGES/kcm_launchfeedback.mo share/locale/sr/LC_MESSAGES/kcm_lookandfeel.mo share/locale/sr/LC_MESSAGES/kcm_nightcolor.mo share/locale/sr/LC_MESSAGES/kcm_search.mo share/locale/sr/LC_MESSAGES/kcm_solid_actions.mo share/locale/sr/LC_MESSAGES/kcm_splashscreen.mo share/locale/sr/LC_MESSAGES/kcm_standard_actions.mo share/locale/sr/LC_MESSAGES/kcm_touchpad.mo share/locale/sr/LC_MESSAGES/kcm_workspace.mo share/locale/sr/LC_MESSAGES/kcmaccess.mo share/locale/sr/LC_MESSAGES/kcmformats.mo share/locale/sr/LC_MESSAGES/kcmkclock.mo share/locale/sr/LC_MESSAGES/kcmkeyboard.mo share/locale/sr/LC_MESSAGES/kcmkeys.mo share/locale/sr/LC_MESSAGES/kcmmouse.mo share/locale/sr/LC_MESSAGES/kcmsmserver.mo share/locale/sr/LC_MESSAGES/kcmstyle.mo share/locale/sr/LC_MESSAGES/kfontinst.mo share/locale/sr/LC_MESSAGES/knetattach5.mo share/locale/sr/LC_MESSAGES/krdb.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/sr/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/sr/LC_MESSAGES/plasma_runner_kwin.mo share/locale/sr/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/sr/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/sr/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/sr/LC_MESSAGES/plasmaactivitymanager.mo share/locale/sr/LC_SCRIPTS/kfontinst/kfontinst.js share/locale/sr@ijekavian/LC_MESSAGES/attica_kde_plugin.mo share/locale/sr@ijekavian/LC_MESSAGES/kaccess.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm5_baloofile.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm5_componentchooser.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm5_device_automounter.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm5_emoticons.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm5_icons.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm5_joystick.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm5_kded.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_activities5.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_autostart.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_colors.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_cursortheme.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_desktoppaths.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_launchfeedback.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_search.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_solid_actions.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_splashscreen.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_standard_actions.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_touchpad.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_workspace.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmaccess.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmformats.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmkclock.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmkeyboard.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmkeys.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmmouse.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmsmserver.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmstyle.mo share/locale/sr@ijekavian/LC_MESSAGES/kfontinst.mo share/locale/sr@ijekavian/LC_MESSAGES/knetattach5.mo share/locale/sr@ijekavian/LC_MESSAGES/krdb.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_kwin.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/sr@ijekavian/LC_MESSAGES/plasmaactivitymanager.mo share/locale/sr@ijekavian/LC_SCRIPTS/kfontinst/kfontinst.js share/locale/sr@ijekavianlatin/LC_MESSAGES/attica_kde_plugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kaccess.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm5_baloofile.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm5_componentchooser.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm5_device_automounter.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm5_emoticons.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm5_icons.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm5_joystick.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm5_kded.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_activities5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_autostart.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_colors.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_cursortheme.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_desktoppaths.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_launchfeedback.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_search.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_solid_actions.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_splashscreen.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_standard_actions.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_touchpad.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_workspace.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmaccess.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmformats.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmkclock.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmkeyboard.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmkeys.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmmouse.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmsmserver.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmstyle.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kfontinst.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/knetattach5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/krdb.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_kwin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasmaactivitymanager.mo share/locale/sr@ijekavianlatin/LC_SCRIPTS/kfontinst/kfontinst.js share/locale/sr@latin/LC_MESSAGES/attica_kde_plugin.mo share/locale/sr@latin/LC_MESSAGES/kaccess.mo share/locale/sr@latin/LC_MESSAGES/kcm5_baloofile.mo share/locale/sr@latin/LC_MESSAGES/kcm5_componentchooser.mo share/locale/sr@latin/LC_MESSAGES/kcm5_device_automounter.mo share/locale/sr@latin/LC_MESSAGES/kcm5_emoticons.mo share/locale/sr@latin/LC_MESSAGES/kcm5_icons.mo share/locale/sr@latin/LC_MESSAGES/kcm5_joystick.mo share/locale/sr@latin/LC_MESSAGES/kcm5_kded.mo share/locale/sr@latin/LC_MESSAGES/kcm_activities5.mo share/locale/sr@latin/LC_MESSAGES/kcm_autostart.mo share/locale/sr@latin/LC_MESSAGES/kcm_colors.mo share/locale/sr@latin/LC_MESSAGES/kcm_cursortheme.mo share/locale/sr@latin/LC_MESSAGES/kcm_desktoppaths.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_launchfeedback.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_search.mo share/locale/sr@latin/LC_MESSAGES/kcm_solid_actions.mo share/locale/sr@latin/LC_MESSAGES/kcm_splashscreen.mo share/locale/sr@latin/LC_MESSAGES/kcm_standard_actions.mo share/locale/sr@latin/LC_MESSAGES/kcm_touchpad.mo share/locale/sr@latin/LC_MESSAGES/kcm_workspace.mo share/locale/sr@latin/LC_MESSAGES/kcmaccess.mo share/locale/sr@latin/LC_MESSAGES/kcmformats.mo share/locale/sr@latin/LC_MESSAGES/kcmkclock.mo share/locale/sr@latin/LC_MESSAGES/kcmkeyboard.mo share/locale/sr@latin/LC_MESSAGES/kcmkeys.mo share/locale/sr@latin/LC_MESSAGES/kcmmouse.mo share/locale/sr@latin/LC_MESSAGES/kcmsmserver.mo share/locale/sr@latin/LC_MESSAGES/kcmstyle.mo share/locale/sr@latin/LC_MESSAGES/kfontinst.mo share/locale/sr@latin/LC_MESSAGES/knetattach5.mo share/locale/sr@latin/LC_MESSAGES/krdb.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_kwin.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/sr@latin/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/sr@latin/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/sr@latin/LC_MESSAGES/plasmaactivitymanager.mo share/locale/sr@latin/LC_SCRIPTS/kfontinst/kfontinst.js share/locale/sv/LC_MESSAGES/attica_kde_plugin.mo share/locale/sv/LC_MESSAGES/kaccess.mo share/locale/sv/LC_MESSAGES/kcm5_baloofile.mo share/locale/sv/LC_MESSAGES/kcm5_componentchooser.mo share/locale/sv/LC_MESSAGES/kcm5_device_automounter.mo share/locale/sv/LC_MESSAGES/kcm5_emoticons.mo share/locale/sv/LC_MESSAGES/kcm5_icons.mo share/locale/sv/LC_MESSAGES/kcm5_joystick.mo share/locale/sv/LC_MESSAGES/kcm5_kded.mo share/locale/sv/LC_MESSAGES/kcm_activities5.mo share/locale/sv/LC_MESSAGES/kcm_autostart.mo share/locale/sv/LC_MESSAGES/kcm_colors.mo share/locale/sv/LC_MESSAGES/kcm_cursortheme.mo share/locale/sv/LC_MESSAGES/kcm_desktoppaths.mo share/locale/sv/LC_MESSAGES/kcm_desktoptheme.mo share/locale/sv/LC_MESSAGES/kcm_fonts.mo share/locale/sv/LC_MESSAGES/kcm_launchfeedback.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_search.mo share/locale/sv/LC_MESSAGES/kcm_solid_actions.mo share/locale/sv/LC_MESSAGES/kcm_splashscreen.mo share/locale/sv/LC_MESSAGES/kcm_standard_actions.mo share/locale/sv/LC_MESSAGES/kcm_touchpad.mo share/locale/sv/LC_MESSAGES/kcm_workspace.mo share/locale/sv/LC_MESSAGES/kcmaccess.mo share/locale/sv/LC_MESSAGES/kcmformats.mo share/locale/sv/LC_MESSAGES/kcmkclock.mo share/locale/sv/LC_MESSAGES/kcmkeyboard.mo share/locale/sv/LC_MESSAGES/kcmkeys.mo share/locale/sv/LC_MESSAGES/kcmmouse.mo share/locale/sv/LC_MESSAGES/kcmqtquicksettings.mo share/locale/sv/LC_MESSAGES/kcmsmserver.mo share/locale/sv/LC_MESSAGES/kcmstyle.mo share/locale/sv/LC_MESSAGES/kfontinst.mo share/locale/sv/LC_MESSAGES/knetattach5.mo share/locale/sv/LC_MESSAGES/krdb.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/sv/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/sv/LC_MESSAGES/plasma_runner_kwin.mo share/locale/sv/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/sv/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/sv/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/sv/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/sv/LC_MESSAGES/plasmaactivitymanager.mo share/locale/ta/LC_MESSAGES/kaccess.mo share/locale/ta/LC_MESSAGES/kcm5_componentchooser.mo share/locale/ta/LC_MESSAGES/kcm5_emoticons.mo share/locale/ta/LC_MESSAGES/kcm5_icons.mo share/locale/ta/LC_MESSAGES/kcm5_joystick.mo share/locale/ta/LC_MESSAGES/kcm5_kded.mo share/locale/ta/LC_MESSAGES/kcm_autostart.mo share/locale/ta/LC_MESSAGES/kcm_colors.mo share/locale/ta/LC_MESSAGES/kcm_cursortheme.mo share/locale/ta/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ta/LC_MESSAGES/kcm_fonts.mo share/locale/ta/LC_MESSAGES/kcm_launchfeedback.mo share/locale/ta/LC_MESSAGES/kcmaccess.mo share/locale/ta/LC_MESSAGES/kcmformats.mo share/locale/ta/LC_MESSAGES/kcmkclock.mo share/locale/ta/LC_MESSAGES/kcmkeyboard.mo share/locale/ta/LC_MESSAGES/kcmkeys.mo share/locale/ta/LC_MESSAGES/kcmmouse.mo share/locale/ta/LC_MESSAGES/kcmsmserver.mo share/locale/ta/LC_MESSAGES/kcmstyle.mo share/locale/ta/LC_MESSAGES/kfontinst.mo share/locale/ta/LC_MESSAGES/knetattach5.mo share/locale/ta/LC_MESSAGES/krdb.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/te/LC_MESSAGES/kaccess.mo share/locale/te/LC_MESSAGES/kcm5_componentchooser.mo share/locale/te/LC_MESSAGES/kcm5_emoticons.mo share/locale/te/LC_MESSAGES/kcm5_icons.mo share/locale/te/LC_MESSAGES/kcm5_joystick.mo share/locale/te/LC_MESSAGES/kcm5_kded.mo share/locale/te/LC_MESSAGES/kcm_autostart.mo share/locale/te/LC_MESSAGES/kcm_colors.mo share/locale/te/LC_MESSAGES/kcm_cursortheme.mo share/locale/te/LC_MESSAGES/kcm_desktoppaths.mo share/locale/te/LC_MESSAGES/kcm_desktoptheme.mo share/locale/te/LC_MESSAGES/kcm_fonts.mo share/locale/te/LC_MESSAGES/kcm_launchfeedback.mo share/locale/te/LC_MESSAGES/kcm_standard_actions.mo share/locale/te/LC_MESSAGES/kcmaccess.mo share/locale/te/LC_MESSAGES/kcmformats.mo share/locale/te/LC_MESSAGES/kcmkclock.mo share/locale/te/LC_MESSAGES/kcmkeyboard.mo share/locale/te/LC_MESSAGES/kcmkeys.mo share/locale/te/LC_MESSAGES/kcmmouse.mo share/locale/te/LC_MESSAGES/kcmsmserver.mo share/locale/te/LC_MESSAGES/kcmstyle.mo share/locale/te/LC_MESSAGES/kfontinst.mo share/locale/te/LC_MESSAGES/knetattach5.mo share/locale/te/LC_MESSAGES/krdb.mo share/locale/te/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/te/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/te/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/te/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/tg/LC_MESSAGES/attica_kde_plugin.mo share/locale/tg/LC_MESSAGES/kaccess.mo share/locale/tg/LC_MESSAGES/kcm5_componentchooser.mo share/locale/tg/LC_MESSAGES/kcm5_emoticons.mo share/locale/tg/LC_MESSAGES/kcm5_icons.mo share/locale/tg/LC_MESSAGES/kcm5_joystick.mo share/locale/tg/LC_MESSAGES/kcm5_kded.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_desktoppaths.mo share/locale/tg/LC_MESSAGES/kcm_desktoptheme.mo share/locale/tg/LC_MESSAGES/kcm_fonts.mo share/locale/tg/LC_MESSAGES/kcm_launchfeedback.mo share/locale/tg/LC_MESSAGES/kcm_standard_actions.mo share/locale/tg/LC_MESSAGES/kcmaccess.mo share/locale/tg/LC_MESSAGES/kcmformats.mo share/locale/tg/LC_MESSAGES/kcmkclock.mo share/locale/tg/LC_MESSAGES/kcmkeyboard.mo share/locale/tg/LC_MESSAGES/kcmkeys.mo share/locale/tg/LC_MESSAGES/kcmmouse.mo share/locale/tg/LC_MESSAGES/kcmsmserver.mo share/locale/tg/LC_MESSAGES/kcmstyle.mo share/locale/tg/LC_MESSAGES/kfontinst.mo share/locale/tg/LC_MESSAGES/knetattach5.mo share/locale/tg/LC_MESSAGES/krdb.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/tg/LC_MESSAGES/plasma_runner_kwin.mo share/locale/tg/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/th/LC_MESSAGES/attica_kde_plugin.mo share/locale/th/LC_MESSAGES/kaccess.mo share/locale/th/LC_MESSAGES/kcm5_componentchooser.mo share/locale/th/LC_MESSAGES/kcm5_device_automounter.mo share/locale/th/LC_MESSAGES/kcm5_emoticons.mo share/locale/th/LC_MESSAGES/kcm5_icons.mo share/locale/th/LC_MESSAGES/kcm5_joystick.mo share/locale/th/LC_MESSAGES/kcm5_kded.mo share/locale/th/LC_MESSAGES/kcm_autostart.mo share/locale/th/LC_MESSAGES/kcm_colors.mo share/locale/th/LC_MESSAGES/kcm_cursortheme.mo share/locale/th/LC_MESSAGES/kcm_desktoppaths.mo share/locale/th/LC_MESSAGES/kcm_desktoptheme.mo share/locale/th/LC_MESSAGES/kcm_fonts.mo share/locale/th/LC_MESSAGES/kcm_launchfeedback.mo share/locale/th/LC_MESSAGES/kcm_solid_actions.mo share/locale/th/LC_MESSAGES/kcm_standard_actions.mo share/locale/th/LC_MESSAGES/kcmaccess.mo share/locale/th/LC_MESSAGES/kcmformats.mo share/locale/th/LC_MESSAGES/kcmkclock.mo share/locale/th/LC_MESSAGES/kcmkeyboard.mo share/locale/th/LC_MESSAGES/kcmkeys.mo share/locale/th/LC_MESSAGES/kcmmouse.mo share/locale/th/LC_MESSAGES/kcmsmserver.mo share/locale/th/LC_MESSAGES/kcmstyle.mo share/locale/th/LC_MESSAGES/kfontinst.mo share/locale/th/LC_MESSAGES/knetattach5.mo share/locale/th/LC_MESSAGES/krdb.mo share/locale/th/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/th/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/tr/LC_MESSAGES/attica_kde_plugin.mo share/locale/tr/LC_MESSAGES/kaccess.mo share/locale/tr/LC_MESSAGES/kcm5_baloofile.mo share/locale/tr/LC_MESSAGES/kcm5_componentchooser.mo share/locale/tr/LC_MESSAGES/kcm5_device_automounter.mo share/locale/tr/LC_MESSAGES/kcm5_emoticons.mo share/locale/tr/LC_MESSAGES/kcm5_icons.mo share/locale/tr/LC_MESSAGES/kcm5_joystick.mo share/locale/tr/LC_MESSAGES/kcm5_kded.mo share/locale/tr/LC_MESSAGES/kcm_activities5.mo share/locale/tr/LC_MESSAGES/kcm_autostart.mo share/locale/tr/LC_MESSAGES/kcm_colors.mo share/locale/tr/LC_MESSAGES/kcm_cursortheme.mo share/locale/tr/LC_MESSAGES/kcm_desktoppaths.mo share/locale/tr/LC_MESSAGES/kcm_desktoptheme.mo share/locale/tr/LC_MESSAGES/kcm_fonts.mo share/locale/tr/LC_MESSAGES/kcm_launchfeedback.mo share/locale/tr/LC_MESSAGES/kcm_lookandfeel.mo share/locale/tr/LC_MESSAGES/kcm_search.mo share/locale/tr/LC_MESSAGES/kcm_solid_actions.mo share/locale/tr/LC_MESSAGES/kcm_splashscreen.mo share/locale/tr/LC_MESSAGES/kcm_standard_actions.mo share/locale/tr/LC_MESSAGES/kcm_touchpad.mo share/locale/tr/LC_MESSAGES/kcm_workspace.mo share/locale/tr/LC_MESSAGES/kcmaccess.mo share/locale/tr/LC_MESSAGES/kcmformats.mo share/locale/tr/LC_MESSAGES/kcmkclock.mo share/locale/tr/LC_MESSAGES/kcmkeyboard.mo share/locale/tr/LC_MESSAGES/kcmkeys.mo share/locale/tr/LC_MESSAGES/kcmmouse.mo share/locale/tr/LC_MESSAGES/kcmsmserver.mo share/locale/tr/LC_MESSAGES/kcmstyle.mo share/locale/tr/LC_MESSAGES/kfontinst.mo share/locale/tr/LC_MESSAGES/knetattach5.mo share/locale/tr/LC_MESSAGES/krdb.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/tr/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/tr/LC_MESSAGES/plasma_runner_kwin.mo share/locale/tr/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/tr/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/tr/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/tr/LC_MESSAGES/plasmaactivitymanager.mo share/locale/ug/LC_MESSAGES/attica_kde_plugin.mo share/locale/ug/LC_MESSAGES/kaccess.mo share/locale/ug/LC_MESSAGES/kcm5_componentchooser.mo share/locale/ug/LC_MESSAGES/kcm5_device_automounter.mo share/locale/ug/LC_MESSAGES/kcm5_emoticons.mo share/locale/ug/LC_MESSAGES/kcm5_icons.mo share/locale/ug/LC_MESSAGES/kcm5_joystick.mo share/locale/ug/LC_MESSAGES/kcm5_kded.mo share/locale/ug/LC_MESSAGES/kcm_autostart.mo share/locale/ug/LC_MESSAGES/kcm_colors.mo share/locale/ug/LC_MESSAGES/kcm_cursortheme.mo share/locale/ug/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ug/LC_MESSAGES/kcm_desktoptheme.mo share/locale/ug/LC_MESSAGES/kcm_fonts.mo share/locale/ug/LC_MESSAGES/kcm_launchfeedback.mo share/locale/ug/LC_MESSAGES/kcm_solid_actions.mo share/locale/ug/LC_MESSAGES/kcm_standard_actions.mo share/locale/ug/LC_MESSAGES/kcmaccess.mo share/locale/ug/LC_MESSAGES/kcmformats.mo share/locale/ug/LC_MESSAGES/kcmkclock.mo share/locale/ug/LC_MESSAGES/kcmkeyboard.mo share/locale/ug/LC_MESSAGES/kcmkeys.mo share/locale/ug/LC_MESSAGES/kcmmouse.mo share/locale/ug/LC_MESSAGES/kcmsmserver.mo share/locale/ug/LC_MESSAGES/kcmstyle.mo share/locale/ug/LC_MESSAGES/kfontinst.mo share/locale/ug/LC_MESSAGES/knetattach5.mo share/locale/ug/LC_MESSAGES/krdb.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/ug/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/ug/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/uk/LC_MESSAGES/attica_kde_plugin.mo share/locale/uk/LC_MESSAGES/kaccess.mo share/locale/uk/LC_MESSAGES/kcm5_baloofile.mo share/locale/uk/LC_MESSAGES/kcm5_componentchooser.mo share/locale/uk/LC_MESSAGES/kcm5_device_automounter.mo share/locale/uk/LC_MESSAGES/kcm5_emoticons.mo share/locale/uk/LC_MESSAGES/kcm5_icons.mo share/locale/uk/LC_MESSAGES/kcm5_joystick.mo share/locale/uk/LC_MESSAGES/kcm5_kded.mo share/locale/uk/LC_MESSAGES/kcm_activities5.mo share/locale/uk/LC_MESSAGES/kcm_autostart.mo share/locale/uk/LC_MESSAGES/kcm_colors.mo share/locale/uk/LC_MESSAGES/kcm_cursortheme.mo share/locale/uk/LC_MESSAGES/kcm_desktoppaths.mo share/locale/uk/LC_MESSAGES/kcm_desktoptheme.mo share/locale/uk/LC_MESSAGES/kcm_fonts.mo share/locale/uk/LC_MESSAGES/kcm_launchfeedback.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_search.mo share/locale/uk/LC_MESSAGES/kcm_solid_actions.mo share/locale/uk/LC_MESSAGES/kcm_splashscreen.mo share/locale/uk/LC_MESSAGES/kcm_standard_actions.mo share/locale/uk/LC_MESSAGES/kcm_touchpad.mo share/locale/uk/LC_MESSAGES/kcm_workspace.mo share/locale/uk/LC_MESSAGES/kcmaccess.mo share/locale/uk/LC_MESSAGES/kcmformats.mo share/locale/uk/LC_MESSAGES/kcmkclock.mo share/locale/uk/LC_MESSAGES/kcmkeyboard.mo share/locale/uk/LC_MESSAGES/kcmkeys.mo share/locale/uk/LC_MESSAGES/kcmmouse.mo share/locale/uk/LC_MESSAGES/kcmqtquicksettings.mo share/locale/uk/LC_MESSAGES/kcmsmserver.mo share/locale/uk/LC_MESSAGES/kcmstyle.mo share/locale/uk/LC_MESSAGES/kfontinst.mo share/locale/uk/LC_MESSAGES/knetattach5.mo share/locale/uk/LC_MESSAGES/krdb.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/uk/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/uk/LC_MESSAGES/plasma_runner_kwin.mo share/locale/uk/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/uk/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/uk/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/uk/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/uk/LC_MESSAGES/plasmaactivitymanager.mo share/locale/uz/LC_MESSAGES/kaccess.mo share/locale/uz/LC_MESSAGES/kcm5_componentchooser.mo share/locale/uz/LC_MESSAGES/kcm5_icons.mo share/locale/uz/LC_MESSAGES/kcm5_joystick.mo share/locale/uz/LC_MESSAGES/kcm5_kded.mo share/locale/uz/LC_MESSAGES/kcm_colors.mo share/locale/uz/LC_MESSAGES/kcm_cursortheme.mo share/locale/uz/LC_MESSAGES/kcm_desktoppaths.mo share/locale/uz/LC_MESSAGES/kcm_fonts.mo share/locale/uz/LC_MESSAGES/kcm_launchfeedback.mo share/locale/uz/LC_MESSAGES/kcmaccess.mo share/locale/uz/LC_MESSAGES/kcmformats.mo share/locale/uz/LC_MESSAGES/kcmkclock.mo share/locale/uz/LC_MESSAGES/kcmkeyboard.mo share/locale/uz/LC_MESSAGES/kcmkeys.mo share/locale/uz/LC_MESSAGES/kcmmouse.mo share/locale/uz/LC_MESSAGES/kcmsmserver.mo share/locale/uz/LC_MESSAGES/kcmstyle.mo share/locale/uz/LC_MESSAGES/kfontinst.mo share/locale/uz/LC_MESSAGES/knetattach5.mo share/locale/uz/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/uz@cyrillic/LC_MESSAGES/kaccess.mo share/locale/uz@cyrillic/LC_MESSAGES/kcm5_componentchooser.mo share/locale/uz@cyrillic/LC_MESSAGES/kcm5_icons.mo share/locale/uz@cyrillic/LC_MESSAGES/kcm5_joystick.mo share/locale/uz@cyrillic/LC_MESSAGES/kcm5_kded.mo share/locale/uz@cyrillic/LC_MESSAGES/kcm_colors.mo share/locale/uz@cyrillic/LC_MESSAGES/kcm_cursortheme.mo share/locale/uz@cyrillic/LC_MESSAGES/kcm_desktoppaths.mo share/locale/uz@cyrillic/LC_MESSAGES/kcm_fonts.mo share/locale/uz@cyrillic/LC_MESSAGES/kcm_launchfeedback.mo share/locale/uz@cyrillic/LC_MESSAGES/kcmaccess.mo share/locale/uz@cyrillic/LC_MESSAGES/kcmformats.mo share/locale/uz@cyrillic/LC_MESSAGES/kcmkclock.mo share/locale/uz@cyrillic/LC_MESSAGES/kcmkeyboard.mo share/locale/uz@cyrillic/LC_MESSAGES/kcmkeys.mo share/locale/uz@cyrillic/LC_MESSAGES/kcmmouse.mo share/locale/uz@cyrillic/LC_MESSAGES/kcmsmserver.mo share/locale/uz@cyrillic/LC_MESSAGES/kcmstyle.mo share/locale/uz@cyrillic/LC_MESSAGES/kfontinst.mo share/locale/uz@cyrillic/LC_MESSAGES/knetattach5.mo share/locale/uz@cyrillic/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/vi/LC_MESSAGES/attica_kde_plugin.mo share/locale/vi/LC_MESSAGES/kaccess.mo share/locale/vi/LC_MESSAGES/kcm5_componentchooser.mo share/locale/vi/LC_MESSAGES/kcm5_emoticons.mo share/locale/vi/LC_MESSAGES/kcm5_icons.mo share/locale/vi/LC_MESSAGES/kcm5_joystick.mo share/locale/vi/LC_MESSAGES/kcm5_kded.mo share/locale/vi/LC_MESSAGES/kcm_colors.mo share/locale/vi/LC_MESSAGES/kcm_cursortheme.mo share/locale/vi/LC_MESSAGES/kcm_desktoppaths.mo share/locale/vi/LC_MESSAGES/kcm_fonts.mo share/locale/vi/LC_MESSAGES/kcm_launchfeedback.mo share/locale/vi/LC_MESSAGES/kcmaccess.mo share/locale/vi/LC_MESSAGES/kcmformats.mo share/locale/vi/LC_MESSAGES/kcmkclock.mo share/locale/vi/LC_MESSAGES/kcmkeyboard.mo share/locale/vi/LC_MESSAGES/kcmkeys.mo share/locale/vi/LC_MESSAGES/kcmmouse.mo share/locale/vi/LC_MESSAGES/kcmsmserver.mo share/locale/vi/LC_MESSAGES/kcmstyle.mo share/locale/vi/LC_MESSAGES/kfontinst.mo share/locale/vi/LC_MESSAGES/knetattach5.mo share/locale/vi/LC_MESSAGES/krdb.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/wa/LC_MESSAGES/attica_kde_plugin.mo share/locale/wa/LC_MESSAGES/kaccess.mo share/locale/wa/LC_MESSAGES/kcm5_componentchooser.mo share/locale/wa/LC_MESSAGES/kcm5_device_automounter.mo share/locale/wa/LC_MESSAGES/kcm5_emoticons.mo share/locale/wa/LC_MESSAGES/kcm5_icons.mo share/locale/wa/LC_MESSAGES/kcm5_joystick.mo share/locale/wa/LC_MESSAGES/kcm5_kded.mo share/locale/wa/LC_MESSAGES/kcm_autostart.mo share/locale/wa/LC_MESSAGES/kcm_colors.mo share/locale/wa/LC_MESSAGES/kcm_cursortheme.mo share/locale/wa/LC_MESSAGES/kcm_desktoppaths.mo share/locale/wa/LC_MESSAGES/kcm_desktoptheme.mo share/locale/wa/LC_MESSAGES/kcm_fonts.mo share/locale/wa/LC_MESSAGES/kcm_launchfeedback.mo share/locale/wa/LC_MESSAGES/kcm_solid_actions.mo share/locale/wa/LC_MESSAGES/kcm_standard_actions.mo share/locale/wa/LC_MESSAGES/kcmaccess.mo share/locale/wa/LC_MESSAGES/kcmformats.mo share/locale/wa/LC_MESSAGES/kcmkclock.mo share/locale/wa/LC_MESSAGES/kcmkeyboard.mo share/locale/wa/LC_MESSAGES/kcmkeys.mo share/locale/wa/LC_MESSAGES/kcmmouse.mo share/locale/wa/LC_MESSAGES/kcmsmserver.mo share/locale/wa/LC_MESSAGES/kcmstyle.mo share/locale/wa/LC_MESSAGES/kfontinst.mo share/locale/wa/LC_MESSAGES/knetattach5.mo share/locale/wa/LC_MESSAGES/krdb.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/wa/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/xh/LC_MESSAGES/kaccess.mo share/locale/xh/LC_MESSAGES/kcm5_componentchooser.mo share/locale/xh/LC_MESSAGES/kcm5_icons.mo share/locale/xh/LC_MESSAGES/kcm5_kded.mo share/locale/xh/LC_MESSAGES/kcm_colors.mo share/locale/xh/LC_MESSAGES/kcm_cursortheme.mo share/locale/xh/LC_MESSAGES/kcm_desktoppaths.mo share/locale/xh/LC_MESSAGES/kcm_fonts.mo share/locale/xh/LC_MESSAGES/kcm_launchfeedback.mo share/locale/xh/LC_MESSAGES/kcmaccess.mo share/locale/xh/LC_MESSAGES/kcmformats.mo share/locale/xh/LC_MESSAGES/kcmkclock.mo share/locale/xh/LC_MESSAGES/kcmkeyboard.mo share/locale/xh/LC_MESSAGES/kcmkeys.mo share/locale/xh/LC_MESSAGES/kcmmouse.mo share/locale/xh/LC_MESSAGES/kcmsmserver.mo share/locale/xh/LC_MESSAGES/kcmstyle.mo share/locale/xh/LC_MESSAGES/kfontinst.mo share/locale/xh/LC_MESSAGES/krdb.mo share/locale/xh/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/zh_CN/LC_MESSAGES/attica_kde_plugin.mo share/locale/zh_CN/LC_MESSAGES/kaccess.mo share/locale/zh_CN/LC_MESSAGES/kcm5_baloofile.mo share/locale/zh_CN/LC_MESSAGES/kcm5_componentchooser.mo share/locale/zh_CN/LC_MESSAGES/kcm5_device_automounter.mo share/locale/zh_CN/LC_MESSAGES/kcm5_emoticons.mo share/locale/zh_CN/LC_MESSAGES/kcm5_icons.mo share/locale/zh_CN/LC_MESSAGES/kcm5_joystick.mo share/locale/zh_CN/LC_MESSAGES/kcm5_kded.mo share/locale/zh_CN/LC_MESSAGES/kcm_activities5.mo share/locale/zh_CN/LC_MESSAGES/kcm_autostart.mo share/locale/zh_CN/LC_MESSAGES/kcm_colors.mo share/locale/zh_CN/LC_MESSAGES/kcm_cursortheme.mo share/locale/zh_CN/LC_MESSAGES/kcm_desktoppaths.mo share/locale/zh_CN/LC_MESSAGES/kcm_desktoptheme.mo share/locale/zh_CN/LC_MESSAGES/kcm_fonts.mo share/locale/zh_CN/LC_MESSAGES/kcm_launchfeedback.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_search.mo share/locale/zh_CN/LC_MESSAGES/kcm_solid_actions.mo share/locale/zh_CN/LC_MESSAGES/kcm_splashscreen.mo share/locale/zh_CN/LC_MESSAGES/kcm_standard_actions.mo share/locale/zh_CN/LC_MESSAGES/kcm_touchpad.mo share/locale/zh_CN/LC_MESSAGES/kcm_workspace.mo share/locale/zh_CN/LC_MESSAGES/kcmaccess.mo share/locale/zh_CN/LC_MESSAGES/kcmformats.mo share/locale/zh_CN/LC_MESSAGES/kcmkclock.mo share/locale/zh_CN/LC_MESSAGES/kcmkeyboard.mo share/locale/zh_CN/LC_MESSAGES/kcmkeys.mo share/locale/zh_CN/LC_MESSAGES/kcmmouse.mo share/locale/zh_CN/LC_MESSAGES/kcmqtquicksettings.mo share/locale/zh_CN/LC_MESSAGES/kcmsmserver.mo share/locale/zh_CN/LC_MESSAGES/kcmstyle.mo share/locale/zh_CN/LC_MESSAGES/kfontinst.mo share/locale/zh_CN/LC_MESSAGES/knetattach5.mo share/locale/zh_CN/LC_MESSAGES/krdb.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_kwin.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/zh_CN/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/zh_CN/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/zh_CN/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/zh_CN/LC_MESSAGES/plasmaactivitymanager.mo share/locale/zh_TW/LC_MESSAGES/attica_kde_plugin.mo share/locale/zh_TW/LC_MESSAGES/kaccess.mo share/locale/zh_TW/LC_MESSAGES/kcm5_baloofile.mo share/locale/zh_TW/LC_MESSAGES/kcm5_componentchooser.mo share/locale/zh_TW/LC_MESSAGES/kcm5_device_automounter.mo share/locale/zh_TW/LC_MESSAGES/kcm5_emoticons.mo share/locale/zh_TW/LC_MESSAGES/kcm5_icons.mo share/locale/zh_TW/LC_MESSAGES/kcm5_joystick.mo share/locale/zh_TW/LC_MESSAGES/kcm5_kded.mo share/locale/zh_TW/LC_MESSAGES/kcm_activities5.mo share/locale/zh_TW/LC_MESSAGES/kcm_autostart.mo share/locale/zh_TW/LC_MESSAGES/kcm_colors.mo share/locale/zh_TW/LC_MESSAGES/kcm_cursortheme.mo share/locale/zh_TW/LC_MESSAGES/kcm_desktoppaths.mo share/locale/zh_TW/LC_MESSAGES/kcm_desktoptheme.mo share/locale/zh_TW/LC_MESSAGES/kcm_fonts.mo share/locale/zh_TW/LC_MESSAGES/kcm_launchfeedback.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_search.mo share/locale/zh_TW/LC_MESSAGES/kcm_solid_actions.mo share/locale/zh_TW/LC_MESSAGES/kcm_splashscreen.mo share/locale/zh_TW/LC_MESSAGES/kcm_standard_actions.mo share/locale/zh_TW/LC_MESSAGES/kcm_touchpad.mo share/locale/zh_TW/LC_MESSAGES/kcm_workspace.mo share/locale/zh_TW/LC_MESSAGES/kcmaccess.mo share/locale/zh_TW/LC_MESSAGES/kcmformats.mo share/locale/zh_TW/LC_MESSAGES/kcmkclock.mo share/locale/zh_TW/LC_MESSAGES/kcmkeyboard.mo share/locale/zh_TW/LC_MESSAGES/kcmkeys.mo share/locale/zh_TW/LC_MESSAGES/kcmmouse.mo share/locale/zh_TW/LC_MESSAGES/kcmqtquicksettings.mo share/locale/zh_TW/LC_MESSAGES/kcmsmserver.mo share/locale/zh_TW/LC_MESSAGES/kcmstyle.mo share/locale/zh_TW/LC_MESSAGES/kfontinst.mo share/locale/zh_TW/LC_MESSAGES/knetattach5.mo share/locale/zh_TW/LC_MESSAGES/krdb.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_kwin.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/zh_TW/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/zh_TW/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/zh_TW/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/zh_TW/LC_MESSAGES/plasmaactivitymanager.mo share/metainfo/org.kde.desktopcontainment.appdata.xml share/metainfo/org.kde.desktoptoolbox.appdata.xml share/metainfo/org.kde.paneltoolbox.appdata.xml share/metainfo/org.kde.plasma.desktop.appdata.xml share/metainfo/org.kde.plasma.desktop.appmenubar.appdata.xml share/metainfo/org.kde.plasma.desktop.defaultPanel.appdata.xml share/metainfo/org.kde.plasma.desktop.emptyPanel.appdata.xml share/metainfo/org.kde.plasma.folder.appdata.xml share/metainfo/org.kde.plasma.icontasks.appdata.xml share/metainfo/org.kde.plasma.kicker.appdata.xml share/metainfo/org.kde.plasma.kickoff.appdata.xml share/metainfo/org.kde.plasma.kimpanel.appdata.xml share/metainfo/org.kde.plasma.minimizeall.appdata.xml share/metainfo/org.kde.plasma.pager.appdata.xml share/metainfo/org.kde.plasma.showActivityManager.appdata.xml share/metainfo/org.kde.plasma.showdesktop.appdata.xml share/metainfo/org.kde.plasma.taskmanager.appdata.xml share/metainfo/org.kde.plasma.trash.appdata.xml share/metainfo/org.kde.plasma.windowlist.appdata.xml share/metainfo/org.kde.plasmashell.metainfo.xml %%SYNAPTICS%%share/plasma/desktoptheme/default/icons/touchpad.svg share/plasma/layout-templates/org.kde.plasma.desktop.appmenubar/contents/layout.js share/plasma/layout-templates/org.kde.plasma.desktop.appmenubar/metadata.desktop share/plasma/layout-templates/org.kde.plasma.desktop.appmenubar/metadata.json share/plasma/layout-templates/org.kde.plasma.desktop.defaultPanel/contents/layout.js share/plasma/layout-templates/org.kde.plasma.desktop.defaultPanel/metadata.desktop share/plasma/layout-templates/org.kde.plasma.desktop.defaultPanel/metadata.json share/plasma/layout-templates/org.kde.plasma.desktop.emptyPanel/contents/layout.js share/plasma/layout-templates/org.kde.plasma.desktop.emptyPanel/metadata.desktop share/plasma/layout-templates/org.kde.plasma.desktop.emptyPanel/metadata.json share/plasma/packages/org.kde.desktoptoolbox/contents/config/main.xml share/plasma/packages/org.kde.desktoptoolbox/contents/ui/ToolBoxButton.qml share/plasma/packages/org.kde.desktoptoolbox/contents/ui/ToolBoxItem.qml share/plasma/packages/org.kde.desktoptoolbox/contents/ui/ToolBoxRoot.qml share/plasma/packages/org.kde.desktoptoolbox/metadata.desktop share/plasma/packages/org.kde.desktoptoolbox/metadata.json share/plasma/packages/org.kde.paneltoolbox/contents/ui/main.qml share/plasma/packages/org.kde.paneltoolbox/metadata.desktop share/plasma/packages/org.kde.paneltoolbox/metadata.json share/plasma/plasmoids/org.kde.desktopcontainment/contents/config/config.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/config/main.xml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/ActionButton.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/BackButtonItem.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/BusyOverlay.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/CompactRepresentation.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/ConfigFilter.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/ConfigIcons.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/ConfigLocation.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/ConfigOverlay.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/ConfigTweaks.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/FolderItemActionButton.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/FolderItemDelegate.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/FolderItemPreviewPluginsDialog.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/FolderView.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/FolderViewDialog.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/FolderViewDropArea.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/FolderViewLayer.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/code/FolderTools.js share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/main.qml share/plasma/plasmoids/org.kde.desktopcontainment/metadata.desktop share/plasma/plasmoids/org.kde.desktopcontainment/metadata.json share/plasma/plasmoids/org.kde.panel/contents/config/main.xml share/plasma/plasmoids/org.kde.panel/contents/ui/ConfigOverlay.qml share/plasma/plasmoids/org.kde.panel/contents/ui/LayoutManager.js share/plasma/plasmoids/org.kde.panel/contents/ui/main.qml share/plasma/plasmoids/org.kde.panel/metadata.desktop share/plasma/plasmoids/org.kde.panel/metadata.json share/plasma/plasmoids/org.kde.panel/plasma-containment-panel.desktop share/plasma/plasmoids/org.kde.plasma.folder/metadata.desktop share/plasma/plasmoids/org.kde.plasma.folder/metadata.json share/plasma/plasmoids/org.kde.plasma.icontasks/metadata.desktop share/plasma/plasmoids/org.kde.plasma.icontasks/metadata.json share/plasma/plasmoids/org.kde.plasma.kicker/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/ActionMenu.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/CompactRepresentation.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/ConfigGeneral.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/DashboardRepresentation.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/DashboardTabBar.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/DashboardTabButton.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/ItemGridDelegate.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/ItemGridView.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/ItemListDelegate.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/ItemListDialog.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/ItemListView.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/ItemMultiGridView.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/MenuRepresentation.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/RunnerResultsList.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/SideBarItem.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/SideBarSection.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/code/tools.js share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.kicker/metadata.desktop share/plasma/plasmoids/org.kde.plasma.kicker/metadata.json share/plasma/plasmoids/org.kde.plasma.kickoff/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/ActionMenu.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/ApplicationsView.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/BaseView.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/Breadcrumb.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/ComputerView.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/ConfigButtons.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/ConfigGeneral.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/FavoritesView.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/FullRepresentation.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/Header.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/Kickoff.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/KickoffButton.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/KickoffConfigurationButton.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/KickoffHighlight.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/KickoffItem.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/KickoffListView.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/LeaveView.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/OftenUsedView.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/RecentlyUsedView.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/SearchView.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/SectionDelegate.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/code/tools.js share/plasma/plasmoids/org.kde.plasma.kickoff/metadata.desktop share/plasma/plasmoids/org.kde.plasma.kickoff/metadata.json share/plasma/plasmoids/org.kde.plasma.kimpanel/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.kimpanel/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.kimpanel/contents/ui/ActionMenu.qml share/plasma/plasmoids/org.kde.plasma.kimpanel/contents/ui/CandidateHighlight.qml share/plasma/plasmoids/org.kde.plasma.kimpanel/contents/ui/ConfigAppearance.qml share/plasma/plasmoids/org.kde.plasma.kimpanel/contents/ui/ContextMenu.qml share/plasma/plasmoids/org.kde.plasma.kimpanel/contents/ui/InputPanel.qml share/plasma/plasmoids/org.kde.plasma.kimpanel/contents/ui/StatusIcon.qml share/plasma/plasmoids/org.kde.plasma.kimpanel/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.kimpanel/metadata.desktop share/plasma/plasmoids/org.kde.plasma.kimpanel/metadata.json share/plasma/plasmoids/org.kde.plasma.minimizeall/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.minimizeall/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.minimizeall/metadata.desktop share/plasma/plasmoids/org.kde.plasma.minimizeall/metadata.json share/plasma/plasmoids/org.kde.plasma.pager/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.pager/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.pager/contents/ui/configGeneral.qml share/plasma/plasmoids/org.kde.plasma.pager/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.pager/metadata.desktop share/plasma/plasmoids/org.kde.plasma.pager/metadata.json share/plasma/plasmoids/org.kde.plasma.showActivityManager/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.showActivityManager/metadata.desktop share/plasma/plasmoids/org.kde.plasma.showActivityManager/metadata.json share/plasma/plasmoids/org.kde.plasma.showdesktop/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.showdesktop/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.showdesktop/metadata.desktop share/plasma/plasmoids/org.kde.plasma.showdesktop/metadata.json share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/AudioStream.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/Badge.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/ConfigAppearance.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/ConfigBehavior.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/ContextMenu.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/GroupDialog.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/GroupExpanderOverlay.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/MouseHandler.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/PulseAudio.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/Task.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/TaskBadgeOverlay.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/TaskList.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/TaskProgressOverlay.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/ToolTipDelegate.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/ToolTipInstance.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/ToolTipWindowMouseArea.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/code/layout.js share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/code/tools.js share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/metadata.desktop share/plasma/plasmoids/org.kde.plasma.taskmanager/metadata.json share/plasma/plasmoids/org.kde.plasma.trash/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.trash/metadata.desktop share/plasma/plasmoids/org.kde.plasma.trash/metadata.json share/plasma/plasmoids/org.kde.plasma.windowlist/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.windowlist/metadata.desktop share/plasma/plasmoids/org.kde.plasma.windowlist/metadata.json %%SYNAPTICS%%share/plasma/plasmoids/touchpad/contents/ui/touchpad.qml %%SYNAPTICS%%share/plasma/plasmoids/touchpad/metadata.desktop %%SYNAPTICS%%share/plasma/plasmoids/touchpad/metadata.json share/plasma/services/kimpanel.operations %%SYNAPTICS%%share/plasma/services/touchpad.operations share/plasma/shells/org.kde.plasma.desktop/contents/InteractiveConsole.qml share/plasma/shells/org.kde.plasma.desktop/contents/activitymanager/ActivityItem.qml share/plasma/shells/org.kde.plasma.desktop/contents/activitymanager/ActivityList.qml share/plasma/shells/org.kde.plasma.desktop/contents/activitymanager/ActivityManager.qml share/plasma/shells/org.kde.plasma.desktop/contents/activitymanager/Heading.qml share/plasma/shells/org.kde.plasma.desktop/contents/activitymanager/StoppedActivityItem.qml share/plasma/shells/org.kde.plasma.desktop/contents/activitymanager/WindowPreview.qml share/plasma/shells/org.kde.plasma.desktop/contents/activitymanager/static.js share/plasma/shells/org.kde.plasma.desktop/contents/applet/AppletError.qml share/plasma/shells/org.kde.plasma.desktop/contents/applet/CompactApplet.qml share/plasma/shells/org.kde.plasma.desktop/contents/applet/DefaultCompactRepresentation.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/AppletConfiguration.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/ConfigCategoryDelegate.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/ConfigurationContainmentActions.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/ConfigurationContainmentAppearance.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/ConfigurationKcmPage.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/ConfigurationShortcuts.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/ContainmentConfiguration.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/MouseEventInputButton.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/PanelConfiguration.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/panelconfiguration/EdgeHandle.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/panelconfiguration/MoreSettingsMenu.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/panelconfiguration/Ruler.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/panelconfiguration/SizeHandle.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/panelconfiguration/SliderHandle.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/panelconfiguration/ToolBar.qml share/plasma/shells/org.kde.plasma.desktop/contents/defaults share/plasma/shells/org.kde.plasma.desktop/contents/explorer/AppletAlternatives.qml share/plasma/shells/org.kde.plasma.desktop/contents/explorer/AppletDelegate.qml share/plasma/shells/org.kde.plasma.desktop/contents/explorer/Tooltip.qml share/plasma/shells/org.kde.plasma.desktop/contents/explorer/WidgetExplorer.qml share/plasma/shells/org.kde.plasma.desktop/contents/layout.js share/plasma/shells/org.kde.plasma.desktop/contents/updates/move_desktop_layout_config.js share/plasma/shells/org.kde.plasma.desktop/contents/updates/obsolete_kickoffrc.js share/plasma/shells/org.kde.plasma.desktop/contents/views/Desktop.qml share/plasma/shells/org.kde.plasma.desktop/contents/views/Panel.qml share/plasma/shells/org.kde.plasma.desktop/metadata.desktop share/plasma/shells/org.kde.plasma.desktop/metadata.json share/polkit-1/actions/org.kde.fontinst.policy share/polkit-1/actions/org.kde.kcontrol.kcmclock.policy share/solid/devices/solid-device-Battery.desktop share/solid/devices/solid-device-Block.desktop share/solid/devices/solid-device-Camera.desktop share/solid/devices/solid-device-OpticalDisc.desktop share/solid/devices/solid-device-OpticalDrive.desktop share/solid/devices/solid-device-PortableMediaPlayer.desktop share/solid/devices/solid-device-Processor.desktop share/solid/devices/solid-device-StorageAccess.desktop share/solid/devices/solid-device-StorageDrive.desktop share/solid/devices/solid-device-StorageVolume.desktop Index: head/x11/plasma5-plasma-integration/distinfo =================================================================== --- head/x11/plasma5-plasma-integration/distinfo (revision 522347) +++ head/x11/plasma5-plasma-integration/distinfo (revision 522348) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575440884 -SHA256 (KDE/plasma/5.17.4/plasma-integration-5.17.4.tar.xz) = b632b6fe355c15d825dd46345e83763c6867b7054a31ccd263bfed4674243a7f -SIZE (KDE/plasma/5.17.4/plasma-integration-5.17.4.tar.xz) = 56724 +TIMESTAMP = 1578414667 +SHA256 (KDE/plasma/5.17.5/plasma-integration-5.17.5.tar.xz) = 169206bebd790d2fee49cec621c46f6f64a8e20ee3e56bf16ee7373f61cad959 +SIZE (KDE/plasma/5.17.5/plasma-integration-5.17.5.tar.xz) = 56836 Index: head/x11/plasma5-plasma-workspace/distinfo =================================================================== --- head/x11/plasma5-plasma-workspace/distinfo (revision 522347) +++ head/x11/plasma5-plasma-workspace/distinfo (revision 522348) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575440886 -SHA256 (KDE/plasma/5.17.4/plasma-workspace-5.17.4.tar.xz) = 62ca5bd2c8bc962682f6e2d7ff43aa8fae13bf5e684082dd8b92f2a4ce436c5b -SIZE (KDE/plasma/5.17.4/plasma-workspace-5.17.4.tar.xz) = 4962200 +TIMESTAMP = 1578414668 +SHA256 (KDE/plasma/5.17.5/plasma-workspace-5.17.5.tar.xz) = 764488e66d52bc3017efb2c1471f57196aa50fbfa3a80637bf48f24955cfba88 +SIZE (KDE/plasma/5.17.5/plasma-workspace-5.17.5.tar.xz) = 4962336 Index: head/x11-themes/plasma5-breeze/distinfo =================================================================== --- head/x11-themes/plasma5-breeze/distinfo (revision 522347) +++ head/x11-themes/plasma5-breeze/distinfo (revision 522348) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575440826 -SHA256 (KDE/plasma/5.17.4/breeze-5.17.4.tar.xz) = 7fce20b2ab79e4a814a2d117a03738cb0a4402845062adf4b2b04bc5d8c2a67f -SIZE (KDE/plasma/5.17.4/breeze-5.17.4.tar.xz) = 16578572 +TIMESTAMP = 1578414645 +SHA256 (KDE/plasma/5.17.5/breeze-5.17.5.tar.xz) = f89bf857321b18789089efc9271d7bd7b6459a173dd078dd03242775db76c8d7 +SIZE (KDE/plasma/5.17.5/breeze-5.17.5.tar.xz) = 16582504 Index: head/x11-themes/plasma5-breeze-gtk/distinfo =================================================================== --- head/x11-themes/plasma5-breeze-gtk/distinfo (revision 522347) +++ head/x11-themes/plasma5-breeze-gtk/distinfo (revision 522348) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575440827 -SHA256 (KDE/plasma/5.17.4/breeze-gtk-5.17.4.tar.xz) = fb64b95982b524a5646a9410b4906bf37cdd174162eba3ac6163ee347e27d424 -SIZE (KDE/plasma/5.17.4/breeze-gtk-5.17.4.tar.xz) = 44324 +TIMESTAMP = 1578414647 +SHA256 (KDE/plasma/5.17.5/breeze-gtk-5.17.5.tar.xz) = 6dbd8e7d936840fbaf7016574d07729c9d0791711ad6d371136585ddb8f76e66 +SIZE (KDE/plasma/5.17.5/breeze-gtk-5.17.5.tar.xz) = 44424 Index: head/x11-themes/plasma5-kde-gtk-config/distinfo =================================================================== --- head/x11-themes/plasma5-kde-gtk-config/distinfo (revision 522347) +++ head/x11-themes/plasma5-kde-gtk-config/distinfo (revision 522348) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575440860 -SHA256 (KDE/plasma/5.17.4/kde-gtk-config-5.17.4.tar.xz) = a231312cac94354955540efc3d6c28ac1ba793a5e04129007c307352d0cced46 -SIZE (KDE/plasma/5.17.4/kde-gtk-config-5.17.4.tar.xz) = 154744 +TIMESTAMP = 1578414648 +SHA256 (KDE/plasma/5.17.5/kde-gtk-config-5.17.5.tar.xz) = 5feff23c756f1fb0ba9ab88c2aed92c0e7c5521c757f5a0cdd057273538f0010 +SIZE (KDE/plasma/5.17.5/kde-gtk-config-5.17.5.tar.xz) = 155340 Index: head/x11-themes/plasma5-oxygen/distinfo =================================================================== --- head/x11-themes/plasma5-oxygen/distinfo (revision 522347) +++ head/x11-themes/plasma5-oxygen/distinfo (revision 522348) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575440863 -SHA256 (KDE/plasma/5.17.4/oxygen-5.17.4.tar.xz) = 040b6facd9a9d609a882b928e8e0ae9a6e3d57ebbcb3ac513e9c9736afbbf770 -SIZE (KDE/plasma/5.17.4/oxygen-5.17.4.tar.xz) = 4465640 +TIMESTAMP = 1578414649 +SHA256 (KDE/plasma/5.17.5/oxygen-5.17.5.tar.xz) = 58954374a4b9067365ee5d50b32b1986b2e7dd31e73cbf79fda8d978949943be +SIZE (KDE/plasma/5.17.5/oxygen-5.17.5.tar.xz) = 4470600 Index: head/x11-themes/plasma5-plasma-workspace-wallpapers/distinfo =================================================================== --- head/x11-themes/plasma5-plasma-workspace-wallpapers/distinfo (revision 522347) +++ head/x11-themes/plasma5-plasma-workspace-wallpapers/distinfo (revision 522348) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575440867 -SHA256 (KDE/plasma/5.17.4/plasma-workspace-wallpapers-5.17.4.tar.xz) = a74405d1267e88b126e3d6f785424c92297e19426bc185b69bc737a3199e82bd -SIZE (KDE/plasma/5.17.4/plasma-workspace-wallpapers-5.17.4.tar.xz) = 34172960 +TIMESTAMP = 1578414654 +SHA256 (KDE/plasma/5.17.5/plasma-workspace-wallpapers-5.17.5.tar.xz) = 8a28ef67b65c340d40ff8f5bfc333ead68e6d8c9e410769c43af847ced9b4ca9 +SIZE (KDE/plasma/5.17.5/plasma-workspace-wallpapers-5.17.5.tar.xz) = 34173344 Index: head/x11-toolkits/plasma5-kdeplasma-addons/distinfo =================================================================== --- head/x11-toolkits/plasma5-kdeplasma-addons/distinfo (revision 522347) +++ head/x11-toolkits/plasma5-kdeplasma-addons/distinfo (revision 522348) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575440868 -SHA256 (KDE/plasma/5.17.4/kdeplasma-addons-5.17.4.tar.xz) = 2b790cf0cc48f5a7fdf87579be2ff39da92b47ee3f13ec616c14c866b97392c9 -SIZE (KDE/plasma/5.17.4/kdeplasma-addons-5.17.4.tar.xz) = 606816 +TIMESTAMP = 1578414655 +SHA256 (KDE/plasma/5.17.5/kdeplasma-addons-5.17.5.tar.xz) = 997d6a3542ab1f1fd7fb17580693dc8281ff29b03c82577dbae3fc1ec4cccdb8 +SIZE (KDE/plasma/5.17.5/kdeplasma-addons-5.17.5.tar.xz) = 605648 Index: head/x11-wm/plasma5-kdecoration/distinfo =================================================================== --- head/x11-wm/plasma5-kdecoration/distinfo (revision 522347) +++ head/x11-wm/plasma5-kdecoration/distinfo (revision 522348) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575440870 -SHA256 (KDE/plasma/5.17.4/kdecoration-5.17.4.tar.xz) = a20d496705c51d2fa5fcbbe12ef29457b807438f7aaaab7670db6fa5417993d7 -SIZE (KDE/plasma/5.17.4/kdecoration-5.17.4.tar.xz) = 43052 +TIMESTAMP = 1578414656 +SHA256 (KDE/plasma/5.17.5/kdecoration-5.17.5.tar.xz) = 7d8f0128306d436aeba010e47a3dddbcb9fb9fd05ef9308cbad1934914875cd9 +SIZE (KDE/plasma/5.17.5/kdecoration-5.17.5.tar.xz) = 43256 Index: head/x11-wm/plasma5-kdecoration/pkg-plist =================================================================== --- head/x11-wm/plasma5-kdecoration/pkg-plist (revision 522347) +++ head/x11-wm/plasma5-kdecoration/pkg-plist (revision 522348) @@ -1,59 +1,60 @@ include/KDecoration2/KDecoration2/DecoratedClient include/KDecoration2/KDecoration2/Decoration include/KDecoration2/KDecoration2/DecorationButton include/KDecoration2/KDecoration2/DecorationButtonGroup include/KDecoration2/KDecoration2/DecorationSettings include/KDecoration2/KDecoration2/DecorationShadow include/KDecoration2/KDecoration2/Private/DecoratedClientPrivate include/KDecoration2/KDecoration2/Private/DecorationBridge include/KDecoration2/KDecoration2/Private/DecorationSettingsPrivate include/KDecoration2/kdecoration2/decoratedclient.h include/KDecoration2/kdecoration2/decoration.h include/KDecoration2/kdecoration2/decorationbutton.h include/KDecoration2/kdecoration2/decorationbuttongroup.h include/KDecoration2/kdecoration2/decorationdefines.h include/KDecoration2/kdecoration2/decorationsettings.h include/KDecoration2/kdecoration2/decorationshadow.h include/KDecoration2/kdecoration2/kdecoration2_export.h include/KDecoration2/kdecoration2/private/decoratedclientprivate.h include/KDecoration2/kdecoration2/private/decorationbridge.h include/KDecoration2/kdecoration2/private/decorationsettingsprivate.h include/KDecoration2/kdecoration2/private/kdecoration2_private_export.h include/KF5/kdecoration2_version.h lib/cmake/KDecoration2/KDecoration2Config.cmake lib/cmake/KDecoration2/KDecoration2ConfigVersion.cmake lib/cmake/KDecoration2/KDecoration2Targets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KDecoration2/KDecoration2Targets.cmake lib/libkdecorations2.so lib/libkdecorations2.so.5 lib/libkdecorations2.so.%%KDE_PLASMA_VERSION%% lib/libkdecorations2private.so lib/libkdecorations2private.so.%%KDE_PLASMA_VERSION%% lib/libkdecorations2private.so.6 share/locale/ca/LC_MESSAGES/kdecoration.mo share/locale/ca@valencia/LC_MESSAGES/kdecoration.mo share/locale/cs/LC_MESSAGES/kdecoration.mo share/locale/da/LC_MESSAGES/kdecoration.mo share/locale/de/LC_MESSAGES/kdecoration.mo share/locale/en_GB/LC_MESSAGES/kdecoration.mo share/locale/es/LC_MESSAGES/kdecoration.mo share/locale/eu/LC_MESSAGES/kdecoration.mo share/locale/fi/LC_MESSAGES/kdecoration.mo share/locale/fr/LC_MESSAGES/kdecoration.mo share/locale/gl/LC_MESSAGES/kdecoration.mo +share/locale/hu/LC_MESSAGES/kdecoration.mo share/locale/id/LC_MESSAGES/kdecoration.mo share/locale/it/LC_MESSAGES/kdecoration.mo share/locale/ja/LC_MESSAGES/kdecoration.mo share/locale/ko/LC_MESSAGES/kdecoration.mo share/locale/lt/LC_MESSAGES/kdecoration.mo share/locale/nl/LC_MESSAGES/kdecoration.mo share/locale/nn/LC_MESSAGES/kdecoration.mo share/locale/pl/LC_MESSAGES/kdecoration.mo share/locale/pt/LC_MESSAGES/kdecoration.mo share/locale/pt_BR/LC_MESSAGES/kdecoration.mo share/locale/ru/LC_MESSAGES/kdecoration.mo share/locale/sk/LC_MESSAGES/kdecoration.mo share/locale/sv/LC_MESSAGES/kdecoration.mo share/locale/uk/LC_MESSAGES/kdecoration.mo share/locale/zh_CN/LC_MESSAGES/kdecoration.mo share/locale/zh_TW/LC_MESSAGES/kdecoration.mo Index: head/x11-wm/plasma5-kwin/distinfo =================================================================== --- head/x11-wm/plasma5-kwin/distinfo (revision 522347) +++ head/x11-wm/plasma5-kwin/distinfo (revision 522348) @@ -1,3 +1,3 @@ -TIMESTAMP = 1575440872 -SHA256 (KDE/plasma/5.17.4/kwin-5.17.4.tar.xz) = ffbafbbc34fc791abe3be255615402545519df02cae06973aa54f669f793ae06 -SIZE (KDE/plasma/5.17.4/kwin-5.17.4.tar.xz) = 6253952 +TIMESTAMP = 1578414658 +SHA256 (KDE/plasma/5.17.5/kwin-5.17.5.tar.xz) = 8517adaf8270d783aea7b3886d86b5abed6a5ec2b5c78b632479597d956baadc +SIZE (KDE/plasma/5.17.5/kwin-5.17.5.tar.xz) = 6251468 Index: head/x11-wm/plasma5-kwin/pkg-plist =================================================================== --- head/x11-wm/plasma5-kwin/pkg-plist (revision 522347) +++ head/x11-wm/plasma5-kwin/pkg-plist (revision 522348) @@ -1,1459 +1,1462 @@ bin/kwin_wayland bin/kwin_x11 include/kwin_export.h include/kwinanimationeffect.h include/kwinconfig.h include/kwineffects.h include/kwineffects_export.h include/kwinglobals.h include/kwinglplatform.h include/kwingltexture.h include/kwinglutils.h include/kwinglutils_export.h include/kwinglutils_funcs.h include/kwinxrenderutils.h include/kwinxrenderutils_export.h lib/cmake/KWinDBusInterface/KWinDBusInterfaceConfig.cmake lib/kconf_update_bin/kwin5_update_default_rules lib/libexec/kwin_killer_helper lib/libexec/kwin_rules_dialog lib/libkcmkwincommon.so.5 lib/libkcmkwincommon.so.%%KDE_PLASMA_VERSION%% lib/libkdeinit5_kwin_rules_dialog.so lib/libkdeinit5_kwin_x11.so lib/libkwin.so.5 lib/libkwin.so.%%KDE_PLASMA_VERSION%% 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.12 lib/libkwineffects.so.%%KDE_PLASMA_VERSION%% lib/libkwinglutils.so lib/libkwinglutils.so.12 lib/libkwinglutils.so.%%KDE_PLASMA_VERSION%% lib/libkwinxrenderutils.so lib/libkwinxrenderutils.so.12 lib/libkwinxrenderutils.so.%%KDE_PLASMA_VERSION%% %%QT_PLUGINDIR%%/kcm_kwin_scripts.so %%QT_PLUGINDIR%%/kcm_kwinoptions.so %%QT_PLUGINDIR%%/kcm_kwinrules.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%%/kf5/org.kde.kidletime.platforms/KF5IdleTimeKWinWaylandPrivatePlugin.so %%QT_PLUGINDIR%%/kf5/org.kde.kwindowsystem.platforms/KF5WindowSystemKWinPrivatePlugin.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%%/kwincompositing.so %%QT_PLUGINDIR%%/org.kde.kdecoration2/kwin5_aurorae.so %%QT_PLUGINDIR%%/org.kde.kglobalaccel5.platforms/KF5GlobalAccelPrivateKWin.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_PLUGINDIR%%/platforms/KWinQpaPlugin.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 share/config.kcfg/kwin.kcfg share/config.kcfg/kwin_colorcorrect.kcfg 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/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/configure.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/configure-effects.png -share/doc/HTML/ca/kcontrol/kwineffects/configure-filter.png share/doc/HTML/ca/kcontrol/kwineffects/dialog-information.png share/doc/HTML/ca/kcontrol/kwineffects/index.cache.bz2 share/doc/HTML/ca/kcontrol/kwineffects/index.docbook share/doc/HTML/ca/kcontrol/kwineffects/video.png 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/windowbehaviour/index.cache.bz2 share/doc/HTML/ca/kcontrol/windowbehaviour/index.docbook share/doc/HTML/ca/kcontrol/windowspecific/Face-smile.png share/doc/HTML/ca/kcontrol/windowspecific/index.cache.bz2 share/doc/HTML/ca/kcontrol/windowspecific/index.docbook share/doc/HTML/ca/kcontrol/windowspecific/pager-4-desktops.png 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/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/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/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/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/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/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/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.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/kservices5/kcm_kwin_effects.desktop share/kservices5/kcm_kwin_virtualdesktops.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/kwinrules.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 %%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_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_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 %%DATADIR%%/virtualkeyboard/main.qml share/locale/af/LC_MESSAGES/kcm_kwindecoration.mo share/locale/af/LC_MESSAGES/kcmkwinrules.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_kwintabbox.mo share/locale/ar/LC_MESSAGES/kcmkwincompositing.mo share/locale/ar/LC_MESSAGES/kcmkwinrules.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_virtualdesktops.mo share/locale/be/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/be/LC_MESSAGES/kcm_kwindecoration.mo share/locale/be/LC_MESSAGES/kcmkwincompositing.mo share/locale/be/LC_MESSAGES/kcmkwinrules.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_kwintabbox.mo share/locale/bg/LC_MESSAGES/kcmkwincompositing.mo share/locale/bg/LC_MESSAGES/kcmkwinrules.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/kcmkwinrules.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/kcmkwinrules.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_kwintabbox.mo share/locale/bs/LC_MESSAGES/kcmkwincompositing.mo share/locale/bs/LC_MESSAGES/kcmkwinrules.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_kwintabbox.mo share/locale/ca/LC_MESSAGES/kcmkwincommon.mo share/locale/ca/LC_MESSAGES/kcmkwincompositing.mo share/locale/ca/LC_MESSAGES/kcmkwinrules.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_kwintabbox.mo share/locale/ca@valencia/LC_MESSAGES/kcmkwincommon.mo share/locale/ca@valencia/LC_MESSAGES/kcmkwincompositing.mo share/locale/ca@valencia/LC_MESSAGES/kcmkwinrules.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_kwintabbox.mo share/locale/cs/LC_MESSAGES/kcmkwincommon.mo share/locale/cs/LC_MESSAGES/kcmkwincompositing.mo share/locale/cs/LC_MESSAGES/kcmkwinrules.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/kcmkwinrules.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_kwintabbox.mo share/locale/da/LC_MESSAGES/kcmkwincommon.mo share/locale/da/LC_MESSAGES/kcmkwincompositing.mo share/locale/da/LC_MESSAGES/kcmkwinrules.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_kwintabbox.mo share/locale/de/LC_MESSAGES/kcmkwincommon.mo share/locale/de/LC_MESSAGES/kcmkwincompositing.mo share/locale/de/LC_MESSAGES/kcmkwinrules.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_kwintabbox.mo share/locale/el/LC_MESSAGES/kcmkwincompositing.mo share/locale/el/LC_MESSAGES/kcmkwinrules.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_kwintabbox.mo share/locale/en_GB/LC_MESSAGES/kcmkwincommon.mo share/locale/en_GB/LC_MESSAGES/kcmkwincompositing.mo share/locale/en_GB/LC_MESSAGES/kcmkwinrules.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_kwintabbox.mo share/locale/eo/LC_MESSAGES/kcmkwincompositing.mo share/locale/eo/LC_MESSAGES/kcmkwinrules.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_kwintabbox.mo share/locale/es/LC_MESSAGES/kcmkwincommon.mo share/locale/es/LC_MESSAGES/kcmkwincompositing.mo share/locale/es/LC_MESSAGES/kcmkwinrules.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_virtualdesktops.mo share/locale/et/LC_MESSAGES/kcm_kwindecoration.mo share/locale/et/LC_MESSAGES/kcm_kwintabbox.mo share/locale/et/LC_MESSAGES/kcmkwincompositing.mo share/locale/et/LC_MESSAGES/kcmkwinrules.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_kwintabbox.mo share/locale/eu/LC_MESSAGES/kcmkwincommon.mo share/locale/eu/LC_MESSAGES/kcmkwincompositing.mo share/locale/eu/LC_MESSAGES/kcmkwinrules.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_kwintabbox.mo share/locale/fa/LC_MESSAGES/kcmkwincompositing.mo share/locale/fa/LC_MESSAGES/kcmkwinrules.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_kwintabbox.mo share/locale/fi/LC_MESSAGES/kcmkwincommon.mo share/locale/fi/LC_MESSAGES/kcmkwincompositing.mo share/locale/fi/LC_MESSAGES/kcmkwinrules.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_kwintabbox.mo share/locale/fr/LC_MESSAGES/kcmkwincommon.mo share/locale/fr/LC_MESSAGES/kcmkwincompositing.mo share/locale/fr/LC_MESSAGES/kcmkwinrules.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/kcmkwincompositing.mo share/locale/fy/LC_MESSAGES/kcmkwinrules.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_kwintabbox.mo share/locale/ga/LC_MESSAGES/kcmkwincompositing.mo share/locale/ga/LC_MESSAGES/kcmkwinrules.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_kwintabbox.mo share/locale/gl/LC_MESSAGES/kcmkwincommon.mo share/locale/gl/LC_MESSAGES/kcmkwincompositing.mo share/locale/gl/LC_MESSAGES/kcmkwinrules.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_kwintabbox.mo share/locale/gu/LC_MESSAGES/kcmkwincompositing.mo share/locale/gu/LC_MESSAGES/kcmkwinrules.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_kwintabbox.mo share/locale/he/LC_MESSAGES/kcmkwincompositing.mo share/locale/he/LC_MESSAGES/kcmkwinrules.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_kwintabbox.mo share/locale/hi/LC_MESSAGES/kcmkwincompositing.mo share/locale/hi/LC_MESSAGES/kcmkwinrules.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/kcmkwincompositing.mo share/locale/hne/LC_MESSAGES/kcmkwinrules.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_kwintabbox.mo share/locale/hr/LC_MESSAGES/kcmkwincompositing.mo share/locale/hr/LC_MESSAGES/kcmkwinrules.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/kcmkwincompositing.mo share/locale/hsb/LC_MESSAGES/kcmkwinrules.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_virtualdesktops.mo share/locale/hu/LC_MESSAGES/kcm_kwindecoration.mo share/locale/hu/LC_MESSAGES/kcm_kwintabbox.mo share/locale/hu/LC_MESSAGES/kcmkwincompositing.mo share/locale/hu/LC_MESSAGES/kcmkwinrules.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/kcm_kwin_effects.mo +share/locale/hu/LC_MESSAGES/kcmkwincommon.mo share/locale/hu/LC_MESSAGES/kwin_scripting.mo share/locale/hu/LC_MESSAGES/kwin_scripts.mo +share/locale/ia/LC_MESSAGES/kcm_kwin_effects.mo share/locale/ia/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/ia/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ia/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ia/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/ia/LC_MESSAGES/kcmkwincommon.mo share/locale/ia/LC_MESSAGES/kcmkwincompositing.mo share/locale/ia/LC_MESSAGES/kcmkwinrules.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_kwintabbox.mo share/locale/id/LC_MESSAGES/kcmkwincommon.mo share/locale/id/LC_MESSAGES/kcmkwincompositing.mo share/locale/id/LC_MESSAGES/kcmkwinrules.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_kwintabbox.mo share/locale/is/LC_MESSAGES/kcmkwincompositing.mo share/locale/is/LC_MESSAGES/kcmkwinrules.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_kwintabbox.mo share/locale/it/LC_MESSAGES/kcmkwincommon.mo share/locale/it/LC_MESSAGES/kcmkwincompositing.mo share/locale/it/LC_MESSAGES/kcmkwinrules.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_kwintabbox.mo share/locale/ja/LC_MESSAGES/kcmkwincommon.mo share/locale/ja/LC_MESSAGES/kcmkwincompositing.mo share/locale/ja/LC_MESSAGES/kcmkwinrules.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_kwintabbox.mo share/locale/kk/LC_MESSAGES/kcmkwincompositing.mo share/locale/kk/LC_MESSAGES/kcmkwinrules.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_kwintabbox.mo share/locale/km/LC_MESSAGES/kcmkwincompositing.mo share/locale/km/LC_MESSAGES/kcmkwinrules.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_kwintabbox.mo share/locale/kn/LC_MESSAGES/kcmkwincompositing.mo share/locale/kn/LC_MESSAGES/kcmkwinrules.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_kwintabbox.mo share/locale/ko/LC_MESSAGES/kcmkwincommon.mo share/locale/ko/LC_MESSAGES/kcmkwincompositing.mo share/locale/ko/LC_MESSAGES/kcmkwinrules.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/kcmkwincompositing.mo share/locale/ku/LC_MESSAGES/kcmkwinrules.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_kwintabbox.mo share/locale/lt/LC_MESSAGES/kcmkwincommon.mo share/locale/lt/LC_MESSAGES/kcmkwincompositing.mo share/locale/lt/LC_MESSAGES/kcmkwinrules.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_kwintabbox.mo share/locale/lv/LC_MESSAGES/kcmkwincompositing.mo share/locale/lv/LC_MESSAGES/kcmkwinrules.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_kwintabbox.mo share/locale/mai/LC_MESSAGES/kcmkwincompositing.mo share/locale/mai/LC_MESSAGES/kcmkwinrules.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/kcmkwincompositing.mo share/locale/mk/LC_MESSAGES/kcmkwinrules.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_kwintabbox.mo share/locale/ml/LC_MESSAGES/kcmkwincommon.mo share/locale/ml/LC_MESSAGES/kcmkwincompositing.mo share/locale/ml/LC_MESSAGES/kcmkwinrules.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_kwintabbox.mo share/locale/mr/LC_MESSAGES/kcmkwincompositing.mo share/locale/mr/LC_MESSAGES/kcmkwinrules.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_kwintabbox.mo share/locale/ms/LC_MESSAGES/kcmkwincompositing.mo share/locale/ms/LC_MESSAGES/kcmkwinrules.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_kwintabbox.mo share/locale/nb/LC_MESSAGES/kcmkwincommon.mo share/locale/nb/LC_MESSAGES/kcmkwincompositing.mo share/locale/nb/LC_MESSAGES/kcmkwinrules.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_kwintabbox.mo share/locale/nds/LC_MESSAGES/kcmkwincompositing.mo share/locale/nds/LC_MESSAGES/kcmkwinrules.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/kcmkwincompositing.mo share/locale/ne/LC_MESSAGES/kcmkwinrules.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_kwintabbox.mo share/locale/nl/LC_MESSAGES/kcmkwincommon.mo share/locale/nl/LC_MESSAGES/kcmkwincompositing.mo share/locale/nl/LC_MESSAGES/kcmkwinrules.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_kwintabbox.mo share/locale/nn/LC_MESSAGES/kcmkwincommon.mo share/locale/nn/LC_MESSAGES/kcmkwincompositing.mo share/locale/nn/LC_MESSAGES/kcmkwinrules.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/kcmkwincompositing.mo share/locale/oc/LC_MESSAGES/kcmkwinrules.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_virtualdesktops.mo share/locale/pa/LC_MESSAGES/kcm_kwindecoration.mo share/locale/pa/LC_MESSAGES/kcm_kwintabbox.mo share/locale/pa/LC_MESSAGES/kcmkwincompositing.mo share/locale/pa/LC_MESSAGES/kcmkwinrules.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/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_kwintabbox.mo share/locale/pl/LC_MESSAGES/kcmkwincommon.mo share/locale/pl/LC_MESSAGES/kcmkwincompositing.mo share/locale/pl/LC_MESSAGES/kcmkwinrules.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_kwintabbox.mo share/locale/pt/LC_MESSAGES/kcmkwincommon.mo share/locale/pt/LC_MESSAGES/kcmkwincompositing.mo share/locale/pt/LC_MESSAGES/kcmkwinrules.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_kwintabbox.mo share/locale/pt_BR/LC_MESSAGES/kcmkwincommon.mo share/locale/pt_BR/LC_MESSAGES/kcmkwincompositing.mo share/locale/pt_BR/LC_MESSAGES/kcmkwinrules.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_virtualdesktops.mo share/locale/ro/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ro/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ro/LC_MESSAGES/kcmkwincompositing.mo share/locale/ro/LC_MESSAGES/kcmkwinrules.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/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_kwintabbox.mo share/locale/ru/LC_MESSAGES/kcmkwincommon.mo share/locale/ru/LC_MESSAGES/kcmkwincompositing.mo share/locale/ru/LC_MESSAGES/kcmkwinrules.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/kcmkwincommon.mo share/locale/se/LC_MESSAGES/kcmkwincompositing.mo share/locale/se/LC_MESSAGES/kcmkwinrules.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_kwintabbox.mo share/locale/si/LC_MESSAGES/kcmkwincompositing.mo share/locale/si/LC_MESSAGES/kcmkwinrules.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_kwintabbox.mo share/locale/sk/LC_MESSAGES/kcmkwincommon.mo share/locale/sk/LC_MESSAGES/kcmkwincompositing.mo share/locale/sk/LC_MESSAGES/kcmkwinrules.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_virtualdesktops.mo share/locale/sl/LC_MESSAGES/kcm_kwindecoration.mo share/locale/sl/LC_MESSAGES/kcm_kwintabbox.mo share/locale/sl/LC_MESSAGES/kcmkwincompositing.mo share/locale/sl/LC_MESSAGES/kcmkwinrules.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/kcmkwincompositing.mo share/locale/sq/LC_MESSAGES/kcmkwinrules.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_kwintabbox.mo share/locale/sr/LC_MESSAGES/kcmkwincompositing.mo share/locale/sr/LC_MESSAGES/kcmkwinrules.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_kwintabbox.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmkwincompositing.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmkwinrules.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_kwintabbox.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmkwincompositing.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmkwinrules.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_kwintabbox.mo share/locale/sr@latin/LC_MESSAGES/kcmkwincompositing.mo share/locale/sr@latin/LC_MESSAGES/kcmkwinrules.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_kwintabbox.mo share/locale/sv/LC_MESSAGES/kcmkwincommon.mo share/locale/sv/LC_MESSAGES/kcmkwincompositing.mo share/locale/sv/LC_MESSAGES/kcmkwinrules.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/kcmkwincompositing.mo share/locale/ta/LC_MESSAGES/kcmkwinrules.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/kcmkwincompositing.mo share/locale/te/LC_MESSAGES/kcmkwinrules.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/kcmkwincompositing.mo share/locale/tg/LC_MESSAGES/kcmkwinrules.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_kwintabbox.mo share/locale/th/LC_MESSAGES/kcmkwincompositing.mo share/locale/th/LC_MESSAGES/kcmkwinrules.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_kwintabbox.mo share/locale/tr/LC_MESSAGES/kcmkwincompositing.mo share/locale/tr/LC_MESSAGES/kcmkwinrules.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_kwintabbox.mo share/locale/ug/LC_MESSAGES/kcmkwincompositing.mo share/locale/ug/LC_MESSAGES/kcmkwinrules.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_kwintabbox.mo share/locale/uk/LC_MESSAGES/kcmkwincommon.mo share/locale/uk/LC_MESSAGES/kcmkwincompositing.mo share/locale/uk/LC_MESSAGES/kcmkwinrules.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/kcmkwinrules.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/kcmkwinrules.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/kcmkwinrules.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/wa/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/wa/LC_MESSAGES/kcm_kwindecoration.mo share/locale/wa/LC_MESSAGES/kcm_kwintabbox.mo share/locale/wa/LC_MESSAGES/kcmkwincompositing.mo share/locale/wa/LC_MESSAGES/kcmkwinrules.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_kwintabbox.mo share/locale/zh_CN/LC_MESSAGES/kcmkwincommon.mo share/locale/zh_CN/LC_MESSAGES/kcmkwincompositing.mo share/locale/zh_CN/LC_MESSAGES/kcmkwinrules.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_kwintabbox.mo share/locale/zh_TW/LC_MESSAGES/kcmkwincommon.mo share/locale/zh_TW/LC_MESSAGES/kcmkwincompositing.mo share/locale/zh_TW/LC_MESSAGES/kcmkwinrules.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