diff --git a/Mk/Uses/kde.mk b/Mk/Uses/kde.mk index f3e3d1014c4f..b1c617a36ed2 100644 --- a/Mk/Uses/kde.mk +++ b/Mk/Uses/kde.mk @@ -1,1064 +1,1064 @@ # Provides support for KDE and KF5-based ports. # # Feature: kde # Valid ARGS: 5 6 # # 5: Depend on KDE Frameworks 5 components and variables. # 6: Depend on KDE Frameworks 6 components and variables. # # Variables that can be set by a port: # # USE_KDE List of KF[56]/Plasma[56] components (other ports) that this # port depends on. # * foo:build Add a build-time dependency (BUILD_DEPENDS) # * foo:run Add a run-time dependency (RUN_DEPENDS) # * foo (default) Add both dependencies on component , or # a LIB_DEPENDS if applicable. # # To simplify the ports, also: # CATEGORIES If the port is part of one of the KDE Software distribution, # it can add, in addition to 'kde' one of the following: # kde-applications: part of applications release # kde-frameworks: part of frameworks release # kde-plasma: part of plasma release # this will then set default values for MASTER_SITES and DIST_SUBDIR # as well as CPE_VENDOR and LICENSE. # # option DOCS If the port is part of kde-applications (see CATEGORIES, # above) and has an option defined for DOCS then a dependency # for doctools:build is added. The option itself doesn't # have to do anything -- the dependency is always there. # # KDE_INVENT If the port does not have a regular release, and should # be fetched from KDE Invent (a GitLab instance) it can set # KDE_INVENT to 3 space-separated values: # * a full 40-character commit hash # * a category name inside KDE Invent # * a repository name inside KDE Invent # Default values for category and name are: # * the first item in CATEGORIES that is not "kde"; this # is useful when the FreeBSD ports category and the KDE # category are the same (which happens sometimes) # * PORTNAME, often the FreeBSD port name is the same # as the upstream name and it will not need to be specified. # Sometimes `KDE_INVENT=` will do and often # `KDE_INVENT= ` is enough. # # Setting KDE_INVENT is the equivalent of a handful of USE_GITLAB # and related settings. # # MAINTAINER: kde@FreeBSD.org .if !defined(_INCLUDE_USES_KDE_MK) _INCLUDE_USES_KDE_MK= yes _KDE_SUPPORTED= 5 6 . if empty(kde_ARGS) IGNORE= kde needs a version (${_KDE_SUPPORTED}) . endif . for ver in ${_KDE_SUPPORTED:O:u} . if ${kde_ARGS:M${ver}} . if !defined(_KDE_VERSION) _KDE_VERSION= ${ver} . else IGNORE?= cannot be installed: different KDE versions specified via kde:[${_KDE_SUPPORTED:S/ //g}] #' . endif . endif . endfor . if empty(_KDE_VERSION) IGNORE?= kde:[${_KDE_SUPPORTED:S/ //g}] needs an argument #' . else _KDE_RELNAME= KDE${_KDE_VERSION} # === VERSIONS OF THE DIFFERENT COMPONENTS ===================================== KDE_PLASMA_VERSION?= ${KDE_PLASMA${_KDE_VERSION}_VERSION} KDE_PLASMA_BRANCH?= ${KDE_PLASMA${_KDE_VERSION}_BRANCH} KDE_FRAMEWORKS_VERSION?= ${KDE_FRAMEWORKS${_KDE_VERSION}_VERSION} KDE_FRAMEWORKS_BRANCH?= ${KDE_FRAMEWORKS${_KDE_VERSION}_BRANCH} KDE_APPLICATIONS_BRANCH?= ${KDE_APPLICATIONS6_BRANCH} KDE_APPLICATIONS_VERSION?= ${KDE_APPLICATIONS6_VERSION} KDE_APPLICATIONS_SHLIB_VER?= ${KDE_APPLICATIONS6_SHLIB_VER} KDE_APPLICATIONS_SHLIB_G_VER?= ${KDE_APPLICATIONS6_SHLIB_G_VER} # Legacy KDE Plasma. KDE_PLASMA5_VERSION?= 5.27.12 KDE_PLASMA5_BRANCH?= stable # Current KDE Plasma desktop. -KDE_PLASMA6_VERSION?= 6.5.5 +KDE_PLASMA6_VERSION?= 6.6.0 KDE_PLASMA6_BRANCH?= stable # Legacy KDE frameworks (Qt5 based). KDE_FRAMEWORKS5_VERSION?= 5.116.0 KDE_FRAMEWORKS5_BRANCH?= stable # Current KDE Frameworks (Qt6 based). KDE_FRAMEWORKS6_VERSION?= 6.23.0 KDE_FRAMEWORKS6_BRANCH?= stable # Current KDE applications. Update _${PORTNAME}_PROJECT_VERSION for the following ports: # devel/kdevelop, games/libkdegames, games/libkmahjongg, graphics/kgraphviewer KDE_APPLICATIONS6_VERSION?= 25.12.2 KDE_APPLICATIONS6_SHLIB_VER?= 6.6.2 # G as in KDE Gear, and as in "don't make the variable name longer than required". KDE_APPLICATIONS6_SHLIB_G_VER?= ${KDE_APPLICATIONS6_VERSION} KDE_APPLICATIONS6_BRANCH?= stable # Some projects despite being a part of Gear distribution continue to use # their own versioning with mangled KDE_APPLICATIONS_VERSION as a patchlevel. # Provide more variables to ease their maintenance. KDE_APPS_MAJOR= ${KDE_APPLICATIONS_VERSION:R:R} KDE_APPS_MINOR= ${KDE_APPLICATIONS_VERSION:R:E} . if ${KDE_APPLICATIONS_BRANCH:Mstable} KDE_APPS_MICRO= 0${KDE_APPLICATIONS_VERSION:E} . else KDE_APPS_MICRO= ${KDE_APPLICATIONS_VERSION:E} . endif KDE_APPS_BASED_PATCHLEVEL?= ${KDE_APPS_MAJOR}${KDE_APPS_MINOR}${KDE_APPS_MICRO} # ============================================================================== # === INSTALLATION PREFIXES AND HEADER LOCATION ================================ # Define unversioned prefix variable. KDE_PREFIX= ${LOCALBASE} # ============================================================================== # === CATEGORIES HANDLING -- SETTING DEFAULT VALUES ============================ # Doing MASTER_SITES magic based on the category of the port _KDE_CATEGORIES_SUPPORTED= kde-applications kde-frameworks kde-plasma kde-devel . for cat in ${_KDE_CATEGORIES_SUPPORTED:Nkde-devel} . if ${CATEGORIES:M${cat}} . if !defined(_KDE_CATEGORY) _KDE_CATEGORY= ${cat} . else IGNORE?= cannot be installed: multiple kde-<...> categories specified via CATEGORIES=${CATEGORIES} #' . endif . endif . endfor # Doing source-selection if the sources are on KDE invent . if defined(KDE_INVENT) _invent_hash= ${KDE_INVENT:[1]} _invent_category= ${KDE_INVENT:[2]} _invent_name= ${KDE_INVENT:[3]} # Fill in default values if bits are missing . if empty(_invent_category) _invent_category= ${CATEGORIES:Nkde:[1]} . endif . if empty(_invent_name) _invent_name= ${PORTNAME} . endif # If valid, use it for GitLab . if empty(_invent_hash) || empty(_invent_category) || empty(_invent_name) IGNORE?= invalid KDE_INVENT value '${KDE_INVENT}' . else USE_GITLAB= yes GL_SITE= https://invent.kde.org GL_ACCOUNT= ${_invent_category} GL_PROJECT= ${_invent_name} GL_TAGNAME= ${_invent_hash} . endif . endif . if defined(_KDE_CATEGORY) # KDE is normally licensed under the LGPL 2.0. LICENSE?= LGPL20 # Set CPE Vendor Information # As _KDE_CATEGORY is set we can assume it is port release by KDE and the # vendor is therefore kde. CPE_VENDOR?= kde . if ${_KDE_CATEGORY:Mkde-applications} PORTVERSION?= ${KDE_APPLICATIONS_VERSION} MASTER_SITES?= KDE/${KDE_APPLICATIONS_BRANCH}/release-service/${KDE_APPLICATIONS_VERSION}/src # Let bsd.port.mk create the plist-entries for the documentation. # KDE Applications ports install their documentation to # ${PREFIX}/share/doc. This is only done if the port # defines OPTION DOCS -- the _KDE_OPTIONS here is to # avoid make errors when there are no options defined at all. _KDE_OPTIONS= bogus ${OPTIONS_DEFINE} . if ${_KDE_OPTIONS:MDOCS} DOCSDIR= ${PREFIX}/share/doc PORTDOCS?= HTML/* USE_KDE+= doctools:build . endif # Further pass along a SHLIB_VER PLIST_SUB PLIST_SUB+= KDE_APPLICATIONS_SHLIB_VER=${KDE_APPLICATIONS_SHLIB_VER} \ KDE_APPLICATIONS_VERSION_SHORT="${KDE_APPLICATIONS_VERSION:R:R}" . if defined(_${PORTNAME}_PROJECT_VERSION) PLIST_SUB+= SHLIB_VER_LONG=${_${PORTNAME}_PROJECT_VERSION}.${KDE_APPS_BASED_PATCHLEVEL} . endif DIST_SUBDIR?= KDE/release-service/${KDE_APPLICATIONS_VERSION} . elif ${_KDE_CATEGORY:Mkde-plasma} PORTVERSION?= ${KDE_PLASMA_VERSION} PKGNAMEPREFIX?= plasma${_KDE_VERSION}- MASTER_SITES?= KDE/${KDE_PLASMA_BRANCH}/plasma/${KDE_PLASMA_VERSION} DIST_SUBDIR?= KDE/plasma/${KDE_PLASMA_VERSION} WWW?= https://kde.org/plasma-desktop/ . if ${_KDE_VERSION:M6} DESCR= ${.CURDIR:H:H}/x11/plasma6-plasma/pkg-descr . endif . elif ${_KDE_CATEGORY:Mkde-frameworks} PORTVERSION?= ${KDE_FRAMEWORKS_VERSION} PKGNAMEPREFIX?= kf${_KDE_VERSION}- WWW?= https://api.kde.org/${PORTNAME}-index.html # This is a slight duplication of _USE_PORTINGAIDS_ALL _PORTINGAIDS= kjs kjsembed kdelibs4support kdesignerplugin khtml kmediaplayer kross kxmlrpcclient . if ${_KDE_VERSION:M5} . if ${_PORTINGAIDS:M*${PORTNAME}*} MASTER_SITES?= KDE/${KDE_FRAMEWORKS_BRANCH}/frameworks/${KDE_FRAMEWORKS_VERSION:R}/portingAids . else MASTER_SITES?= KDE/${KDE_FRAMEWORKS_BRANCH}/frameworks/${KDE_FRAMEWORKS_VERSION:R} . endif . else MASTER_SITES?= KDE/${KDE_FRAMEWORKS_BRANCH}/frameworks/${KDE_FRAMEWORKS_VERSION:R} . endif DIST_SUBDIR?= KDE/frameworks/${KDE_FRAMEWORKS_VERSION} . if ${_KDE_VERSION:M6} DIST_SUBDIR= KDE/frameworks/${KDE_FRAMEWORKS_VERSION:R} DESCR= ${.CURDIR:H:H}/x11/kf6-frameworks/pkg-descr . endif . if ${_KDE_VERSION:M5} PORTSCOUT= limit:^5\. . endif . else IGNORE?= unknown CATEGORY value '${_KDE_CATEGORY}' #' . endif . endif #defined(_KDE_CATEGORY) # ============================================================================== # === SET UP LOCALE ENVIRONMENT ================================================= USE_LOCALE?= en_US.UTF-8 # === SET UP CMAKE ENVIRONMENT ================================================= # Help cmake to find files when testing ports with non-default PREFIX. CMAKE_ARGS+= -DCMAKE_PREFIX_PATH="${LOCALBASE}" # We set KDE_INSTALL_USE_QT_SYS_PATHS to install mkspecs files, plugins and # imports to the Qt 5 install directory. CMAKE_ARGS+= -DCMAKE_MODULE_PATH="${LOCALBASE};${KDE_PREFIX}" \ -DCMAKE_INSTALL_PREFIX="${KDE_PREFIX}" \ -DKDE_INSTALL_USE_QT_SYS_PATHS:BOOL=true KDE_MAN_PREFIX?= ${KDE_PREFIX}/share/man # Enforce the chosen Qt Version CMAKE_ARGS+= -DQT_MAJOR_VERSION=${_QT_VER} # Disable autotests unless TEST_TARGET is defined. . if !defined(TEST_TARGET) CMAKE_ARGS+= -DBUILD_TESTING:BOOL=false . endif # ============================================================================== # === SET UP PLIST_SUB ========================================================= # Prefix and include directory. PLIST_SUB+= KDE_PREFIX="${KDE_PREFIX}" # KDE Applications version. PLIST_SUB+= KDE_APPLICATIONS_VERSION="${KDE_APPLICATIONS_VERSION}" \ KDE_FRAMEWORKS_VERSION="${KDE_FRAMEWORKS_VERSION}" \ KDE_PLASMA_VERSION="${KDE_PLASMA_VERSION}" # ============================================================================== # List of all USE_KDE components. # TODO for KDE 7: do not mangle upstream naming: use the same name # for port directory, PORTNAME, and USE_KDE component. # Porting Aids frameworks provide code and utilities to ease the transition from # kdelibs 4 to KDE Frameworks 5. _USE_PORTINGAIDS_ALL= js jsembed kdelibs4support khtml mediaplayer kross # List of components of the KDE Frameworks distribution. # Not ported to FreeBSD: bluez-qt modemmanagerqt _USE_FRAMEWORKS5_ALL= activities activities-stats apidox archive attica \ auth baloo bookmarks breeze-icons calendarcore \ codecs completion config configwidgets contacts \ coreaddons crash dbusaddons designerplugin dnssd \ doctools ecm emoticons filemetadata frameworkintegration \ globalaccel guiaddons holidays i18n iconthemes \ idletime init itemmodels itemviews jobwidgets \ kcmutils kdav kdeclarative kded kdesu kimageformats \ kio kirigami2 kquickcharts newstuff notifications \ notifyconfig package parts people plasma-framework \ plotting prison pty purpose qqc2-desktop-style \ runner service solid sonnet syndication \ syntaxhighlighting texteditor textwidgets \ threadweaver unitconversion wallet wayland \ widgetsaddons windowsystem xmlgui xmlrpcclient \ ${_USE_PORTINGAIDS_ALL} _USE_FRAMEWORKS6_ALL= apidox archive attica auth baloo bookmarks \ breeze-icons calendarcore codecs colorscheme \ completion config configwidgets contacts coreaddons \ crash dbusaddons dnssd doctools ecm filemetadata \ frameworkintegration globalaccel guiaddons holidays \ i18n iconthemes idletime itemmodels itemviews \ jobwidgets kcmutils kdav kdeclarative kded kdesu \ kimageformats kio kirigami2 kquickcharts newstuff \ networkmanagerqt notifications notifyconfig package parts \ people plotting prison pty purpose \ qqc2-desktop-style runner service solid sonnet \ statusnotifieritem svg syndication \ syntaxhighlighting texteditor texttemplate \ textwidgets threadweaver unitconversion userfeedback \ wallet widgetsaddons windowsystem xmlgui _USE_FRAMEWORKS_ALL= ${_USE_FRAMEWORKS${_KDE_VERSION}_ALL} # List of components of the KDE Plasma distribution. _USE_PLASMA5_ALL= libksysguard oxygen-sounds _USE_PLASMA6_ALL= activities activities-stats activitymanagerd \ aurorae breeze breeze-gtk decoration discover \ globalacceld infocenter kde-cli-tools \ kde-gtk-config kdeplasma-addons kgamma kmenuedit \ knighttime \ kpipewire kscreen kscreenlocker ksshaskpass \ ksystemstats kwallet-pam kwin kwin-x11 kwrited \ layer-shell-qt libkscreen libksysguard libplasma \ milou ocean-sound-theme oxygen oxygen-sounds \ plasma-browser-integration plasma-desktop \ plasma-disks plasma-integration plasma-pa \ plasma-sdk plasma-workspace \ plasma-workspace-wallpapers plasma5support \ polkit-kde-agent-1 powerdevil print-manager \ qqc2-breeze-style sddm-kcm spectacle systemmonitor \ systemsettings wayland xdg-desktop-portal-kde _USE_PLASMA_ALL= ${_USE_PLASMA${_KDE_VERSION}_ALL} # List of frequently used components of the KDE Gears distribution. _USE_GEAR5_ALL= libkdcraw _USE_GEAR6_ALL= baloo-widgets kosm kpublictransport \ libkcddb libkcompactdisc libkdcraw \ libkdegames libkeduvocdocument libkexiv2 \ libksane marble okular _USE_GEAR_ALL= ${_USE_GEAR${_KDE_VERSION}_ALL} # List of components of the KDE PIM distribution (part of KDE Gears). _USE_KDEPIM_ALL= akonadi akonadicalendar akonadiconsole \ akonadicontacts akonadiimportwizard akonadimime \ akonadisearch akregator calendarsupport \ calendarutils eventviews gapi grantlee-editor \ grantleetheme gravatar identitymanagement imap \ incidenceeditor kaddressbook kalarm kdepim-addons \ kdepim-runtime kitinerary kmail kmail-account-wizard \ kontact kontactinterface korganizer kpkpass ksmtp \ ldap libkdepim libkleo libksieve mailcommon \ mailimporter mailtransport mbox mbox-importer \ messagelib mime mimetreeparser pim-data-exporter \ pimcommon pimtextedit tnef # List of frequently used KDE releated software for any KDE/Qt version. _USE_KDE_EXTRA5_ALL= kirigami-addons phonon phonon-vlc \ plasma-wayland-protocols _USE_KDE_EXTRA6_ALL= kirigami-addons phonon phonon-mpv phonon-vlc \ plasma-wayland-protocols ktextaddons _USE_KDE_EXTRA_ALL= ${_USE_KDE_EXTRA${_KDE_VERSION}_ALL} _USE_KDE5_ALL= ${_USE_FRAMEWORKS_ALL} \ ${_USE_PLASMA_ALL} \ ${_USE_GEAR_ALL} \ ${_USE_KDE_EXTRA_ALL} _USE_KDE6_ALL= ${_USE_FRAMEWORKS_ALL} \ ${_USE_PLASMA_ALL} \ ${_USE_KDEPIM_ALL} \ ${_USE_GEAR_ALL} \ ${_USE_KDE_EXTRA_ALL} # ====================== frameworks components ================================= kde-activities_PORT5= x11/kf${_KDE_VERSION}-kactivities kde-activities_PORT6= x11/plasma${_KDE_VERSION}-plasma-activities kde-activities_PORT= ${kde-activities_PORT${_KDE_VERSION}} kde-activities_LIB5= libKF${_KDE_VERSION}Activities.so kde-activities_LIB6= libPlasmaActivities.so kde-activities_LIB= ${kde-activities_LIB${_KDE_VERSION}} kde-activities-stats_PORT5= x11/kf${_KDE_VERSION}-kactivities-stats kde-activities-stats_PORT6= x11/plasma${_KDE_VERSION}-plasma-activities-stats kde-activities-stats_PORT= ${kde-activities-stats_PORT${_KDE_VERSION}} kde-activities-stats_LIB5= libKF${_KDE_VERSION}ActivitiesStats.so kde-activities-stats_LIB6= libPlasmaActivitiesStats.so kde-activities-stats_LIB= ${kde-activities-stats_LIB${_KDE_VERSION}} # Use KApiDox tools from KDE Frameworks 6 kde-apidox_PORT= devel/kf6-kapidox kde-apidox_PATH= ${KDE_PREFIX}/bin/kapidox-generate kde-apidox_TYPE= run kde-archive_PORT= archivers/kf${_KDE_VERSION}-karchive kde-archive_LIB= libKF${_KDE_VERSION}Archive.so kde-attica_PORT= x11-toolkits/kf${_KDE_VERSION}-attica kde-attica_LIB= libKF${_KDE_VERSION}Attica.so kde-auth_PORT= devel/kf${_KDE_VERSION}-kauth kde-auth_LIB= libKF${_KDE_VERSION}AuthCore.so kde-baloo_PORT= sysutils/kf${_KDE_VERSION}-baloo kde-baloo_LIB= libKF${_KDE_VERSION}Baloo.so kde-bookmarks_PORT= devel/kf${_KDE_VERSION}-kbookmarks kde-bookmarks_LIB= libKF${_KDE_VERSION}Bookmarks.so # Use the latest icons from KDE Frameworks 6 kde-breeze-icons_PORT= x11-themes/kf6-breeze-icons kde-breeze-icons_PATH= ${KDE_PREFIX}/share/icons/breeze/index.theme kde-codecs_PORT= textproc/kf${_KDE_VERSION}-kcodecs kde-codecs_LIB= libKF${_KDE_VERSION}Codecs.so kde-completion_PORT= x11-toolkits/kf${_KDE_VERSION}-kcompletion kde-completion_LIB= libKF${_KDE_VERSION}Completion.so kde-config_PORT= devel/kf${_KDE_VERSION}-kconfig kde-config_LIB= libKF${_KDE_VERSION}ConfigCore.so kde-configwidgets_PORT= x11-toolkits/kf${_KDE_VERSION}-kconfigwidgets kde-configwidgets_LIB= libKF${_KDE_VERSION}ConfigWidgets.so kde-coreaddons_PORT= devel/kf${_KDE_VERSION}-kcoreaddons kde-coreaddons_LIB= libKF${_KDE_VERSION}CoreAddons.so kde-crash_PORT= devel/kf${_KDE_VERSION}-kcrash kde-crash_LIB= libKF${_KDE_VERSION}Crash.so kde-dbusaddons_PORT= devel/kf${_KDE_VERSION}-kdbusaddons kde-dbusaddons_LIB= libKF${_KDE_VERSION}DBusAddons.so kde-designerplugin_PORT= x11-toolkits/kf${_KDE_VERSION}-kdesignerplugin kde-designerplugin_PATH= ${KDE_PREFIX}/bin/kgendesignerplugin kde-designerplugin_TYPE= run kde-dnssd_PORT= dns/kf${_KDE_VERSION}-kdnssd kde-dnssd_LIB= libKF${_KDE_VERSION}DNSSD.so kde-doctools_PORT= devel/kf${_KDE_VERSION}-kdoctools kde-doctools_PATH= ${KDE_PREFIX}/bin/meinproc${_KDE_VERSION} # Use ECM from KDE Frameworks 6 for everything kde-ecm_PORT= devel/kf6-extra-cmake-modules kde-ecm_PATH= ${LOCALBASE}/share/ECM/cmake/ECMConfig.cmake kde-emoticons_PORT= x11-themes/kf${_KDE_VERSION}-kemoticons kde-emoticons_LIB= libKF${_KDE_VERSION}Emoticons.so kde-filemetadata_PORT= devel/kf${_KDE_VERSION}-kfilemetadata kde-filemetadata_LIB= libKF${_KDE_VERSION}FileMetaData.so kde-frameworkintegration_PORT= x11/kf${_KDE_VERSION}-frameworkintegration kde-frameworkintegration_LIB= libKF${_KDE_VERSION}Style.so kde-globalaccel_PORT= x11/kf${_KDE_VERSION}-kglobalaccel kde-globalaccel_LIB= libKF${_KDE_VERSION}GlobalAccel.so kde-guiaddons_PORT= x11-toolkits/kf${_KDE_VERSION}-kguiaddons kde-guiaddons_LIB= libKF${_KDE_VERSION}GuiAddons.so kde-holidays_PORT= net/kf${_KDE_VERSION}-kholidays kde-holidays_LIB= libKF${_KDE_VERSION}Holidays.so kde-i18n_PORT= devel/kf${_KDE_VERSION}-ki18n kde-i18n_LIB= libKF${_KDE_VERSION}I18n.so kde-iconthemes_PORT= x11-themes/kf${_KDE_VERSION}-kiconthemes kde-iconthemes_LIB= libKF${_KDE_VERSION}IconThemes.so kde-idletime_PORT= devel/kf${_KDE_VERSION}-kidletime kde-idletime_LIB= libKF${_KDE_VERSION}IdleTime.so kde-init_PORT= x11/kf${_KDE_VERSION}-kinit kde-init_PATH= ${KDE_PREFIX}/bin/kdeinit5 kde-itemmodels_PORT= devel/kf${_KDE_VERSION}-kitemmodels kde-itemmodels_LIB= libKF${_KDE_VERSION}ItemModels.so kde-itemviews_PORT= x11-toolkits/kf${_KDE_VERSION}-kitemviews kde-itemviews_LIB= libKF${_KDE_VERSION}ItemViews.so kde-jobwidgets_PORT= x11-toolkits/kf${_KDE_VERSION}-kjobwidgets kde-jobwidgets_LIB= libKF${_KDE_VERSION}JobWidgets.so kde-js_PORT= www/kf${_KDE_VERSION}-kjs kde-js_LIB= libKF${_KDE_VERSION}JS.so kde-jsembed_PORT= www/kf${_KDE_VERSION}-kjsembed kde-jsembed_LIB= libKF${_KDE_VERSION}JsEmbed.so kde-kcmutils_PORT= devel/kf${_KDE_VERSION}-kcmutils kde-kcmutils_LIB= libKF${_KDE_VERSION}KCMUtils.so kde-kdeclarative_PORT= devel/kf${_KDE_VERSION}-kdeclarative kde-kdeclarative_LIB5= libKF${_KDE_VERSION}Declarative.so kde-kdeclarative_LIB6= libKF${_KDE_VERSION}CalendarEvents.so kde-kdeclarative_LIB= ${kde-kdeclarative_LIB${_KDE_VERSION}} kde-kded_PORT= x11/kf${_KDE_VERSION}-kded kde-kded_PATH= ${KDE_PREFIX}/bin/kded${_KDE_VERSION} kde-kdelibs4support_PORT= x11/kf${_KDE_VERSION}-kdelibs4support kde-kdelibs4support_LIB= libKF${_KDE_VERSION}KDELibs4Support.so kde-kdesu_PORT= security/kf${_KDE_VERSION}-kdesu kde-kdesu_LIB= libKF${_KDE_VERSION}Su.so kde-khtml_PORT= www/kf${_KDE_VERSION}-khtml kde-khtml_LIB= libKF${_KDE_VERSION}KHtml.so kde-kimageformats_PORT= graphics/kf${_KDE_VERSION}-kimageformats kde-kimageformats_PATH= ${QT_PLUGINDIR}/imageformats/kimg_xcf.so kde-kimageformats_TYPE= run kde-kio_PORT= devel/kf${_KDE_VERSION}-kio kde-kio_LIB= libKF${_KDE_VERSION}KIOCore.so kde-kirigami2_PORT5= x11-toolkits/kf${_KDE_VERSION}-kirigami2 kde-kirigami2_PORT6= x11-toolkits/kf${_KDE_VERSION}-kirigami kde-kirigami2_PATH5= ${QT_QMLDIR}/org/kde/kirigami.2/libKirigamiPlugin.so kde-kirigami2_PATH6= ${QT_QMLDIR}/org/kde/kirigami/libKirigamiplugin.so kde-kirigami2_PORT= ${kde-kirigami2_PORT${_KDE_VERSION}} kde-kirigami2_PATH= ${kde-kirigami2_PATH${_KDE_VERSION}} kde-kquickcharts_PORT= graphics/kf${_KDE_VERSION}-kquickcharts kde-kquickcharts_PATH5= ${QT_QMLDIR}/org/kde/quickcharts/libQuickCharts.so kde-kquickcharts_PATH6= ${QT_QMLDIR}/org/kde/quickcharts/libQuickChartsplugin.so kde-kquickcharts_PATH= ${kde-kquickcharts_PATH${_KDE_VERSION}} kde-kross_PORT= lang/kf${_KDE_VERSION}-kross kde-kross_LIB= libKF${_KDE_VERSION}KrossCore.so kde-layer-shell-qt_PORT= x11/plasma${_KDE_VERSION}-layer-shell-qt kde-layer-shell-qt_LIB= libLayerShellQtInterface.so kde-mediaplayer_PORT= multimedia/kf${_KDE_VERSION}-kmediaplayer kde-mediaplayer_LIB= libKF${_KDE_VERSION}MediaPlayer.so.5 kde-networkmanagerqt_PORT= net-mgmt/kf${_KDE_VERSION}-networkmanager-qt kde-networkmanagerqt_LIB= libKF${_KDE_VERSION}NetworkManagerQt.so kde-newstuff_PORT= devel/kf${_KDE_VERSION}-knewstuff kde-newstuff_LIB= libKF${_KDE_VERSION}NewStuffCore.so kde-notifications_PORT= devel/kf${_KDE_VERSION}-knotifications kde-notifications_LIB= libKF${_KDE_VERSION}Notifications.so kde-notifyconfig_PORT= devel/kf${_KDE_VERSION}-knotifyconfig kde-notifyconfig_LIB= libKF${_KDE_VERSION}NotifyConfig.so # Use the latest sounds from Plasma 6 kde-oxygen-sounds_PORT= audio/plasma6-oxygen-sounds kde-oxygen-sounds_PATH= ${KDE_PREFIX}/share/sounds/Oxygen-Sys-Log-In.ogg kde-oxygen-sounds_TYPE= run kde-package_PORT= devel/kf${_KDE_VERSION}-kpackage kde-package_LIB= libKF${_KDE_VERSION}Package.so kde-parts_PORT= devel/kf${_KDE_VERSION}-kparts kde-parts_LIB= libKF${_KDE_VERSION}Parts.so kde-people_PORT= devel/kf${_KDE_VERSION}-kpeople kde-people_LIB= libKF${_KDE_VERSION}People.so kde-plasma-framework_PORT= x11/kf${_KDE_VERSION}-plasma-framework kde-plasma-framework_LIB= libKF${_KDE_VERSION}Plasma.so kde-plasma-wayland-protocols_PORT= x11/plasma-wayland-protocols kde-plasma-wayland-protocols_PATH= ${KDE_PREFIX}/share/cmake/PlasmaWaylandProtocols/PlasmaWaylandProtocolsConfig.cmake kde-plotting_PORT= graphics/kf${_KDE_VERSION}-kplotting kde-plotting_LIB= libKF${_KDE_VERSION}Plotting.so kde-prison_PORT= graphics/kf${_KDE_VERSION}-prison kde-prison_LIB= libKF${_KDE_VERSION}Prison.so kde-pty_PORT= devel/kf${_KDE_VERSION}-kpty kde-pty_LIB= libKF${_KDE_VERSION}Pty.so kde-purpose_PORT= misc/kf${_KDE_VERSION}-purpose kde-purpose_LIB= libKF${_KDE_VERSION}Purpose.so kde-qqc2-desktop-style_PORT= x11-themes/kf${_KDE_VERSION}-qqc2-desktop-style kde-qqc2-desktop-style_PATH5= ${QT_PLUGINDIR}/kf${_KDE_VERSION}/kirigami/org.kde.desktop.so kde-qqc2-desktop-style_PATH6= ${QT_QMLDIR}/org/kde/desktop/liborg_kde_desktop.so kde-qqc2-desktop-style_PATH= ${kde-qqc2-desktop-style_PATH${_KDE_VERSION}} kde-runner_PORT= x11/kf${_KDE_VERSION}-krunner kde-runner_LIB= libKF${_KDE_VERSION}Runner.so kde-service_PORT= devel/kf${_KDE_VERSION}-kservice kde-service_LIB= libKF${_KDE_VERSION}Service.so kde-solid_PORT= devel/kf${_KDE_VERSION}-solid kde-solid_LIB= libKF${_KDE_VERSION}Solid.so kde-sonnet_PORT= textproc/kf${_KDE_VERSION}-sonnet kde-sonnet_LIB= libKF${_KDE_VERSION}SonnetCore.so kde-syndication_PORT= net/kf${_KDE_VERSION}-syndication kde-syndication_LIB= libKF${_KDE_VERSION}Syndication.so kde-syntaxhighlighting_PORT= textproc/kf${_KDE_VERSION}-syntax-highlighting kde-syntaxhighlighting_LIB= libKF${_KDE_VERSION}SyntaxHighlighting.so kde-texteditor_PORT= devel/kf${_KDE_VERSION}-ktexteditor kde-texteditor_LIB= libKF${_KDE_VERSION}TextEditor.so kde-texttemplate_PORT= devel/kf${_KDE_VERSION}-ktexttemplate kde-texttemplate_LIB= libKF${_KDE_VERSION}TextTemplate.so kde-textwidgets_PORT= x11-toolkits/kf${_KDE_VERSION}-ktextwidgets kde-textwidgets_LIB= libKF${_KDE_VERSION}TextWidgets.so kde-threadweaver_PORT= devel/kf${_KDE_VERSION}-threadweaver kde-threadweaver_LIB= libKF${_KDE_VERSION}ThreadWeaver.so kde-unitconversion_PORT= devel/kf${_KDE_VERSION}-kunitconversion kde-unitconversion_LIB= libKF${_KDE_VERSION}UnitConversion.so kde-wallet_PORT= sysutils/kf${_KDE_VERSION}-kwallet kde-wallet_LIB= libKF${_KDE_VERSION}Wallet.so kde-wayland_PORT5= x11/kf${_KDE_VERSION}-kwayland kde-wayland_PORT6= x11/plasma${_KDE_VERSION}-kwayland kde-wayland_PORT= ${kde-wayland_PORT${_KDE_VERSION}} kde-wayland_LIB5= libKF${_KDE_VERSION}WaylandClient.so kde-wayland_LIB6= libKWaylandClient.so kde-wayland_LIB= ${kde-wayland_LIB${_KDE_VERSION}} kde-widgetsaddons_PORT= x11-toolkits/kf${_KDE_VERSION}-kwidgetsaddons kde-widgetsaddons_LIB= libKF${_KDE_VERSION}WidgetsAddons.so kde-windowsystem_PORT= x11/kf${_KDE_VERSION}-kwindowsystem kde-windowsystem_LIB= libKF${_KDE_VERSION}WindowSystem.so kde-xmlgui_PORT= x11-toolkits/kf${_KDE_VERSION}-kxmlgui kde-xmlgui_LIB= libKF${_KDE_VERSION}XmlGui.so kde-xmlrpcclient_PORT= net/kf${_KDE_VERSION}-kxmlrpcclient kde-xmlrpcclient_LIB= libKF${_KDE_VERSION}XmlRpcClient.so kde-calendarcore_PORT= net/kf${_KDE_VERSION}-kcalendarcore kde-calendarcore_LIB= libKF${_KDE_VERSION}CalendarCore.so kde-contacts_PORT= net/kf${_KDE_VERSION}-kcontacts kde-contacts_LIB= libKF${_KDE_VERSION}Contacts.so kde-kdav_PORT= net/kf${_KDE_VERSION}-kdav kde-kdav_LIB= libKF${_KDE_VERSION}DAV.so kde-colorscheme_PORT= x11-themes/kf${_KDE_VERSION}-kcolorscheme kde-colorscheme_LIB= libKF${_KDE_VERSION}ColorScheme.so kde-svg_PORT= graphics/kf${_KDE_VERSION}-ksvg kde-svg_LIB= libKF${_KDE_VERSION}Svg.so kde-statusnotifieritem_PORT= deskutils/kf6-kstatusnotifieritem kde-statusnotifieritem_LIB= libKF${_KDE_VERSION}StatusNotifierItem.so kde-userfeedback_PORT= sysutils/kf6-kuserfeedback kde-userfeedback_LIB= libKF${_KDE_VERSION}UserFeedbackCore.so # ====================== end of frameworks components ========================== # ====================== plasma components ===================================== kde-kpipewire_PORT= audio/plasma${_KDE_VERSION}-kpipewire kde-kpipewire_LIB= libKPipeWire.so kde-activitymanagerd_PORT= x11/plasma${_KDE_VERSION}-kactivitymanagerd kde-activitymanagerd_LIB= libkactivitymanagerd_plugin.so kde-aurorae_PORT= x11-themes/plasma${_KDE_VERSION}-aurorae kde-aurorae_PATH= ${KDE_PREFIX}/lib/libexec/plasma-apply-aurorae kde-breeze_PORT= x11-themes/plasma${_KDE_VERSION}-breeze kde-breeze_PATH= ${KDE_PREFIX}/share/QtCurve/Breeze.qtcurve kde-breeze-gtk_PORT= x11-themes/plasma${_KDE_VERSION}-breeze-gtk kde-breeze-gtk_PATH= ${KDE_PREFIX}/share/themes/Breeze/gtk-2.0/gtkrc kde-decoration_PORT= x11-wm/plasma${_KDE_VERSION}-kdecoration kde-decoration_LIB= libkdecorations3.so kde-discover_PORT= sysutils/plasma${_KDE_VERSION}-discover kde-discover_PATH= ${KDE_PREFIX}/bin/plasma-discover kde-infocenter_PORT= sysutils/plasma${_KDE_VERSION}-kinfocenter kde-infocenter_PATH= ${KDE_PREFIX}/bin/kinfocenter kde-kde-cli-tools_PORT= sysutils/plasma${_KDE_VERSION}-kde-cli-tools kde-kde-cli-tools_PATH= ${KDE_PREFIX}/bin/kde-open kde-kde-gtk-config_PORT= x11-themes/plasma${_KDE_VERSION}-kde-gtk-config kde-kde-gtk-config_PATH= ${KDE_PREFIX}/lib/kconf_update_bin/gtk_theme kde-kdeplasma-addons_PORT= x11-toolkits/plasma${_KDE_VERSION}-kdeplasma-addons kde-kdeplasma-addons_LIB= libplasmapotdprovidercore.so kde-kgamma_PORT= x11/plasma${_KDE_VERSION}-kgamma kde-kgamma_PATH= ${QT_PLUGINDIR}/plasma/kcms/systemsettings_qwidgets/kcm_kgamma.so kde-kmenuedit_PORT= sysutils/plasma${_KDE_VERSION}-kmenuedit kde-kmenuedit_PATH= ${KDE_PREFIX}/bin/kmenuedit kde-knighttime_PORT= sysutils/plasma${_KDE_VERSION}-knighttime kde-knighttime_LIB= libKNightTime.so kde-kscreen_PORT= x11/plasma${_KDE_VERSION}-kscreen kde-kscreen_PATH= ${KDE_PREFIX}/bin/kscreen-console kde-kscreenlocker_PORT= security/plasma${_KDE_VERSION}-kscreenlocker kde-kscreenlocker_LIB= libKScreenLocker.so kde-ksshaskpass_PORT= security/plasma${_KDE_VERSION}-ksshaskpass kde-ksshaskpass_PATH= ${KDE_PREFIX}/bin/ksshaskpass kde-ksystemstats_PORT= sysutils/plasma${_KDE_VERSION}-ksystemstats kde-ksystemstats_PATH= ${KDE_PREFIX}/bin/ksystemstats kde-kwallet-pam_PORT= security/plasma${_KDE_VERSION}-kwallet-pam kde-kwallet-pam_PATH= ${KDE_PREFIX}/lib/pam_kwallet5.so kde-kwin_PORT= x11-wm/plasma${_KDE_VERSION}-kwin kde-kwin_PATH= ${KDE_PREFIX}/bin/kwin_wayland kde-kwin-x11_PORT= x11-wm/plasma${_KDE_VERSION}-kwin-x11 kde-kwin-x11_PATH= ${KDE_PREFIX}/bin/kwin_x11 kde-kwrited_PORT= devel/plasma${_KDE_VERSION}-kwrited kde-kwrited_PATH= ${QT_PLUGINDIR}/kf${_KDE_VERSION}/kded/kwrited.so kde-libkscreen_PORT= x11/plasma${_KDE_VERSION}-libkscreen kde-libkscreen_LIB= libKF${_KDE_VERSION}Screen.so kde-libksysguard_PORT= sysutils/plasma${_KDE_VERSION}-libksysguard kde-libksysguard_LIB5= libksgrd.so kde-libksysguard_LIB6= libKSysGuardSystemStats.so kde-libksysguard_LIB= ${kde-libksysguard_LIB${_KDE_VERSION}} kde-milou_PORT= deskutils/plasma${_KDE_VERSION}-milou kde-milou_PATH= ${QT_QMLDIR}/org/kde/milou/libmilou.so kde-ocean-sound-theme_PORT= audio/plasma${_KDE_VERSION}-ocean-sound-theme kde-ocean-sound-theme_PATH= ${KDE_PREFIX}/share/sounds/ocean/index.theme kde-ocean-sound-theme_TYPE= run kde-oxygen_PORT= x11-themes/plasma${_KDE_VERSION}-oxygen kde-oxygen_PATH= ${QT_PLUGINDIR}/kstyle_config/kstyle_oxygen_config.so kde-plasma-browser-integration_PORT= www/plasma${_KDE_VERSION}-plasma-browser-integration kde-plasma-browser-integration_PATH= ${KDE_PREFIX}/bin/plasma-browser-integration-host kde-plasma-desktop_PORT= x11/plasma${_KDE_VERSION}-plasma-desktop kde-plasma-desktop_PATH= ${KDE_PREFIX}/bin/kaccess kde-plasma-disks_PORT= sysutils/plasma${_KDE_VERSION}-plasma-disks kde-plasma-disks_PATH= ${KDE_PREFIX}/lib/libexec/kf6/kauth/kded-smart-helper kde-plasma-integration_PORT= x11/plasma${_KDE_VERSION}-plasma-integration kde-plasma-integration_PATH= ${QT_PLUGINDIR}/platformthemes/KDEPlasmaPlatformTheme6.so kde-plasma-pa_PORT= audio/plasma${_KDE_VERSION}-plasma-pa kde-plasma-pa_PATH= ${QT_PLUGINDIR}/plasma/kcms/systemsettings/kcm_pulseaudio.so kde-plasma-sdk_PORT= devel/plasma${_KDE_VERSION}-plasma-sdk kde-plasma-sdk_PATH= ${KDE_PREFIX}/bin/plasmoidviewer kde-plasma-workspace_PORT= x11/plasma${_KDE_VERSION}-plasma-workspace kde-plasma-workspace_LIB= libkworkspace${_KDE_VERSION}.so kde-plasma-workspace-wallpapers_PORT= x11-themes/plasma${_KDE_VERSION}-plasma-workspace-wallpapers kde-plasma-workspace-wallpapers_PATH= ${KDE_PREFIX}/share/wallpapers/Autumn/contents/images/1280x1024.jpg kde-polkit-kde-agent-1_PORT= sysutils/plasma${_KDE_VERSION}-polkit-kde-agent-1 kde-polkit-kde-agent-1_PATH= ${KDE_PREFIX}/lib/libexec/polkit-kde-authentication-agent-1 kde-powerdevil_PORT= sysutils/plasma${_KDE_VERSION}-powerdevil kde-powerdevil_LIB= libpowerdevilcore.so kde-print-manager_PORT= print/plasma${_KDE_VERSION}-print-manager kde-print-manager_PATH= ${KDE_PREFIX}/bin/kde-print-queue kde-print-manager_TYPE= run kde-spectacle_PORT= graphics/plasma${_KDE_VERSION}-spectacle kde-spectacle_PATH= ${KDE_PREFIX}/bin/spectacle kde-spectacle_TYPE= run kde-systemmonitor_PORT= sysutils/plasma${_KDE_VERSION}-plasma-systemmonitor kde-systemmonitor_PATH= ${KDE_PREFIX}/bin/plasma-systemmonitor kde-systemmonitor_TYPE= run kde-systemsettings_PORT= sysutils/plasma${_KDE_VERSION}-systemsettings kde-systemsettings_PATH= ${KDE_PREFIX}/bin/systemsettings kde-xdg-desktop-portal-kde_PORT= deskutils/plasma${_KDE_VERSION}-xdg-desktop-portal-kde kde-xdg-desktop-portal-kde_PATH= ${KDE_PREFIX}/lib/libexec/xdg-desktop-portal-kde kde-plasma5support_PORT= devel/plasma${_KDE_VERSION}-plasma5support kde-plasma5support_LIB= libPlasma5Support.so kde-qqc2-breeze-style_PORT= x11-themes/plasma${_KDE_VERSION}-qqc2-breeze-style kde-qqc2-breeze-style_PATH= ${QT_PLUGINDIR}/kf${_KDE_VERSION}/kirigami/platform/org.kde.breeze.so kde-sddm-kcm_PORT= deskutils/plasma${_KDE_VERSION}-sddm-kcm kde-sddm-kcm_PATH= ${QT_PLUGINDIR}/plasma/kcms/systemsettings/kcm_sddm.so kde-sddm-kcm_TYPE= run kde-kirigami-addons_PORT= x11-toolkits/kirigami-addons-qt${_KDE_VERSION} kde-kirigami-addons_PATH= ${QT_QMLDIR}/org/kde/kirigamiaddons/components/libcomponentsplugin.so kde-globalacceld_PORT= x11/plasma${_KDE_VERSION}-kglobalacceld kde-globalacceld_PATH= ${QT_PLUGINDIR}/org.kde.kglobalacceld.platforms/KGlobalAccelDXcb.so kde-libplasma_PORT= x11/plasma${_KDE_VERSION}-libplasma kde-libplasma_LIB= libPlasma.so # ====================== end of plasma components ============================== # ====================== pim5 components ======================================= kde-akonadicontacts_PORT= net/akonadi-contacts kde-akonadicontacts_LIB= libKPim${_KDE_VERSION}AkonadiContactCore.so kde-akonadiimportwizard_PORT= deskutils/akonadi-import-wizard kde-akonadiimportwizard_LIB= libKPim${_KDE_VERSION}ImportWizard.so kde-akonadimime_PORT= net/akonadi-mime kde-akonadimime_LIB= libKPim${_KDE_VERSION}AkonadiMime.so kde-akonadicalendar_PORT= net/akonadi-calendar kde-akonadicalendar_LIB= libKPim${_KDE_VERSION}AkonadiCalendar.so kde-akonadisearch_PORT= net/akonadi-search kde-akonadisearch_LIB= libKPim${_KDE_VERSION}AkonadiSearchCore.so kde-calendarsupport_PORT= net/calendarsupport kde-calendarsupport_LIB= libKPim${_KDE_VERSION}CalendarSupport.so kde-calendarutils_PORT= net/kcalutils kde-calendarutils_LIB= libKPim${_KDE_VERSION}CalendarUtils.so kde-eventviews_PORT= net/eventviews kde-eventviews_LIB= libKPim${_KDE_VERSION}EventViews.so kde-gapi_PORT= net/libkgapi kde-gapi_LIB= libKPim${_KDE_VERSION}GAPIBlogger.so kde-grantleetheme_PORT= deskutils/grantleetheme kde-grantleetheme_LIB= libKPim${_KDE_VERSION}GrantleeTheme.so kde-gravatar_PORT= net/libgravatar kde-gravatar_LIB= libKPim${_KDE_VERSION}Gravatar.so kde-identitymanagement_PORT= net/kidentitymanagement kde-identitymanagement_LIB= libKPim${_KDE_VERSION}IdentityManagementCore.so kde-imap_PORT= net/kimap kde-imap_LIB= libKPim${_KDE_VERSION}IMAP.so kde-incidenceeditor_PORT= net/incidenceeditor kde-incidenceeditor_LIB= libKPim${_KDE_VERSION}IncidenceEditor.so kde-kdepim-addons_PORT= deskutils/kdepim-addons kde-kdepim-addons_PATH= ${QT_PLUGINDIR}/pim${_KDE_VERSION}/contacteditor/editorpageplugins/cryptopageplugin.so kde-kdepim-runtime_PORT= deskutils/kdepim-runtime kde-kdepim-runtime_PATH= ${KDE_PREFIX}/bin/gidmigrator kde-kitinerary_PORT= net/kitinerary kde-kitinerary_LIB= libKPim${_KDE_VERSION}Itinerary.so kde-kontactinterface_PORT= net/kontactinterface kde-kontactinterface_LIB= libKPim${_KDE_VERSION}KontactInterface.so kde-kpkpass_PORT= security/kpkpass kde-kpkpass_LIB= libKPim${_KDE_VERSION}PkPass.so kde-ksmtp_PORT= net/ksmtp kde-ksmtp_LIB= libKPim${_KDE_VERSION}SMTP.so kde-ldap_PORT= net/kldap kde-ldap_LIB= libKPim${_KDE_VERSION}LdapCore.so kde-libkdepim_PORT= deskutils/libkdepim kde-libkdepim_LIB= libKPim${_KDE_VERSION}Libkdepim.so kde-libkleo_PORT= security/libkleo kde-libkleo_LIB= libKPim${_KDE_VERSION}Libkleo.so kde-libksieve_PORT= net/libksieve kde-libksieve_LIB= libKPim${_KDE_VERSION}KSieve.so kde-mailcommon_PORT= net/mailcommon kde-mailcommon_LIB= libKPim${_KDE_VERSION}MailCommon.so kde-mailimporter_PORT= net/mailimporter kde-mailimporter_LIB= libKPim${_KDE_VERSION}MailImporter.so kde-mailtransport_PORT= net/kmailtransport kde-mailtransport_LIB= libKPim${_KDE_VERSION}MailTransport.so kde-mbox_PORT= net/kmbox kde-mbox_LIB= libKPim${_KDE_VERSION}Mbox.so kde-messagelib_PORT= net/messagelib kde-messagelib_LIB= libKPim${_KDE_VERSION}MessageList.so kde-mime_PORT= net/kmime kde-mime_LIB= libKPim${_KDE_VERSION}Mime.so kde-pimcommon_PORT= net/pimcommon kde-pimcommon_LIB= libKPim${_KDE_VERSION}PimCommon.so kde-pimtextedit_PORT= net/kpimtextedit kde-pimtextedit_LIB= libKPim${_KDE_VERSION}TextEdit.so kde-tnef_PORT= net/ktnef kde-tnef_LIB= libKPim${_KDE_VERSION}Tnef.so kde-ktextaddons_PORT= devel/ktextaddons kde-ktextaddons_LIB= libKF${_KDE_VERSION}TextAutoCorrectionCore.so # PIM Applications kde-akonadiconsole_PORT= deskutils/akonadiconsole kde-akonadiconsole_PATH= ${KDE_PREFIX}/bin/akonadiconsole kde-akregator_PORT= deskutils/akregator kde-akregator_PATH= ${KDE_PREFIX}/bin/akregator kde-grantlee-editor_PORT= deskutils/grantlee-editor kde-grantlee-editor_PATH= ${KDE_PREFIX}/bin/contactthemeeditor kde-kaddressbook_PORT= deskutils/kaddressbook kde-kaddressbook_PATH= ${KDE_PREFIX}/bin/kaddressbook kde-kalarm_PORT= deskutils/kalarm kde-kalarm_PATH= ${KDE_PREFIX}/bin/kalarm kde-kmail_PORT= deskutils/kmail kde-kmail_PATH= ${KDE_PREFIX}/bin/kmail kde-kmail-account-wizard_PORT= deskutils/kmail-account-wizard kde-kmail-account-wizard_PATH= ${KDE_PREFIX}/bin/accountwizard kde-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-mimetreeparser_PORT= net/mimetreeparser kde-mimetreeparser_LIB= libKPim${_KDE_VERSION}MimeTreeParserCore.so 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-akonadi_PORT= databases/akonadi kde-akonadi_LIB= libKPim${_KDE_VERSION}AkonadiPrivate.so kde-baloo-widgets_PORT= sysutils/baloo-widgets kde-baloo-widgets_LIB= libKF${_KDE_VERSION}BalooWidgets.so kde-libkcddb_PORT= audio/libkcddb kde-libkcddb_LIB= libKCddb${_KDE_VERSION}.so kde-libkcompactdisc_PORT= audio/libkcompactdisc kde-libkcompactdisc_LIB= libKF${_KDE_VERSION}CompactDisc.so kde-libkdcraw_PORT= graphics/libkdcraw@qt${_KDE_VERSION} kde-libkdcraw_LIB5= libKF${_KDE_VERSION}KDcraw.so kde-libkdcraw_LIB6= libKDcrawQt${_KDE_VERSION}.so kde-libkdcraw_LIB= ${kde-libkdcraw_LIB${_KDE_VERSION}} kde-libkdegames_PORT= games/libkdegames kde-libkdegames_LIB= libKDEGames${_KDE_VERSION}.so kde-libkeduvocdocument_PORT= misc/libkeduvocdocument kde-libkeduvocdocument_LIB= libKEduVocDocument.so kde-libkexiv2_PORT= graphics/libkexiv2 kde-libkexiv2_LIB= libKExiv2Qt6.so kde-libksane_PORT= graphics/libksane kde-libksane_LIB= libKSaneWidgets${_KDE_VERSION}.so kde-marble_PORT= astro/marble kde-marble_LIB= libmarblewidget-qt6.so kde-kpublictransport_PORT= devel/kpublictransport kde-kpublictransport_LIB= libKPublicTransport.so kde-kosm_PORT= astro/kosmindoormap kde-kosm_LIB= libKOSM.so kde-okular_PORT= graphics/okular kde-okular_LIB= libOkular${_KDE_VERSION}Core.so kde-phonon_PORT= multimedia/phonon@${_QT_RELNAME} kde-phonon_LIB= libphonon4${_QT_RELNAME}.so kde-phonon-mpv_PORT= multimedia/phonon-mpv kde-phonon-mpv_PATH= ${QT_PLUGINDIR}/phonon4${_QT_RELNAME}_backend/phonon_mpv_${_QT_RELNAME}.so kde-phonon-mpv_TYPE= run kde-phonon-vlc_PORT= multimedia/phonon-vlc@${_QT_RELNAME} kde-phonon-vlc_PATH= ${QT_PLUGINDIR}/phonon4${_QT_RELNAME}_backend/phonon_vlc_${_QT_RELNAME}.so kde-phonon-vlc_TYPE= run # ====================== end of multiversion components ======================== # end of component list ######################################################## _USE_KDE_ALL= ${_USE_${_KDE_RELNAME}_ALL} # Iterate through components deprived of suffix. . for component in ${USE_KDE:O:u:C/:.+//} # Check that the component is valid. . if ${_USE_KDE_ALL:M${component}} != "" # Skip meta-components (currently none). . if defined(kde-${component}_PORT) && (defined(kde-${component}_PATH) || defined(kde-${component}_LIB)) # Check if a dependency type is explicitly requested. . if ${USE_KDE:M${component}\:*} != "" && ${USE_KDE:M${component}} == "" kde-${component}_TYPE= # empty . if ${USE_KDE:M${component}\:build} != "" kde-${component}_TYPE+= build . endif . if ${USE_KDE:M${component}\:run} != "" kde-${component}_TYPE+= run . endif . endif # ${USE_KDE:M${component}_*} != "" && ${USE_KDE:M${component}} == "" # If no dependency type is set, default to full dependency. . if !defined(kde-${component}_TYPE) kde-${component}_TYPE= build run . endif # Set real dependencies. . if defined(kde-${component}_LIB) && ${kde-${component}_TYPE:Mbuild} && ${kde-${component}_TYPE:Mrun} LIB_DEPENDS+= ${kde-${component}_LIB}:${kde-${component}_PORT} . else kde-${component}_PATH?= ${KDE_PREFIX}/lib/${kde-${component}_LIB} kde-${component}_DEPENDS= ${kde-${component}_PATH}:${kde-${component}_PORT} . if ${kde-${component}_TYPE:Mbuild} != "" BUILD_DEPENDS+= ${kde-${component}_DEPENDS} . endif . if ${kde-${component}_TYPE:Mrun} != "" RUN_DEPENDS+= ${kde-${component}_DEPENDS} . endif . endif # ${kde-${component}_LIB} && ${kde-${component}_TYPE:Mbuild} && ${kde-${component}_TYPE:Mrun} . endif # defined(kde-${component}_PORT) && defined(kde-${component}_PATH) . else # ! ${_USE_KDE_ALL:M${component}} != "" IGNORE= cannot be installed: unknown USE_KDE component '${component}' . endif # ${_USE_KDE_ALL:M${component}} != "" . endfor . endif .endif diff --git a/audio/plasma6-kpipewire/distinfo b/audio/plasma6-kpipewire/distinfo index 2313081ee93d..156349e90c6f 100644 --- a/audio/plasma6-kpipewire/distinfo +++ b/audio/plasma6-kpipewire/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1768328274 -SHA256 (KDE/plasma/6.5.5/kpipewire-6.5.5.tar.xz) = 4aacdb440cb09df418228aafce12d2565a894b3a8b98f34f05aa5a6f1ebce354 -SIZE (KDE/plasma/6.5.5/kpipewire-6.5.5.tar.xz) = 153184 +TIMESTAMP = 1771162201 +SHA256 (KDE/plasma/6.6.0/kpipewire-6.6.0.tar.xz) = 8373c94241b38331f15a69113901114a25e7272c85521ad2330b1e60f06d1a26 +SIZE (KDE/plasma/6.6.0/kpipewire-6.6.0.tar.xz) = 153692 diff --git a/audio/plasma6-ocean-sound-theme/distinfo b/audio/plasma6-ocean-sound-theme/distinfo index 873384897b60..bc4c6c155726 100644 --- a/audio/plasma6-ocean-sound-theme/distinfo +++ b/audio/plasma6-ocean-sound-theme/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1768328275 -SHA256 (KDE/plasma/6.5.5/ocean-sound-theme-6.5.5.tar.xz) = ce629cc9990a3dc381d3bd45c37838a618f51021761a37671e74b9a45624a12c -SIZE (KDE/plasma/6.5.5/ocean-sound-theme-6.5.5.tar.xz) = 2124108 +TIMESTAMP = 1771162201 +SHA256 (KDE/plasma/6.6.0/ocean-sound-theme-6.6.0.tar.xz) = 9341f54cd656f8ab6dc21647d347e2c5b9f09b26cc8c6935949041cfb1080473 +SIZE (KDE/plasma/6.6.0/ocean-sound-theme-6.6.0.tar.xz) = 2124168 diff --git a/audio/plasma6-oxygen-sounds/distinfo b/audio/plasma6-oxygen-sounds/distinfo index e3a90401956b..7df60de134fb 100644 --- a/audio/plasma6-oxygen-sounds/distinfo +++ b/audio/plasma6-oxygen-sounds/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1768328275 -SHA256 (KDE/plasma/6.5.5/oxygen-sounds-6.5.5.tar.xz) = 53b8adb623d9769df3a0ff47c5e5ed4cb1c0f5c0794ef254469c0da9301b24cf -SIZE (KDE/plasma/6.5.5/oxygen-sounds-6.5.5.tar.xz) = 1935464 +TIMESTAMP = 1771162201 +SHA256 (KDE/plasma/6.6.0/oxygen-sounds-6.6.0.tar.xz) = 767ded8fb417bfab508f078e8684ac3304d0083408c7e015445228a0e834062e +SIZE (KDE/plasma/6.6.0/oxygen-sounds-6.6.0.tar.xz) = 1935640 diff --git a/audio/plasma6-plasma-pa/distinfo b/audio/plasma6-plasma-pa/distinfo index 1bb935f424f3..6945f84aa5d9 100644 --- a/audio/plasma6-plasma-pa/distinfo +++ b/audio/plasma6-plasma-pa/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1768328278 -SHA256 (KDE/plasma/6.5.5/plasma-pa-6.5.5.tar.xz) = 627e90c160669840d29f0ffa83f525e1ec69e306dff3dc35c1db282527b1a587 -SIZE (KDE/plasma/6.5.5/plasma-pa-6.5.5.tar.xz) = 200824 +TIMESTAMP = 1771162203 +SHA256 (KDE/plasma/6.6.0/plasma-pa-6.6.0.tar.xz) = cd038aef63da5e37b0f170e63fe182b93c2a362b6756dd26c2d50416052705fa +SIZE (KDE/plasma/6.6.0/plasma-pa-6.6.0.tar.xz) = 202380 diff --git a/deskutils/plasma6-milou/distinfo b/deskutils/plasma6-milou/distinfo index 658d516338fb..fbb1ab7dff5d 100644 --- a/deskutils/plasma6-milou/distinfo +++ b/deskutils/plasma6-milou/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1768328279 -SHA256 (KDE/plasma/6.5.5/milou-6.5.5.tar.xz) = e81d099a02d9fb4800d997338fc8428d88c8b21070e24a8d36dc1d0a123d89dd -SIZE (KDE/plasma/6.5.5/milou-6.5.5.tar.xz) = 50152 +TIMESTAMP = 1771162203 +SHA256 (KDE/plasma/6.6.0/milou-6.6.0.tar.xz) = f48ca2c6734c2adf250786379dcd391d9417edd4d66202094416e9a47dc7710e +SIZE (KDE/plasma/6.6.0/milou-6.6.0.tar.xz) = 49900 diff --git a/deskutils/plasma6-milou/pkg-plist b/deskutils/plasma6-milou/pkg-plist index 847c36a706a5..260c1ac25bb3 100644 --- a/deskutils/plasma6-milou/pkg-plist +++ b/deskutils/plasma6-milou/pkg-plist @@ -1,121 +1,116 @@ +%%QT_PLUGINDIR%%/plasma/applets/org.kde.milou.so %%QT_QMLDIR%%/org/kde/milou/ResultDelegate.qml -%%QT_QMLDIR%%/org/kde/milou/ResultsListView.qml -%%QT_QMLDIR%%/org/kde/milou/ResultsListViewDelegate.qml %%QT_QMLDIR%%/org/kde/milou/ResultsView.qml %%QT_QMLDIR%%/org/kde/milou/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/milou/libmilou.so %%QT_QMLDIR%%/org/kde/milou/milou.qmltypes %%QT_QMLDIR%%/org/kde/milou/qmldir share/locale/ar/LC_MESSAGES/milou.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/ast/LC_MESSAGES/milou.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/bg/LC_MESSAGES/milou.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/bs/LC_MESSAGES/milou.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/ca/LC_MESSAGES/milou.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/ca@valencia/LC_MESSAGES/milou.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/cs/LC_MESSAGES/milou.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/da/LC_MESSAGES/milou.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/de/LC_MESSAGES/milou.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/el/LC_MESSAGES/milou.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/en_GB/LC_MESSAGES/milou.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/eo/LC_MESSAGES/milou.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/es/LC_MESSAGES/milou.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/et/LC_MESSAGES/milou.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/eu/LC_MESSAGES/milou.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/fi/LC_MESSAGES/milou.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/fr/LC_MESSAGES/milou.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/ga/LC_MESSAGES/milou.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/gl/LC_MESSAGES/milou.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/he/LC_MESSAGES/milou.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/hi/LC_MESSAGES/milou.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/hu/LC_MESSAGES/milou.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/ia/LC_MESSAGES/milou.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/id/LC_MESSAGES/milou.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/it/LC_MESSAGES/milou.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/ja/LC_MESSAGES/milou.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/ka/LC_MESSAGES/milou.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/ko/LC_MESSAGES/milou.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/lt/LC_MESSAGES/milou.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/lv/LC_MESSAGES/milou.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/ml/LC_MESSAGES/milou.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/nb/LC_MESSAGES/milou.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/nds/LC_MESSAGES/milou.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/nl/LC_MESSAGES/milou.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/nn/LC_MESSAGES/milou.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/pa/LC_MESSAGES/milou.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/pl/LC_MESSAGES/milou.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/pt/LC_MESSAGES/milou.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/pt_BR/LC_MESSAGES/milou.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/ro/LC_MESSAGES/milou.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/ru/LC_MESSAGES/milou.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/sa/LC_MESSAGES/milou.mo share/locale/sa/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/sk/LC_MESSAGES/milou.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/sl/LC_MESSAGES/milou.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/sr/LC_MESSAGES/milou.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/sr@ijekavian/LC_MESSAGES/milou.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/milou.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/sr@latin/LC_MESSAGES/milou.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/sv/LC_MESSAGES/milou.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/ta/LC_MESSAGES/milou.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/tr/LC_MESSAGES/milou.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/uk/LC_MESSAGES/milou.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/zh_CN/LC_MESSAGES/milou.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/zh_TW/LC_MESSAGES/milou.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.milou.mo -share/plasma/plasmoids/org.kde.milou/contents/ui/SearchField.qml -share/plasma/plasmoids/org.kde.milou/contents/ui/globals.js -share/plasma/plasmoids/org.kde.milou/contents/ui/main.qml -share/plasma/plasmoids/org.kde.milou/metadata.json diff --git a/deskutils/plasma6-sddm-kcm/Makefile b/deskutils/plasma6-sddm-kcm/Makefile index caa24a227430..89a962145c33 100644 --- a/deskutils/plasma6-sddm-kcm/Makefile +++ b/deskutils/plasma6-sddm-kcm/Makefile @@ -1,19 +1,18 @@ PORTNAME= sddm-kcm DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= deskutils kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Configuration module for SDDM USES= cmake gettext gl kde:6 qt:6 tar:xz USE_KDE= archive auth colorscheme config configwidgets coreaddons i18n \ kcmutils kio newstuff service widgetsaddons \ ecm:build USE_GL= gl opengl USE_QT= base declarative CMAKE_ARGS= -DSDDM_CONFIG_FILE:FILEPATH=${LOCALBASE}/etc/sddm.conf \ -DSDDM_CONFIG_DIR:PATH=${LOCALBASE}/etc/sddm.conf.d .include diff --git a/deskutils/plasma6-sddm-kcm/distinfo b/deskutils/plasma6-sddm-kcm/distinfo index 6109d7229d3b..a57bd8672ed2 100644 --- a/deskutils/plasma6-sddm-kcm/distinfo +++ b/deskutils/plasma6-sddm-kcm/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1768328280 -SHA256 (KDE/plasma/6.5.5/sddm-kcm-6.5.5.tar.xz) = ed7b757d172761c1ffc1b2f1766dd0f1ca401818064956f8f1c2d4c5aa0b3d4f -SIZE (KDE/plasma/6.5.5/sddm-kcm-6.5.5.tar.xz) = 104520 +TIMESTAMP = 1771162204 +SHA256 (KDE/plasma/6.6.0/sddm-kcm-6.6.0.tar.xz) = 15ea5385e27977398b970016838ba0c05db2ff80ad39db5facecacf01efcf957 +SIZE (KDE/plasma/6.6.0/sddm-kcm-6.6.0.tar.xz) = 104968 diff --git a/deskutils/plasma6-xdg-desktop-portal-kde/Makefile b/deskutils/plasma6-xdg-desktop-portal-kde/Makefile index 9c3c8db72832..cbc9d93f7081 100644 --- a/deskutils/plasma6-xdg-desktop-portal-kde/Makefile +++ b/deskutils/plasma6-xdg-desktop-portal-kde/Makefile @@ -1,25 +1,24 @@ PORTNAME= xdg-desktop-portal-kde DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 2 CATEGORIES= deskutils kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Backend implementation for xdg-desktop-portal that is using Qt/KDE BUILD_DEPENDS= ${LOCALBASE}/include/linux/input-event-codes.h:devel/evdev-proto \ wayland-protocols>=0:graphics/wayland-protocols LIB_DEPENDS= libwayland-client.so:graphics/wayland \ libxkbcommon.so:x11/libxkbcommon RUN_DEPENDS= xdg-desktop-portal>0:deskutils/xdg-desktop-portal USES= cmake gettext gl kde:6 pkgconfig qt:6 tar:xz xorg USE_KDE= bookmarks completion config coreaddons globalaccel guiaddons \ i18n iconthemes itemviews jobwidgets kio kirigami2 \ notifications service solid statusnotifieritem wayland \ widgetsaddons windowsystem \ ecm:build plasma-wayland-protocols:build USE_QT= base declarative wayland USE_XORG= x11 USE_GL= gl opengl .include diff --git a/deskutils/plasma6-xdg-desktop-portal-kde/distinfo b/deskutils/plasma6-xdg-desktop-portal-kde/distinfo index 3cba5296bfff..0115c36037a9 100644 --- a/deskutils/plasma6-xdg-desktop-portal-kde/distinfo +++ b/deskutils/plasma6-xdg-desktop-portal-kde/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1768328280 -SHA256 (KDE/plasma/6.5.5/xdg-desktop-portal-kde-6.5.5.tar.xz) = a287f1867a05b39a226285f010fb225742e765831cb81cbc1ea8820359f8cd29 -SIZE (KDE/plasma/6.5.5/xdg-desktop-portal-kde-6.5.5.tar.xz) = 210808 +TIMESTAMP = 1771162204 +SHA256 (KDE/plasma/6.6.0/xdg-desktop-portal-kde-6.6.0.tar.xz) = 86da59ef6dfc9df132cb3322c6510ab56456f53e3f1772357d453da3ea1efe42 +SIZE (KDE/plasma/6.6.0/xdg-desktop-portal-kde-6.6.0.tar.xz) = 228660 diff --git a/devel/plasma6-kwrited/distinfo b/devel/plasma6-kwrited/distinfo index 5230929dd42a..774aac6e1432 100644 --- a/devel/plasma6-kwrited/distinfo +++ b/devel/plasma6-kwrited/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1768328281 -SHA256 (KDE/plasma/6.5.5/kwrited-6.5.5.tar.xz) = d0ace46fd0ed88da3ea41bfa6e270ea16b8144985b58c5fa01aeb9abf0d9a88c -SIZE (KDE/plasma/6.5.5/kwrited-6.5.5.tar.xz) = 23572 +TIMESTAMP = 1771162204 +SHA256 (KDE/plasma/6.6.0/kwrited-6.6.0.tar.xz) = b011b548974b3d5b66e6a8d17e08153ef1ffc9229e0ec26d2284f76561e77bdf +SIZE (KDE/plasma/6.6.0/kwrited-6.6.0.tar.xz) = 23500 diff --git a/devel/plasma6-plasma-sdk/Makefile b/devel/plasma6-plasma-sdk/Makefile index 903f7dc28d63..87ed93a3074b 100644 --- a/devel/plasma6-plasma-sdk/Makefile +++ b/devel/plasma6-plasma-sdk/Makefile @@ -1,20 +1,19 @@ PORTNAME= plasma-sdk DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= devel kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Applications useful for Plasma development USES= cmake gettext gl kde:6 qt:6 tar:xz xorg USE_KDE= archive colorscheme completion config configwidgets coreaddons \ dbusaddons doctools i18n iconthemes itemmodels jobwidgets kio \ kirigami2 libplasma package parts plasma5support service solid \ svg syntaxhighlighting texteditor widgetsaddons windowsystem \ xmlgui \ ecm:build USE_QT= 5compat base declarative svg USE_XORG= x11 USE_GL= gl opengl .include diff --git a/devel/plasma6-plasma-sdk/distinfo b/devel/plasma6-plasma-sdk/distinfo index aa0b16fe10b0..49a386c5983f 100644 --- a/devel/plasma6-plasma-sdk/distinfo +++ b/devel/plasma6-plasma-sdk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1768328281 -SHA256 (KDE/plasma/6.5.5/plasma-sdk-6.5.5.tar.xz) = b6dc48520ccda4415b0aa6a66502db7180bcd3e1d8975a5f2040519ef70939c4 -SIZE (KDE/plasma/6.5.5/plasma-sdk-6.5.5.tar.xz) = 362000 +TIMESTAMP = 1771162204 +SHA256 (KDE/plasma/6.6.0/plasma-sdk-6.6.0.tar.xz) = c852275bc6242fc467925816d48befa7320250dac0097d63371c27eaf7c1780c +SIZE (KDE/plasma/6.6.0/plasma-sdk-6.6.0.tar.xz) = 362576 diff --git a/devel/plasma6-plasma-sdk/pkg-plist b/devel/plasma6-plasma-sdk/pkg-plist index f9b494c24524..09b530fe9572 100644 --- a/devel/plasma6-plasma-sdk/pkg-plist +++ b/devel/plasma6-plasma-sdk/pkg-plist @@ -1,523 +1,524 @@ bin/iconexplorer bin/kqml bin/lookandfeelexplorer bin/plasmaengineexplorer bin/plasmathemeexplorer bin/plasmoidviewer %%QT_PLUGINDIR%%/kf6/ktexteditor/iconexplorerplugin.so share/applications/org.kde.iconexplorer.desktop share/applications/org.kde.plasma.lookandfeelexplorer.desktop share/applications/org.kde.plasma.themeexplorer.desktop share/applications/org.kde.plasmaengineexplorer.desktop share/applications/org.kde.plasmoidviewer.desktop share/icons/hicolor/scalable/apps/org.kde.iconexplorer.svg share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/code/openInEditor.sh share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/data/themeDescription.json share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/data/todo share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/ColorButton.qml share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/ColorEditor.qml share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/FormLabel.qml share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/MetadataEditor.qml share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/delegates/Hand.qml share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/delegates/actionbutton.qml share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/delegates/allframesvgs.qml share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/delegates/analog_meter.qml share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/delegates/busyindicator.qml share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/delegates/button.qml share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/delegates/checkmarks.qml share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/delegates/clock.qml share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/delegates/containment-controls.qml share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/delegates/dialog.qml share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/delegates/framesvg.qml share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/delegates/icons.qml share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/delegates/listitem.qml share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/delegates/monitor.qml share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/delegates/panel.qml share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/delegates/progressbar.qml share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/delegates/scrollbar.qml share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/delegates/slider.qml share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/delegates/tabbar.qml share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/delegates/textfield.qml share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/fakecontrols/Button.qml share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/fakecontrols/CheckBox.qml share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/fakecontrols/LineEdit.qml share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/main.qml share/kpackage/genericqml/org.kde.plasma.themeexplorer/metadata.json share/locale/ar/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/ar/LC_MESSAGES/iconexplorer.mo share/locale/ar/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/ar/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/ar/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/ar/LC_MESSAGES/plasmaengineexplorer.mo share/locale/ar/LC_MESSAGES/plasmoidviewer.mo share/locale/ast/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/ast/LC_MESSAGES/iconexplorer.mo share/locale/ast/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/ast/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/ast/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/ast/LC_MESSAGES/plasmaengineexplorer.mo share/locale/ast/LC_MESSAGES/plasmoidviewer.mo share/locale/az/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/az/LC_MESSAGES/iconexplorer.mo share/locale/az/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/az/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/az/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/az/LC_MESSAGES/plasmaengineexplorer.mo share/locale/az/LC_MESSAGES/plasmoidviewer.mo share/locale/be/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/be/LC_MESSAGES/iconexplorer.mo share/locale/be/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/be/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/be/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/be/LC_MESSAGES/plasmaengineexplorer.mo share/locale/be/LC_MESSAGES/plasmoidviewer.mo share/locale/be@latin/LC_MESSAGES/plasmaengineexplorer.mo share/locale/be@latin/LC_MESSAGES/plasmoidviewer.mo share/locale/bg/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/bg/LC_MESSAGES/iconexplorer.mo share/locale/bg/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/bg/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/bg/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/bg/LC_MESSAGES/plasmaengineexplorer.mo share/locale/bg/LC_MESSAGES/plasmoidviewer.mo share/locale/bn_IN/LC_MESSAGES/plasmaengineexplorer.mo share/locale/bn_IN/LC_MESSAGES/plasmoidviewer.mo share/locale/bs/LC_MESSAGES/plasmaengineexplorer.mo share/locale/bs/LC_MESSAGES/plasmoidviewer.mo share/locale/ca/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/ca/LC_MESSAGES/iconexplorer.mo share/locale/ca/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/ca/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/ca/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/ca/LC_MESSAGES/plasmaengineexplorer.mo share/locale/ca/LC_MESSAGES/plasmoidviewer.mo share/locale/ca@valencia/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/ca@valencia/LC_MESSAGES/iconexplorer.mo share/locale/ca@valencia/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/ca@valencia/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/ca@valencia/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/ca@valencia/LC_MESSAGES/plasmaengineexplorer.mo share/locale/ca@valencia/LC_MESSAGES/plasmoidviewer.mo share/locale/cs/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/cs/LC_MESSAGES/iconexplorer.mo share/locale/cs/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/cs/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/cs/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/cs/LC_MESSAGES/plasmaengineexplorer.mo share/locale/cs/LC_MESSAGES/plasmoidviewer.mo share/locale/csb/LC_MESSAGES/plasmaengineexplorer.mo share/locale/csb/LC_MESSAGES/plasmoidviewer.mo share/locale/da/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/da/LC_MESSAGES/iconexplorer.mo share/locale/da/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/da/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/da/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/da/LC_MESSAGES/plasmaengineexplorer.mo share/locale/da/LC_MESSAGES/plasmoidviewer.mo share/locale/de/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/de/LC_MESSAGES/iconexplorer.mo share/locale/de/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/de/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/de/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/de/LC_MESSAGES/plasmaengineexplorer.mo share/locale/de/LC_MESSAGES/plasmoidviewer.mo share/locale/el/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/el/LC_MESSAGES/iconexplorer.mo share/locale/el/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/el/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/el/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/el/LC_MESSAGES/plasmaengineexplorer.mo share/locale/el/LC_MESSAGES/plasmoidviewer.mo share/locale/en_GB/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/en_GB/LC_MESSAGES/iconexplorer.mo share/locale/en_GB/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/en_GB/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/en_GB/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/en_GB/LC_MESSAGES/plasmaengineexplorer.mo share/locale/en_GB/LC_MESSAGES/plasmoidviewer.mo share/locale/eo/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/eo/LC_MESSAGES/iconexplorer.mo share/locale/eo/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/eo/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/eo/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/eo/LC_MESSAGES/plasmaengineexplorer.mo share/locale/eo/LC_MESSAGES/plasmoidviewer.mo share/locale/es/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/es/LC_MESSAGES/iconexplorer.mo share/locale/es/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/es/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/es/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/es/LC_MESSAGES/plasmaengineexplorer.mo share/locale/es/LC_MESSAGES/plasmoidviewer.mo share/locale/et/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/et/LC_MESSAGES/iconexplorer.mo share/locale/et/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/et/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/et/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/et/LC_MESSAGES/plasmaengineexplorer.mo share/locale/et/LC_MESSAGES/plasmoidviewer.mo share/locale/eu/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/eu/LC_MESSAGES/iconexplorer.mo share/locale/eu/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/eu/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/eu/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/eu/LC_MESSAGES/plasmaengineexplorer.mo share/locale/eu/LC_MESSAGES/plasmoidviewer.mo share/locale/fa/LC_MESSAGES/plasmaengineexplorer.mo share/locale/fi/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/fi/LC_MESSAGES/iconexplorer.mo share/locale/fi/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/fi/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/fi/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/fi/LC_MESSAGES/plasmaengineexplorer.mo share/locale/fi/LC_MESSAGES/plasmoidviewer.mo share/locale/fr/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/fr/LC_MESSAGES/iconexplorer.mo share/locale/fr/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/fr/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/fr/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/fr/LC_MESSAGES/plasmaengineexplorer.mo share/locale/fr/LC_MESSAGES/plasmoidviewer.mo share/locale/fy/LC_MESSAGES/plasmaengineexplorer.mo share/locale/fy/LC_MESSAGES/plasmoidviewer.mo share/locale/ga/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/ga/LC_MESSAGES/iconexplorer.mo share/locale/ga/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/ga/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/ga/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/ga/LC_MESSAGES/plasmaengineexplorer.mo share/locale/ga/LC_MESSAGES/plasmoidviewer.mo share/locale/gl/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/gl/LC_MESSAGES/iconexplorer.mo share/locale/gl/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/gl/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/gl/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/gl/LC_MESSAGES/plasmaengineexplorer.mo share/locale/gl/LC_MESSAGES/plasmoidviewer.mo share/locale/gu/LC_MESSAGES/plasmaengineexplorer.mo share/locale/gu/LC_MESSAGES/plasmoidviewer.mo share/locale/he/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/he/LC_MESSAGES/iconexplorer.mo share/locale/he/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/he/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/he/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/he/LC_MESSAGES/plasmaengineexplorer.mo share/locale/he/LC_MESSAGES/plasmoidviewer.mo share/locale/hi/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/hi/LC_MESSAGES/iconexplorer.mo share/locale/hi/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/hi/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/hi/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/hi/LC_MESSAGES/plasmaengineexplorer.mo share/locale/hi/LC_MESSAGES/plasmoidviewer.mo share/locale/hne/LC_MESSAGES/plasmoidviewer.mo share/locale/hr/LC_MESSAGES/plasmaengineexplorer.mo share/locale/hr/LC_MESSAGES/plasmoidviewer.mo share/locale/hsb/LC_MESSAGES/plasmaengineexplorer.mo share/locale/hsb/LC_MESSAGES/plasmoidviewer.mo share/locale/hu/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/hu/LC_MESSAGES/iconexplorer.mo share/locale/hu/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/hu/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/hu/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/hu/LC_MESSAGES/plasmaengineexplorer.mo share/locale/hu/LC_MESSAGES/plasmoidviewer.mo share/locale/ia/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/ia/LC_MESSAGES/iconexplorer.mo share/locale/ia/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/ia/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/ia/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/ia/LC_MESSAGES/plasmaengineexplorer.mo share/locale/ia/LC_MESSAGES/plasmoidviewer.mo share/locale/id/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/id/LC_MESSAGES/iconexplorer.mo share/locale/id/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/id/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/id/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/id/LC_MESSAGES/plasmaengineexplorer.mo share/locale/id/LC_MESSAGES/plasmoidviewer.mo share/locale/is/LC_MESSAGES/plasmaengineexplorer.mo share/locale/is/LC_MESSAGES/plasmoidviewer.mo share/locale/it/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/it/LC_MESSAGES/iconexplorer.mo share/locale/it/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/it/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/it/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/it/LC_MESSAGES/plasmaengineexplorer.mo share/locale/it/LC_MESSAGES/plasmoidviewer.mo share/locale/ja/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/ja/LC_MESSAGES/iconexplorer.mo share/locale/ja/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/ja/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/ja/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/ja/LC_MESSAGES/plasmaengineexplorer.mo share/locale/ja/LC_MESSAGES/plasmoidviewer.mo share/locale/ka/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/ka/LC_MESSAGES/iconexplorer.mo share/locale/ka/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/ka/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/ka/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/ka/LC_MESSAGES/plasmaengineexplorer.mo share/locale/ka/LC_MESSAGES/plasmoidviewer.mo share/locale/kk/LC_MESSAGES/plasmaengineexplorer.mo share/locale/kk/LC_MESSAGES/plasmoidviewer.mo share/locale/km/LC_MESSAGES/plasmaengineexplorer.mo share/locale/km/LC_MESSAGES/plasmoidviewer.mo share/locale/kn/LC_MESSAGES/plasmaengineexplorer.mo share/locale/ko/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/ko/LC_MESSAGES/iconexplorer.mo share/locale/ko/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/ko/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/ko/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/ko/LC_MESSAGES/plasmaengineexplorer.mo share/locale/ko/LC_MESSAGES/plasmoidviewer.mo share/locale/ku/LC_MESSAGES/plasmaengineexplorer.mo share/locale/ku/LC_MESSAGES/plasmoidviewer.mo share/locale/lt/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/lt/LC_MESSAGES/iconexplorer.mo share/locale/lt/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/lt/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/lt/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/lt/LC_MESSAGES/plasmaengineexplorer.mo share/locale/lt/LC_MESSAGES/plasmoidviewer.mo share/locale/lv/LC_MESSAGES/plasmaengineexplorer.mo share/locale/lv/LC_MESSAGES/plasmoidviewer.mo share/locale/mai/LC_MESSAGES/plasmaengineexplorer.mo share/locale/mai/LC_MESSAGES/plasmoidviewer.mo share/locale/mk/LC_MESSAGES/plasmaengineexplorer.mo share/locale/ml/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/ml/LC_MESSAGES/iconexplorer.mo share/locale/ml/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/ml/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/ml/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/ml/LC_MESSAGES/plasmaengineexplorer.mo share/locale/ml/LC_MESSAGES/plasmoidviewer.mo share/locale/mr/LC_MESSAGES/plasmaengineexplorer.mo share/locale/mr/LC_MESSAGES/plasmoidviewer.mo share/locale/ms/LC_MESSAGES/plasmaengineexplorer.mo share/locale/ms/LC_MESSAGES/plasmoidviewer.mo share/locale/nb/LC_MESSAGES/plasmaengineexplorer.mo share/locale/nb/LC_MESSAGES/plasmoidviewer.mo share/locale/nds/LC_MESSAGES/plasmaengineexplorer.mo share/locale/nds/LC_MESSAGES/plasmoidviewer.mo share/locale/ne/LC_MESSAGES/plasmaengineexplorer.mo share/locale/nl/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/nl/LC_MESSAGES/iconexplorer.mo share/locale/nl/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/nl/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/nl/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/nl/LC_MESSAGES/plasmaengineexplorer.mo share/locale/nl/LC_MESSAGES/plasmoidviewer.mo share/locale/nn/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/nn/LC_MESSAGES/iconexplorer.mo share/locale/nn/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/nn/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/nn/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/nn/LC_MESSAGES/plasmaengineexplorer.mo share/locale/nn/LC_MESSAGES/plasmoidviewer.mo share/locale/oc/LC_MESSAGES/plasmaengineexplorer.mo share/locale/or/LC_MESSAGES/plasmaengineexplorer.mo share/locale/or/LC_MESSAGES/plasmoidviewer.mo share/locale/pa/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/pa/LC_MESSAGES/plasmaengineexplorer.mo share/locale/pa/LC_MESSAGES/plasmoidviewer.mo share/locale/pl/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/pl/LC_MESSAGES/iconexplorer.mo share/locale/pl/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/pl/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/pl/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/pl/LC_MESSAGES/plasmaengineexplorer.mo share/locale/pl/LC_MESSAGES/plasmoidviewer.mo share/locale/pt/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/pt/LC_MESSAGES/iconexplorer.mo share/locale/pt/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/pt/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/pt/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/pt/LC_MESSAGES/plasmaengineexplorer.mo share/locale/pt/LC_MESSAGES/plasmoidviewer.mo share/locale/pt_BR/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/pt_BR/LC_MESSAGES/iconexplorer.mo share/locale/pt_BR/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/pt_BR/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/pt_BR/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/pt_BR/LC_MESSAGES/plasmaengineexplorer.mo share/locale/pt_BR/LC_MESSAGES/plasmoidviewer.mo share/locale/ro/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/ro/LC_MESSAGES/plasmaengineexplorer.mo share/locale/ro/LC_MESSAGES/plasmoidviewer.mo share/locale/ru/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/ru/LC_MESSAGES/iconexplorer.mo share/locale/ru/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/ru/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/ru/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/ru/LC_MESSAGES/plasmaengineexplorer.mo share/locale/ru/LC_MESSAGES/plasmoidviewer.mo share/locale/sa/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/sa/LC_MESSAGES/iconexplorer.mo share/locale/sa/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/sa/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/sa/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/sa/LC_MESSAGES/plasmaengineexplorer.mo share/locale/sa/LC_MESSAGES/plasmoidviewer.mo share/locale/se/LC_MESSAGES/plasmaengineexplorer.mo share/locale/si/LC_MESSAGES/plasmaengineexplorer.mo share/locale/si/LC_MESSAGES/plasmoidviewer.mo share/locale/sk/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/sk/LC_MESSAGES/iconexplorer.mo share/locale/sk/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/sk/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/sk/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/sk/LC_MESSAGES/plasmaengineexplorer.mo share/locale/sk/LC_MESSAGES/plasmoidviewer.mo share/locale/sl/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/sl/LC_MESSAGES/iconexplorer.mo share/locale/sl/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/sl/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/sl/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/sl/LC_MESSAGES/plasmaengineexplorer.mo share/locale/sl/LC_MESSAGES/plasmoidviewer.mo share/locale/sq/LC_MESSAGES/plasmaengineexplorer.mo share/locale/sq/LC_MESSAGES/plasmoidviewer.mo share/locale/sr/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/sr/LC_MESSAGES/iconexplorer.mo share/locale/sr/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/sr/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/sr/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/sr/LC_MESSAGES/plasmaengineexplorer.mo share/locale/sr/LC_MESSAGES/plasmoidviewer.mo share/locale/sr@ijekavian/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/sr@ijekavian/LC_MESSAGES/iconexplorer.mo share/locale/sr@ijekavian/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/sr@ijekavian/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/sr@ijekavian/LC_MESSAGES/plasmaengineexplorer.mo share/locale/sr@ijekavian/LC_MESSAGES/plasmoidviewer.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/iconexplorer.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasmaengineexplorer.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasmoidviewer.mo share/locale/sr@latin/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/sr@latin/LC_MESSAGES/iconexplorer.mo share/locale/sr@latin/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/sr@latin/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/sr@latin/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/sr@latin/LC_MESSAGES/plasmaengineexplorer.mo share/locale/sr@latin/LC_MESSAGES/plasmoidviewer.mo share/locale/sv/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/sv/LC_MESSAGES/iconexplorer.mo share/locale/sv/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/sv/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/sv/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/sv/LC_MESSAGES/plasmaengineexplorer.mo share/locale/sv/LC_MESSAGES/plasmoidviewer.mo share/locale/ta/LC_MESSAGES/plasmaengineexplorer.mo share/locale/ta/LC_MESSAGES/plasmoidviewer.mo share/locale/te/LC_MESSAGES/plasmaengineexplorer.mo share/locale/te/LC_MESSAGES/plasmoidviewer.mo share/locale/tg/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/tg/LC_MESSAGES/iconexplorer.mo share/locale/tg/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/tg/LC_MESSAGES/plasmaengineexplorer.mo share/locale/tg/LC_MESSAGES/plasmoidviewer.mo share/locale/th/LC_MESSAGES/plasmaengineexplorer.mo share/locale/th/LC_MESSAGES/plasmoidviewer.mo share/locale/tr/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/tr/LC_MESSAGES/iconexplorer.mo share/locale/tr/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/tr/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/tr/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/tr/LC_MESSAGES/plasmaengineexplorer.mo share/locale/tr/LC_MESSAGES/plasmoidviewer.mo share/locale/ug/LC_MESSAGES/plasmaengineexplorer.mo share/locale/ug/LC_MESSAGES/plasmoidviewer.mo share/locale/uk/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/uk/LC_MESSAGES/iconexplorer.mo share/locale/uk/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/uk/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/uk/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/uk/LC_MESSAGES/plasmaengineexplorer.mo share/locale/uk/LC_MESSAGES/plasmoidviewer.mo share/locale/wa/LC_MESSAGES/plasmaengineexplorer.mo share/locale/wa/LC_MESSAGES/plasmoidviewer.mo share/locale/zh_CN/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/zh_CN/LC_MESSAGES/iconexplorer.mo share/locale/zh_CN/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/zh_CN/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/zh_CN/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/zh_CN/LC_MESSAGES/plasmaengineexplorer.mo share/locale/zh_CN/LC_MESSAGES/plasmoidviewer.mo share/locale/zh_TW/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/zh_TW/LC_MESSAGES/iconexplorer.mo share/locale/zh_TW/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/zh_TW/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/zh_TW/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/zh_TW/LC_MESSAGES/plasmaengineexplorer.mo share/locale/zh_TW/LC_MESSAGES/plasmoidviewer.mo share/man/ca/man1/kqml.1.gz share/man/ca/man1/plasmaengineexplorer.1.gz share/man/ca/man1/plasmoidviewer.1.gz share/man/de/man1/plasmaengineexplorer.1.gz share/man/de/man1/plasmoidviewer.1.gz share/man/el/man1/plasmaengineexplorer.1.gz share/man/el/man1/plasmoidviewer.1.gz share/man/es/man1/kqml.1.gz share/man/es/man1/plasmaengineexplorer.1.gz share/man/es/man1/plasmoidviewer.1.gz share/man/et/man1/plasmaengineexplorer.1.gz share/man/et/man1/plasmoidviewer.1.gz share/man/fr/man1/plasmaengineexplorer.1.gz share/man/fr/man1/plasmoidviewer.1.gz share/man/id/man1/plasmaengineexplorer.1.gz share/man/id/man1/plasmoidviewer.1.gz share/man/it/man1/kqml.1.gz share/man/it/man1/plasmaengineexplorer.1.gz share/man/it/man1/plasmoidviewer.1.gz share/man/man1/kqml.1.gz share/man/man1/plasmaengineexplorer.1.gz share/man/man1/plasmoidviewer.1.gz share/man/nl/man1/kqml.1.gz share/man/nl/man1/plasmaengineexplorer.1.gz share/man/nl/man1/plasmoidviewer.1.gz share/man/pt/man1/plasmaengineexplorer.1.gz share/man/pt/man1/plasmoidviewer.1.gz share/man/pt_BR/man1/kqml.1.gz share/man/pt_BR/man1/plasmaengineexplorer.1.gz share/man/pt_BR/man1/plasmoidviewer.1.gz share/man/ru/man1/plasmaengineexplorer.1.gz share/man/ru/man1/plasmoidviewer.1.gz share/man/sl/man1/plasmaengineexplorer.1.gz share/man/sl/man1/plasmoidviewer.1.gz share/man/sv/man1/plasmaengineexplorer.1.gz share/man/sv/man1/plasmoidviewer.1.gz +share/man/tr/man1/kqml.1.gz share/man/tr/man1/plasmaengineexplorer.1.gz share/man/tr/man1/plasmoidviewer.1.gz share/man/uk/man1/kqml.1.gz share/man/uk/man1/plasmaengineexplorer.1.gz share/man/uk/man1/plasmoidviewer.1.gz share/metainfo/org.kde.plasma.iconexplorer.appdata.xml share/metainfo/org.kde.plasmaengineexplorer.appdata.xml share/metainfo/org.kde.plasmoidviewer.appdata.xml share/plasma/shells/org.kde.plasma.plasmoidviewershell/contents/applet/AppletError.qml share/plasma/shells/org.kde.plasma.plasmoidviewershell/contents/applet/CompactApplet.qml share/plasma/shells/org.kde.plasma.plasmoidviewershell/contents/applet/DefaultCompactRepresentation.qml share/plasma/shells/org.kde.plasma.plasmoidviewershell/contents/configuration/AboutPlugin.qml share/plasma/shells/org.kde.plasma.plasmoidviewershell/contents/configuration/AppletConfiguration.qml share/plasma/shells/org.kde.plasma.plasmoidviewershell/contents/configuration/ConfigCategoryDelegate.qml share/plasma/shells/org.kde.plasma.plasmoidviewershell/contents/configuration/ConfigurationAppletPage.qml share/plasma/shells/org.kde.plasma.plasmoidviewershell/contents/configuration/ConfigurationContainmentActions.qml share/plasma/shells/org.kde.plasma.plasmoidviewershell/contents/configuration/ConfigurationContainmentAppearance.qml share/plasma/shells/org.kde.plasma.plasmoidviewershell/contents/configuration/ConfigurationKcmPage.qml share/plasma/shells/org.kde.plasma.plasmoidviewershell/contents/configuration/ConfigurationShortcuts.qml share/plasma/shells/org.kde.plasma.plasmoidviewershell/contents/configuration/ContainmentConfiguration.qml share/plasma/shells/org.kde.plasma.plasmoidviewershell/contents/configuration/MouseEventInputButton.qml share/plasma/shells/org.kde.plasma.plasmoidviewershell/contents/configuration/PanelConfiguration.qml share/plasma/shells/org.kde.plasma.plasmoidviewershell/contents/defaults share/plasma/shells/org.kde.plasma.plasmoidviewershell/contents/views/Desktop.qml share/plasma/shells/org.kde.plasma.plasmoidviewershell/contents/views/FloatingToolBar.qml share/plasma/shells/org.kde.plasma.plasmoidviewershell/contents/views/SdkButtons.qml share/plasma/shells/org.kde.plasma.plasmoidviewershell/metadata.json share/zsh/site-functions/_kqml share/zsh/site-functions/_plasmoidviewer diff --git a/devel/plasma6-plasma5support/Makefile b/devel/plasma6-plasma5support/Makefile index 586f07eb1cce..57a90db2741c 100644 --- a/devel/plasma6-plasma5support/Makefile +++ b/devel/plasma6-plasma5support/Makefile @@ -1,19 +1,18 @@ PORTNAME= plasma5support DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= devel kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Support components for porting from KF5/Qt5 to KF6/Qt6 USES= cmake gettext gl kde:6 qt:6 tar:xz USE_GL= gl opengl USE_KDE= config coreaddons guiaddons holidays i18n idletime kio \ libksysguard libplasma notifications service solid \ unitconversion \ ecm:build USE_QT= base declarative CMAKE_ON= CMAKE_DISABLE_FIND_PACKAGE_KF6NetworkManagerQt .include diff --git a/devel/plasma6-plasma5support/distinfo b/devel/plasma6-plasma5support/distinfo index 65923880f2aa..74e615f68fea 100644 --- a/devel/plasma6-plasma5support/distinfo +++ b/devel/plasma6-plasma5support/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1768328282 -SHA256 (KDE/plasma/6.5.5/plasma5support-6.5.5.tar.xz) = 1a2f3e7ebb85e2a1c54c3aa32b712e8f285289758ba2c8236ec0dc66dd8c5cfd -SIZE (KDE/plasma/6.5.5/plasma5support-6.5.5.tar.xz) = 820524 +TIMESTAMP = 1771162205 +SHA256 (KDE/plasma/6.6.0/plasma5support-6.6.0.tar.xz) = e6e7157950c12ab33099567cf28b9d9569d2e2655715ba123864d18f6071262b +SIZE (KDE/plasma/6.6.0/plasma5support-6.6.0.tar.xz) = 835920 diff --git a/devel/plasma6-plasma5support/pkg-plist b/devel/plasma6-plasma5support/pkg-plist index 19a7a40ccdcd..29469b8ecf64 100644 --- a/devel/plasma6-plasma5support/pkg-plist +++ b/devel/plasma6-plasma5support/pkg-plist @@ -1,489 +1,552 @@ include/Plasma5Support/Plasma5Support/DataContainer include/Plasma5Support/Plasma5Support/DataEngine include/Plasma5Support/Plasma5Support/DataEngineConsumer include/Plasma5Support/Plasma5Support/Plasma5Support include/Plasma5Support/Plasma5Support/PluginLoader include/Plasma5Support/Plasma5Support/Service include/Plasma5Support/Plasma5Support/ServiceJob include/Plasma5Support/plasma5support/datacontainer.h include/Plasma5Support/plasma5support/dataengine.h include/Plasma5Support/plasma5support/dataengineconsumer.h include/Plasma5Support/plasma5support/plasma5support.h include/Plasma5Support/plasma5support/plasma5support_export.h include/Plasma5Support/plasma5support/pluginloader.h include/Plasma5Support/plasma5support/service.h include/Plasma5Support/plasma5support/servicejob.h include/Plasma5Support/plasma5support/version.h include/Plasma5Support/plasma5support_version.h include/plasma5support/weather/ion.h include/plasma5support/weather/ion_export.h lib/cmake/Plasma5Support/Plasma5SupportConfig.cmake lib/cmake/Plasma5Support/Plasma5SupportConfigVersion.cmake lib/cmake/Plasma5Support/Plasma5SupportMacros.cmake lib/cmake/Plasma5Support/Plasma5SupportTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/Plasma5Support/Plasma5SupportTargets.cmake lib/libPlasma5Support.so lib/libPlasma5Support.so.6 lib/libPlasma5Support.so.%%KDE_PLASMA_VERSION%% lib/libweather_ion.so lib/libweather_ion.so.7 lib/libweather_ion.so.7.0.0 %%QT_PLUGINDIR%%/plasma5support/dataengine/plasma_engine_activities.so %%QT_PLUGINDIR%%/plasma5support/dataengine/plasma_engine_apps.so %%QT_PLUGINDIR%%/plasma5support/dataengine/plasma_engine_bbcukmet.so %%QT_PLUGINDIR%%/plasma5support/dataengine/plasma_engine_devicenotifications.so %%QT_PLUGINDIR%%/plasma5support/dataengine/plasma_engine_dwd.so %%QT_PLUGINDIR%%/plasma5support/dataengine/plasma_engine_envcan.so +%%QT_PLUGINDIR%%/plasma5support/dataengine/plasma_engine_executable.so %%QT_PLUGINDIR%%/plasma5support/dataengine/plasma_engine_favicons.so %%QT_PLUGINDIR%%/plasma5support/dataengine/plasma_engine_filebrowser.so %%QT_PLUGINDIR%%/plasma5support/dataengine/plasma_engine_hotplug.so %%QT_PLUGINDIR%%/plasma5support/dataengine/plasma_engine_keystate.so %%QT_PLUGINDIR%%/plasma5support/dataengine/plasma_engine_mouse.so %%QT_PLUGINDIR%%/plasma5support/dataengine/plasma_engine_noaa.so %%QT_PLUGINDIR%%/plasma5support/dataengine/plasma_engine_packagekit.so %%QT_PLUGINDIR%%/plasma5support/dataengine/plasma_engine_places.so %%QT_PLUGINDIR%%/plasma5support/dataengine/plasma_engine_powermanagement.so %%QT_PLUGINDIR%%/plasma5support/dataengine/plasma_engine_soliddevice.so +%%QT_PLUGINDIR%%/plasma5support/dataengine/plasma_engine_time.so %%QT_PLUGINDIR%%/plasma5support/dataengine/plasma_engine_weather.so %%QT_PLUGINDIR%%/plasma5support/dataengine/plasma_engine_wettercom.so %%QT_QMLDIR%%/org/kde/plasma/plasma5support/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/plasma/plasma5support/libplasma5supportplugin.so %%QT_QMLDIR%%/org/kde/plasma/plasma5support/plasma5supportplugin.qmltypes %%QT_QMLDIR%%/org/kde/plasma/plasma5support/qmldir share/locale/ar/LC_MESSAGES/libplasma5support.mo share/locale/ar/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/ar/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/ar/LC_MESSAGES/plasma_engine_keystate.mo share/locale/ar/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/ar/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/ar/LC_MESSAGES/plasma_engine_time.mo share/locale/ar/LC_MESSAGES/plasma_engine_weather.mo share/locale/ast/LC_MESSAGES/libplasma5support.mo share/locale/ast/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/ast/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/ast/LC_MESSAGES/plasma_engine_keystate.mo share/locale/ast/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/ast/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/ast/LC_MESSAGES/plasma_engine_time.mo share/locale/ast/LC_MESSAGES/plasma_engine_weather.mo share/locale/az/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/az/LC_MESSAGES/plasma_engine_keystate.mo share/locale/az/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/az/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/az/LC_MESSAGES/plasma_engine_time.mo share/locale/az/LC_MESSAGES/plasma_engine_weather.mo share/locale/be/LC_MESSAGES/libplasma5support.mo share/locale/be/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/be/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/be/LC_MESSAGES/plasma_engine_keystate.mo share/locale/be/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/be/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/be/LC_MESSAGES/plasma_engine_time.mo share/locale/be/LC_MESSAGES/plasma_engine_weather.mo share/locale/bg/LC_MESSAGES/libplasma5support.mo share/locale/bg/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/bg/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/bg/LC_MESSAGES/plasma_engine_keystate.mo share/locale/bg/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/bg/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/bg/LC_MESSAGES/plasma_engine_time.mo share/locale/bg/LC_MESSAGES/plasma_engine_weather.mo share/locale/bn/LC_MESSAGES/plasma_engine_weather.mo share/locale/bn_IN/LC_MESSAGES/plasma_engine_weather.mo share/locale/bs/LC_MESSAGES/plasma_engine_keystate.mo share/locale/bs/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/bs/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/bs/LC_MESSAGES/plasma_engine_time.mo share/locale/bs/LC_MESSAGES/plasma_engine_weather.mo share/locale/ca/LC_MESSAGES/libplasma5support.mo share/locale/ca/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/ca/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/ca/LC_MESSAGES/plasma_engine_keystate.mo share/locale/ca/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/ca/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/ca/LC_MESSAGES/plasma_engine_time.mo share/locale/ca/LC_MESSAGES/plasma_engine_weather.mo share/locale/ca@valencia/LC_MESSAGES/libplasma5support.mo share/locale/ca@valencia/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/ca@valencia/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/ca@valencia/LC_MESSAGES/plasma_engine_keystate.mo share/locale/ca@valencia/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/ca@valencia/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_engine_time.mo share/locale/ca@valencia/LC_MESSAGES/plasma_engine_weather.mo share/locale/cs/LC_MESSAGES/libplasma5support.mo share/locale/cs/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/cs/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/cs/LC_MESSAGES/plasma_engine_keystate.mo share/locale/cs/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/cs/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/cs/LC_MESSAGES/plasma_engine_time.mo share/locale/cs/LC_MESSAGES/plasma_engine_weather.mo share/locale/csb/LC_MESSAGES/plasma_engine_weather.mo share/locale/da/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/da/LC_MESSAGES/plasma_engine_keystate.mo share/locale/da/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/da/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/da/LC_MESSAGES/plasma_engine_time.mo share/locale/da/LC_MESSAGES/plasma_engine_weather.mo share/locale/de/LC_MESSAGES/libplasma5support.mo share/locale/de/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/de/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/de/LC_MESSAGES/plasma_engine_keystate.mo share/locale/de/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/de/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/de/LC_MESSAGES/plasma_engine_time.mo share/locale/de/LC_MESSAGES/plasma_engine_weather.mo share/locale/el/LC_MESSAGES/plasma_engine_keystate.mo share/locale/el/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/el/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/el/LC_MESSAGES/plasma_engine_time.mo share/locale/el/LC_MESSAGES/plasma_engine_weather.mo share/locale/en_GB/LC_MESSAGES/libplasma5support.mo share/locale/en_GB/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/en_GB/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/en_GB/LC_MESSAGES/plasma_engine_keystate.mo share/locale/en_GB/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/en_GB/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/en_GB/LC_MESSAGES/plasma_engine_time.mo share/locale/en_GB/LC_MESSAGES/plasma_engine_weather.mo share/locale/eo/LC_MESSAGES/libplasma5support.mo share/locale/eo/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/eo/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/eo/LC_MESSAGES/plasma_engine_keystate.mo share/locale/eo/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/eo/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/eo/LC_MESSAGES/plasma_engine_time.mo share/locale/eo/LC_MESSAGES/plasma_engine_weather.mo share/locale/es/LC_MESSAGES/libplasma5support.mo share/locale/es/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/es/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/es/LC_MESSAGES/plasma_engine_keystate.mo share/locale/es/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/es/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/es/LC_MESSAGES/plasma_engine_time.mo share/locale/es/LC_MESSAGES/plasma_engine_weather.mo share/locale/et/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/et/LC_MESSAGES/plasma_engine_keystate.mo share/locale/et/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/et/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/et/LC_MESSAGES/plasma_engine_time.mo share/locale/et/LC_MESSAGES/plasma_engine_weather.mo share/locale/eu/LC_MESSAGES/libplasma5support.mo share/locale/eu/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/eu/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/eu/LC_MESSAGES/plasma_engine_keystate.mo share/locale/eu/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/eu/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/eu/LC_MESSAGES/plasma_engine_time.mo share/locale/eu/LC_MESSAGES/plasma_engine_weather.mo share/locale/fa/LC_MESSAGES/libplasma5support.mo share/locale/fi/LC_MESSAGES/libplasma5support.mo share/locale/fi/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/fi/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/fi/LC_MESSAGES/plasma_engine_keystate.mo share/locale/fi/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/fi/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/fi/LC_MESSAGES/plasma_engine_time.mo share/locale/fi/LC_MESSAGES/plasma_engine_weather.mo share/locale/fr/LC_MESSAGES/libplasma5support.mo share/locale/fr/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/fr/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/fr/LC_MESSAGES/plasma_engine_keystate.mo share/locale/fr/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/fr/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/fr/LC_MESSAGES/plasma_engine_time.mo share/locale/fr/LC_MESSAGES/plasma_engine_weather.mo share/locale/fy/LC_MESSAGES/plasma_engine_keystate.mo share/locale/fy/LC_MESSAGES/plasma_engine_weather.mo share/locale/ga/LC_MESSAGES/libplasma5support.mo share/locale/ga/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/ga/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/ga/LC_MESSAGES/plasma_engine_keystate.mo share/locale/ga/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/ga/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/ga/LC_MESSAGES/plasma_engine_time.mo share/locale/ga/LC_MESSAGES/plasma_engine_weather.mo share/locale/gl/LC_MESSAGES/libplasma5support.mo share/locale/gl/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/gl/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/gl/LC_MESSAGES/plasma_engine_keystate.mo share/locale/gl/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/gl/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/gl/LC_MESSAGES/plasma_engine_time.mo share/locale/gl/LC_MESSAGES/plasma_engine_weather.mo share/locale/gu/LC_MESSAGES/plasma_engine_keystate.mo share/locale/gu/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/gu/LC_MESSAGES/plasma_engine_weather.mo share/locale/he/LC_MESSAGES/libplasma5support.mo share/locale/he/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/he/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/he/LC_MESSAGES/plasma_engine_keystate.mo share/locale/he/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/he/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/he/LC_MESSAGES/plasma_engine_time.mo share/locale/he/LC_MESSAGES/plasma_engine_weather.mo share/locale/hi/LC_MESSAGES/libplasma5support.mo share/locale/hi/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/hi/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/hi/LC_MESSAGES/plasma_engine_keystate.mo share/locale/hi/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/hi/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/hi/LC_MESSAGES/plasma_engine_time.mo share/locale/hi/LC_MESSAGES/plasma_engine_weather.mo share/locale/hr/LC_MESSAGES/plasma_engine_keystate.mo share/locale/hr/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/hr/LC_MESSAGES/plasma_engine_weather.mo share/locale/hu/LC_MESSAGES/libplasma5support.mo share/locale/hu/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/hu/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/hu/LC_MESSAGES/plasma_engine_keystate.mo share/locale/hu/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/hu/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/hu/LC_MESSAGES/plasma_engine_time.mo share/locale/hu/LC_MESSAGES/plasma_engine_weather.mo share/locale/ia/LC_MESSAGES/libplasma5support.mo share/locale/ia/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/ia/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/ia/LC_MESSAGES/plasma_engine_keystate.mo share/locale/ia/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/ia/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/ia/LC_MESSAGES/plasma_engine_time.mo share/locale/ia/LC_MESSAGES/plasma_engine_weather.mo share/locale/id/LC_MESSAGES/libplasma5support.mo share/locale/id/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/id/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/id/LC_MESSAGES/plasma_engine_keystate.mo share/locale/id/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/id/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/id/LC_MESSAGES/plasma_engine_time.mo share/locale/id/LC_MESSAGES/plasma_engine_weather.mo share/locale/ie/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/is/LC_MESSAGES/libplasma5support.mo share/locale/is/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/is/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/is/LC_MESSAGES/plasma_engine_keystate.mo share/locale/is/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/is/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/is/LC_MESSAGES/plasma_engine_time.mo share/locale/is/LC_MESSAGES/plasma_engine_weather.mo share/locale/it/LC_MESSAGES/libplasma5support.mo share/locale/it/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/it/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/it/LC_MESSAGES/plasma_engine_keystate.mo share/locale/it/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/it/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/it/LC_MESSAGES/plasma_engine_time.mo share/locale/it/LC_MESSAGES/plasma_engine_weather.mo share/locale/ja/LC_MESSAGES/libplasma5support.mo share/locale/ja/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/ja/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/ja/LC_MESSAGES/plasma_engine_keystate.mo share/locale/ja/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/ja/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/ja/LC_MESSAGES/plasma_engine_time.mo share/locale/ja/LC_MESSAGES/plasma_engine_weather.mo share/locale/ka/LC_MESSAGES/libplasma5support.mo share/locale/ka/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/ka/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/ka/LC_MESSAGES/plasma_engine_keystate.mo share/locale/ka/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/ka/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/ka/LC_MESSAGES/plasma_engine_time.mo share/locale/ka/LC_MESSAGES/plasma_engine_weather.mo share/locale/kk/LC_MESSAGES/plasma_engine_keystate.mo share/locale/kk/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/kk/LC_MESSAGES/plasma_engine_weather.mo share/locale/km/LC_MESSAGES/plasma_engine_keystate.mo share/locale/km/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/km/LC_MESSAGES/plasma_engine_weather.mo share/locale/kn/LC_MESSAGES/plasma_engine_keystate.mo share/locale/kn/LC_MESSAGES/plasma_engine_weather.mo share/locale/ko/LC_MESSAGES/libplasma5support.mo share/locale/ko/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/ko/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/ko/LC_MESSAGES/plasma_engine_keystate.mo share/locale/ko/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/ko/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/ko/LC_MESSAGES/plasma_engine_time.mo share/locale/ko/LC_MESSAGES/plasma_engine_weather.mo share/locale/lt/LC_MESSAGES/libplasma5support.mo share/locale/lt/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/lt/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/lt/LC_MESSAGES/plasma_engine_keystate.mo share/locale/lt/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/lt/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/lt/LC_MESSAGES/plasma_engine_time.mo share/locale/lt/LC_MESSAGES/plasma_engine_weather.mo share/locale/lv/LC_MESSAGES/libplasma5support.mo share/locale/lv/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/lv/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/lv/LC_MESSAGES/plasma_engine_keystate.mo share/locale/lv/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/lv/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/lv/LC_MESSAGES/plasma_engine_time.mo share/locale/lv/LC_MESSAGES/plasma_engine_weather.mo share/locale/mai/LC_MESSAGES/plasma_engine_keystate.mo share/locale/mai/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/mai/LC_MESSAGES/plasma_engine_weather.mo share/locale/ml/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/ml/LC_MESSAGES/plasma_engine_keystate.mo share/locale/ml/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/ml/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/ml/LC_MESSAGES/plasma_engine_time.mo share/locale/ml/LC_MESSAGES/plasma_engine_weather.mo share/locale/mr/LC_MESSAGES/plasma_engine_keystate.mo share/locale/mr/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/mr/LC_MESSAGES/plasma_engine_weather.mo share/locale/ms/LC_MESSAGES/plasma_engine_keystate.mo share/locale/ms/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/ms/LC_MESSAGES/plasma_engine_weather.mo share/locale/nb/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/nb/LC_MESSAGES/plasma_engine_keystate.mo share/locale/nb/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/nb/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/nb/LC_MESSAGES/plasma_engine_time.mo share/locale/nb/LC_MESSAGES/plasma_engine_weather.mo share/locale/nds/LC_MESSAGES/plasma_engine_keystate.mo share/locale/nds/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/nds/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/nds/LC_MESSAGES/plasma_engine_time.mo share/locale/nds/LC_MESSAGES/plasma_engine_weather.mo share/locale/nl/LC_MESSAGES/libplasma5support.mo share/locale/nl/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/nl/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/nl/LC_MESSAGES/plasma_engine_keystate.mo share/locale/nl/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/nl/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/nl/LC_MESSAGES/plasma_engine_time.mo share/locale/nl/LC_MESSAGES/plasma_engine_weather.mo share/locale/nn/LC_MESSAGES/libplasma5support.mo share/locale/nn/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/nn/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/nn/LC_MESSAGES/plasma_engine_keystate.mo share/locale/nn/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/nn/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/nn/LC_MESSAGES/plasma_engine_time.mo share/locale/nn/LC_MESSAGES/plasma_engine_weather.mo share/locale/pa/LC_MESSAGES/libplasma5support.mo share/locale/pa/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/pa/LC_MESSAGES/plasma_engine_keystate.mo share/locale/pa/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/pa/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/pa/LC_MESSAGES/plasma_engine_time.mo share/locale/pa/LC_MESSAGES/plasma_engine_weather.mo share/locale/pl/LC_MESSAGES/libplasma5support.mo share/locale/pl/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/pl/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/pl/LC_MESSAGES/plasma_engine_keystate.mo share/locale/pl/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/pl/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/pl/LC_MESSAGES/plasma_engine_time.mo share/locale/pl/LC_MESSAGES/plasma_engine_weather.mo share/locale/pt/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/pt/LC_MESSAGES/plasma_engine_keystate.mo share/locale/pt/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/pt/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/pt/LC_MESSAGES/plasma_engine_time.mo share/locale/pt/LC_MESSAGES/plasma_engine_weather.mo share/locale/pt_BR/LC_MESSAGES/libplasma5support.mo share/locale/pt_BR/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/pt_BR/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/pt_BR/LC_MESSAGES/plasma_engine_keystate.mo share/locale/pt_BR/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/pt_BR/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/pt_BR/LC_MESSAGES/plasma_engine_time.mo share/locale/pt_BR/LC_MESSAGES/plasma_engine_weather.mo share/locale/ro/LC_MESSAGES/libplasma5support.mo share/locale/ro/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/ro/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/ro/LC_MESSAGES/plasma_engine_keystate.mo share/locale/ro/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/ro/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/ro/LC_MESSAGES/plasma_engine_time.mo share/locale/ro/LC_MESSAGES/plasma_engine_weather.mo share/locale/ru/LC_MESSAGES/libplasma5support.mo share/locale/ru/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/ru/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/ru/LC_MESSAGES/plasma_engine_keystate.mo share/locale/ru/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/ru/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/ru/LC_MESSAGES/plasma_engine_time.mo share/locale/ru/LC_MESSAGES/plasma_engine_weather.mo share/locale/sa/LC_MESSAGES/libplasma5support.mo share/locale/sa/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/sa/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/sa/LC_MESSAGES/plasma_engine_keystate.mo share/locale/sa/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/sa/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/sa/LC_MESSAGES/plasma_engine_time.mo share/locale/sa/LC_MESSAGES/plasma_engine_weather.mo share/locale/se/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/si/LC_MESSAGES/plasma_engine_keystate.mo share/locale/si/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/si/LC_MESSAGES/plasma_engine_weather.mo share/locale/sk/LC_MESSAGES/libplasma5support.mo share/locale/sk/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/sk/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/sk/LC_MESSAGES/plasma_engine_keystate.mo share/locale/sk/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/sk/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/sk/LC_MESSAGES/plasma_engine_time.mo share/locale/sk/LC_MESSAGES/plasma_engine_weather.mo share/locale/sl/LC_MESSAGES/libplasma5support.mo share/locale/sl/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/sl/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/sl/LC_MESSAGES/plasma_engine_keystate.mo share/locale/sl/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/sl/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/sl/LC_MESSAGES/plasma_engine_time.mo share/locale/sl/LC_MESSAGES/plasma_engine_weather.mo share/locale/sq/LC_MESSAGES/plasma_engine_keystate.mo share/locale/sq/LC_MESSAGES/plasma_engine_weather.mo share/locale/sr/LC_MESSAGES/plasma_engine_keystate.mo share/locale/sr/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/sr/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/sr/LC_MESSAGES/plasma_engine_time.mo share/locale/sr/LC_MESSAGES/plasma_engine_weather.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_engine_keystate.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_engine_time.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_engine_weather.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_engine_keystate.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_engine_time.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_engine_weather.mo share/locale/sr@latin/LC_MESSAGES/plasma_engine_keystate.mo share/locale/sr@latin/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/sr@latin/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/sr@latin/LC_MESSAGES/plasma_engine_time.mo share/locale/sr@latin/LC_MESSAGES/plasma_engine_weather.mo share/locale/sv/LC_MESSAGES/libplasma5support.mo share/locale/sv/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/sv/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/sv/LC_MESSAGES/plasma_engine_keystate.mo share/locale/sv/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/sv/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/sv/LC_MESSAGES/plasma_engine_time.mo share/locale/sv/LC_MESSAGES/plasma_engine_weather.mo share/locale/ta/LC_MESSAGES/libplasma5support.mo share/locale/ta/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/ta/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/ta/LC_MESSAGES/plasma_engine_keystate.mo share/locale/ta/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/ta/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/ta/LC_MESSAGES/plasma_engine_time.mo share/locale/ta/LC_MESSAGES/plasma_engine_weather.mo share/locale/tg/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/tg/LC_MESSAGES/plasma_engine_powermanagement.mo +share/locale/tg/LC_MESSAGES/plasma_engine_time.mo share/locale/tg/LC_MESSAGES/plasma_engine_weather.mo share/locale/th/LC_MESSAGES/plasma_engine_keystate.mo share/locale/th/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/th/LC_MESSAGES/plasma_engine_weather.mo share/locale/tok/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/tok/LC_MESSAGES/plasma_engine_keystate.mo share/locale/tok/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/tok/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/tok/LC_MESSAGES/plasma_engine_time.mo share/locale/tok/LC_MESSAGES/plasma_engine_weather.mo share/locale/tr/LC_MESSAGES/libplasma5support.mo share/locale/tr/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/tr/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/tr/LC_MESSAGES/plasma_engine_keystate.mo share/locale/tr/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/tr/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/tr/LC_MESSAGES/plasma_engine_time.mo share/locale/tr/LC_MESSAGES/plasma_engine_weather.mo share/locale/ug/LC_MESSAGES/plasma_engine_keystate.mo share/locale/ug/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/ug/LC_MESSAGES/plasma_engine_weather.mo share/locale/uk/LC_MESSAGES/libplasma5support.mo share/locale/uk/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/uk/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/uk/LC_MESSAGES/plasma_engine_keystate.mo share/locale/uk/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/uk/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/uk/LC_MESSAGES/plasma_engine_time.mo share/locale/uk/LC_MESSAGES/plasma_engine_weather.mo share/locale/vi/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/vi/LC_MESSAGES/plasma_engine_keystate.mo share/locale/vi/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/vi/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/vi/LC_MESSAGES/plasma_engine_time.mo share/locale/vi/LC_MESSAGES/plasma_engine_weather.mo share/locale/wa/LC_MESSAGES/plasma_engine_keystate.mo share/locale/wa/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/wa/LC_MESSAGES/plasma_engine_weather.mo share/locale/zh_CN/LC_MESSAGES/libplasma5support.mo share/locale/zh_CN/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/zh_CN/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/zh_CN/LC_MESSAGES/plasma_engine_keystate.mo share/locale/zh_CN/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/zh_CN/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/zh_CN/LC_MESSAGES/plasma_engine_time.mo share/locale/zh_CN/LC_MESSAGES/plasma_engine_weather.mo share/locale/zh_TW/LC_MESSAGES/libplasma5support.mo share/locale/zh_TW/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/zh_TW/LC_MESSAGES/plasma_engine_hotplug.mo share/locale/zh_TW/LC_MESSAGES/plasma_engine_keystate.mo share/locale/zh_TW/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/zh_TW/LC_MESSAGES/plasma_engine_soliddevice.mo +share/locale/zh_TW/LC_MESSAGES/plasma_engine_time.mo share/locale/zh_TW/LC_MESSAGES/plasma_engine_weather.mo share/plasma/weather_legacy/noaa_station_list.xml %%DATADIR%%/services/activities.operations %%DATADIR%%/services/apps.operations %%DATADIR%%/services/dataengineservice.operations %%DATADIR%%/services/hotplug.operations %%DATADIR%%/services/modifierkeystate.operations %%DATADIR%%/services/org.kde.places.operations %%DATADIR%%/services/packagekit.operations %%DATADIR%%/services/plasmoidservice.operations %%DATADIR%%/services/powermanagementservice.operations %%DATADIR%%/services/soliddevice.operations +%%DATADIR%%/services/statusnotifieritem.operations %%DATADIR%%/services/storage.operations share/qlogging-categories6/plasma5support.categories share/qlogging-categories6/plasma5support.renamecategories diff --git a/graphics/plasma6-spectacle/Makefile b/graphics/plasma6-spectacle/Makefile index b9d83d350aef..3189cdeb9c9d 100644 --- a/graphics/plasma6-spectacle/Makefile +++ b/graphics/plasma6-spectacle/Makefile @@ -1,29 +1,29 @@ PORTNAME= spectacle DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= graphics kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= KDE Plasma screen capture program LIB_DEPENDS= libxcb-cursor.so:x11/xcb-util-cursor \ libxcb-image.so:x11/xcb-util-image \ libxcb-util.so:x11/xcb-util \ libopencv_core.so:graphics/opencv \ - libwayland-client.so:graphics/wayland + libwayland-client.so:graphics/wayland \ + libKQuickImageEditor.so:graphics/kquickimageeditor USES= cmake compiler:c++20-lang gettext kde:6 localbase pkgconfig \ qt:6 tar:xz xorg USE_KDE= config coreaddons crash dbusaddons globalaccel guiaddons i18n \ kio kirigami2 layer-shell-qt notifications prison purpose \ statusnotifieritem widgetsaddons windowsystem xmlgui \ doctools:build ecm:build plasma-wayland-protocols:build USE_QT= base declarative multimedia wayland USE_XORG= x11 xcb xfixes OPTIONS_DEFINE= WAYLAND OPTIONS_DEFAULT= WAYLAND WAYLAND_USE= KDE=kpipewire WAYLAND_EXTRA_PATCHES_OFF= ${FILESDIR}/extra-patch-pipewire-off .include diff --git a/graphics/plasma6-spectacle/distinfo b/graphics/plasma6-spectacle/distinfo index 5232a92e5690..fc8a7b9daf93 100644 --- a/graphics/plasma6-spectacle/distinfo +++ b/graphics/plasma6-spectacle/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1768328285 -SHA256 (KDE/plasma/6.5.5/spectacle-6.5.5.tar.xz) = 1d942ab8c81150336676f7bb357dfedb9afa903be71c9095e370d94c817592ba -SIZE (KDE/plasma/6.5.5/spectacle-6.5.5.tar.xz) = 1607700 +TIMESTAMP = 1771162206 +SHA256 (KDE/plasma/6.6.0/spectacle-6.6.0.tar.xz) = aa14a7fdaa0c44311f0c41f3502af39374c65057c515b779682d5dbd94fcbfe3 +SIZE (KDE/plasma/6.6.0/spectacle-6.6.0.tar.xz) = 1604724 diff --git a/print/plasma6-print-manager/Makefile b/print/plasma6-print-manager/Makefile index 2690768b99d5..22dedc80c58b 100644 --- a/print/plasma6-print-manager/Makefile +++ b/print/plasma6-print-manager/Makefile @@ -1,25 +1,24 @@ PORTNAME= print-manager DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= print kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Printer manager for KDE WWW= https://www.kde.org LIB_DEPENDS= libcups.so:print/cups USES= cmake compiler:c++11-lang gettext kde:6 pkgconfig qt:6 tar:xz \ xorg USE_KDE= config configwidgets coreaddons dbusaddons i18n \ kio kirigami2 kcmutils libplasma \ notifications widgetsaddons windowsystem \ ecm:build USE_QT= base declarative USE_XORG= x11 post-patch: ${REINPLACE_CMD} '/CUPS_DATADIR/s|/usr/share/cups|${LOCALBASE}/share/cups|' \ ${PATCH_WRKSRC}/src/libkcups/KCupsRequest.cpp .include diff --git a/print/plasma6-print-manager/distinfo b/print/plasma6-print-manager/distinfo index ef4b4bd76f16..fadc8158614e 100644 --- a/print/plasma6-print-manager/distinfo +++ b/print/plasma6-print-manager/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1768328288 -SHA256 (KDE/plasma/6.5.5/print-manager-6.5.5.tar.xz) = 3a0486d53e7a317acc47c31a9cd3cc2a9bdb03196ee5f6a6befaba8d61f8ba25 -SIZE (KDE/plasma/6.5.5/print-manager-6.5.5.tar.xz) = 381168 +TIMESTAMP = 1771162208 +SHA256 (KDE/plasma/6.6.0/print-manager-6.6.0.tar.xz) = 9b45069d8e61bfa5d2cf958fd562d18fe0dccb677008d99aceeb5599b808b5ed +SIZE (KDE/plasma/6.6.0/print-manager-6.6.0.tar.xz) = 384596 diff --git a/print/plasma6-print-manager/pkg-plist b/print/plasma6-print-manager/pkg-plist index f4d0b02e4b3a..e451f777dbbf 100644 --- a/print/plasma6-print-manager/pkg-plist +++ b/print/plasma6-print-manager/pkg-plist @@ -1,184 +1,185 @@ bin/configure-printer bin/kde-print-queue lib/libkcups.so %%QT_PLUGINDIR%%/kf6/kded/printmanager.so %%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.printmanager.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_printer_manager.so %%QT_QMLDIR%%/org/kde/plasma/printmanager/kcups.qmltypes %%QT_QMLDIR%%/org/kde/plasma/printmanager/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/plasma/printmanager/libkcupsplugin.so %%QT_QMLDIR%%/org/kde/plasma/printmanager/qmldir share/applications/kcm_printer_manager.desktop share/applications/org.kde.ConfigurePrinter.desktop share/applications/org.kde.PrintQueue.desktop share/knotifications6/printmanager.notifyrc share/locale/ar/LC_MESSAGES/kcm_printer_manager.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/ar/LC_MESSAGES/print-manager.mo share/locale/ast/LC_MESSAGES/kcm_printer_manager.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/ast/LC_MESSAGES/print-manager.mo +share/locale/az/LC_MESSAGES/kcm_printer_manager.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/az/LC_MESSAGES/print-manager.mo share/locale/be/LC_MESSAGES/kcm_printer_manager.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/be/LC_MESSAGES/print-manager.mo share/locale/bg/LC_MESSAGES/kcm_printer_manager.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/bg/LC_MESSAGES/print-manager.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/bs/LC_MESSAGES/print-manager.mo share/locale/ca/LC_MESSAGES/kcm_printer_manager.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/ca/LC_MESSAGES/print-manager.mo share/locale/ca@valencia/LC_MESSAGES/kcm_printer_manager.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/ca@valencia/LC_MESSAGES/print-manager.mo share/locale/cs/LC_MESSAGES/kcm_printer_manager.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/cs/LC_MESSAGES/print-manager.mo share/locale/da/LC_MESSAGES/kcm_printer_manager.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/da/LC_MESSAGES/print-manager.mo share/locale/de/LC_MESSAGES/kcm_printer_manager.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/de/LC_MESSAGES/print-manager.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/el/LC_MESSAGES/print-manager.mo share/locale/en_GB/LC_MESSAGES/kcm_printer_manager.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/en_GB/LC_MESSAGES/print-manager.mo share/locale/eo/LC_MESSAGES/kcm_printer_manager.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/eo/LC_MESSAGES/print-manager.mo share/locale/es/LC_MESSAGES/kcm_printer_manager.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/es/LC_MESSAGES/print-manager.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/et/LC_MESSAGES/print-manager.mo share/locale/eu/LC_MESSAGES/kcm_printer_manager.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/eu/LC_MESSAGES/print-manager.mo share/locale/fi/LC_MESSAGES/kcm_printer_manager.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/fi/LC_MESSAGES/print-manager.mo share/locale/fr/LC_MESSAGES/kcm_printer_manager.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/fr/LC_MESSAGES/print-manager.mo share/locale/ga/LC_MESSAGES/kcm_printer_manager.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/ga/LC_MESSAGES/print-manager.mo share/locale/gl/LC_MESSAGES/kcm_printer_manager.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/gl/LC_MESSAGES/print-manager.mo share/locale/he/LC_MESSAGES/kcm_printer_manager.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/he/LC_MESSAGES/print-manager.mo share/locale/hi/LC_MESSAGES/kcm_printer_manager.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/hi/LC_MESSAGES/print-manager.mo share/locale/hsb/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/hu/LC_MESSAGES/kcm_printer_manager.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/hu/LC_MESSAGES/print-manager.mo share/locale/ia/LC_MESSAGES/kcm_printer_manager.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/ia/LC_MESSAGES/print-manager.mo share/locale/id/LC_MESSAGES/kcm_printer_manager.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/id/LC_MESSAGES/print-manager.mo share/locale/is/LC_MESSAGES/kcm_printer_manager.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/is/LC_MESSAGES/print-manager.mo share/locale/it/LC_MESSAGES/kcm_printer_manager.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/it/LC_MESSAGES/print-manager.mo share/locale/ja/LC_MESSAGES/kcm_printer_manager.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/ja/LC_MESSAGES/print-manager.mo share/locale/ka/LC_MESSAGES/kcm_printer_manager.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/ka/LC_MESSAGES/print-manager.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/kk/LC_MESSAGES/print-manager.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/km/LC_MESSAGES/print-manager.mo share/locale/ko/LC_MESSAGES/kcm_printer_manager.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/ko/LC_MESSAGES/print-manager.mo share/locale/lt/LC_MESSAGES/kcm_printer_manager.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/lt/LC_MESSAGES/print-manager.mo share/locale/lv/LC_MESSAGES/kcm_printer_manager.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/lv/LC_MESSAGES/print-manager.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/mr/LC_MESSAGES/print-manager.mo share/locale/nb/LC_MESSAGES/kcm_printer_manager.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/nb/LC_MESSAGES/print-manager.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/nds/LC_MESSAGES/print-manager.mo share/locale/nl/LC_MESSAGES/kcm_printer_manager.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/nl/LC_MESSAGES/print-manager.mo share/locale/nn/LC_MESSAGES/kcm_printer_manager.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/nn/LC_MESSAGES/print-manager.mo share/locale/pa/LC_MESSAGES/kcm_printer_manager.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/pa/LC_MESSAGES/print-manager.mo share/locale/pl/LC_MESSAGES/kcm_printer_manager.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/pl/LC_MESSAGES/print-manager.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/pt/LC_MESSAGES/print-manager.mo share/locale/pt_BR/LC_MESSAGES/kcm_printer_manager.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/pt_BR/LC_MESSAGES/print-manager.mo share/locale/ro/LC_MESSAGES/kcm_printer_manager.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/ro/LC_MESSAGES/print-manager.mo share/locale/ru/LC_MESSAGES/kcm_printer_manager.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/ru/LC_MESSAGES/print-manager.mo share/locale/sa/LC_MESSAGES/kcm_printer_manager.mo share/locale/sa/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/sa/LC_MESSAGES/print-manager.mo share/locale/sk/LC_MESSAGES/kcm_printer_manager.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/sk/LC_MESSAGES/print-manager.mo share/locale/sl/LC_MESSAGES/kcm_printer_manager.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/sl/LC_MESSAGES/print-manager.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/sr/LC_MESSAGES/print-manager.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/sr@ijekavian/LC_MESSAGES/print-manager.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/print-manager.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/sr@latin/LC_MESSAGES/print-manager.mo share/locale/sv/LC_MESSAGES/kcm_printer_manager.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/sv/LC_MESSAGES/print-manager.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/ta/LC_MESSAGES/print-manager.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/tg/LC_MESSAGES/print-manager.mo share/locale/tr/LC_MESSAGES/kcm_printer_manager.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/tr/LC_MESSAGES/print-manager.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/ug/LC_MESSAGES/print-manager.mo share/locale/uk/LC_MESSAGES/kcm_printer_manager.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/uk/LC_MESSAGES/print-manager.mo share/locale/zh_CN/LC_MESSAGES/kcm_printer_manager.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/zh_CN/LC_MESSAGES/print-manager.mo share/locale/zh_TW/LC_MESSAGES/kcm_printer_manager.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/zh_TW/LC_MESSAGES/print-manager.mo share/metainfo/org.kde.print-manager.metainfo.xml share/qlogging-categories6/pmlogs.categories diff --git a/security/plasma6-kscreenlocker/Makefile b/security/plasma6-kscreenlocker/Makefile index 874693eba571..3e281e6a6e0a 100644 --- a/security/plasma6-kscreenlocker/Makefile +++ b/security/plasma6-kscreenlocker/Makefile @@ -1,33 +1,32 @@ PORTNAME= kscreenlocker DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= security kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Library and components for secure lock screen architecture BUILD_DEPENDS= ck-list-sessions:sysutils/consolekit2 LIB_DEPENDS= libwayland-client.so:graphics/wayland \ libxcb-keysyms.so:x11/xcb-util-keysyms \ libxkbcommon.so:x11/libxkbcommon RUN_DEPENDS= ck-list-sessions:sysutils/consolekit2 \ dbus-send:devel/dbus \ unix-selfauth-helper>=1.0:security/unix-selfauth-helper USES= cmake gettext gl kde:6 pkgconfig qt:6 tar:xz xorg USE_KDE= colorscheme config configwidgets coreaddons crash globalaccel \ i18n idletime kcmutils kio layer-shell-qt libkscreen libplasma \ notifications package solid svg widgetsaddons windowsystem \ xmlgui \ ecm:build USE_GL= gl opengl USE_QT= base declarative USE_XORG= x11 xcb xext xi SUB_FILES= kde.pam post-install: ${MKDIR} ${STAGEDIR}${PREFIX}/etc/pam.d ${INSTALL_DATA} ${WRKDIR}/kde.pam ${STAGEDIR}${PREFIX}/etc/pam.d/kde .include diff --git a/security/plasma6-kscreenlocker/distinfo b/security/plasma6-kscreenlocker/distinfo index a09c8dca9a18..f0358b82e7d2 100644 --- a/security/plasma6-kscreenlocker/distinfo +++ b/security/plasma6-kscreenlocker/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1768328288 -SHA256 (KDE/plasma/6.5.5/kscreenlocker-6.5.5.tar.xz) = 150d649e925a2bd3a7e1047b7e2bf5e9541632a31252fd23ae448fb7b413f33e -SIZE (KDE/plasma/6.5.5/kscreenlocker-6.5.5.tar.xz) = 186948 +TIMESTAMP = 1771162208 +SHA256 (KDE/plasma/6.6.0/kscreenlocker-6.6.0.tar.xz) = f5d60fefe580e1d832f5af1b74ca25357d0e04e66daed7533006b7d562fcbd58 +SIZE (KDE/plasma/6.6.0/kscreenlocker-6.6.0.tar.xz) = 186456 diff --git a/security/plasma6-kscreenlocker/pkg-plist b/security/plasma6-kscreenlocker/pkg-plist index ddeaddf6a391..a5b5326bac86 100644 --- a/security/plasma6-kscreenlocker/pkg-plist +++ b/security/plasma6-kscreenlocker/pkg-plist @@ -1,197 +1,199 @@ bin/ck-unlock-session etc/pam.d/kde include/KScreenLocker/KScreenLocker/KsldApp include/KScreenLocker/KScreenLocker/kscreenlocker_export.h include/KScreenLocker/KScreenLocker/ksldapp.h lib/cmake/KScreenLocker/KScreenLockerConfig.cmake lib/cmake/KScreenLocker/KScreenLockerConfigVersion.cmake lib/cmake/KScreenLocker/KScreenLockerTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KScreenLocker/KScreenLockerTargets.cmake lib/cmake/ScreenSaverDBusInterface/ScreenSaverDBusInterfaceConfig.cmake lib/libKScreenLocker.so lib/libKScreenLocker.so.6 lib/libKScreenLocker.so.%%KDE_PLASMA_VERSION%% lib/libexec/kscreenlocker_greet %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_screenlocker.so share/applications/kcm_screenlocker.desktop share/dbus-1/interfaces/kf6_org.freedesktop.ScreenSaver.xml share/dbus-1/interfaces/org.kde.screensaver.xml share/knotifications6/ksmserver.notifyrc share/ksmserver/screenlocker/org.kde.passworddialog/metadata.desktop share/locale/ar/LC_MESSAGES/kcm_screenlocker.mo share/locale/ar/LC_MESSAGES/kscreenlocker.mo share/locale/ar/LC_MESSAGES/kscreenlocker_greet.mo share/locale/ast/LC_MESSAGES/kcm_screenlocker.mo share/locale/ast/LC_MESSAGES/kscreenlocker.mo share/locale/ast/LC_MESSAGES/kscreenlocker_greet.mo +share/locale/az/LC_MESSAGES/kcm_screenlocker.mo share/locale/az/LC_MESSAGES/kscreenlocker.mo +share/locale/az/LC_MESSAGES/kscreenlocker_greet.mo share/locale/bg/LC_MESSAGES/kcm_screenlocker.mo share/locale/bg/LC_MESSAGES/kscreenlocker.mo share/locale/bg/LC_MESSAGES/kscreenlocker_greet.mo share/locale/bs/LC_MESSAGES/kcm_screenlocker.mo share/locale/bs/LC_MESSAGES/kscreenlocker.mo share/locale/bs/LC_MESSAGES/kscreenlocker_greet.mo share/locale/ca/LC_MESSAGES/kcm_screenlocker.mo share/locale/ca/LC_MESSAGES/kscreenlocker.mo share/locale/ca/LC_MESSAGES/kscreenlocker_greet.mo share/locale/ca@valencia/LC_MESSAGES/kcm_screenlocker.mo share/locale/ca@valencia/LC_MESSAGES/kscreenlocker.mo share/locale/ca@valencia/LC_MESSAGES/kscreenlocker_greet.mo share/locale/cs/LC_MESSAGES/kcm_screenlocker.mo share/locale/cs/LC_MESSAGES/kscreenlocker.mo share/locale/cs/LC_MESSAGES/kscreenlocker_greet.mo share/locale/da/LC_MESSAGES/kcm_screenlocker.mo share/locale/da/LC_MESSAGES/kscreenlocker.mo share/locale/da/LC_MESSAGES/kscreenlocker_greet.mo share/locale/de/LC_MESSAGES/kcm_screenlocker.mo share/locale/de/LC_MESSAGES/kscreenlocker.mo share/locale/de/LC_MESSAGES/kscreenlocker_greet.mo share/locale/el/LC_MESSAGES/kcm_screenlocker.mo share/locale/el/LC_MESSAGES/kscreenlocker.mo share/locale/el/LC_MESSAGES/kscreenlocker_greet.mo share/locale/en_GB/LC_MESSAGES/kcm_screenlocker.mo share/locale/en_GB/LC_MESSAGES/kscreenlocker.mo share/locale/en_GB/LC_MESSAGES/kscreenlocker_greet.mo share/locale/eo/LC_MESSAGES/kcm_screenlocker.mo share/locale/eo/LC_MESSAGES/kscreenlocker.mo share/locale/eo/LC_MESSAGES/kscreenlocker_greet.mo share/locale/es/LC_MESSAGES/kcm_screenlocker.mo share/locale/es/LC_MESSAGES/kscreenlocker.mo share/locale/es/LC_MESSAGES/kscreenlocker_greet.mo share/locale/et/LC_MESSAGES/kcm_screenlocker.mo share/locale/et/LC_MESSAGES/kscreenlocker.mo share/locale/et/LC_MESSAGES/kscreenlocker_greet.mo share/locale/eu/LC_MESSAGES/kcm_screenlocker.mo share/locale/eu/LC_MESSAGES/kscreenlocker.mo share/locale/eu/LC_MESSAGES/kscreenlocker_greet.mo share/locale/fi/LC_MESSAGES/kcm_screenlocker.mo share/locale/fi/LC_MESSAGES/kscreenlocker.mo share/locale/fi/LC_MESSAGES/kscreenlocker_greet.mo share/locale/fr/LC_MESSAGES/kcm_screenlocker.mo share/locale/fr/LC_MESSAGES/kscreenlocker.mo share/locale/fr/LC_MESSAGES/kscreenlocker_greet.mo share/locale/ga/LC_MESSAGES/kcm_screenlocker.mo share/locale/ga/LC_MESSAGES/kscreenlocker.mo share/locale/ga/LC_MESSAGES/kscreenlocker_greet.mo share/locale/gl/LC_MESSAGES/kcm_screenlocker.mo share/locale/gl/LC_MESSAGES/kscreenlocker.mo share/locale/gl/LC_MESSAGES/kscreenlocker_greet.mo share/locale/he/LC_MESSAGES/kcm_screenlocker.mo share/locale/he/LC_MESSAGES/kscreenlocker.mo share/locale/he/LC_MESSAGES/kscreenlocker_greet.mo share/locale/hi/LC_MESSAGES/kcm_screenlocker.mo share/locale/hi/LC_MESSAGES/kscreenlocker.mo share/locale/hi/LC_MESSAGES/kscreenlocker_greet.mo share/locale/hu/LC_MESSAGES/kcm_screenlocker.mo share/locale/hu/LC_MESSAGES/kscreenlocker.mo share/locale/hu/LC_MESSAGES/kscreenlocker_greet.mo share/locale/ia/LC_MESSAGES/kcm_screenlocker.mo share/locale/ia/LC_MESSAGES/kscreenlocker.mo share/locale/ia/LC_MESSAGES/kscreenlocker_greet.mo share/locale/id/LC_MESSAGES/kcm_screenlocker.mo share/locale/id/LC_MESSAGES/kscreenlocker.mo share/locale/id/LC_MESSAGES/kscreenlocker_greet.mo share/locale/is/LC_MESSAGES/kcm_screenlocker.mo share/locale/is/LC_MESSAGES/kscreenlocker.mo share/locale/is/LC_MESSAGES/kscreenlocker_greet.mo share/locale/it/LC_MESSAGES/kcm_screenlocker.mo share/locale/it/LC_MESSAGES/kscreenlocker.mo share/locale/it/LC_MESSAGES/kscreenlocker_greet.mo share/locale/ja/LC_MESSAGES/kcm_screenlocker.mo share/locale/ja/LC_MESSAGES/kscreenlocker.mo share/locale/ja/LC_MESSAGES/kscreenlocker_greet.mo share/locale/ka/LC_MESSAGES/kcm_screenlocker.mo share/locale/ka/LC_MESSAGES/kscreenlocker.mo share/locale/ka/LC_MESSAGES/kscreenlocker_greet.mo share/locale/kk/LC_MESSAGES/kscreenlocker.mo share/locale/kk/LC_MESSAGES/kscreenlocker_greet.mo share/locale/ko/LC_MESSAGES/kcm_screenlocker.mo share/locale/ko/LC_MESSAGES/kscreenlocker.mo share/locale/ko/LC_MESSAGES/kscreenlocker_greet.mo share/locale/lt/LC_MESSAGES/kcm_screenlocker.mo share/locale/lt/LC_MESSAGES/kscreenlocker.mo share/locale/lt/LC_MESSAGES/kscreenlocker_greet.mo share/locale/lv/LC_MESSAGES/kcm_screenlocker.mo share/locale/lv/LC_MESSAGES/kscreenlocker.mo share/locale/lv/LC_MESSAGES/kscreenlocker_greet.mo share/locale/ml/LC_MESSAGES/kcm_screenlocker.mo share/locale/ml/LC_MESSAGES/kscreenlocker.mo share/locale/ml/LC_MESSAGES/kscreenlocker_greet.mo share/locale/mr/LC_MESSAGES/kscreenlocker.mo share/locale/mr/LC_MESSAGES/kscreenlocker_greet.mo share/locale/nb/LC_MESSAGES/kcm_screenlocker.mo share/locale/nb/LC_MESSAGES/kscreenlocker.mo share/locale/nb/LC_MESSAGES/kscreenlocker_greet.mo share/locale/nds/LC_MESSAGES/kcm_screenlocker.mo share/locale/nds/LC_MESSAGES/kscreenlocker.mo share/locale/nds/LC_MESSAGES/kscreenlocker_greet.mo share/locale/nl/LC_MESSAGES/kcm_screenlocker.mo share/locale/nl/LC_MESSAGES/kscreenlocker.mo share/locale/nl/LC_MESSAGES/kscreenlocker_greet.mo share/locale/nn/LC_MESSAGES/kcm_screenlocker.mo share/locale/nn/LC_MESSAGES/kscreenlocker.mo share/locale/nn/LC_MESSAGES/kscreenlocker_greet.mo share/locale/pa/LC_MESSAGES/kcm_screenlocker.mo share/locale/pa/LC_MESSAGES/kscreenlocker.mo share/locale/pa/LC_MESSAGES/kscreenlocker_greet.mo share/locale/pl/LC_MESSAGES/kcm_screenlocker.mo share/locale/pl/LC_MESSAGES/kscreenlocker.mo share/locale/pl/LC_MESSAGES/kscreenlocker_greet.mo share/locale/pt/LC_MESSAGES/kcm_screenlocker.mo share/locale/pt/LC_MESSAGES/kscreenlocker.mo share/locale/pt/LC_MESSAGES/kscreenlocker_greet.mo share/locale/pt_BR/LC_MESSAGES/kcm_screenlocker.mo share/locale/pt_BR/LC_MESSAGES/kscreenlocker.mo share/locale/pt_BR/LC_MESSAGES/kscreenlocker_greet.mo share/locale/ro/LC_MESSAGES/kcm_screenlocker.mo share/locale/ro/LC_MESSAGES/kscreenlocker.mo share/locale/ro/LC_MESSAGES/kscreenlocker_greet.mo share/locale/ru/LC_MESSAGES/kcm_screenlocker.mo share/locale/ru/LC_MESSAGES/kscreenlocker.mo share/locale/ru/LC_MESSAGES/kscreenlocker_greet.mo share/locale/sa/LC_MESSAGES/kcm_screenlocker.mo share/locale/sa/LC_MESSAGES/kscreenlocker.mo share/locale/sa/LC_MESSAGES/kscreenlocker_greet.mo share/locale/sk/LC_MESSAGES/kcm_screenlocker.mo share/locale/sk/LC_MESSAGES/kscreenlocker.mo share/locale/sk/LC_MESSAGES/kscreenlocker_greet.mo share/locale/sl/LC_MESSAGES/kcm_screenlocker.mo share/locale/sl/LC_MESSAGES/kscreenlocker.mo share/locale/sl/LC_MESSAGES/kscreenlocker_greet.mo share/locale/sr/LC_MESSAGES/kcm_screenlocker.mo share/locale/sr/LC_MESSAGES/kscreenlocker.mo share/locale/sr/LC_MESSAGES/kscreenlocker_greet.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_screenlocker.mo share/locale/sr@ijekavian/LC_MESSAGES/kscreenlocker.mo share/locale/sr@ijekavian/LC_MESSAGES/kscreenlocker_greet.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_screenlocker.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kscreenlocker.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kscreenlocker_greet.mo share/locale/sr@latin/LC_MESSAGES/kcm_screenlocker.mo share/locale/sr@latin/LC_MESSAGES/kscreenlocker.mo share/locale/sr@latin/LC_MESSAGES/kscreenlocker_greet.mo share/locale/sv/LC_MESSAGES/kcm_screenlocker.mo share/locale/sv/LC_MESSAGES/kscreenlocker.mo share/locale/sv/LC_MESSAGES/kscreenlocker_greet.mo share/locale/ta/LC_MESSAGES/kcm_screenlocker.mo share/locale/ta/LC_MESSAGES/kscreenlocker.mo share/locale/ta/LC_MESSAGES/kscreenlocker_greet.mo share/locale/tg/LC_MESSAGES/kcm_screenlocker.mo share/locale/tg/LC_MESSAGES/kscreenlocker.mo share/locale/tr/LC_MESSAGES/kcm_screenlocker.mo share/locale/tr/LC_MESSAGES/kscreenlocker.mo share/locale/tr/LC_MESSAGES/kscreenlocker_greet.mo share/locale/ug/LC_MESSAGES/kscreenlocker.mo share/locale/ug/LC_MESSAGES/kscreenlocker_greet.mo share/locale/uk/LC_MESSAGES/kcm_screenlocker.mo share/locale/uk/LC_MESSAGES/kscreenlocker.mo share/locale/uk/LC_MESSAGES/kscreenlocker_greet.mo share/locale/wa/LC_MESSAGES/kscreenlocker.mo share/locale/wa/LC_MESSAGES/kscreenlocker_greet.mo share/locale/zh_CN/LC_MESSAGES/kcm_screenlocker.mo share/locale/zh_CN/LC_MESSAGES/kscreenlocker.mo share/locale/zh_CN/LC_MESSAGES/kscreenlocker_greet.mo share/locale/zh_TW/LC_MESSAGES/kcm_screenlocker.mo share/locale/zh_TW/LC_MESSAGES/kscreenlocker.mo share/locale/zh_TW/LC_MESSAGES/kscreenlocker_greet.mo share/qlogging-categories6/kscreenlocker.categories diff --git a/security/plasma6-ksshaskpass/Makefile b/security/plasma6-ksshaskpass/Makefile index 51333c84b25e..dcbc167aa7f3 100644 --- a/security/plasma6-ksshaskpass/Makefile +++ b/security/plasma6-ksshaskpass/Makefile @@ -1,14 +1,16 @@ PORTNAME= ksshaskpass DISTVERSION= ${KDE_PLASMA_VERSION} CATEGORIES= security kde kde-plasma MAINTAINER= kde@FreeBSD.org -COMMENT= ssh-add helper that uses KWallet and KPasswordDialog +COMMENT= ssh-add helper that uses QtKeychain and KPasswordDialog + +LIB_DEPENDS= libqt6keychain.so:security/qtkeychain@qt6 USES= cmake gettext gl kde:6 qt:6 tar:xz -USE_KDE= coreaddons i18n wallet widgetsaddons \ +USE_KDE= coreaddons i18n widgetsaddons \ doctools:build ecm:build USE_QT= base USE_GL= gl opengl .include diff --git a/security/plasma6-ksshaskpass/distinfo b/security/plasma6-ksshaskpass/distinfo index 43013bc39d84..72991a561b99 100644 --- a/security/plasma6-ksshaskpass/distinfo +++ b/security/plasma6-ksshaskpass/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1768328289 -SHA256 (KDE/plasma/6.5.5/ksshaskpass-6.5.5.tar.xz) = 191e729f6442b916b53dc35a830b0188f74ea20ef6525b326983ae5815ec6bcb -SIZE (KDE/plasma/6.5.5/ksshaskpass-6.5.5.tar.xz) = 30936 +TIMESTAMP = 1771162208 +SHA256 (KDE/plasma/6.6.0/ksshaskpass-6.6.0.tar.xz) = 28a775a52be2fb67c4404afdf819132152183541cbddbe0b15753e7b0c6341f6 +SIZE (KDE/plasma/6.6.0/ksshaskpass-6.6.0.tar.xz) = 32436 diff --git a/security/plasma6-kwallet-pam/distinfo b/security/plasma6-kwallet-pam/distinfo index d1daf6b8b595..87269968a093 100644 --- a/security/plasma6-kwallet-pam/distinfo +++ b/security/plasma6-kwallet-pam/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1768328289 -SHA256 (KDE/plasma/6.5.5/kwallet-pam-6.5.5.tar.xz) = 14fa01fe71327aefe36fe5fc794133baf7c8ad4700ab8a2732904ddc83eb17b6 -SIZE (KDE/plasma/6.5.5/kwallet-pam-6.5.5.tar.xz) = 22376 +TIMESTAMP = 1771162209 +SHA256 (KDE/plasma/6.6.0/kwallet-pam-6.6.0.tar.xz) = 5ab6026975785e216105fd58362b2832ab075b68c1d242b732a556179cc4ca05 +SIZE (KDE/plasma/6.6.0/kwallet-pam-6.6.0.tar.xz) = 22364 diff --git a/sysutils/plasma6-discover/Makefile b/sysutils/plasma6-discover/Makefile index 577197ffc437..09fe9069d28c 100644 --- a/sysutils/plasma6-discover/Makefile +++ b/sysutils/plasma6-discover/Makefile @@ -1,27 +1,26 @@ PORTNAME= discover DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= sysutils kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma package management tools WWW= https://www.kde.org/plasma-desktop LIB_DEPENDS= libAppStreamQt.so:devel/appstream-qt \ libpackagekitqt6.so:ports-mgmt/packagekit-qt \ libmarkdown.so:textproc/discount \ libQCoro6Core.so:devel/qcoro RUN_DEPENDS= PackageKit>0:ports-mgmt/packagekit USES= cmake compiler:c++11-lib desktop-file-utils gettext gl kde:6 \ pkgconfig qt:6 tar:xz xorg USE_KDE= archive attica config coreaddons crash dbusaddons i18n \ idletime itemmodels jobwidgets kcmutils kio kirigami-addons \ newstuff notifications purpose service statusnotifieritem \ userfeedback widgetsaddons windowsystem \ ecm:build USE_QT= base declarative webview USE_GL= gl opengl USE_XORG= x11 .include diff --git a/sysutils/plasma6-discover/distinfo b/sysutils/plasma6-discover/distinfo index 4de474d94a3a..e2cefc7d4d26 100644 --- a/sysutils/plasma6-discover/distinfo +++ b/sysutils/plasma6-discover/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1768328292 -SHA256 (KDE/plasma/6.5.5/discover-6.5.5.tar.xz) = 4202dd2d854b716c15b2f374965f5c1af69915d379c25bcbd4d0fbcf73699634 -SIZE (KDE/plasma/6.5.5/discover-6.5.5.tar.xz) = 1125628 +TIMESTAMP = 1771162210 +SHA256 (KDE/plasma/6.6.0/discover-6.6.0.tar.xz) = d1bdfa46b5104de6dac2ddda72efac7c1d5261dc318d1e4a7e8cdac6e9d8e645 +SIZE (KDE/plasma/6.6.0/discover-6.6.0.tar.xz) = 1148248 diff --git a/sysutils/plasma6-discover/pkg-plist b/sysutils/plasma6-discover/pkg-plist index 563f48517aec..f9216f216f28 100644 --- a/sysutils/plasma6-discover/pkg-plist +++ b/sysutils/plasma6-discover/pkg-plist @@ -1,264 +1,268 @@ bin/plasma-discover etc/xdg/autostart/org.kde.discover.notifier.desktop lib/libexec/DiscoverNotifier lib/plasma-discover/libDiscoverCommon.so lib/plasma-discover/libDiscoverNotifiers.so %%QT_PLUGINDIR%%/discover-notifier/DiscoverPackageKitNotifier.so %%QT_PLUGINDIR%%/discover/kns-backend.so %%QT_PLUGINDIR%%/discover/packagekit-backend.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_updates.so share/applications/kcm_updates.desktop share/applications/org.kde.discover.desktop share/applications/org.kde.discover.notifier.desktop share/applications/org.kde.discover.snap.desktop share/applications/org.kde.discover.urlhandler.desktop share/icons/hicolor/128x128/apps/plasmadiscover.png share/icons/hicolor/16x16/apps/plasmadiscover.png share/icons/hicolor/22x22/apps/plasmadiscover.png share/icons/hicolor/32x32/apps/plasmadiscover.png share/icons/hicolor/48x48/apps/plasmadiscover.png share/icons/hicolor/scalable/apps/plasmadiscover.svg share/knotifications6/discoverabstractnotifier.notifyrc share/kxmlgui5/plasmadiscover/plasmadiscoverui.rc share/libdiscover/categories/packagekit-backend-categories.xml share/locale/ar/LC_MESSAGES/kcm_updates.mo share/locale/ar/LC_MESSAGES/libdiscover.mo share/locale/ar/LC_MESSAGES/plasma-discover-notifier.mo share/locale/ar/LC_MESSAGES/plasma-discover.mo share/locale/ast/LC_MESSAGES/kcm_updates.mo share/locale/ast/LC_MESSAGES/libdiscover.mo share/locale/ast/LC_MESSAGES/plasma-discover-notifier.mo share/locale/ast/LC_MESSAGES/plasma-discover.mo share/locale/az/LC_MESSAGES/kcm_updates.mo share/locale/az/LC_MESSAGES/libdiscover.mo share/locale/az/LC_MESSAGES/plasma-discover-notifier.mo share/locale/az/LC_MESSAGES/plasma-discover.mo share/locale/be/LC_MESSAGES/kcm_updates.mo share/locale/be/LC_MESSAGES/libdiscover.mo share/locale/be/LC_MESSAGES/plasma-discover-notifier.mo share/locale/be/LC_MESSAGES/plasma-discover.mo share/locale/bg/LC_MESSAGES/kcm_updates.mo share/locale/bg/LC_MESSAGES/libdiscover.mo share/locale/bg/LC_MESSAGES/plasma-discover-notifier.mo share/locale/bg/LC_MESSAGES/plasma-discover.mo share/locale/bs/LC_MESSAGES/libdiscover.mo share/locale/bs/LC_MESSAGES/plasma-discover.mo share/locale/ca/LC_MESSAGES/kcm_updates.mo share/locale/ca/LC_MESSAGES/libdiscover.mo share/locale/ca/LC_MESSAGES/plasma-discover-notifier.mo share/locale/ca/LC_MESSAGES/plasma-discover.mo share/locale/ca@valencia/LC_MESSAGES/kcm_updates.mo share/locale/ca@valencia/LC_MESSAGES/libdiscover.mo share/locale/ca@valencia/LC_MESSAGES/plasma-discover-notifier.mo share/locale/ca@valencia/LC_MESSAGES/plasma-discover.mo share/locale/cs/LC_MESSAGES/kcm_updates.mo share/locale/cs/LC_MESSAGES/libdiscover.mo share/locale/cs/LC_MESSAGES/plasma-discover-notifier.mo share/locale/cs/LC_MESSAGES/plasma-discover.mo share/locale/da/LC_MESSAGES/kcm_updates.mo share/locale/da/LC_MESSAGES/libdiscover.mo share/locale/da/LC_MESSAGES/plasma-discover-notifier.mo share/locale/da/LC_MESSAGES/plasma-discover.mo share/locale/de/LC_MESSAGES/kcm_updates.mo share/locale/de/LC_MESSAGES/libdiscover.mo share/locale/de/LC_MESSAGES/plasma-discover-notifier.mo share/locale/de/LC_MESSAGES/plasma-discover.mo share/locale/el/LC_MESSAGES/kcm_updates.mo share/locale/el/LC_MESSAGES/libdiscover.mo share/locale/el/LC_MESSAGES/plasma-discover-notifier.mo share/locale/el/LC_MESSAGES/plasma-discover.mo share/locale/en_GB/LC_MESSAGES/kcm_updates.mo share/locale/en_GB/LC_MESSAGES/libdiscover.mo share/locale/en_GB/LC_MESSAGES/plasma-discover-notifier.mo share/locale/en_GB/LC_MESSAGES/plasma-discover.mo share/locale/eo/LC_MESSAGES/kcm_updates.mo share/locale/eo/LC_MESSAGES/libdiscover.mo share/locale/eo/LC_MESSAGES/plasma-discover-notifier.mo share/locale/eo/LC_MESSAGES/plasma-discover.mo share/locale/es/LC_MESSAGES/kcm_updates.mo share/locale/es/LC_MESSAGES/libdiscover.mo share/locale/es/LC_MESSAGES/plasma-discover-notifier.mo share/locale/es/LC_MESSAGES/plasma-discover.mo share/locale/et/LC_MESSAGES/kcm_updates.mo share/locale/et/LC_MESSAGES/libdiscover.mo share/locale/et/LC_MESSAGES/plasma-discover-notifier.mo share/locale/et/LC_MESSAGES/plasma-discover.mo share/locale/eu/LC_MESSAGES/kcm_updates.mo share/locale/eu/LC_MESSAGES/libdiscover.mo share/locale/eu/LC_MESSAGES/plasma-discover-notifier.mo share/locale/eu/LC_MESSAGES/plasma-discover.mo +share/locale/fa/LC_MESSAGES/kcm_updates.mo +share/locale/fa/LC_MESSAGES/libdiscover.mo +share/locale/fa/LC_MESSAGES/plasma-discover-notifier.mo +share/locale/fa/LC_MESSAGES/plasma-discover.mo share/locale/fi/LC_MESSAGES/kcm_updates.mo share/locale/fi/LC_MESSAGES/libdiscover.mo share/locale/fi/LC_MESSAGES/plasma-discover-notifier.mo share/locale/fi/LC_MESSAGES/plasma-discover.mo share/locale/fr/LC_MESSAGES/kcm_updates.mo share/locale/fr/LC_MESSAGES/libdiscover.mo share/locale/fr/LC_MESSAGES/plasma-discover-notifier.mo share/locale/fr/LC_MESSAGES/plasma-discover.mo share/locale/ga/LC_MESSAGES/kcm_updates.mo share/locale/ga/LC_MESSAGES/libdiscover.mo share/locale/ga/LC_MESSAGES/plasma-discover-notifier.mo share/locale/ga/LC_MESSAGES/plasma-discover.mo share/locale/gl/LC_MESSAGES/kcm_updates.mo share/locale/gl/LC_MESSAGES/libdiscover.mo share/locale/gl/LC_MESSAGES/plasma-discover-notifier.mo share/locale/gl/LC_MESSAGES/plasma-discover.mo share/locale/he/LC_MESSAGES/kcm_updates.mo share/locale/he/LC_MESSAGES/libdiscover.mo share/locale/he/LC_MESSAGES/plasma-discover-notifier.mo share/locale/he/LC_MESSAGES/plasma-discover.mo share/locale/hi/LC_MESSAGES/kcm_updates.mo share/locale/hi/LC_MESSAGES/libdiscover.mo share/locale/hi/LC_MESSAGES/plasma-discover-notifier.mo share/locale/hi/LC_MESSAGES/plasma-discover.mo share/locale/hsb/LC_MESSAGES/libdiscover.mo share/locale/hsb/LC_MESSAGES/plasma-discover-notifier.mo share/locale/hsb/LC_MESSAGES/plasma-discover.mo share/locale/hu/LC_MESSAGES/kcm_updates.mo share/locale/hu/LC_MESSAGES/libdiscover.mo share/locale/hu/LC_MESSAGES/plasma-discover-notifier.mo share/locale/hu/LC_MESSAGES/plasma-discover.mo share/locale/ia/LC_MESSAGES/kcm_updates.mo share/locale/ia/LC_MESSAGES/libdiscover.mo share/locale/ia/LC_MESSAGES/plasma-discover-notifier.mo share/locale/ia/LC_MESSAGES/plasma-discover.mo share/locale/id/LC_MESSAGES/kcm_updates.mo share/locale/id/LC_MESSAGES/libdiscover.mo share/locale/id/LC_MESSAGES/plasma-discover-notifier.mo share/locale/id/LC_MESSAGES/plasma-discover.mo share/locale/ie/LC_MESSAGES/kcm_updates.mo share/locale/ie/LC_MESSAGES/plasma-discover-notifier.mo share/locale/is/LC_MESSAGES/kcm_updates.mo share/locale/is/LC_MESSAGES/libdiscover.mo share/locale/is/LC_MESSAGES/plasma-discover-notifier.mo share/locale/is/LC_MESSAGES/plasma-discover.mo share/locale/it/LC_MESSAGES/kcm_updates.mo share/locale/it/LC_MESSAGES/libdiscover.mo share/locale/it/LC_MESSAGES/plasma-discover-notifier.mo share/locale/it/LC_MESSAGES/plasma-discover.mo share/locale/ja/LC_MESSAGES/kcm_updates.mo share/locale/ja/LC_MESSAGES/libdiscover.mo share/locale/ja/LC_MESSAGES/plasma-discover-notifier.mo share/locale/ja/LC_MESSAGES/plasma-discover.mo share/locale/ka/LC_MESSAGES/kcm_updates.mo share/locale/ka/LC_MESSAGES/libdiscover.mo share/locale/ka/LC_MESSAGES/plasma-discover-notifier.mo share/locale/ka/LC_MESSAGES/plasma-discover.mo share/locale/kk/LC_MESSAGES/libdiscover.mo share/locale/kk/LC_MESSAGES/plasma-discover.mo share/locale/ko/LC_MESSAGES/kcm_updates.mo share/locale/ko/LC_MESSAGES/libdiscover.mo share/locale/ko/LC_MESSAGES/plasma-discover-notifier.mo share/locale/ko/LC_MESSAGES/plasma-discover.mo share/locale/lt/LC_MESSAGES/kcm_updates.mo share/locale/lt/LC_MESSAGES/libdiscover.mo share/locale/lt/LC_MESSAGES/plasma-discover-notifier.mo share/locale/lt/LC_MESSAGES/plasma-discover.mo share/locale/lv/LC_MESSAGES/kcm_updates.mo share/locale/lv/LC_MESSAGES/libdiscover.mo share/locale/lv/LC_MESSAGES/plasma-discover-notifier.mo share/locale/lv/LC_MESSAGES/plasma-discover.mo share/locale/ml/LC_MESSAGES/libdiscover.mo share/locale/ml/LC_MESSAGES/plasma-discover-notifier.mo share/locale/ml/LC_MESSAGES/plasma-discover.mo share/locale/mr/LC_MESSAGES/libdiscover.mo share/locale/mr/LC_MESSAGES/plasma-discover.mo share/locale/my/LC_MESSAGES/kcm_updates.mo share/locale/my/LC_MESSAGES/libdiscover.mo share/locale/my/LC_MESSAGES/plasma-discover-notifier.mo share/locale/my/LC_MESSAGES/plasma-discover.mo share/locale/nb/LC_MESSAGES/libdiscover.mo share/locale/nb/LC_MESSAGES/plasma-discover-notifier.mo share/locale/nb/LC_MESSAGES/plasma-discover.mo share/locale/nds/LC_MESSAGES/libdiscover.mo share/locale/nds/LC_MESSAGES/plasma-discover.mo share/locale/nl/LC_MESSAGES/kcm_updates.mo share/locale/nl/LC_MESSAGES/libdiscover.mo share/locale/nl/LC_MESSAGES/plasma-discover-notifier.mo share/locale/nl/LC_MESSAGES/plasma-discover.mo share/locale/nn/LC_MESSAGES/kcm_updates.mo share/locale/nn/LC_MESSAGES/libdiscover.mo share/locale/nn/LC_MESSAGES/plasma-discover-notifier.mo share/locale/nn/LC_MESSAGES/plasma-discover.mo share/locale/pa/LC_MESSAGES/kcm_updates.mo share/locale/pa/LC_MESSAGES/libdiscover.mo share/locale/pa/LC_MESSAGES/plasma-discover-notifier.mo share/locale/pa/LC_MESSAGES/plasma-discover.mo share/locale/pl/LC_MESSAGES/kcm_updates.mo share/locale/pl/LC_MESSAGES/libdiscover.mo share/locale/pl/LC_MESSAGES/plasma-discover-notifier.mo share/locale/pl/LC_MESSAGES/plasma-discover.mo share/locale/pt/LC_MESSAGES/kcm_updates.mo share/locale/pt/LC_MESSAGES/libdiscover.mo share/locale/pt/LC_MESSAGES/plasma-discover-notifier.mo share/locale/pt/LC_MESSAGES/plasma-discover.mo share/locale/pt_BR/LC_MESSAGES/kcm_updates.mo share/locale/pt_BR/LC_MESSAGES/libdiscover.mo share/locale/pt_BR/LC_MESSAGES/plasma-discover-notifier.mo share/locale/pt_BR/LC_MESSAGES/plasma-discover.mo share/locale/ro/LC_MESSAGES/kcm_updates.mo share/locale/ro/LC_MESSAGES/libdiscover.mo share/locale/ro/LC_MESSAGES/plasma-discover-notifier.mo share/locale/ro/LC_MESSAGES/plasma-discover.mo share/locale/ru/LC_MESSAGES/kcm_updates.mo share/locale/ru/LC_MESSAGES/libdiscover.mo share/locale/ru/LC_MESSAGES/plasma-discover-notifier.mo share/locale/ru/LC_MESSAGES/plasma-discover.mo share/locale/sa/LC_MESSAGES/kcm_updates.mo share/locale/sa/LC_MESSAGES/libdiscover.mo share/locale/sa/LC_MESSAGES/plasma-discover-notifier.mo share/locale/sa/LC_MESSAGES/plasma-discover.mo share/locale/sk/LC_MESSAGES/kcm_updates.mo share/locale/sk/LC_MESSAGES/libdiscover.mo share/locale/sk/LC_MESSAGES/plasma-discover-notifier.mo share/locale/sk/LC_MESSAGES/plasma-discover.mo share/locale/sl/LC_MESSAGES/kcm_updates.mo share/locale/sl/LC_MESSAGES/libdiscover.mo share/locale/sl/LC_MESSAGES/plasma-discover-notifier.mo share/locale/sl/LC_MESSAGES/plasma-discover.mo share/locale/sr/LC_MESSAGES/libdiscover.mo share/locale/sr/LC_MESSAGES/plasma-discover-notifier.mo share/locale/sr/LC_MESSAGES/plasma-discover.mo share/locale/sr@ijekavian/LC_MESSAGES/libdiscover.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma-discover-notifier.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma-discover.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libdiscover.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma-discover-notifier.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma-discover.mo share/locale/sr@latin/LC_MESSAGES/libdiscover.mo share/locale/sr@latin/LC_MESSAGES/plasma-discover-notifier.mo share/locale/sr@latin/LC_MESSAGES/plasma-discover.mo share/locale/sv/LC_MESSAGES/kcm_updates.mo share/locale/sv/LC_MESSAGES/libdiscover.mo share/locale/sv/LC_MESSAGES/plasma-discover-notifier.mo share/locale/sv/LC_MESSAGES/plasma-discover.mo share/locale/ta/LC_MESSAGES/kcm_updates.mo share/locale/ta/LC_MESSAGES/libdiscover.mo share/locale/ta/LC_MESSAGES/plasma-discover-notifier.mo share/locale/ta/LC_MESSAGES/plasma-discover.mo share/locale/tg/LC_MESSAGES/libdiscover.mo share/locale/tg/LC_MESSAGES/plasma-discover-notifier.mo share/locale/tg/LC_MESSAGES/plasma-discover.mo share/locale/tr/LC_MESSAGES/kcm_updates.mo share/locale/tr/LC_MESSAGES/libdiscover.mo share/locale/tr/LC_MESSAGES/plasma-discover-notifier.mo share/locale/tr/LC_MESSAGES/plasma-discover.mo share/locale/ug/LC_MESSAGES/libdiscover.mo share/locale/ug/LC_MESSAGES/plasma-discover.mo share/locale/uk/LC_MESSAGES/kcm_updates.mo share/locale/uk/LC_MESSAGES/libdiscover.mo share/locale/uk/LC_MESSAGES/plasma-discover-notifier.mo share/locale/uk/LC_MESSAGES/plasma-discover.mo share/locale/vi/LC_MESSAGES/libdiscover.mo share/locale/vi/LC_MESSAGES/plasma-discover.mo share/locale/zh_CN/LC_MESSAGES/kcm_updates.mo share/locale/zh_CN/LC_MESSAGES/libdiscover.mo share/locale/zh_CN/LC_MESSAGES/plasma-discover-notifier.mo share/locale/zh_CN/LC_MESSAGES/plasma-discover.mo share/locale/zh_TW/LC_MESSAGES/kcm_updates.mo share/locale/zh_TW/LC_MESSAGES/libdiscover.mo share/locale/zh_TW/LC_MESSAGES/plasma-discover-notifier.mo share/locale/zh_TW/LC_MESSAGES/plasma-discover.mo share/metainfo/org.kde.discover.appdata.xml share/metainfo/org.kde.discover.packagekit.appdata.xml share/qlogging-categories6/discover.categories diff --git a/sysutils/plasma6-kde-cli-tools/Makefile b/sysutils/plasma6-kde-cli-tools/Makefile index ae73766ec586..8b8454d77d5d 100644 --- a/sysutils/plasma6-kde-cli-tools/Makefile +++ b/sysutils/plasma6-kde-cli-tools/Makefile @@ -1,20 +1,19 @@ PORTNAME= kde-cli-tools DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= sysutils kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Tools based on KDE Frameworks to better interact with the system LIB_DEPENDS= libxkbcommon.so:x11/libxkbcommon USES= cmake desktop-file-utils gettext gl kde:6 qt:6 tar:xz xorg USE_GL= gl opengl USE_XORG= x11 USE_KDE= colorscheme completion config configwidgets coreaddons \ doctools i18n iconthemes jobwidgets kcmutils kdesu kio parts \ pty service solid widgetsaddons windowsystem xmlgui \ ecm:build USE_QT= base declarative svg .include diff --git a/sysutils/plasma6-kde-cli-tools/distinfo b/sysutils/plasma6-kde-cli-tools/distinfo index c1e4b7733efa..a30c4166f44d 100644 --- a/sysutils/plasma6-kde-cli-tools/distinfo +++ b/sysutils/plasma6-kde-cli-tools/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1768328293 -SHA256 (KDE/plasma/6.5.5/kde-cli-tools-6.5.5.tar.xz) = 083b5d3c8e6315554547e1fc538c7d9f0671e08f7c52f2bc0a5a345027a12279 -SIZE (KDE/plasma/6.5.5/kde-cli-tools-6.5.5.tar.xz) = 639828 +TIMESTAMP = 1771162211 +SHA256 (KDE/plasma/6.6.0/kde-cli-tools-6.6.0.tar.xz) = b451b3b80c87e7e6562cf9a9c669f42f376f8226666292e921dafafd34511dad +SIZE (KDE/plasma/6.6.0/kde-cli-tools-6.6.0.tar.xz) = 639340 diff --git a/sysutils/plasma6-kde-cli-tools/pkg-plist b/sysutils/plasma6-kde-cli-tools/pkg-plist index 8f1a61fb892e..a349728cd336 100644 --- a/sysutils/plasma6-kde-cli-tools/pkg-plist +++ b/sysutils/plasma6-kde-cli-tools/pkg-plist @@ -1,702 +1,699 @@ bin/kbroadcastnotification bin/kde-inhibit bin/kde-open bin/kde-open5 bin/kdecp bin/kdecp5 bin/kdemv bin/kdemv5 bin/keditfiletype bin/keditfiletype5 bin/kinfo bin/kioclient bin/kioclient5 bin/kmimetypefinder bin/kmimetypefinder5 bin/kstart bin/kstart5 bin/ksvgtopng bin/ksvgtopng5 bin/plasma-open-settings lib/libexec/kf6/kdeeject lib/libexec/kf6/kdesu %%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_filetypes.so share/applications/kcm_filetypes.desktop share/applications/org.kde.keditfiletype.desktop share/applications/org.kde.plasma.settings.open.desktop share/doc/HTML/ca/kcontrol6/filetypes/index.cache.bz2 share/doc/HTML/ca/kcontrol6/filetypes/index.docbook share/doc/HTML/ca/kdesu/index.cache.bz2 share/doc/HTML/ca/kdesu/index.docbook share/doc/HTML/de/kcontrol6/filetypes/index.cache.bz2 share/doc/HTML/de/kcontrol6/filetypes/index.docbook share/doc/HTML/de/kdesu/index.cache.bz2 share/doc/HTML/de/kdesu/index.docbook share/doc/HTML/en/kcontrol6/filetypes/index.cache.bz2 share/doc/HTML/en/kcontrol6/filetypes/index.docbook share/doc/HTML/en/kdesu/index.cache.bz2 share/doc/HTML/en/kdesu/index.docbook share/doc/HTML/es/kcontrol6/filetypes/index.cache.bz2 share/doc/HTML/es/kcontrol6/filetypes/index.docbook share/doc/HTML/es/kdesu/index.cache.bz2 share/doc/HTML/es/kdesu/index.docbook share/doc/HTML/et/kdesu/index.cache.bz2 share/doc/HTML/et/kdesu/index.docbook share/doc/HTML/fr/kcontrol6/filetypes/index.cache.bz2 share/doc/HTML/fr/kcontrol6/filetypes/index.docbook share/doc/HTML/fr/kdesu/index.cache.bz2 share/doc/HTML/fr/kdesu/index.docbook share/doc/HTML/id/kcontrol6/filetypes/index.cache.bz2 share/doc/HTML/id/kcontrol6/filetypes/index.docbook share/doc/HTML/id/kdesu/index.cache.bz2 share/doc/HTML/id/kdesu/index.docbook share/doc/HTML/it/kcontrol6/filetypes/index.cache.bz2 share/doc/HTML/it/kcontrol6/filetypes/index.docbook share/doc/HTML/it/kdesu/index.cache.bz2 share/doc/HTML/it/kdesu/index.docbook share/doc/HTML/nl/kcontrol6/filetypes/index.cache.bz2 share/doc/HTML/nl/kcontrol6/filetypes/index.docbook share/doc/HTML/nl/kdesu/index.cache.bz2 share/doc/HTML/nl/kdesu/index.docbook share/doc/HTML/pt/kcontrol6/filetypes/index.cache.bz2 share/doc/HTML/pt/kcontrol6/filetypes/index.docbook share/doc/HTML/pt/kdesu/index.cache.bz2 share/doc/HTML/pt/kdesu/index.docbook share/doc/HTML/pt_BR/kcontrol6/filetypes/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol6/filetypes/index.docbook share/doc/HTML/pt_BR/kdesu/index.cache.bz2 share/doc/HTML/pt_BR/kdesu/index.docbook share/doc/HTML/ru/kcontrol6/filetypes/index.cache.bz2 share/doc/HTML/ru/kcontrol6/filetypes/index.docbook share/doc/HTML/ru/kdesu/index.cache.bz2 share/doc/HTML/ru/kdesu/index.docbook share/doc/HTML/sl/kcontrol6/filetypes/index.cache.bz2 share/doc/HTML/sl/kcontrol6/filetypes/index.docbook share/doc/HTML/sl/kdesu/index.cache.bz2 share/doc/HTML/sl/kdesu/index.docbook share/doc/HTML/sr/kcontrol6/filetypes/index.cache.bz2 share/doc/HTML/sr/kcontrol6/filetypes/index.docbook share/doc/HTML/sr/kdesu/index.cache.bz2 share/doc/HTML/sr/kdesu/index.docbook share/doc/HTML/sr@latin/kcontrol6/filetypes/index.cache.bz2 share/doc/HTML/sr@latin/kcontrol6/filetypes/index.docbook share/doc/HTML/sr@latin/kdesu/index.cache.bz2 share/doc/HTML/sr@latin/kdesu/index.docbook share/doc/HTML/sv/kcontrol6/filetypes/index.cache.bz2 share/doc/HTML/sv/kcontrol6/filetypes/index.docbook share/doc/HTML/sv/kdesu/index.cache.bz2 share/doc/HTML/sv/kdesu/index.docbook share/doc/HTML/tr/kcontrol6/filetypes/index.cache.bz2 share/doc/HTML/tr/kcontrol6/filetypes/index.docbook share/doc/HTML/tr/kdesu/index.cache.bz2 share/doc/HTML/tr/kdesu/index.docbook share/doc/HTML/uk/kcontrol6/filetypes/index.cache.bz2 share/doc/HTML/uk/kcontrol6/filetypes/index.docbook share/doc/HTML/uk/kdesu/index.cache.bz2 share/doc/HTML/uk/kdesu/index.docbook share/locale/af/LC_MESSAGES/kcm_filetypes.mo share/locale/af/LC_MESSAGES/kdesu.mo share/locale/af/LC_MESSAGES/kstart.mo share/locale/ar/LC_MESSAGES/kbroadcastnotification.mo share/locale/ar/LC_MESSAGES/kcm_filetypes.mo share/locale/ar/LC_MESSAGES/kde-inhibit.mo share/locale/ar/LC_MESSAGES/kdesu.mo share/locale/ar/LC_MESSAGES/kioclient.mo share/locale/ar/LC_MESSAGES/kmimetypefinder.mo share/locale/ar/LC_MESSAGES/kstart.mo share/locale/ar/LC_MESSAGES/plasma-open-settings.mo share/locale/ast/LC_MESSAGES/kbroadcastnotification.mo share/locale/ast/LC_MESSAGES/kcm_filetypes.mo share/locale/ast/LC_MESSAGES/kde-inhibit.mo share/locale/ast/LC_MESSAGES/kdesu.mo share/locale/ast/LC_MESSAGES/kioclient.mo share/locale/ast/LC_MESSAGES/kmimetypefinder.mo share/locale/ast/LC_MESSAGES/kstart.mo share/locale/ast/LC_MESSAGES/plasma-open-settings.mo share/locale/az/LC_MESSAGES/kbroadcastnotification.mo share/locale/az/LC_MESSAGES/kcm_filetypes.mo share/locale/az/LC_MESSAGES/kdesu.mo share/locale/az/LC_MESSAGES/kioclient.mo share/locale/az/LC_MESSAGES/kmimetypefinder.mo share/locale/az/LC_MESSAGES/kstart.mo share/locale/az/LC_MESSAGES/plasma-open-settings.mo share/locale/be/LC_MESSAGES/kcm_filetypes.mo share/locale/be/LC_MESSAGES/kdesu.mo share/locale/be/LC_MESSAGES/kioclient.mo share/locale/be/LC_MESSAGES/kmimetypefinder.mo share/locale/be/LC_MESSAGES/kstart.mo share/locale/be@latin/LC_MESSAGES/kcm_filetypes.mo share/locale/be@latin/LC_MESSAGES/kdesu.mo share/locale/be@latin/LC_MESSAGES/kmimetypefinder.mo share/locale/be@latin/LC_MESSAGES/kstart.mo share/locale/bg/LC_MESSAGES/kbroadcastnotification.mo share/locale/bg/LC_MESSAGES/kcm_filetypes.mo share/locale/bg/LC_MESSAGES/kde-inhibit.mo share/locale/bg/LC_MESSAGES/kdesu.mo share/locale/bg/LC_MESSAGES/kioclient.mo share/locale/bg/LC_MESSAGES/kmimetypefinder.mo share/locale/bg/LC_MESSAGES/kstart.mo share/locale/bg/LC_MESSAGES/plasma-open-settings.mo share/locale/bn/LC_MESSAGES/kcm_filetypes.mo share/locale/bn/LC_MESSAGES/kstart.mo share/locale/bn_IN/LC_MESSAGES/kcm_filetypes.mo share/locale/bn_IN/LC_MESSAGES/kdesu.mo share/locale/bn_IN/LC_MESSAGES/kioclient.mo share/locale/bn_IN/LC_MESSAGES/kmimetypefinder.mo share/locale/bn_IN/LC_MESSAGES/kstart.mo share/locale/br/LC_MESSAGES/kcm_filetypes.mo share/locale/br/LC_MESSAGES/kdesu.mo share/locale/br/LC_MESSAGES/kstart.mo share/locale/bs/LC_MESSAGES/kcm_filetypes.mo share/locale/bs/LC_MESSAGES/kdesu.mo share/locale/bs/LC_MESSAGES/kioclient.mo share/locale/bs/LC_MESSAGES/kmimetypefinder.mo share/locale/bs/LC_MESSAGES/kstart.mo share/locale/ca/LC_MESSAGES/kbroadcastnotification.mo share/locale/ca/LC_MESSAGES/kcm_filetypes.mo share/locale/ca/LC_MESSAGES/kde-inhibit.mo share/locale/ca/LC_MESSAGES/kdesu.mo share/locale/ca/LC_MESSAGES/kioclient.mo share/locale/ca/LC_MESSAGES/kmimetypefinder.mo share/locale/ca/LC_MESSAGES/kstart.mo share/locale/ca/LC_MESSAGES/plasma-open-settings.mo share/locale/ca@valencia/LC_MESSAGES/kbroadcastnotification.mo share/locale/ca@valencia/LC_MESSAGES/kcm_filetypes.mo share/locale/ca@valencia/LC_MESSAGES/kde-inhibit.mo share/locale/ca@valencia/LC_MESSAGES/kdesu.mo share/locale/ca@valencia/LC_MESSAGES/kioclient.mo share/locale/ca@valencia/LC_MESSAGES/kmimetypefinder.mo share/locale/ca@valencia/LC_MESSAGES/kstart.mo share/locale/ca@valencia/LC_MESSAGES/plasma-open-settings.mo share/locale/cs/LC_MESSAGES/kbroadcastnotification.mo share/locale/cs/LC_MESSAGES/kcm_filetypes.mo share/locale/cs/LC_MESSAGES/kde-inhibit.mo share/locale/cs/LC_MESSAGES/kdesu.mo share/locale/cs/LC_MESSAGES/kioclient.mo share/locale/cs/LC_MESSAGES/kmimetypefinder.mo share/locale/cs/LC_MESSAGES/kstart.mo share/locale/cs/LC_MESSAGES/plasma-open-settings.mo share/locale/csb/LC_MESSAGES/kcm_filetypes.mo share/locale/csb/LC_MESSAGES/kdesu.mo share/locale/csb/LC_MESSAGES/kioclient.mo share/locale/csb/LC_MESSAGES/kmimetypefinder.mo share/locale/csb/LC_MESSAGES/kstart.mo share/locale/cy/LC_MESSAGES/kcm_filetypes.mo share/locale/cy/LC_MESSAGES/kdesu.mo share/locale/cy/LC_MESSAGES/kstart.mo share/locale/da/LC_MESSAGES/kbroadcastnotification.mo share/locale/da/LC_MESSAGES/kcm_filetypes.mo share/locale/da/LC_MESSAGES/kdesu.mo share/locale/da/LC_MESSAGES/kioclient.mo share/locale/da/LC_MESSAGES/kmimetypefinder.mo share/locale/da/LC_MESSAGES/kstart.mo share/locale/de/LC_MESSAGES/kbroadcastnotification.mo share/locale/de/LC_MESSAGES/kcm_filetypes.mo share/locale/de/LC_MESSAGES/kde-inhibit.mo share/locale/de/LC_MESSAGES/kdesu.mo share/locale/de/LC_MESSAGES/kioclient.mo share/locale/de/LC_MESSAGES/kmimetypefinder.mo share/locale/de/LC_MESSAGES/kstart.mo share/locale/de/LC_MESSAGES/plasma-open-settings.mo share/locale/el/LC_MESSAGES/kbroadcastnotification.mo share/locale/el/LC_MESSAGES/kcm_filetypes.mo share/locale/el/LC_MESSAGES/kdesu.mo share/locale/el/LC_MESSAGES/kioclient.mo share/locale/el/LC_MESSAGES/kmimetypefinder.mo share/locale/el/LC_MESSAGES/kstart.mo share/locale/el/LC_MESSAGES/plasma-open-settings.mo share/locale/en_GB/LC_MESSAGES/kbroadcastnotification.mo share/locale/en_GB/LC_MESSAGES/kcm_filetypes.mo share/locale/en_GB/LC_MESSAGES/kde-inhibit.mo share/locale/en_GB/LC_MESSAGES/kdesu.mo share/locale/en_GB/LC_MESSAGES/kioclient.mo share/locale/en_GB/LC_MESSAGES/kmimetypefinder.mo share/locale/en_GB/LC_MESSAGES/kstart.mo share/locale/en_GB/LC_MESSAGES/plasma-open-settings.mo share/locale/eo/LC_MESSAGES/kbroadcastnotification.mo share/locale/eo/LC_MESSAGES/kcm_filetypes.mo share/locale/eo/LC_MESSAGES/kde-inhibit.mo share/locale/eo/LC_MESSAGES/kdesu.mo share/locale/eo/LC_MESSAGES/kioclient.mo share/locale/eo/LC_MESSAGES/kmimetypefinder.mo share/locale/eo/LC_MESSAGES/kstart.mo share/locale/eo/LC_MESSAGES/plasma-open-settings.mo share/locale/es/LC_MESSAGES/kbroadcastnotification.mo share/locale/es/LC_MESSAGES/kcm_filetypes.mo share/locale/es/LC_MESSAGES/kde-inhibit.mo share/locale/es/LC_MESSAGES/kdesu.mo share/locale/es/LC_MESSAGES/kioclient.mo share/locale/es/LC_MESSAGES/kmimetypefinder.mo share/locale/es/LC_MESSAGES/kstart.mo share/locale/es/LC_MESSAGES/plasma-open-settings.mo share/locale/et/LC_MESSAGES/kbroadcastnotification.mo share/locale/et/LC_MESSAGES/kcm_filetypes.mo share/locale/et/LC_MESSAGES/kdesu.mo share/locale/et/LC_MESSAGES/kioclient.mo share/locale/et/LC_MESSAGES/kmimetypefinder.mo share/locale/et/LC_MESSAGES/kstart.mo share/locale/eu/LC_MESSAGES/kbroadcastnotification.mo share/locale/eu/LC_MESSAGES/kcm_filetypes.mo share/locale/eu/LC_MESSAGES/kde-inhibit.mo share/locale/eu/LC_MESSAGES/kdesu.mo share/locale/eu/LC_MESSAGES/kioclient.mo share/locale/eu/LC_MESSAGES/kmimetypefinder.mo share/locale/eu/LC_MESSAGES/kstart.mo share/locale/eu/LC_MESSAGES/plasma-open-settings.mo share/locale/fa/LC_MESSAGES/kcm_filetypes.mo share/locale/fa/LC_MESSAGES/kdesu.mo share/locale/fa/LC_MESSAGES/kioclient.mo share/locale/fa/LC_MESSAGES/kmimetypefinder.mo share/locale/fa/LC_MESSAGES/kstart.mo share/locale/fi/LC_MESSAGES/kbroadcastnotification.mo share/locale/fi/LC_MESSAGES/kcm_filetypes.mo share/locale/fi/LC_MESSAGES/kde-inhibit.mo share/locale/fi/LC_MESSAGES/kdesu.mo share/locale/fi/LC_MESSAGES/kioclient.mo share/locale/fi/LC_MESSAGES/kmimetypefinder.mo share/locale/fi/LC_MESSAGES/kstart.mo share/locale/fi/LC_MESSAGES/plasma-open-settings.mo share/locale/fr/LC_MESSAGES/kbroadcastnotification.mo share/locale/fr/LC_MESSAGES/kcm_filetypes.mo share/locale/fr/LC_MESSAGES/kde-inhibit.mo share/locale/fr/LC_MESSAGES/kdesu.mo share/locale/fr/LC_MESSAGES/kioclient.mo share/locale/fr/LC_MESSAGES/kmimetypefinder.mo share/locale/fr/LC_MESSAGES/kstart.mo share/locale/fr/LC_MESSAGES/plasma-open-settings.mo share/locale/fy/LC_MESSAGES/kcm_filetypes.mo share/locale/fy/LC_MESSAGES/kdesu.mo share/locale/fy/LC_MESSAGES/kioclient.mo share/locale/fy/LC_MESSAGES/kmimetypefinder.mo share/locale/fy/LC_MESSAGES/kstart.mo share/locale/ga/LC_MESSAGES/kbroadcastnotification.mo share/locale/ga/LC_MESSAGES/kcm_filetypes.mo share/locale/ga/LC_MESSAGES/kde-inhibit.mo share/locale/ga/LC_MESSAGES/kdesu.mo share/locale/ga/LC_MESSAGES/kioclient.mo share/locale/ga/LC_MESSAGES/kmimetypefinder.mo share/locale/ga/LC_MESSAGES/kstart.mo share/locale/ga/LC_MESSAGES/plasma-open-settings.mo share/locale/gl/LC_MESSAGES/kbroadcastnotification.mo share/locale/gl/LC_MESSAGES/kcm_filetypes.mo share/locale/gl/LC_MESSAGES/kde-inhibit.mo share/locale/gl/LC_MESSAGES/kdesu.mo share/locale/gl/LC_MESSAGES/kioclient.mo share/locale/gl/LC_MESSAGES/kmimetypefinder.mo share/locale/gl/LC_MESSAGES/kstart.mo share/locale/gl/LC_MESSAGES/plasma-open-settings.mo share/locale/gu/LC_MESSAGES/kcm_filetypes.mo share/locale/gu/LC_MESSAGES/kdesu.mo share/locale/gu/LC_MESSAGES/kioclient.mo share/locale/gu/LC_MESSAGES/kmimetypefinder.mo share/locale/gu/LC_MESSAGES/kstart.mo share/locale/he/LC_MESSAGES/kbroadcastnotification.mo share/locale/he/LC_MESSAGES/kcm_filetypes.mo share/locale/he/LC_MESSAGES/kde-inhibit.mo share/locale/he/LC_MESSAGES/kdesu.mo share/locale/he/LC_MESSAGES/kioclient.mo share/locale/he/LC_MESSAGES/kmimetypefinder.mo share/locale/he/LC_MESSAGES/kstart.mo share/locale/he/LC_MESSAGES/plasma-open-settings.mo share/locale/hi/LC_MESSAGES/kbroadcastnotification.mo share/locale/hi/LC_MESSAGES/kcm_filetypes.mo share/locale/hi/LC_MESSAGES/kde-inhibit.mo share/locale/hi/LC_MESSAGES/kdesu.mo share/locale/hi/LC_MESSAGES/kioclient.mo share/locale/hi/LC_MESSAGES/kmimetypefinder.mo share/locale/hi/LC_MESSAGES/kstart.mo share/locale/hi/LC_MESSAGES/plasma-open-settings.mo share/locale/hne/LC_MESSAGES/kcm_filetypes.mo share/locale/hne/LC_MESSAGES/kdesu.mo share/locale/hne/LC_MESSAGES/kioclient.mo share/locale/hne/LC_MESSAGES/kmimetypefinder.mo share/locale/hne/LC_MESSAGES/kstart.mo share/locale/hr/LC_MESSAGES/kcm_filetypes.mo share/locale/hr/LC_MESSAGES/kdesu.mo share/locale/hr/LC_MESSAGES/kioclient.mo share/locale/hr/LC_MESSAGES/kmimetypefinder.mo share/locale/hr/LC_MESSAGES/kstart.mo share/locale/hsb/LC_MESSAGES/kcm_filetypes.mo share/locale/hsb/LC_MESSAGES/kdesu.mo share/locale/hsb/LC_MESSAGES/kioclient.mo share/locale/hsb/LC_MESSAGES/kmimetypefinder.mo share/locale/hsb/LC_MESSAGES/kstart.mo share/locale/hu/LC_MESSAGES/kbroadcastnotification.mo share/locale/hu/LC_MESSAGES/kcm_filetypes.mo share/locale/hu/LC_MESSAGES/kde-inhibit.mo share/locale/hu/LC_MESSAGES/kdesu.mo share/locale/hu/LC_MESSAGES/kioclient.mo share/locale/hu/LC_MESSAGES/kmimetypefinder.mo share/locale/hu/LC_MESSAGES/kstart.mo share/locale/hu/LC_MESSAGES/plasma-open-settings.mo share/locale/ia/LC_MESSAGES/kbroadcastnotification.mo share/locale/ia/LC_MESSAGES/kcm_filetypes.mo share/locale/ia/LC_MESSAGES/kde-inhibit.mo share/locale/ia/LC_MESSAGES/kdesu.mo share/locale/ia/LC_MESSAGES/kioclient.mo share/locale/ia/LC_MESSAGES/kmimetypefinder.mo share/locale/ia/LC_MESSAGES/kstart.mo share/locale/ia/LC_MESSAGES/plasma-open-settings.mo share/locale/id/LC_MESSAGES/kbroadcastnotification.mo share/locale/id/LC_MESSAGES/kcm_filetypes.mo share/locale/id/LC_MESSAGES/kdesu.mo share/locale/id/LC_MESSAGES/kioclient.mo share/locale/id/LC_MESSAGES/kmimetypefinder.mo share/locale/id/LC_MESSAGES/kstart.mo -share/locale/is/LC_MESSAGES/kbroadcastnotification.mo share/locale/is/LC_MESSAGES/kcm_filetypes.mo -share/locale/is/LC_MESSAGES/kde-inhibit.mo share/locale/is/LC_MESSAGES/kdesu.mo share/locale/is/LC_MESSAGES/kioclient.mo share/locale/is/LC_MESSAGES/kmimetypefinder.mo share/locale/is/LC_MESSAGES/kstart.mo -share/locale/is/LC_MESSAGES/plasma-open-settings.mo share/locale/it/LC_MESSAGES/kbroadcastnotification.mo share/locale/it/LC_MESSAGES/kcm_filetypes.mo share/locale/it/LC_MESSAGES/kde-inhibit.mo share/locale/it/LC_MESSAGES/kdesu.mo share/locale/it/LC_MESSAGES/kioclient.mo share/locale/it/LC_MESSAGES/kmimetypefinder.mo share/locale/it/LC_MESSAGES/kstart.mo share/locale/it/LC_MESSAGES/plasma-open-settings.mo share/locale/ja/LC_MESSAGES/kbroadcastnotification.mo share/locale/ja/LC_MESSAGES/kcm_filetypes.mo share/locale/ja/LC_MESSAGES/kde-inhibit.mo share/locale/ja/LC_MESSAGES/kdesu.mo share/locale/ja/LC_MESSAGES/kioclient.mo share/locale/ja/LC_MESSAGES/kmimetypefinder.mo share/locale/ja/LC_MESSAGES/kstart.mo share/locale/ja/LC_MESSAGES/plasma-open-settings.mo share/locale/ka/LC_MESSAGES/kbroadcastnotification.mo share/locale/ka/LC_MESSAGES/kcm_filetypes.mo share/locale/ka/LC_MESSAGES/kde-inhibit.mo share/locale/ka/LC_MESSAGES/kdesu.mo share/locale/ka/LC_MESSAGES/kioclient.mo share/locale/ka/LC_MESSAGES/kmimetypefinder.mo share/locale/ka/LC_MESSAGES/kstart.mo share/locale/ka/LC_MESSAGES/plasma-open-settings.mo share/locale/kk/LC_MESSAGES/kcm_filetypes.mo share/locale/kk/LC_MESSAGES/kdesu.mo share/locale/kk/LC_MESSAGES/kioclient.mo share/locale/kk/LC_MESSAGES/kmimetypefinder.mo share/locale/kk/LC_MESSAGES/kstart.mo share/locale/km/LC_MESSAGES/kcm_filetypes.mo share/locale/km/LC_MESSAGES/kdesu.mo share/locale/km/LC_MESSAGES/kioclient.mo share/locale/km/LC_MESSAGES/kmimetypefinder.mo share/locale/km/LC_MESSAGES/kstart.mo share/locale/kn/LC_MESSAGES/kcm_filetypes.mo share/locale/kn/LC_MESSAGES/kdesu.mo share/locale/kn/LC_MESSAGES/kioclient.mo share/locale/kn/LC_MESSAGES/kmimetypefinder.mo share/locale/kn/LC_MESSAGES/kstart.mo share/locale/ko/LC_MESSAGES/kbroadcastnotification.mo share/locale/ko/LC_MESSAGES/kcm_filetypes.mo share/locale/ko/LC_MESSAGES/kde-inhibit.mo share/locale/ko/LC_MESSAGES/kdesu.mo share/locale/ko/LC_MESSAGES/kioclient.mo share/locale/ko/LC_MESSAGES/kmimetypefinder.mo share/locale/ko/LC_MESSAGES/kstart.mo share/locale/ko/LC_MESSAGES/plasma-open-settings.mo share/locale/ku/LC_MESSAGES/kcm_filetypes.mo share/locale/ku/LC_MESSAGES/kdesu.mo share/locale/ku/LC_MESSAGES/kioclient.mo share/locale/ku/LC_MESSAGES/kmimetypefinder.mo share/locale/ku/LC_MESSAGES/kstart.mo share/locale/lt/LC_MESSAGES/kbroadcastnotification.mo share/locale/lt/LC_MESSAGES/kcm_filetypes.mo share/locale/lt/LC_MESSAGES/kde-inhibit.mo share/locale/lt/LC_MESSAGES/kdesu.mo share/locale/lt/LC_MESSAGES/kioclient.mo share/locale/lt/LC_MESSAGES/kmimetypefinder.mo share/locale/lt/LC_MESSAGES/kstart.mo share/locale/lt/LC_MESSAGES/plasma-open-settings.mo share/locale/lv/LC_MESSAGES/kbroadcastnotification.mo share/locale/lv/LC_MESSAGES/kcm_filetypes.mo share/locale/lv/LC_MESSAGES/kde-inhibit.mo share/locale/lv/LC_MESSAGES/kdesu.mo share/locale/lv/LC_MESSAGES/kioclient.mo share/locale/lv/LC_MESSAGES/kmimetypefinder.mo share/locale/lv/LC_MESSAGES/kstart.mo share/locale/lv/LC_MESSAGES/plasma-open-settings.mo share/locale/mai/LC_MESSAGES/kcm_filetypes.mo share/locale/mai/LC_MESSAGES/kdesu.mo share/locale/mai/LC_MESSAGES/kioclient.mo share/locale/mai/LC_MESSAGES/kmimetypefinder.mo share/locale/mai/LC_MESSAGES/kstart.mo share/locale/mk/LC_MESSAGES/kcm_filetypes.mo share/locale/mk/LC_MESSAGES/kdesu.mo share/locale/mk/LC_MESSAGES/kioclient.mo share/locale/mk/LC_MESSAGES/kmimetypefinder.mo share/locale/mk/LC_MESSAGES/kstart.mo share/locale/ml/LC_MESSAGES/kbroadcastnotification.mo share/locale/ml/LC_MESSAGES/kcm_filetypes.mo share/locale/ml/LC_MESSAGES/kdesu.mo share/locale/ml/LC_MESSAGES/kioclient.mo share/locale/ml/LC_MESSAGES/kmimetypefinder.mo share/locale/ml/LC_MESSAGES/kstart.mo share/locale/mr/LC_MESSAGES/kcm_filetypes.mo share/locale/mr/LC_MESSAGES/kdesu.mo share/locale/mr/LC_MESSAGES/kioclient.mo share/locale/mr/LC_MESSAGES/kmimetypefinder.mo share/locale/mr/LC_MESSAGES/kstart.mo share/locale/ms/LC_MESSAGES/kcm_filetypes.mo share/locale/ms/LC_MESSAGES/kdesu.mo share/locale/ms/LC_MESSAGES/kioclient.mo share/locale/ms/LC_MESSAGES/kmimetypefinder.mo share/locale/ms/LC_MESSAGES/kstart.mo share/locale/nb/LC_MESSAGES/kcm_filetypes.mo share/locale/nb/LC_MESSAGES/kdesu.mo share/locale/nb/LC_MESSAGES/kioclient.mo share/locale/nb/LC_MESSAGES/kmimetypefinder.mo share/locale/nb/LC_MESSAGES/kstart.mo share/locale/nds/LC_MESSAGES/kcm_filetypes.mo share/locale/nds/LC_MESSAGES/kdesu.mo share/locale/nds/LC_MESSAGES/kioclient.mo share/locale/nds/LC_MESSAGES/kmimetypefinder.mo share/locale/nds/LC_MESSAGES/kstart.mo share/locale/ne/LC_MESSAGES/kcm_filetypes.mo share/locale/ne/LC_MESSAGES/kdesu.mo share/locale/ne/LC_MESSAGES/kioclient.mo share/locale/ne/LC_MESSAGES/kmimetypefinder.mo share/locale/ne/LC_MESSAGES/kstart.mo share/locale/nl/LC_MESSAGES/kbroadcastnotification.mo share/locale/nl/LC_MESSAGES/kcm_filetypes.mo share/locale/nl/LC_MESSAGES/kde-inhibit.mo share/locale/nl/LC_MESSAGES/kdesu.mo share/locale/nl/LC_MESSAGES/kioclient.mo share/locale/nl/LC_MESSAGES/kmimetypefinder.mo share/locale/nl/LC_MESSAGES/kstart.mo share/locale/nl/LC_MESSAGES/plasma-open-settings.mo share/locale/nn/LC_MESSAGES/kbroadcastnotification.mo share/locale/nn/LC_MESSAGES/kcm_filetypes.mo share/locale/nn/LC_MESSAGES/kde-inhibit.mo share/locale/nn/LC_MESSAGES/kdesu.mo share/locale/nn/LC_MESSAGES/kioclient.mo share/locale/nn/LC_MESSAGES/kmimetypefinder.mo share/locale/nn/LC_MESSAGES/kstart.mo share/locale/nn/LC_MESSAGES/plasma-open-settings.mo share/locale/oc/LC_MESSAGES/kcm_filetypes.mo share/locale/oc/LC_MESSAGES/kdesu.mo share/locale/oc/LC_MESSAGES/kioclient.mo share/locale/oc/LC_MESSAGES/kmimetypefinder.mo share/locale/oc/LC_MESSAGES/kstart.mo share/locale/or/LC_MESSAGES/kdesu.mo share/locale/or/LC_MESSAGES/kioclient.mo share/locale/or/LC_MESSAGES/kmimetypefinder.mo share/locale/or/LC_MESSAGES/kstart.mo share/locale/pa/LC_MESSAGES/kcm_filetypes.mo share/locale/pa/LC_MESSAGES/kdesu.mo share/locale/pa/LC_MESSAGES/kioclient.mo share/locale/pa/LC_MESSAGES/kmimetypefinder.mo share/locale/pa/LC_MESSAGES/kstart.mo share/locale/pl/LC_MESSAGES/kbroadcastnotification.mo share/locale/pl/LC_MESSAGES/kcm_filetypes.mo share/locale/pl/LC_MESSAGES/kde-inhibit.mo share/locale/pl/LC_MESSAGES/kdesu.mo share/locale/pl/LC_MESSAGES/kioclient.mo share/locale/pl/LC_MESSAGES/kmimetypefinder.mo share/locale/pl/LC_MESSAGES/kstart.mo share/locale/pl/LC_MESSAGES/plasma-open-settings.mo share/locale/pt/LC_MESSAGES/kbroadcastnotification.mo share/locale/pt/LC_MESSAGES/kcm_filetypes.mo share/locale/pt/LC_MESSAGES/kdesu.mo share/locale/pt/LC_MESSAGES/kioclient.mo share/locale/pt/LC_MESSAGES/kmimetypefinder.mo share/locale/pt/LC_MESSAGES/kstart.mo share/locale/pt/LC_MESSAGES/plasma-open-settings.mo share/locale/pt_BR/LC_MESSAGES/kbroadcastnotification.mo share/locale/pt_BR/LC_MESSAGES/kcm_filetypes.mo share/locale/pt_BR/LC_MESSAGES/kde-inhibit.mo share/locale/pt_BR/LC_MESSAGES/kdesu.mo share/locale/pt_BR/LC_MESSAGES/kioclient.mo share/locale/pt_BR/LC_MESSAGES/kmimetypefinder.mo share/locale/pt_BR/LC_MESSAGES/kstart.mo share/locale/pt_BR/LC_MESSAGES/plasma-open-settings.mo share/locale/ro/LC_MESSAGES/kbroadcastnotification.mo share/locale/ro/LC_MESSAGES/kcm_filetypes.mo share/locale/ro/LC_MESSAGES/kdesu.mo share/locale/ro/LC_MESSAGES/kioclient.mo share/locale/ro/LC_MESSAGES/kmimetypefinder.mo share/locale/ro/LC_MESSAGES/kstart.mo share/locale/ro/LC_MESSAGES/plasma-open-settings.mo share/locale/ru/LC_MESSAGES/kbroadcastnotification.mo share/locale/ru/LC_MESSAGES/kcm_filetypes.mo share/locale/ru/LC_MESSAGES/kde-inhibit.mo share/locale/ru/LC_MESSAGES/kdesu.mo share/locale/ru/LC_MESSAGES/kioclient.mo share/locale/ru/LC_MESSAGES/kmimetypefinder.mo share/locale/ru/LC_MESSAGES/kstart.mo share/locale/ru/LC_MESSAGES/plasma-open-settings.mo share/locale/sa/LC_MESSAGES/kbroadcastnotification.mo share/locale/sa/LC_MESSAGES/kcm_filetypes.mo share/locale/sa/LC_MESSAGES/kde-inhibit.mo share/locale/sa/LC_MESSAGES/kdesu.mo share/locale/sa/LC_MESSAGES/kioclient.mo share/locale/sa/LC_MESSAGES/kmimetypefinder.mo share/locale/sa/LC_MESSAGES/kstart.mo share/locale/sa/LC_MESSAGES/plasma-open-settings.mo share/locale/se/LC_MESSAGES/kcm_filetypes.mo share/locale/se/LC_MESSAGES/kdesu.mo share/locale/se/LC_MESSAGES/kioclient.mo share/locale/se/LC_MESSAGES/kmimetypefinder.mo share/locale/se/LC_MESSAGES/kstart.mo share/locale/si/LC_MESSAGES/kcm_filetypes.mo share/locale/si/LC_MESSAGES/kdesu.mo share/locale/si/LC_MESSAGES/kioclient.mo share/locale/si/LC_MESSAGES/kmimetypefinder.mo share/locale/si/LC_MESSAGES/kstart.mo share/locale/sk/LC_MESSAGES/kbroadcastnotification.mo share/locale/sk/LC_MESSAGES/kcm_filetypes.mo share/locale/sk/LC_MESSAGES/kde-inhibit.mo share/locale/sk/LC_MESSAGES/kdesu.mo share/locale/sk/LC_MESSAGES/kioclient.mo share/locale/sk/LC_MESSAGES/kmimetypefinder.mo share/locale/sk/LC_MESSAGES/kstart.mo share/locale/sk/LC_MESSAGES/plasma-open-settings.mo share/locale/sl/LC_MESSAGES/kbroadcastnotification.mo share/locale/sl/LC_MESSAGES/kcm_filetypes.mo share/locale/sl/LC_MESSAGES/kde-inhibit.mo share/locale/sl/LC_MESSAGES/kdesu.mo share/locale/sl/LC_MESSAGES/kioclient.mo share/locale/sl/LC_MESSAGES/kmimetypefinder.mo share/locale/sl/LC_MESSAGES/kstart.mo share/locale/sl/LC_MESSAGES/plasma-open-settings.mo share/locale/sq/LC_MESSAGES/kcm_filetypes.mo share/locale/sq/LC_MESSAGES/kdesu.mo share/locale/sq/LC_MESSAGES/kioclient.mo share/locale/sq/LC_MESSAGES/kmimetypefinder.mo share/locale/sq/LC_MESSAGES/kstart.mo share/locale/sr/LC_MESSAGES/kbroadcastnotification.mo share/locale/sr/LC_MESSAGES/kcm_filetypes.mo share/locale/sr/LC_MESSAGES/kdesu.mo share/locale/sr/LC_MESSAGES/kioclient.mo share/locale/sr/LC_MESSAGES/kmimetypefinder.mo share/locale/sr/LC_MESSAGES/kstart.mo share/locale/sr@ijekavian/LC_MESSAGES/kbroadcastnotification.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_filetypes.mo share/locale/sr@ijekavian/LC_MESSAGES/kdesu.mo share/locale/sr@ijekavian/LC_MESSAGES/kioclient.mo share/locale/sr@ijekavian/LC_MESSAGES/kmimetypefinder.mo share/locale/sr@ijekavian/LC_MESSAGES/kstart.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kbroadcastnotification.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_filetypes.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kdesu.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kioclient.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kmimetypefinder.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kstart.mo share/locale/sr@latin/LC_MESSAGES/kbroadcastnotification.mo share/locale/sr@latin/LC_MESSAGES/kcm_filetypes.mo share/locale/sr@latin/LC_MESSAGES/kdesu.mo share/locale/sr@latin/LC_MESSAGES/kioclient.mo share/locale/sr@latin/LC_MESSAGES/kmimetypefinder.mo share/locale/sr@latin/LC_MESSAGES/kstart.mo share/locale/sv/LC_MESSAGES/kbroadcastnotification.mo share/locale/sv/LC_MESSAGES/kcm_filetypes.mo share/locale/sv/LC_MESSAGES/kde-inhibit.mo share/locale/sv/LC_MESSAGES/kdesu.mo share/locale/sv/LC_MESSAGES/kioclient.mo share/locale/sv/LC_MESSAGES/kmimetypefinder.mo share/locale/sv/LC_MESSAGES/kstart.mo share/locale/sv/LC_MESSAGES/plasma-open-settings.mo share/locale/ta/LC_MESSAGES/kbroadcastnotification.mo share/locale/ta/LC_MESSAGES/kcm_filetypes.mo share/locale/ta/LC_MESSAGES/kde-inhibit.mo share/locale/ta/LC_MESSAGES/kdesu.mo share/locale/ta/LC_MESSAGES/kioclient.mo share/locale/ta/LC_MESSAGES/kmimetypefinder.mo share/locale/ta/LC_MESSAGES/kstart.mo share/locale/ta/LC_MESSAGES/plasma-open-settings.mo share/locale/te/LC_MESSAGES/kcm_filetypes.mo share/locale/te/LC_MESSAGES/kdesu.mo share/locale/te/LC_MESSAGES/kioclient.mo share/locale/te/LC_MESSAGES/kmimetypefinder.mo share/locale/te/LC_MESSAGES/kstart.mo share/locale/tg/LC_MESSAGES/kcm_filetypes.mo share/locale/tg/LC_MESSAGES/kdesu.mo share/locale/tg/LC_MESSAGES/kioclient.mo share/locale/tg/LC_MESSAGES/kmimetypefinder.mo share/locale/tg/LC_MESSAGES/kstart.mo share/locale/th/LC_MESSAGES/kcm_filetypes.mo share/locale/th/LC_MESSAGES/kdesu.mo share/locale/th/LC_MESSAGES/kioclient.mo share/locale/th/LC_MESSAGES/kmimetypefinder.mo share/locale/th/LC_MESSAGES/kstart.mo share/locale/tr/LC_MESSAGES/kbroadcastnotification.mo share/locale/tr/LC_MESSAGES/kcm_filetypes.mo share/locale/tr/LC_MESSAGES/kde-inhibit.mo share/locale/tr/LC_MESSAGES/kdesu.mo share/locale/tr/LC_MESSAGES/kioclient.mo share/locale/tr/LC_MESSAGES/kmimetypefinder.mo share/locale/tr/LC_MESSAGES/kstart.mo share/locale/tr/LC_MESSAGES/plasma-open-settings.mo share/locale/ug/LC_MESSAGES/kcm_filetypes.mo share/locale/ug/LC_MESSAGES/kdesu.mo share/locale/ug/LC_MESSAGES/kioclient.mo share/locale/ug/LC_MESSAGES/kmimetypefinder.mo share/locale/ug/LC_MESSAGES/kstart.mo share/locale/uk/LC_MESSAGES/kbroadcastnotification.mo share/locale/uk/LC_MESSAGES/kcm_filetypes.mo share/locale/uk/LC_MESSAGES/kde-inhibit.mo share/locale/uk/LC_MESSAGES/kdesu.mo share/locale/uk/LC_MESSAGES/kioclient.mo share/locale/uk/LC_MESSAGES/kmimetypefinder.mo share/locale/uk/LC_MESSAGES/kstart.mo share/locale/uk/LC_MESSAGES/plasma-open-settings.mo share/locale/uz/LC_MESSAGES/kcm_filetypes.mo share/locale/uz/LC_MESSAGES/kdesu.mo share/locale/uz/LC_MESSAGES/kstart.mo share/locale/uz@cyrillic/LC_MESSAGES/kcm_filetypes.mo share/locale/uz@cyrillic/LC_MESSAGES/kdesu.mo share/locale/uz@cyrillic/LC_MESSAGES/kstart.mo share/locale/vi/LC_MESSAGES/kbroadcastnotification.mo share/locale/vi/LC_MESSAGES/kcm_filetypes.mo share/locale/vi/LC_MESSAGES/kdesu.mo share/locale/vi/LC_MESSAGES/kioclient.mo share/locale/vi/LC_MESSAGES/kmimetypefinder.mo share/locale/vi/LC_MESSAGES/kstart.mo share/locale/vi/LC_MESSAGES/plasma-open-settings.mo share/locale/wa/LC_MESSAGES/kcm_filetypes.mo share/locale/wa/LC_MESSAGES/kdesu.mo share/locale/wa/LC_MESSAGES/kioclient.mo share/locale/wa/LC_MESSAGES/kmimetypefinder.mo share/locale/wa/LC_MESSAGES/kstart.mo share/locale/xh/LC_MESSAGES/kcm_filetypes.mo share/locale/xh/LC_MESSAGES/kdesu.mo share/locale/xh/LC_MESSAGES/kstart.mo share/locale/zh_CN/LC_MESSAGES/kbroadcastnotification.mo share/locale/zh_CN/LC_MESSAGES/kcm_filetypes.mo share/locale/zh_CN/LC_MESSAGES/kde-inhibit.mo share/locale/zh_CN/LC_MESSAGES/kdesu.mo share/locale/zh_CN/LC_MESSAGES/kioclient.mo share/locale/zh_CN/LC_MESSAGES/kmimetypefinder.mo share/locale/zh_CN/LC_MESSAGES/kstart.mo share/locale/zh_CN/LC_MESSAGES/plasma-open-settings.mo share/locale/zh_TW/LC_MESSAGES/kbroadcastnotification.mo share/locale/zh_TW/LC_MESSAGES/kcm_filetypes.mo share/locale/zh_TW/LC_MESSAGES/kde-inhibit.mo share/locale/zh_TW/LC_MESSAGES/kdesu.mo share/locale/zh_TW/LC_MESSAGES/kioclient.mo share/locale/zh_TW/LC_MESSAGES/kmimetypefinder.mo share/locale/zh_TW/LC_MESSAGES/kstart.mo share/locale/zh_TW/LC_MESSAGES/plasma-open-settings.mo share/man/ca/man1/kdesu.1.gz share/man/de/man1/kdesu.1.gz share/man/es/man1/kdesu.1.gz share/man/et/man1/kdesu.1.gz share/man/fr/man1/kdesu.1.gz share/man/id/man1/kdesu.1.gz share/man/it/man1/kdesu.1.gz share/man/man1/kdesu.1.gz share/man/nb/man1/kdesu.1.gz share/man/nl/man1/kdesu.1.gz share/man/pt/man1/kdesu.1.gz share/man/pt_BR/man1/kdesu.1.gz share/man/ru/man1/kdesu.1.gz share/man/sl/man1/kdesu.1.gz share/man/sr/man1/kdesu.1.gz share/man/sr@latin/man1/kdesu.1.gz share/man/sv/man1/kdesu.1.gz share/man/tr/man1/kdesu.1.gz share/man/uk/man1/kdesu.1.gz share/zsh/site-functions/_kde-inhibit diff --git a/sysutils/plasma6-kinfocenter/Makefile b/sysutils/plasma6-kinfocenter/Makefile index 36fd23d603a6..0d9260b863eb 100644 --- a/sysutils/plasma6-kinfocenter/Makefile +++ b/sysutils/plasma6-kinfocenter/Makefile @@ -1,46 +1,46 @@ PORTNAME= kinfocenter DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= sysutils kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= View information about your computer's hardware BUILD_DEPENDS= ${LOCALBASE}/include/vulkan/vulkan.h:graphics/vulkan-headers -RUN_DEPENDS= clinfo:devel/clinfo \ +RUN_DEPENDS= aha:textproc/aha \ + clinfo:devel/clinfo \ glxinfo:graphics/mesa-demos \ hwdata>0:misc/hwdata \ lsblk:sysutils/lsblk \ lscpu:sysutils/lscpu \ - pipewire:multimedia/pipewire \ + pactl:audio/pulseaudio \ vulkaninfo:graphics/vulkan-tools \ wayland-info:graphics/wayland-utils \ xdpyinfo:x11/xdpyinfo USES= cmake gettext gl kde:6 pkgconfig qt:6 tar:xz USE_GL= gl opengl USE_KDE= auth colorscheme completion config configwidgets coreaddons \ doctools i18n jobwidgets kcmutils kio package service solid \ widgetsaddons \ ecm:build \ kirigami2:run systemsettings:run USE_QT= base declarative .include .if ${ARCH} == aarch64 || ${ARCH} == amd64 || ${ARCH} == i386 RUN_DEPENDS+= dmidecode:sysutils/dmidecode .endif post-patch: ${REINPLACE_CMD} '/usb.ids/s,/usr,${LOCALBASE},' ${WRKSRC}/kcms/usbview/usbdb.cpp # install freebsd-logo and distrorc post-install: ${MKDIR} ${STAGEDIR}/${DATADIR}/images ${INSTALL_DATA} ${FILESDIR}/freebsd_logo.svg ${STAGEDIR}/${DATADIR}/images/ ${MKDIR} ${STAGEDIR}/${PREFIX}/etc/xdg ${INSTALL_DATA} ${FILESDIR}/kcm-about-distrorc ${STAGEDIR}/${PREFIX}/etc/xdg/ ${REINPLACE_CMD} -i "" -e "s#%%DATADIR%%#${DATADIR}#" ${STAGEDIR}/${PREFIX}/etc/xdg/kcm-about-distrorc .include diff --git a/sysutils/plasma6-kinfocenter/distinfo b/sysutils/plasma6-kinfocenter/distinfo index 854c9523a468..63f58941801d 100644 --- a/sysutils/plasma6-kinfocenter/distinfo +++ b/sysutils/plasma6-kinfocenter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1768328294 -SHA256 (KDE/plasma/6.5.5/kinfocenter-6.5.5.tar.xz) = 567b8f9f4c806414cf417fd59aceaa37485696bd6b655aea01fffd6e2bd5b81c -SIZE (KDE/plasma/6.5.5/kinfocenter-6.5.5.tar.xz) = 761504 +TIMESTAMP = 1771162211 +SHA256 (KDE/plasma/6.6.0/kinfocenter-6.6.0.tar.xz) = 6bdb8b6ab4abc1997ea84d7c8ae4e17c17b53611802bb84ec74d095072a4d745 +SIZE (KDE/plasma/6.6.0/kinfocenter-6.6.0.tar.xz) = 762804 diff --git a/sysutils/plasma6-kinfocenter/files/patch-kcms_cpu b/sysutils/plasma6-kinfocenter/files/patch-kcms_cpu new file mode 100644 index 000000000000..02964f741bcc --- /dev/null +++ b/sysutils/plasma6-kinfocenter/files/patch-kcms_cpu @@ -0,0 +1,11 @@ +--- kcms/cpu/main.cpp.orig 2026-03-03 09:30:53 UTC ++++ kcms/cpu/main.cpp +@@ -16,7 +16,7 @@ class KCMCPU : public KQuickConfigModule (public) + explicit KCMCPU(QObject *parent, const KPluginMetaData &data) + : KQuickConfigModule(parent, data) + { +- m_outputContext = new CommandOutputContext(QStringLiteral("lscpu"), {QStringLiteral("--hierarchic=always")}, parent); ++ m_outputContext = new CommandOutputContext(QStringLiteral("lscpu"), {}, parent); + } + CommandOutputContext *outputContext() const + { diff --git a/sysutils/plasma6-kinfocenter/files/patch-kcms_network b/sysutils/plasma6-kinfocenter/files/patch-kcms_network new file mode 100644 index 000000000000..ea431ca920b0 --- /dev/null +++ b/sysutils/plasma6-kinfocenter/files/patch-kcms_network @@ -0,0 +1,21 @@ +--- kcms/network/ip.sh.orig 2026-03-03 09:30:53 UTC ++++ kcms/network/ip.sh +@@ -17,6 +17,6 @@ fi + # (so before entries in index range 2-9, or anything double-or-more digit). + + # For sed testing please use --posix on GNU sed so you don't end up using gnu-isms. +-ip -color -statistics -human-readable address 2>&1 \ ++ifconfig -v 2>&1 \ + | sed -E 's@^([2-9]|[0-9]{2,}):@\n\1:@g' \ + | aha $AHA_ARGS +--- kcms/network/main.cpp.orig 2026-03-03 09:30:53 UTC ++++ kcms/network/main.cpp +@@ -24,7 +24,7 @@ class KCMNetwork : public KQuickConfigModule (public) + { + const QString executable = QStandardPaths::locate(QStandardPaths::GenericDataLocation, u"kinfocenter/network/ip.sh"_s, QStandardPaths::LocateFile); + const QString darkness = QGuiApplication::styleHints()->colorScheme() == Qt::ColorScheme::Dark ? u"1"_s : u"0"_s; +- m_outputContext = new CommandOutputContext({u"ip"_s, u"aha"_s}, u"/bin/sh"_s, {executable, darkness}, Qt::TextFormat::RichText, parent); ++ m_outputContext = new CommandOutputContext({u"ifconfig"_s, u"aha"_s}, u"/bin/sh"_s, {executable, darkness}, Qt::TextFormat::RichText, parent); + } + CommandOutputContext *outputContext() const + { diff --git a/sysutils/plasma6-kinfocenter/pkg-plist b/sysutils/plasma6-kinfocenter/pkg-plist index c7023fdc21e5..6d601493e93f 100644 --- a/sysutils/plasma6-kinfocenter/pkg-plist +++ b/sysutils/plasma6-kinfocenter/pkg-plist @@ -1,421 +1,423 @@ bin/kinfocenter etc/xdg/kcm-about-distrorc lib/libKInfoCenterInternal.so lib/libexec/kf6/kauth/kinfocenter-dmidecode-helper lib/libexec/kinfocenter-opengl-helper +lib/libexec/kinfocenter-vulkan-helper %%QT_PLUGINDIR%%/plasma/kcms/kcm_about-distro.so %%QT_PLUGINDIR%%/plasma/kcms/kinfocenter/kcm_audio_information.so %%QT_PLUGINDIR%%/plasma/kcms/kinfocenter/kcm_block_devices.so %%QT_PLUGINDIR%%/plasma/kcms/kinfocenter/kcm_cpu.so %%QT_PLUGINDIR%%/plasma/kcms/kinfocenter/kcm_edid.so %%QT_PLUGINDIR%%/plasma/kcms/kinfocenter/kcm_egl.so %%QT_PLUGINDIR%%/plasma/kcms/kinfocenter/kcm_firmware_security.so %%QT_PLUGINDIR%%/plasma/kcms/kinfocenter/kcm_glx.so %%QT_PLUGINDIR%%/plasma/kcms/kinfocenter/kcm_interrupts.so %%QT_PLUGINDIR%%/plasma/kcms/kinfocenter/kcm_kwinsupportinfo.so %%QT_PLUGINDIR%%/plasma/kcms/kinfocenter/kcm_memory.so %%QT_PLUGINDIR%%/plasma/kcms/kinfocenter/kcm_network.so %%QT_PLUGINDIR%%/plasma/kcms/kinfocenter/kcm_opencl.so %%QT_PLUGINDIR%%/plasma/kcms/kinfocenter/kcm_pci.so %%QT_PLUGINDIR%%/plasma/kcms/kinfocenter/kcm_samba.so %%QT_PLUGINDIR%%/plasma/kcms/kinfocenter/kcm_sensors.so %%QT_PLUGINDIR%%/plasma/kcms/kinfocenter/kcm_usb.so %%QT_PLUGINDIR%%/plasma/kcms/kinfocenter/kcm_vulkan.so %%QT_PLUGINDIR%%/plasma/kcms/kinfocenter/kcm_wayland.so %%QT_PLUGINDIR%%/plasma/kcms/kinfocenter/kcm_xserver.so %%QT_QMLDIR%%/org/kde/kinfocenter/private/KInfoCenterInternal.qmltypes %%QT_QMLDIR%%/org/kde/kinfocenter/private/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/kinfocenter/private/libKInfoCenterInternalplugin.so %%QT_QMLDIR%%/org/kde/kinfocenter/private/qml/CommandOutputKCM.qml %%QT_QMLDIR%%/org/kde/kinfocenter/private/qmldir share/applications/kcm_about-distro.desktop share/applications/org.kde.kinfocenter.desktop share/dbus-1/system-services/org.kde.kinfocenter.dmidecode.service share/dbus-1/system.d/org.kde.kinfocenter.dmidecode.conf share/doc/HTML/ca/kinfocenter/index.cache.bz2 share/doc/HTML/ca/kinfocenter/index.docbook share/doc/HTML/ca/kinfocenter/kinfocenter.png share/doc/HTML/en/kinfocenter/index.cache.bz2 share/doc/HTML/en/kinfocenter/index.docbook share/doc/HTML/en/kinfocenter/kinfocenter.png share/doc/HTML/es/kinfocenter/index.cache.bz2 share/doc/HTML/es/kinfocenter/index.docbook share/doc/HTML/fr/kinfocenter/index.cache.bz2 share/doc/HTML/fr/kinfocenter/index.docbook share/doc/HTML/id/kinfocenter/index.cache.bz2 share/doc/HTML/id/kinfocenter/index.docbook share/doc/HTML/it/kinfocenter/index.cache.bz2 share/doc/HTML/it/kinfocenter/index.docbook share/doc/HTML/it/kinfocenter/kinfocenter.png share/doc/HTML/nl/kinfocenter/index.cache.bz2 share/doc/HTML/nl/kinfocenter/index.docbook share/doc/HTML/pt/kinfocenter/index.cache.bz2 share/doc/HTML/pt/kinfocenter/index.docbook share/doc/HTML/pt_BR/kinfocenter/index.cache.bz2 share/doc/HTML/pt_BR/kinfocenter/index.docbook share/doc/HTML/pt_BR/kinfocenter/kinfocenter.png share/doc/HTML/ru/kinfocenter/index.cache.bz2 share/doc/HTML/ru/kinfocenter/index.docbook share/doc/HTML/sl/kinfocenter/index.cache.bz2 share/doc/HTML/sl/kinfocenter/index.docbook share/doc/HTML/sr/kinfocenter/index.cache.bz2 share/doc/HTML/sr/kinfocenter/index.docbook share/doc/HTML/sr@latin/kinfocenter/index.cache.bz2 share/doc/HTML/sr@latin/kinfocenter/index.docbook share/doc/HTML/sv/kinfocenter/index.cache.bz2 share/doc/HTML/sv/kinfocenter/index.docbook share/doc/HTML/tr/kinfocenter/index.cache.bz2 share/doc/HTML/tr/kinfocenter/index.docbook share/doc/HTML/uk/kinfocenter/index.cache.bz2 share/doc/HTML/uk/kinfocenter/index.docbook share/doc/HTML/uk/kinfocenter/kinfocenter.png %%DATADIR%%/categories/basicinformation.desktop %%DATADIR%%/categories/deviceinfocategory.desktop %%DATADIR%%/categories/graphicalinfocategory.desktop %%DATADIR%%/categories/lostfoundcategory.desktop %%DATADIR%%/categories/networkinfocategory.desktop %%DATADIR%%/edid/edid.sh %%DATADIR%%/firmware_security/fwupdmgr.sh %%DATADIR%%/images/freebsd_logo.svg +%%DATADIR%%/network/ip.sh share/locale/af/LC_MESSAGES/kcm_samba.mo share/locale/af/LC_MESSAGES/kcmusb.mo share/locale/ar/LC_MESSAGES/kcm_about-distro.mo share/locale/ar/LC_MESSAGES/kcm_energyinfo.mo share/locale/ar/LC_MESSAGES/kcm_samba.mo share/locale/ar/LC_MESSAGES/kcmusb.mo share/locale/ar/LC_MESSAGES/kinfocenter.mo share/locale/ast/LC_MESSAGES/kcm_about-distro.mo share/locale/ast/LC_MESSAGES/kcm_energyinfo.mo share/locale/ast/LC_MESSAGES/kcm_samba.mo share/locale/ast/LC_MESSAGES/kcmusb.mo share/locale/ast/LC_MESSAGES/kinfocenter.mo share/locale/az/LC_MESSAGES/kcm_about-distro.mo share/locale/az/LC_MESSAGES/kcm_energyinfo.mo share/locale/az/LC_MESSAGES/kcm_samba.mo share/locale/az/LC_MESSAGES/kcmusb.mo share/locale/be/LC_MESSAGES/kcm_samba.mo share/locale/be/LC_MESSAGES/kcmusb.mo share/locale/bg/LC_MESSAGES/kcm_about-distro.mo share/locale/bg/LC_MESSAGES/kcm_energyinfo.mo share/locale/bg/LC_MESSAGES/kcm_samba.mo share/locale/bg/LC_MESSAGES/kcmusb.mo share/locale/bg/LC_MESSAGES/kinfocenter.mo share/locale/bn/LC_MESSAGES/kcmusb.mo share/locale/bn_IN/LC_MESSAGES/kcm_samba.mo share/locale/bn_IN/LC_MESSAGES/kcmusb.mo share/locale/br/LC_MESSAGES/kcm_samba.mo share/locale/br/LC_MESSAGES/kcmusb.mo share/locale/bs/LC_MESSAGES/kcm_about-distro.mo share/locale/bs/LC_MESSAGES/kcm_samba.mo share/locale/bs/LC_MESSAGES/kcmusb.mo share/locale/ca/LC_MESSAGES/kcm_about-distro.mo share/locale/ca/LC_MESSAGES/kcm_energyinfo.mo share/locale/ca/LC_MESSAGES/kcm_samba.mo share/locale/ca/LC_MESSAGES/kcmusb.mo share/locale/ca/LC_MESSAGES/kinfocenter.mo share/locale/ca@valencia/LC_MESSAGES/kcm_about-distro.mo share/locale/ca@valencia/LC_MESSAGES/kcm_energyinfo.mo share/locale/ca@valencia/LC_MESSAGES/kcm_samba.mo share/locale/ca@valencia/LC_MESSAGES/kcmusb.mo share/locale/ca@valencia/LC_MESSAGES/kinfocenter.mo share/locale/cs/LC_MESSAGES/kcm_about-distro.mo share/locale/cs/LC_MESSAGES/kcm_energyinfo.mo share/locale/cs/LC_MESSAGES/kcm_samba.mo share/locale/cs/LC_MESSAGES/kcmusb.mo share/locale/cs/LC_MESSAGES/kinfocenter.mo share/locale/csb/LC_MESSAGES/kcm_samba.mo share/locale/csb/LC_MESSAGES/kcmusb.mo share/locale/cy/LC_MESSAGES/kcm_samba.mo share/locale/cy/LC_MESSAGES/kcmusb.mo share/locale/da/LC_MESSAGES/kcm_about-distro.mo share/locale/da/LC_MESSAGES/kcm_energyinfo.mo share/locale/da/LC_MESSAGES/kcm_samba.mo share/locale/da/LC_MESSAGES/kcmusb.mo share/locale/da/LC_MESSAGES/kinfocenter.mo share/locale/de/LC_MESSAGES/kcm_about-distro.mo share/locale/de/LC_MESSAGES/kcm_energyinfo.mo share/locale/de/LC_MESSAGES/kcm_samba.mo share/locale/de/LC_MESSAGES/kcmusb.mo share/locale/de/LC_MESSAGES/kinfocenter.mo share/locale/el/LC_MESSAGES/kcm_about-distro.mo share/locale/el/LC_MESSAGES/kcm_energyinfo.mo share/locale/el/LC_MESSAGES/kcm_samba.mo share/locale/el/LC_MESSAGES/kcmusb.mo share/locale/en_GB/LC_MESSAGES/kcm_about-distro.mo share/locale/en_GB/LC_MESSAGES/kcm_energyinfo.mo share/locale/en_GB/LC_MESSAGES/kcm_samba.mo share/locale/en_GB/LC_MESSAGES/kcmusb.mo share/locale/en_GB/LC_MESSAGES/kinfocenter.mo share/locale/eo/LC_MESSAGES/kcm_about-distro.mo share/locale/eo/LC_MESSAGES/kcm_energyinfo.mo share/locale/eo/LC_MESSAGES/kcm_samba.mo share/locale/eo/LC_MESSAGES/kcmusb.mo share/locale/eo/LC_MESSAGES/kinfocenter.mo share/locale/es/LC_MESSAGES/kcm_about-distro.mo share/locale/es/LC_MESSAGES/kcm_energyinfo.mo share/locale/es/LC_MESSAGES/kcm_samba.mo share/locale/es/LC_MESSAGES/kcmusb.mo share/locale/es/LC_MESSAGES/kinfocenter.mo share/locale/et/LC_MESSAGES/kcm_about-distro.mo share/locale/et/LC_MESSAGES/kcm_energyinfo.mo share/locale/et/LC_MESSAGES/kcm_samba.mo share/locale/et/LC_MESSAGES/kcmusb.mo share/locale/eu/LC_MESSAGES/kcm_about-distro.mo share/locale/eu/LC_MESSAGES/kcm_energyinfo.mo share/locale/eu/LC_MESSAGES/kcm_samba.mo share/locale/eu/LC_MESSAGES/kcmusb.mo share/locale/eu/LC_MESSAGES/kinfocenter.mo share/locale/fa/LC_MESSAGES/kcm_samba.mo share/locale/fa/LC_MESSAGES/kcmusb.mo share/locale/fi/LC_MESSAGES/kcm_about-distro.mo share/locale/fi/LC_MESSAGES/kcm_energyinfo.mo share/locale/fi/LC_MESSAGES/kcm_samba.mo share/locale/fi/LC_MESSAGES/kcmusb.mo share/locale/fi/LC_MESSAGES/kinfocenter.mo share/locale/fr/LC_MESSAGES/kcm_about-distro.mo share/locale/fr/LC_MESSAGES/kcm_energyinfo.mo share/locale/fr/LC_MESSAGES/kcm_samba.mo share/locale/fr/LC_MESSAGES/kcmusb.mo share/locale/fr/LC_MESSAGES/kinfocenter.mo share/locale/fy/LC_MESSAGES/kcm_samba.mo share/locale/fy/LC_MESSAGES/kcmusb.mo share/locale/ga/LC_MESSAGES/kcm_about-distro.mo share/locale/ga/LC_MESSAGES/kcm_energyinfo.mo share/locale/ga/LC_MESSAGES/kcm_samba.mo share/locale/ga/LC_MESSAGES/kcmusb.mo share/locale/ga/LC_MESSAGES/kinfocenter.mo share/locale/gl/LC_MESSAGES/kcm_about-distro.mo share/locale/gl/LC_MESSAGES/kcm_energyinfo.mo share/locale/gl/LC_MESSAGES/kcm_samba.mo share/locale/gl/LC_MESSAGES/kcmusb.mo share/locale/gl/LC_MESSAGES/kinfocenter.mo share/locale/gu/LC_MESSAGES/kcm_samba.mo share/locale/gu/LC_MESSAGES/kcmusb.mo share/locale/he/LC_MESSAGES/kcm_about-distro.mo share/locale/he/LC_MESSAGES/kcm_energyinfo.mo share/locale/he/LC_MESSAGES/kcm_samba.mo share/locale/he/LC_MESSAGES/kcmusb.mo share/locale/he/LC_MESSAGES/kinfocenter.mo share/locale/hi/LC_MESSAGES/kcm_about-distro.mo share/locale/hi/LC_MESSAGES/kcm_energyinfo.mo share/locale/hi/LC_MESSAGES/kcm_samba.mo share/locale/hi/LC_MESSAGES/kcmusb.mo share/locale/hi/LC_MESSAGES/kinfocenter.mo share/locale/hne/LC_MESSAGES/kcm_samba.mo share/locale/hne/LC_MESSAGES/kcmusb.mo share/locale/hr/LC_MESSAGES/kcm_samba.mo share/locale/hr/LC_MESSAGES/kcmusb.mo share/locale/hsb/LC_MESSAGES/kcm_samba.mo share/locale/hsb/LC_MESSAGES/kcmusb.mo share/locale/hu/LC_MESSAGES/kcm_about-distro.mo share/locale/hu/LC_MESSAGES/kcm_energyinfo.mo share/locale/hu/LC_MESSAGES/kcm_samba.mo share/locale/hu/LC_MESSAGES/kcmusb.mo share/locale/hu/LC_MESSAGES/kinfocenter.mo share/locale/ia/LC_MESSAGES/kcm_about-distro.mo share/locale/ia/LC_MESSAGES/kcm_energyinfo.mo share/locale/ia/LC_MESSAGES/kcm_samba.mo share/locale/ia/LC_MESSAGES/kcmusb.mo share/locale/ia/LC_MESSAGES/kinfocenter.mo share/locale/id/LC_MESSAGES/kcm_about-distro.mo share/locale/id/LC_MESSAGES/kcm_energyinfo.mo share/locale/id/LC_MESSAGES/kcm_samba.mo share/locale/id/LC_MESSAGES/kcmusb.mo share/locale/is/LC_MESSAGES/kcm_about-distro.mo share/locale/is/LC_MESSAGES/kcm_energyinfo.mo share/locale/is/LC_MESSAGES/kcm_samba.mo share/locale/is/LC_MESSAGES/kcmusb.mo share/locale/is/LC_MESSAGES/kinfocenter.mo share/locale/it/LC_MESSAGES/kcm_about-distro.mo share/locale/it/LC_MESSAGES/kcm_energyinfo.mo share/locale/it/LC_MESSAGES/kcm_samba.mo share/locale/it/LC_MESSAGES/kcmusb.mo share/locale/it/LC_MESSAGES/kinfocenter.mo share/locale/ja/LC_MESSAGES/kcm_about-distro.mo share/locale/ja/LC_MESSAGES/kcm_energyinfo.mo share/locale/ja/LC_MESSAGES/kcm_samba.mo share/locale/ja/LC_MESSAGES/kcmusb.mo share/locale/ja/LC_MESSAGES/kinfocenter.mo share/locale/ka/LC_MESSAGES/kcm_about-distro.mo share/locale/ka/LC_MESSAGES/kcm_energyinfo.mo share/locale/ka/LC_MESSAGES/kcm_samba.mo share/locale/ka/LC_MESSAGES/kcmusb.mo share/locale/ka/LC_MESSAGES/kinfocenter.mo share/locale/kk/LC_MESSAGES/kcm_samba.mo share/locale/kk/LC_MESSAGES/kcmusb.mo share/locale/km/LC_MESSAGES/kcm_samba.mo share/locale/km/LC_MESSAGES/kcmusb.mo share/locale/kn/LC_MESSAGES/kcm_samba.mo share/locale/kn/LC_MESSAGES/kcmusb.mo share/locale/ko/LC_MESSAGES/kcm_about-distro.mo share/locale/ko/LC_MESSAGES/kcm_energyinfo.mo share/locale/ko/LC_MESSAGES/kcm_samba.mo share/locale/ko/LC_MESSAGES/kcmusb.mo share/locale/ko/LC_MESSAGES/kinfocenter.mo share/locale/ku/LC_MESSAGES/kcm_samba.mo share/locale/ku/LC_MESSAGES/kcmusb.mo share/locale/lt/LC_MESSAGES/kcm_about-distro.mo share/locale/lt/LC_MESSAGES/kcm_energyinfo.mo share/locale/lt/LC_MESSAGES/kcm_samba.mo share/locale/lt/LC_MESSAGES/kcmusb.mo share/locale/lt/LC_MESSAGES/kinfocenter.mo share/locale/lv/LC_MESSAGES/kcm_about-distro.mo share/locale/lv/LC_MESSAGES/kcm_energyinfo.mo share/locale/lv/LC_MESSAGES/kcm_samba.mo share/locale/lv/LC_MESSAGES/kcmusb.mo share/locale/lv/LC_MESSAGES/kinfocenter.mo share/locale/mai/LC_MESSAGES/kcm_samba.mo share/locale/mai/LC_MESSAGES/kcmusb.mo share/locale/mk/LC_MESSAGES/kcm_samba.mo share/locale/mk/LC_MESSAGES/kcmusb.mo share/locale/ml/LC_MESSAGES/kcm_about-distro.mo share/locale/ml/LC_MESSAGES/kcm_energyinfo.mo share/locale/ml/LC_MESSAGES/kcm_samba.mo share/locale/ml/LC_MESSAGES/kcmusb.mo share/locale/mr/LC_MESSAGES/kcm_samba.mo share/locale/mr/LC_MESSAGES/kcmusb.mo share/locale/ms/LC_MESSAGES/kcm_samba.mo share/locale/ms/LC_MESSAGES/kcmusb.mo share/locale/nb/LC_MESSAGES/kcm_about-distro.mo share/locale/nb/LC_MESSAGES/kcm_energyinfo.mo share/locale/nb/LC_MESSAGES/kcm_samba.mo share/locale/nb/LC_MESSAGES/kcmusb.mo share/locale/nb/LC_MESSAGES/kinfocenter.mo share/locale/nds/LC_MESSAGES/kcm_samba.mo share/locale/nds/LC_MESSAGES/kcmusb.mo share/locale/ne/LC_MESSAGES/kcm_samba.mo share/locale/ne/LC_MESSAGES/kcmusb.mo share/locale/nl/LC_MESSAGES/kcm_about-distro.mo share/locale/nl/LC_MESSAGES/kcm_energyinfo.mo share/locale/nl/LC_MESSAGES/kcm_samba.mo share/locale/nl/LC_MESSAGES/kcmusb.mo share/locale/nl/LC_MESSAGES/kinfocenter.mo share/locale/nn/LC_MESSAGES/kcm_about-distro.mo share/locale/nn/LC_MESSAGES/kcm_energyinfo.mo share/locale/nn/LC_MESSAGES/kcm_samba.mo share/locale/nn/LC_MESSAGES/kcmusb.mo share/locale/nn/LC_MESSAGES/kinfocenter.mo share/locale/oc/LC_MESSAGES/kcm_samba.mo share/locale/oc/LC_MESSAGES/kcmusb.mo share/locale/or/LC_MESSAGES/kcm_samba.mo share/locale/or/LC_MESSAGES/kcmusb.mo share/locale/pa/LC_MESSAGES/kcm_about-distro.mo share/locale/pa/LC_MESSAGES/kcm_energyinfo.mo share/locale/pa/LC_MESSAGES/kcm_samba.mo share/locale/pa/LC_MESSAGES/kcmusb.mo share/locale/pa/LC_MESSAGES/kinfocenter.mo share/locale/pl/LC_MESSAGES/kcm_about-distro.mo share/locale/pl/LC_MESSAGES/kcm_energyinfo.mo share/locale/pl/LC_MESSAGES/kcm_samba.mo share/locale/pl/LC_MESSAGES/kcmusb.mo share/locale/pl/LC_MESSAGES/kinfocenter.mo share/locale/pt/LC_MESSAGES/kcm_about-distro.mo share/locale/pt/LC_MESSAGES/kcm_energyinfo.mo share/locale/pt/LC_MESSAGES/kcm_samba.mo share/locale/pt/LC_MESSAGES/kcmusb.mo share/locale/pt_BR/LC_MESSAGES/kcm_about-distro.mo share/locale/pt_BR/LC_MESSAGES/kcm_energyinfo.mo share/locale/pt_BR/LC_MESSAGES/kcm_samba.mo share/locale/pt_BR/LC_MESSAGES/kcmusb.mo share/locale/pt_BR/LC_MESSAGES/kinfocenter.mo share/locale/ro/LC_MESSAGES/kcm_about-distro.mo share/locale/ro/LC_MESSAGES/kcm_energyinfo.mo share/locale/ro/LC_MESSAGES/kcm_samba.mo share/locale/ro/LC_MESSAGES/kcmusb.mo share/locale/ro/LC_MESSAGES/kinfocenter.mo share/locale/ru/LC_MESSAGES/kcm_about-distro.mo share/locale/ru/LC_MESSAGES/kcm_energyinfo.mo share/locale/ru/LC_MESSAGES/kcm_samba.mo share/locale/ru/LC_MESSAGES/kcmusb.mo share/locale/ru/LC_MESSAGES/kinfocenter.mo share/locale/sa/LC_MESSAGES/kcm_about-distro.mo share/locale/sa/LC_MESSAGES/kcm_energyinfo.mo share/locale/sa/LC_MESSAGES/kcm_samba.mo share/locale/sa/LC_MESSAGES/kcmusb.mo share/locale/sa/LC_MESSAGES/kinfocenter.mo share/locale/se/LC_MESSAGES/kcm_samba.mo share/locale/se/LC_MESSAGES/kcmusb.mo share/locale/si/LC_MESSAGES/kcm_samba.mo share/locale/si/LC_MESSAGES/kcmusb.mo share/locale/sk/LC_MESSAGES/kcm_about-distro.mo share/locale/sk/LC_MESSAGES/kcm_energyinfo.mo share/locale/sk/LC_MESSAGES/kcm_samba.mo share/locale/sk/LC_MESSAGES/kcmusb.mo share/locale/sk/LC_MESSAGES/kinfocenter.mo share/locale/sl/LC_MESSAGES/kcm_about-distro.mo share/locale/sl/LC_MESSAGES/kcm_energyinfo.mo share/locale/sl/LC_MESSAGES/kcm_samba.mo share/locale/sl/LC_MESSAGES/kcmusb.mo share/locale/sl/LC_MESSAGES/kinfocenter.mo share/locale/sq/LC_MESSAGES/kcm_samba.mo share/locale/sq/LC_MESSAGES/kcmusb.mo share/locale/sr/LC_MESSAGES/kcm_about-distro.mo share/locale/sr/LC_MESSAGES/kcm_energyinfo.mo share/locale/sr/LC_MESSAGES/kcm_samba.mo share/locale/sr/LC_MESSAGES/kcmusb.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_about-distro.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_energyinfo.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_samba.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmusb.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_about-distro.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_energyinfo.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_samba.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmusb.mo share/locale/sr@latin/LC_MESSAGES/kcm_about-distro.mo share/locale/sr@latin/LC_MESSAGES/kcm_energyinfo.mo share/locale/sr@latin/LC_MESSAGES/kcm_samba.mo share/locale/sr@latin/LC_MESSAGES/kcmusb.mo share/locale/sv/LC_MESSAGES/kcm_about-distro.mo share/locale/sv/LC_MESSAGES/kcm_energyinfo.mo share/locale/sv/LC_MESSAGES/kcm_samba.mo share/locale/sv/LC_MESSAGES/kcmusb.mo share/locale/sv/LC_MESSAGES/kinfocenter.mo share/locale/ta/LC_MESSAGES/kcm_about-distro.mo share/locale/ta/LC_MESSAGES/kcm_energyinfo.mo share/locale/ta/LC_MESSAGES/kcm_samba.mo share/locale/ta/LC_MESSAGES/kcmusb.mo share/locale/ta/LC_MESSAGES/kinfocenter.mo share/locale/te/LC_MESSAGES/kcm_samba.mo share/locale/te/LC_MESSAGES/kcmusb.mo share/locale/tg/LC_MESSAGES/kcm_energyinfo.mo share/locale/tg/LC_MESSAGES/kcm_samba.mo share/locale/tg/LC_MESSAGES/kcmusb.mo share/locale/th/LC_MESSAGES/kcm_samba.mo share/locale/th/LC_MESSAGES/kcmusb.mo share/locale/tr/LC_MESSAGES/kcm_about-distro.mo share/locale/tr/LC_MESSAGES/kcm_energyinfo.mo share/locale/tr/LC_MESSAGES/kcm_samba.mo share/locale/tr/LC_MESSAGES/kcmusb.mo share/locale/tr/LC_MESSAGES/kinfocenter.mo share/locale/ug/LC_MESSAGES/kcm_about-distro.mo share/locale/ug/LC_MESSAGES/kcm_samba.mo share/locale/ug/LC_MESSAGES/kcmusb.mo share/locale/uk/LC_MESSAGES/kcm_about-distro.mo share/locale/uk/LC_MESSAGES/kcm_energyinfo.mo share/locale/uk/LC_MESSAGES/kcm_samba.mo share/locale/uk/LC_MESSAGES/kcmusb.mo share/locale/uk/LC_MESSAGES/kinfocenter.mo share/locale/uz/LC_MESSAGES/kcm_samba.mo share/locale/uz/LC_MESSAGES/kcmusb.mo share/locale/uz@cyrillic/LC_MESSAGES/kcm_samba.mo share/locale/uz@cyrillic/LC_MESSAGES/kcmusb.mo share/locale/vi/LC_MESSAGES/kcm_about-distro.mo share/locale/vi/LC_MESSAGES/kcm_energyinfo.mo share/locale/vi/LC_MESSAGES/kcm_samba.mo share/locale/vi/LC_MESSAGES/kcmusb.mo share/locale/wa/LC_MESSAGES/kcm_samba.mo share/locale/wa/LC_MESSAGES/kcmusb.mo share/locale/xh/LC_MESSAGES/kcm_samba.mo share/locale/xh/LC_MESSAGES/kcmusb.mo share/locale/zh_CN/LC_MESSAGES/kcm_about-distro.mo share/locale/zh_CN/LC_MESSAGES/kcm_energyinfo.mo share/locale/zh_CN/LC_MESSAGES/kcm_samba.mo share/locale/zh_CN/LC_MESSAGES/kcmusb.mo share/locale/zh_CN/LC_MESSAGES/kinfocenter.mo share/locale/zh_TW/LC_MESSAGES/kcm_about-distro.mo share/locale/zh_TW/LC_MESSAGES/kcm_energyinfo.mo share/locale/zh_TW/LC_MESSAGES/kcm_samba.mo share/locale/zh_TW/LC_MESSAGES/kcmusb.mo share/locale/zh_TW/LC_MESSAGES/kinfocenter.mo share/metainfo/org.kde.kinfocenter.appdata.xml share/polkit-1/actions/org.kde.kinfocenter.dmidecode.policy diff --git a/sysutils/plasma6-kmenuedit/Makefile b/sysutils/plasma6-kmenuedit/Makefile index 20489d8060a0..fdac8dd6076b 100644 --- a/sysutils/plasma6-kmenuedit/Makefile +++ b/sysutils/plasma6-kmenuedit/Makefile @@ -1,19 +1,18 @@ PORTNAME= kmenuedit DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= sysutils kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Menu Editor for Plasma Workspaces USES= cmake gettext gl kde:6 qt:6 tar:xz xorg USE_XORG= x11 USE_KDE= colorscheme completion config configwidgets coreaddons \ dbusaddons doctools globalaccel i18n iconthemes itemviews \ jobwidgets kio service solid sonnet widgetsaddons windowsystem \ xmlgui \ ecm:build USE_GL= gl opengl USE_QT= base .include diff --git a/sysutils/plasma6-kmenuedit/distinfo b/sysutils/plasma6-kmenuedit/distinfo index 3e414b0adb32..fb2f1a3f584d 100644 --- a/sysutils/plasma6-kmenuedit/distinfo +++ b/sysutils/plasma6-kmenuedit/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1768328294 -SHA256 (KDE/plasma/6.5.5/kmenuedit-6.5.5.tar.xz) = 4505d8205e2dc8d009e0bb83080088d499085c1675fbedb553b21bd2fd1f029f -SIZE (KDE/plasma/6.5.5/kmenuedit-6.5.5.tar.xz) = 886024 +TIMESTAMP = 1771162211 +SHA256 (KDE/plasma/6.6.0/kmenuedit-6.6.0.tar.xz) = 36c9e4e7d3c79f1c8efe5cba3fa794973ab1a555bcca5d09c6955076fdd49be1 +SIZE (KDE/plasma/6.6.0/kmenuedit-6.6.0.tar.xz) = 887252 diff --git a/sysutils/plasma6-knighttime/distinfo b/sysutils/plasma6-knighttime/distinfo index c7b6e6cfff40..b7f2c7e51fed 100644 --- a/sysutils/plasma6-knighttime/distinfo +++ b/sysutils/plasma6-knighttime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1768328295 -SHA256 (KDE/plasma/6.5.5/knighttime-6.5.5.tar.xz) = a12430bb7059f866bb2b2f4351965beb54b54d1502d482ac9f3b43a95fa736a3 -SIZE (KDE/plasma/6.5.5/knighttime-6.5.5.tar.xz) = 39920 +TIMESTAMP = 1771162212 +SHA256 (KDE/plasma/6.6.0/knighttime-6.6.0.tar.xz) = 6f328e1e8d6e6e22628f364bf049a535895f08cb565fb1551b75d7de6178e8b7 +SIZE (KDE/plasma/6.6.0/knighttime-6.6.0.tar.xz) = 39856 diff --git a/sysutils/plasma6-ksystemstats/Makefile b/sysutils/plasma6-ksystemstats/Makefile index f55aab85afdb..46fc36be79c1 100644 --- a/sysutils/plasma6-ksystemstats/Makefile +++ b/sysutils/plasma6-ksystemstats/Makefile @@ -1,19 +1,18 @@ PORTNAME= ksystemstats DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= sysutils kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plugin based system monitoring daemon LIB_DEPENDS= libudev.so:devel/libudev-devd USES= cmake gettext gl kde:6 qt:6 tar:xz USE_GL= gl opengl USE_KDE= coreaddons dbusaddons i18n kio libksysguard solid \ ecm:build USE_QT= base CMAKE_ON= CMAKE_DISABLE_FIND_PACKAGE_KF6NetworkManagerQt .include diff --git a/sysutils/plasma6-ksystemstats/distinfo b/sysutils/plasma6-ksystemstats/distinfo index fcee3dfc588b..34a2ba6b656d 100644 --- a/sysutils/plasma6-ksystemstats/distinfo +++ b/sysutils/plasma6-ksystemstats/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1768328295 -SHA256 (KDE/plasma/6.5.5/ksystemstats-6.5.5.tar.xz) = c51097403d084f22fcd8534ce6f439050b58a2ac60953ace2dc7012412adce9d -SIZE (KDE/plasma/6.5.5/ksystemstats-6.5.5.tar.xz) = 160136 +TIMESTAMP = 1771162212 +SHA256 (KDE/plasma/6.6.0/ksystemstats-6.6.0.tar.xz) = 5bdb7e826608be149a709d1085a96920c790aad6e0695c3f8db0cebc4c83bee1 +SIZE (KDE/plasma/6.6.0/ksystemstats-6.6.0.tar.xz) = 160284 diff --git a/sysutils/plasma6-ksystemstats/files/patch-network b/sysutils/plasma6-ksystemstats/files/patch-network new file mode 100644 index 000000000000..5f5793e78663 --- /dev/null +++ b/sysutils/plasma6-ksystemstats/files/patch-network @@ -0,0 +1,245 @@ +--- plugins/network/CMakeLists.txt ++++ plugins/network/CMakeLists.txt +@@ -21,6 +21,11 @@ target_link_libraries(ksystemstats_plugin_network PRIVATE Qt::Core Qt::Gui Qt::D + if (KF6NetworkManagerQt_FOUND) + target_link_libraries(ksystemstats_plugin_network PRIVATE KF6::NetworkManagerQt) + endif() ++ ++if (${CMAKE_SYSTEM_NAME} MATCHES "FreeBSD") ++ target_sources(ksystemstats_plugin_network PRIVATE SysctlBackend.cpp) ++endif() ++ + if (${CMAKE_SYSTEM_NAME} MATCHES "Linux") + target_sources(ksystemstats_plugin_network PRIVATE RtNetlinkBackend.cpp) + target_link_libraries(ksystemstats_plugin_network PRIVATE ${NL_LIBRARIES} Qt::Network) +--- plugins/network/NetworkPlugin.cpp ++++ plugins/network/NetworkPlugin.cpp +@@ -24,7 +24,9 @@ + #ifdef Q_OS_LINUX + #include "RtNetlinkBackend.h" + #endif +- ++#ifdef Q_OS_FREEBSD ++#include "SysctlBackend.h" ++#endif + class NetworkPrivate + { + public: +@@ -52,6 +54,9 @@ NetworkPlugin::NetworkPlugin(QObject *parent, const QVariantList &args) + #endif + #ifdef Q_OS_LINUX + backendFunctions.emplace_back([](NetworkPlugin *parent) -> NetworkBackend* {return new RtNetlinkBackend(parent);}); ++#endif ++#ifdef Q_OS_FREEBSD ++ backendFunctions.emplace_back([](NetworkPlugin *parent) -> NetworkBackend* {return new SysctlBackend(parent);}); + #endif + for (auto func : backendFunctions) { + auto backend = func(this); +--- /dev/null ++++ plugins/network/SysctlBackend.cpp +@@ -0,0 +1,160 @@ ++/* ++ * SPDX-FileCopyrightText: 2022 Jesper Schmitz Mouridsen ++ * ++ * SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL ++ */ ++ ++#include "SysctlBackend.h" ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++ ++SysctlNetDevice::SysctlNetDevice(const QString &id, const QString &name, int ifnumber) ++ : NetworkDevice(id, name) ++{ ++ m_sysctlName = {CTL_NET, PF_LINK, NETLINK_GENERIC, IFMIB_IFDATA, ifnumber, IFDATA_GENERAL}; ++ // Even though we have no sensor, we need to have a name for the grouped text on the front page ++ // of plasma-systemmonitor ++ m_networkSensor->setValue(id); ++ std::array statisticSensors = ++ {m_downloadSensor, m_downloadBitsSensor, m_totalDownloadSensor, m_uploadSensor, m_uploadBitsSensor, m_totalUploadSensor}; ++ auto resetStatistics = [this, statisticSensors]() { ++ if (std::none_of(statisticSensors.begin(), statisticSensors.end(), [](auto property) { ++ return property->isSubscribed(); ++ })) { ++ m_totalDownloadSensor->setValue(0); ++ m_totalUploadSensor->setValue(0); ++ m_statisticsTimer->stop(); ++ } else if (!m_statisticsTimer->isActive()) { ++ m_statisticsTimer->start(); ++ } ++ }; ++ for (auto property : statisticSensors) { ++ connect(property, &KSysGuard::SensorProperty::subscribedChanged, this, resetStatistics); ++ } ++ m_statisticsTimer = std::make_unique(); ++ m_statisticsTimer->setInterval(UpdateRate); ++ connect(m_statisticsTimer.get(), &QTimer::timeout, this, [this]() { ++ ifmibdata ifmd{}; ++ size_t len = sizeof(ifmd); ++ if (sysctl(m_sysctlName.data(), 6, &ifmd, &len, NULL, 0) == 0) { ++ const qulonglong newDownload = ifmd.ifmd_data.ifi_ibytes; ++ const qulonglong previousDownload = m_totalDownloadSensor->value().toULongLong(); ++ const qulonglong deltaDownload = newDownload - previousDownload; ++ if (previousDownload > 0) { ++ m_downloadSensor->setValue(deltaDownload * 1000 / UpdateRate); ++ m_downloadBitsSensor->setValue((deltaDownload * 1000 / UpdateRate) * 8); ++ } ++ m_totalDownloadSensor->setValue(newDownload); ++ ++ const qulonglong newUpload = ifmd.ifmd_data.ifi_obytes; ++ const qulonglong previousUpload = m_totalUploadSensor->value().toULongLong(); ++ const qulonglong deltaUpload = newUpload - previousUpload; ++ if (previousUpload > 0) { ++ m_uploadSensor->setValue(deltaUpload * 1000 / UpdateRate); ++ m_uploadBitsSensor->setValue((deltaUpload * 1000 / UpdateRate) * 8); ++ } ++ m_totalUploadSensor->setValue(newUpload); ++ } ++ }); ++} ++void SysctlNetDevice::update() ++{ ++ char addr_buf[NI_MAXHOST]; ++ QStringList ipv4_addrs; ++ QStringList ipv6_addrs; ++ struct sockaddr_in *sin; ++ ++ ipv4_addrs.clear(); ++ ipv6_addrs.clear(); ++ ifaddrs *ifap; ++ bzero(&ifap, sizeof(ifap)); ++ for (getifaddrs(&ifap); ifap != nullptr; ifap = ifap->ifa_next) { ++ if (name() == QString::fromLatin1(ifap->ifa_name)) { ++ sin = reinterpret_cast(ifap->ifa_addr); ++ if (sin == NULL) ++ return; ++ ++ if(getnameinfo(ifap->ifa_addr, sin->sin_len, addr_buf, sizeof(addr_buf), NULL, 0, NI_NUMERICHOST)==0) { ++ ++ if (sin->sin_family == AF_INET) { ++ ipv4_addrs << QString::fromLatin1(addr_buf); ++ } ++ if (sin->sin_family == AF_INET6) { ++ ipv6_addrs << QString::fromLatin1(addr_buf); ++ } ++ } ++ ++ } ++ } ++ m_ipv4Sensor->setValue(ipv4_addrs.join("\n")); ++ m_ipv6Sensor->setValue(ipv6_addrs.join("\n")); ++ freeifaddrs(ifap); ++} ++ ++SysctlNetDevice::~SysctlNetDevice() ++{ ++} ++SysctlBackend::SysctlBackend(QObject *parent) ++ : NetworkBackend(parent) ++{ ++} ++ ++SysctlBackend::~SysctlBackend() ++{ ++ qDeleteAll(m_devices); ++} ++ ++bool SysctlBackend::isSupported() ++{ ++ return true; ++} ++ ++void SysctlBackend::start() ++{ ++ int count, i; ++ size_t len; ++ int ifcnt_name[] = {CTL_NET, PF_LINK, NETLINK_GENERIC, IFMIB_SYSTEM, IFMIB_IFCOUNT}; ++ len = sizeof(int); ++ if (sysctl(ifcnt_name, 5, &count, &len, NULL, 0) < 0) { ++ return; ++ } ++ ++ for (i = 1; i <= count; i++) { ++ struct ifmibdata ifmd { ++ }; ++ size_t len = sizeof(ifmd); ++ int sname[6] = {CTL_NET, PF_LINK, NETLINK_GENERIC, IFMIB_IFDATA, i, IFDATA_GENERAL}; ++ ++ if (sysctl(sname, 6, &ifmd, &len, NULL, 0) < 0) { ++ continue; ++ } ++ ++ if ((ifmd.ifmd_data.ifi_type == IFT_ETHER) || (ifmd.ifmd_data.ifi_type == IFT_IEEE80211)) { ++ auto device = new SysctlNetDevice(QString::fromLatin1(ifmd.ifmd_name), QString::fromLatin1(ifmd.ifmd_name), i); ++ ++ m_devices.insert(QByteArray(ifmd.ifmd_name), device); ++ Q_EMIT deviceAdded(device); ++ } ++ } ++} ++ ++void SysctlBackend::stop() ++{ ++} ++ ++void SysctlBackend::update() ++{ ++ QHashIterator iter(m_devices); ++ while (iter.hasNext()) { ++ iter.next(); ++ iter.value()->update(); ++ } ++} +--- /dev/null ++++ plugins/network/SysctlBackend.h +@@ -0,0 +1,42 @@ ++/* ++ * SPDX-FileCopyrightText: 2022 Jesper Schmitz Mouridsen ++ * ++ * SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL ++ */ ++ ++#pragma once ++ ++#include "NetworkBackend.h" ++#include "NetworkDevice.h" ++#include ++#include ++#include ++ ++static const int UpdateRate = 500; ++class SysctlNetDevice : public NetworkDevice ++{ ++ Q_OBJECT ++ ++public: ++ SysctlNetDevice(const QString &id, const QString &name,int ifnumber); ++ ~SysctlNetDevice() override; ++ std::array m_sysctlName; ++ void update(); ++ bool isConnected() const; ++ std::unique_ptr m_statisticsTimer; ++ QList m_ifaddrs; ++}; ++ ++class SysctlBackend : public NetworkBackend ++{ ++public: ++ SysctlBackend(QObject *parent); ++ ~SysctlBackend() override; ++ bool isSupported() override; ++ void start() override; ++ void stop() override; ++ void update() override; ++ ++private: ++ QHash m_devices; ++}; diff --git a/sysutils/plasma6-libksysguard/Makefile b/sysutils/plasma6-libksysguard/Makefile index f6de699d880e..4954b60c8c0a 100644 --- a/sysutils/plasma6-libksysguard/Makefile +++ b/sysutils/plasma6-libksysguard/Makefile @@ -1,20 +1,19 @@ PORTNAME= libksysguard DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= sysutils kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Library to retrieve information on the current status of computer hardware LIB_DEPENDS= libxkbcommon.so:x11/libxkbcommon USES= cmake gettext gl kde:6 qt:6 tar:xz xorg USE_GL= gl opengl USE_KDE= auth colorscheme completion config configwidgets coreaddons \ globalaccel i18n iconthemes jobwidgets kio newstuff package \ service solid widgetsaddons windowsystem \ ecm:build USE_QT= 5compat base declarative positioning webchannel webengine USE_XORG= x11 .include diff --git a/sysutils/plasma6-libksysguard/distinfo b/sysutils/plasma6-libksysguard/distinfo index ccf1bd418525..25fed5bbb398 100644 --- a/sysutils/plasma6-libksysguard/distinfo +++ b/sysutils/plasma6-libksysguard/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1768328296 -SHA256 (KDE/plasma/6.5.5/libksysguard-6.5.5.tar.xz) = 22b8e4812b1dfa6aef18f27d2ba66d6d7702b3e4db250cae48ab946196da734d -SIZE (KDE/plasma/6.5.5/libksysguard-6.5.5.tar.xz) = 335640 +TIMESTAMP = 1771162212 +SHA256 (KDE/plasma/6.6.0/libksysguard-6.6.0.tar.xz) = d45be151b18b469dbbb6191435e3f0a9e675d07bf1db5f08f1c7dc4a57a71d62 +SIZE (KDE/plasma/6.6.0/libksysguard-6.6.0.tar.xz) = 336824 diff --git a/sysutils/plasma6-libksysguard/pkg-plist b/sysutils/plasma6-libksysguard/pkg-plist index afec7015bc14..40172d5ad9e0 100644 --- a/sysutils/plasma6-libksysguard/pkg-plist +++ b/sysutils/plasma6-libksysguard/pkg-plist @@ -1,689 +1,691 @@ include/ksysguard/faces/FaceLoader.h include/ksysguard/faces/SensorFaceController.h include/ksysguard/faces/SensorFace_p.h include/ksysguard/faces/sensorfaces_export.h include/ksysguard/formatter/Formatter.h include/ksysguard/formatter/FormatterWrapper.h include/ksysguard/formatter/Unit.h include/ksysguard/formatter/formatter_export.h +include/ksysguard/processcore/enums.h include/ksysguard/processcore/formatter.h include/ksysguard/processcore/process.h include/ksysguard/processcore/process_attribute.h include/ksysguard/processcore/process_attribute_model.h include/ksysguard/processcore/process_controller.h include/ksysguard/processcore/process_data_model.h include/ksysguard/processcore/process_data_provider.h include/ksysguard/processcore/processcore_export.h include/ksysguard/processcore/processes.h include/ksysguard/processcore/unit.h include/ksysguard/sensors/Sensor.h include/ksysguard/sensors/SensorDataModel.h include/ksysguard/sensors/SensorInfo_p.h include/ksysguard/sensors/SensorQuery.h include/ksysguard/sensors/SensorTreeModel.h include/ksysguard/sensors/SensorUnitModel.h include/ksysguard/sensors/sensors_export.h include/ksysguard/systemstats/AggregateSensor.h include/ksysguard/systemstats/DBusInterface.h include/ksysguard/systemstats/SensorContainer.h include/ksysguard/systemstats/SensorInfo.h include/ksysguard/systemstats/SensorObject.h include/ksysguard/systemstats/SensorPlugin.h include/ksysguard/systemstats/SensorProperty.h include/ksysguard/systemstats/SensorsFeatureSensor.h include/ksysguard/systemstats/SysFsSensor.h include/ksysguard/systemstats/SysctlSensor.h include/ksysguard/systemstats/org.kde.ksystemstats1.h include/ksysguard/systemstats/systemstats_export.h lib/cmake/KSysGuard/KSysGuardConfig.cmake lib/cmake/KSysGuard/KSysGuardConfigVersion.cmake lib/cmake/KSysGuard/KSysGuardLibraryTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KSysGuard/KSysGuardLibraryTargets.cmake lib/libKSysGuardFormatter.so lib/libKSysGuardFormatter.so.2 lib/libKSysGuardFormatter.so.%%KDE_PLASMA_VERSION%% lib/libKSysGuardSensorFaces.so lib/libKSysGuardSensorFaces.so.2 lib/libKSysGuardSensorFaces.so.%%KDE_PLASMA_VERSION%% lib/libKSysGuardSensors.so lib/libKSysGuardSensors.so.2 lib/libKSysGuardSensors.so.%%KDE_PLASMA_VERSION%% lib/libKSysGuardSystemStats.so lib/libKSysGuardSystemStats.so.2 lib/libKSysGuardSystemStats.so.%%KDE_PLASMA_VERSION%% lib/libexec/kf6/kauth/ksysguardprocesslist_helper lib/libprocesscore.so lib/libprocesscore.so.10 lib/libprocesscore.so.%%KDE_PLASMA_VERSION%% %%QT_PLUGINDIR%%/kf6/packagestructure/ksysguard_sensorface.so %%QT_PLUGINDIR%%/ksysguard/process/ksysguard_plugin_gpu.so %%QT_QMLDIR%%/org/kde/ksysguard/faces/Choices.qml %%QT_QMLDIR%%/org/kde/ksysguard/faces/CompactSensorFace.qml %%QT_QMLDIR%%/org/kde/ksysguard/faces/ExtendedLegend.qml %%QT_QMLDIR%%/org/kde/ksysguard/faces/SensorFace.qml %%QT_QMLDIR%%/org/kde/ksysguard/faces/SensorFaces.qmltypes %%QT_QMLDIR%%/org/kde/ksysguard/faces/SensorRangeSpinBox.qml %%QT_QMLDIR%%/org/kde/ksysguard/faces/SuffixSpinBox.qml %%QT_QMLDIR%%/org/kde/ksysguard/faces/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/ksysguard/faces/libSensorFacesplugin.so %%QT_QMLDIR%%/org/kde/ksysguard/faces/private/SensorFacesPrivate.qmltypes %%QT_QMLDIR%%/org/kde/ksysguard/faces/private/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/ksysguard/faces/private/libSensorFacesPrivate.so %%QT_QMLDIR%%/org/kde/ksysguard/faces/private/qmldir %%QT_QMLDIR%%/org/kde/ksysguard/faces/qmldir %%QT_QMLDIR%%/org/kde/ksysguard/formatter/Formatter.qmltypes %%QT_QMLDIR%%/org/kde/ksysguard/formatter/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/ksysguard/formatter/libFormatterplugin.so %%QT_QMLDIR%%/org/kde/ksysguard/formatter/qmldir %%QT_QMLDIR%%/org/kde/ksysguard/process/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/ksysguard/process/libprocesscoreplugin.so %%QT_QMLDIR%%/org/kde/ksysguard/process/processcore.qmltypes %%QT_QMLDIR%%/org/kde/ksysguard/process/qmldir %%QT_QMLDIR%%/org/kde/ksysguard/sensors/Sensors.qmltypes %%QT_QMLDIR%%/org/kde/ksysguard/sensors/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/ksysguard/sensors/libSensorsplugin.so %%QT_QMLDIR%%/org/kde/ksysguard/sensors/qmldir share/dbus-1/interfaces/org.kde.ksystemstats1.xml share/dbus-1/system-services/org.kde.ksysguard.processlisthelper.service share/dbus-1/system.d/org.kde.ksysguard.processlisthelper.conf share/knsrcfiles/systemmonitor-faces.knsrc share/knsrcfiles/systemmonitor-presets.knsrc share/ksysguard/sensorfaces/org.kde.ksysguard.barchart/contents/config/main.xml share/ksysguard/sensorfaces/org.kde.ksysguard.barchart/contents/faceproperties share/ksysguard/sensorfaces/org.kde.ksysguard.barchart/contents/ui/BarChart.qml share/ksysguard/sensorfaces/org.kde.ksysguard.barchart/contents/ui/CompactRepresentation.qml share/ksysguard/sensorfaces/org.kde.ksysguard.barchart/contents/ui/Config.qml share/ksysguard/sensorfaces/org.kde.ksysguard.barchart/contents/ui/FullRepresentation.qml share/ksysguard/sensorfaces/org.kde.ksysguard.barchart/metadata.json share/ksysguard/sensorfaces/org.kde.ksysguard.colorgrid/contents/config/main.xml share/ksysguard/sensorfaces/org.kde.ksysguard.colorgrid/contents/faceproperties share/ksysguard/sensorfaces/org.kde.ksysguard.colorgrid/contents/ui/CompactRepresentation.qml share/ksysguard/sensorfaces/org.kde.ksysguard.colorgrid/contents/ui/Config.qml share/ksysguard/sensorfaces/org.kde.ksysguard.colorgrid/contents/ui/FaceGrid.qml share/ksysguard/sensorfaces/org.kde.ksysguard.colorgrid/contents/ui/FullRepresentation.qml share/ksysguard/sensorfaces/org.kde.ksysguard.colorgrid/contents/ui/SensorRect.qml share/ksysguard/sensorfaces/org.kde.ksysguard.colorgrid/metadata.json share/ksysguard/sensorfaces/org.kde.ksysguard.facegrid/contents/config/main.xml share/ksysguard/sensorfaces/org.kde.ksysguard.facegrid/contents/faceproperties share/ksysguard/sensorfaces/org.kde.ksysguard.facegrid/contents/ui/CompactRepresentation.qml share/ksysguard/sensorfaces/org.kde.ksysguard.facegrid/contents/ui/Config.qml share/ksysguard/sensorfaces/org.kde.ksysguard.facegrid/contents/ui/FaceControl.qml share/ksysguard/sensorfaces/org.kde.ksysguard.facegrid/contents/ui/FaceGrid.qml share/ksysguard/sensorfaces/org.kde.ksysguard.facegrid/contents/ui/FullRepresentation.qml share/ksysguard/sensorfaces/org.kde.ksysguard.facegrid/metadata.json share/ksysguard/sensorfaces/org.kde.ksysguard.horizontalbars/contents/config/main.xml share/ksysguard/sensorfaces/org.kde.ksysguard.horizontalbars/contents/faceproperties share/ksysguard/sensorfaces/org.kde.ksysguard.horizontalbars/contents/ui/Bar.qml share/ksysguard/sensorfaces/org.kde.ksysguard.horizontalbars/contents/ui/CompactRepresentation.qml share/ksysguard/sensorfaces/org.kde.ksysguard.horizontalbars/contents/ui/Config.qml share/ksysguard/sensorfaces/org.kde.ksysguard.horizontalbars/contents/ui/FullRepresentation.qml share/ksysguard/sensorfaces/org.kde.ksysguard.horizontalbars/metadata.json share/ksysguard/sensorfaces/org.kde.ksysguard.linechart/contents/config/main.xml share/ksysguard/sensorfaces/org.kde.ksysguard.linechart/contents/faceproperties share/ksysguard/sensorfaces/org.kde.ksysguard.linechart/contents/ui/CompactRepresentation.qml share/ksysguard/sensorfaces/org.kde.ksysguard.linechart/contents/ui/Config.qml share/ksysguard/sensorfaces/org.kde.ksysguard.linechart/contents/ui/FullRepresentation.qml share/ksysguard/sensorfaces/org.kde.ksysguard.linechart/contents/ui/LineChart.qml share/ksysguard/sensorfaces/org.kde.ksysguard.linechart/metadata.json share/ksysguard/sensorfaces/org.kde.ksysguard.piechart/contents/config/main.xml share/ksysguard/sensorfaces/org.kde.ksysguard.piechart/contents/faceproperties share/ksysguard/sensorfaces/org.kde.ksysguard.piechart/contents/ui/CompactRepresentation.qml share/ksysguard/sensorfaces/org.kde.ksysguard.piechart/contents/ui/Config.qml share/ksysguard/sensorfaces/org.kde.ksysguard.piechart/contents/ui/FullRepresentation.qml share/ksysguard/sensorfaces/org.kde.ksysguard.piechart/contents/ui/PieChart.qml share/ksysguard/sensorfaces/org.kde.ksysguard.piechart/contents/ui/UsedTotalDisplay.qml share/ksysguard/sensorfaces/org.kde.ksysguard.piechart/metadata.json share/ksysguard/sensorfaces/org.kde.ksysguard.textonly/contents/config/main.xml share/ksysguard/sensorfaces/org.kde.ksysguard.textonly/contents/faceproperties share/ksysguard/sensorfaces/org.kde.ksysguard.textonly/contents/ui/CompactRepresentation.qml share/ksysguard/sensorfaces/org.kde.ksysguard.textonly/contents/ui/Config.qml share/ksysguard/sensorfaces/org.kde.ksysguard.textonly/contents/ui/FullRepresentation.qml share/ksysguard/sensorfaces/org.kde.ksysguard.textonly/contents/ui/GroupedText.qml share/ksysguard/sensorfaces/org.kde.ksysguard.textonly/metadata.json share/locale/ar/LC_MESSAGES/KSysGuardFormatter.mo share/locale/ar/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/ar/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/ar/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/ar/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/ar/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.horizontalbars.mo share/locale/ar/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/ar/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/ar/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/ar/LC_MESSAGES/ksysguard_sensors.mo share/locale/ar/LC_MESSAGES/ksysguard_systemstats.mo share/locale/ar/LC_MESSAGES/processcore.mo share/locale/ast/LC_MESSAGES/KSysGuardFormatter.mo share/locale/ast/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/ast/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/ast/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/ast/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/ast/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.horizontalbars.mo share/locale/ast/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/ast/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/ast/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/ast/LC_MESSAGES/ksysguard_sensors.mo share/locale/ast/LC_MESSAGES/ksysguard_systemstats.mo share/locale/ast/LC_MESSAGES/processcore.mo share/locale/az/LC_MESSAGES/KSysGuardFormatter.mo share/locale/az/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/az/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/az/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/az/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/az/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/az/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/az/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/az/LC_MESSAGES/ksysguard_sensors.mo share/locale/az/LC_MESSAGES/processcore.mo share/locale/be/LC_MESSAGES/processcore.mo share/locale/bg/LC_MESSAGES/KSysGuardFormatter.mo share/locale/bg/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/bg/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/bg/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/bg/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/bg/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.horizontalbars.mo share/locale/bg/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/bg/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/bg/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/bg/LC_MESSAGES/ksysguard_sensors.mo share/locale/bg/LC_MESSAGES/ksysguard_systemstats.mo share/locale/bg/LC_MESSAGES/processcore.mo share/locale/bn_IN/LC_MESSAGES/processcore.mo share/locale/bs/LC_MESSAGES/processcore.mo share/locale/ca/LC_MESSAGES/KSysGuardFormatter.mo share/locale/ca/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/ca/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/ca/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/ca/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/ca/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.horizontalbars.mo share/locale/ca/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/ca/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/ca/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/ca/LC_MESSAGES/ksysguard_sensors.mo share/locale/ca/LC_MESSAGES/ksysguard_systemstats.mo share/locale/ca/LC_MESSAGES/processcore.mo share/locale/ca@valencia/LC_MESSAGES/KSysGuardFormatter.mo share/locale/ca@valencia/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/ca@valencia/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/ca@valencia/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/ca@valencia/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/ca@valencia/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.horizontalbars.mo share/locale/ca@valencia/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/ca@valencia/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/ca@valencia/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/ca@valencia/LC_MESSAGES/ksysguard_sensors.mo share/locale/ca@valencia/LC_MESSAGES/ksysguard_systemstats.mo share/locale/ca@valencia/LC_MESSAGES/processcore.mo share/locale/cs/LC_MESSAGES/KSysGuardFormatter.mo share/locale/cs/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/cs/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/cs/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/cs/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/cs/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.horizontalbars.mo share/locale/cs/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/cs/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/cs/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/cs/LC_MESSAGES/ksysguard_sensors.mo share/locale/cs/LC_MESSAGES/ksysguard_systemstats.mo share/locale/cs/LC_MESSAGES/processcore.mo share/locale/csb/LC_MESSAGES/processcore.mo share/locale/da/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/da/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/da/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/da/LC_MESSAGES/processcore.mo share/locale/de/LC_MESSAGES/KSysGuardFormatter.mo share/locale/de/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/de/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/de/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/de/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/de/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.horizontalbars.mo share/locale/de/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/de/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/de/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/de/LC_MESSAGES/ksysguard_sensors.mo share/locale/de/LC_MESSAGES/ksysguard_systemstats.mo share/locale/de/LC_MESSAGES/processcore.mo share/locale/el/LC_MESSAGES/processcore.mo share/locale/en_GB/LC_MESSAGES/KSysGuardFormatter.mo share/locale/en_GB/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/en_GB/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/en_GB/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/en_GB/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/en_GB/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.horizontalbars.mo share/locale/en_GB/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/en_GB/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/en_GB/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/en_GB/LC_MESSAGES/ksysguard_sensors.mo share/locale/en_GB/LC_MESSAGES/ksysguard_systemstats.mo share/locale/en_GB/LC_MESSAGES/processcore.mo share/locale/eo/LC_MESSAGES/KSysGuardFormatter.mo share/locale/eo/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/eo/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/eo/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/eo/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/eo/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.horizontalbars.mo share/locale/eo/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/eo/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/eo/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/eo/LC_MESSAGES/ksysguard_sensors.mo share/locale/eo/LC_MESSAGES/ksysguard_systemstats.mo share/locale/eo/LC_MESSAGES/processcore.mo share/locale/es/LC_MESSAGES/KSysGuardFormatter.mo share/locale/es/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/es/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/es/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/es/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/es/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.horizontalbars.mo share/locale/es/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/es/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/es/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/es/LC_MESSAGES/ksysguard_sensors.mo share/locale/es/LC_MESSAGES/ksysguard_systemstats.mo share/locale/es/LC_MESSAGES/processcore.mo share/locale/et/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/et/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/et/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/et/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/et/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/et/LC_MESSAGES/processcore.mo share/locale/eu/LC_MESSAGES/KSysGuardFormatter.mo share/locale/eu/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/eu/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/eu/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/eu/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/eu/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.horizontalbars.mo share/locale/eu/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/eu/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/eu/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/eu/LC_MESSAGES/ksysguard_sensors.mo share/locale/eu/LC_MESSAGES/ksysguard_systemstats.mo share/locale/eu/LC_MESSAGES/processcore.mo share/locale/fa/LC_MESSAGES/processcore.mo share/locale/fi/LC_MESSAGES/KSysGuardFormatter.mo share/locale/fi/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/fi/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/fi/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/fi/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/fi/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.horizontalbars.mo share/locale/fi/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/fi/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/fi/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/fi/LC_MESSAGES/ksysguard_sensors.mo share/locale/fi/LC_MESSAGES/ksysguard_systemstats.mo share/locale/fi/LC_MESSAGES/processcore.mo share/locale/fr/LC_MESSAGES/KSysGuardFormatter.mo share/locale/fr/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/fr/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/fr/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/fr/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/fr/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.horizontalbars.mo share/locale/fr/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/fr/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/fr/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/fr/LC_MESSAGES/ksysguard_sensors.mo share/locale/fr/LC_MESSAGES/ksysguard_systemstats.mo share/locale/fr/LC_MESSAGES/processcore.mo share/locale/fy/LC_MESSAGES/processcore.mo share/locale/ga/LC_MESSAGES/KSysGuardFormatter.mo share/locale/ga/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/ga/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/ga/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/ga/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/ga/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.horizontalbars.mo share/locale/ga/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/ga/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/ga/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/ga/LC_MESSAGES/ksysguard_sensors.mo share/locale/ga/LC_MESSAGES/ksysguard_systemstats.mo share/locale/ga/LC_MESSAGES/processcore.mo share/locale/gl/LC_MESSAGES/KSysGuardFormatter.mo share/locale/gl/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/gl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/gl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/gl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/gl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.horizontalbars.mo share/locale/gl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/gl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/gl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/gl/LC_MESSAGES/ksysguard_sensors.mo share/locale/gl/LC_MESSAGES/ksysguard_systemstats.mo share/locale/gl/LC_MESSAGES/processcore.mo share/locale/gu/LC_MESSAGES/processcore.mo share/locale/he/LC_MESSAGES/KSysGuardFormatter.mo share/locale/he/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/he/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/he/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/he/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/he/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.horizontalbars.mo share/locale/he/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/he/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/he/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/he/LC_MESSAGES/ksysguard_sensors.mo share/locale/he/LC_MESSAGES/ksysguard_systemstats.mo share/locale/he/LC_MESSAGES/processcore.mo share/locale/hi/LC_MESSAGES/KSysGuardFormatter.mo share/locale/hi/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/hi/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/hi/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/hi/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/hi/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.horizontalbars.mo share/locale/hi/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/hi/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/hi/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/hi/LC_MESSAGES/ksysguard_sensors.mo share/locale/hi/LC_MESSAGES/ksysguard_systemstats.mo share/locale/hi/LC_MESSAGES/processcore.mo share/locale/hne/LC_MESSAGES/processcore.mo share/locale/hr/LC_MESSAGES/processcore.mo share/locale/hsb/LC_MESSAGES/processcore.mo share/locale/hu/LC_MESSAGES/KSysGuardFormatter.mo share/locale/hu/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/hu/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/hu/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/hu/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/hu/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.horizontalbars.mo share/locale/hu/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/hu/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/hu/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/hu/LC_MESSAGES/ksysguard_sensors.mo share/locale/hu/LC_MESSAGES/ksysguard_systemstats.mo share/locale/hu/LC_MESSAGES/processcore.mo share/locale/ia/LC_MESSAGES/KSysGuardFormatter.mo share/locale/ia/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/ia/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/ia/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/ia/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/ia/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.horizontalbars.mo share/locale/ia/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/ia/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/ia/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/ia/LC_MESSAGES/ksysguard_sensors.mo share/locale/ia/LC_MESSAGES/ksysguard_systemstats.mo share/locale/ia/LC_MESSAGES/processcore.mo share/locale/id/LC_MESSAGES/processcore.mo share/locale/is/LC_MESSAGES/processcore.mo share/locale/it/LC_MESSAGES/KSysGuardFormatter.mo share/locale/it/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/it/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/it/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/it/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/it/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.horizontalbars.mo share/locale/it/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/it/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/it/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/it/LC_MESSAGES/ksysguard_sensors.mo share/locale/it/LC_MESSAGES/ksysguard_systemstats.mo share/locale/it/LC_MESSAGES/processcore.mo share/locale/ja/LC_MESSAGES/KSysGuardFormatter.mo share/locale/ja/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/ja/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/ja/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/ja/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/ja/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/ja/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/ja/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/ja/LC_MESSAGES/ksysguard_sensors.mo share/locale/ja/LC_MESSAGES/processcore.mo share/locale/ka/LC_MESSAGES/KSysGuardFormatter.mo share/locale/ka/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/ka/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/ka/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/ka/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/ka/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.horizontalbars.mo share/locale/ka/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/ka/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/ka/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/ka/LC_MESSAGES/ksysguard_sensors.mo share/locale/ka/LC_MESSAGES/ksysguard_systemstats.mo share/locale/ka/LC_MESSAGES/processcore.mo share/locale/kk/LC_MESSAGES/processcore.mo share/locale/km/LC_MESSAGES/processcore.mo share/locale/ko/LC_MESSAGES/KSysGuardFormatter.mo share/locale/ko/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/ko/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/ko/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/ko/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/ko/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.horizontalbars.mo share/locale/ko/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/ko/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/ko/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/ko/LC_MESSAGES/ksysguard_sensors.mo share/locale/ko/LC_MESSAGES/ksysguard_systemstats.mo share/locale/ko/LC_MESSAGES/processcore.mo share/locale/ku/LC_MESSAGES/processcore.mo share/locale/lt/LC_MESSAGES/KSysGuardFormatter.mo share/locale/lt/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/lt/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/lt/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/lt/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/lt/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.horizontalbars.mo share/locale/lt/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/lt/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/lt/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/lt/LC_MESSAGES/ksysguard_sensors.mo share/locale/lt/LC_MESSAGES/ksysguard_systemstats.mo share/locale/lt/LC_MESSAGES/processcore.mo share/locale/lv/LC_MESSAGES/KSysGuardFormatter.mo share/locale/lv/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/lv/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/lv/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/lv/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/lv/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.horizontalbars.mo share/locale/lv/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/lv/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/lv/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/lv/LC_MESSAGES/ksysguard_sensors.mo share/locale/lv/LC_MESSAGES/ksysguard_systemstats.mo share/locale/lv/LC_MESSAGES/processcore.mo share/locale/mai/LC_MESSAGES/processcore.mo share/locale/mk/LC_MESSAGES/processcore.mo share/locale/ml/LC_MESSAGES/processcore.mo share/locale/mr/LC_MESSAGES/processcore.mo share/locale/ms/LC_MESSAGES/processcore.mo share/locale/nb/LC_MESSAGES/processcore.mo share/locale/nds/LC_MESSAGES/processcore.mo share/locale/ne/LC_MESSAGES/processcore.mo share/locale/nl/LC_MESSAGES/KSysGuardFormatter.mo share/locale/nl/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/nl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/nl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/nl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/nl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.horizontalbars.mo share/locale/nl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/nl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/nl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/nl/LC_MESSAGES/ksysguard_sensors.mo share/locale/nl/LC_MESSAGES/ksysguard_systemstats.mo share/locale/nl/LC_MESSAGES/processcore.mo share/locale/nn/LC_MESSAGES/KSysGuardFormatter.mo share/locale/nn/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/nn/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/nn/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/nn/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/nn/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/nn/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/nn/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/nn/LC_MESSAGES/ksysguard_sensors.mo share/locale/nn/LC_MESSAGES/processcore.mo share/locale/oc/LC_MESSAGES/processcore.mo share/locale/or/LC_MESSAGES/processcore.mo share/locale/pa/LC_MESSAGES/KSysGuardFormatter.mo share/locale/pa/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/pa/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/pa/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/pa/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/pa/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.horizontalbars.mo share/locale/pa/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/pa/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/pa/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/pa/LC_MESSAGES/ksysguard_sensors.mo share/locale/pa/LC_MESSAGES/processcore.mo share/locale/pl/LC_MESSAGES/KSysGuardFormatter.mo share/locale/pl/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/pl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/pl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/pl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/pl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.horizontalbars.mo share/locale/pl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/pl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/pl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/pl/LC_MESSAGES/ksysguard_sensors.mo share/locale/pl/LC_MESSAGES/ksysguard_systemstats.mo share/locale/pl/LC_MESSAGES/processcore.mo share/locale/pt/LC_MESSAGES/KSysGuardFormatter.mo share/locale/pt/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/pt/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/pt/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/pt/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/pt/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/pt/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/pt/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/pt/LC_MESSAGES/ksysguard_sensors.mo share/locale/pt/LC_MESSAGES/processcore.mo share/locale/pt_BR/LC_MESSAGES/KSysGuardFormatter.mo share/locale/pt_BR/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/pt_BR/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/pt_BR/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/pt_BR/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/pt_BR/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.horizontalbars.mo share/locale/pt_BR/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/pt_BR/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/pt_BR/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/pt_BR/LC_MESSAGES/ksysguard_sensors.mo share/locale/pt_BR/LC_MESSAGES/ksysguard_systemstats.mo share/locale/pt_BR/LC_MESSAGES/processcore.mo share/locale/ro/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/ro/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/ro/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/ro/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/ro/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/ro/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/ro/LC_MESSAGES/processcore.mo share/locale/ru/LC_MESSAGES/KSysGuardFormatter.mo share/locale/ru/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/ru/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/ru/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/ru/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/ru/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.horizontalbars.mo share/locale/ru/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/ru/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/ru/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/ru/LC_MESSAGES/ksysguard_sensors.mo share/locale/ru/LC_MESSAGES/ksysguard_systemstats.mo share/locale/ru/LC_MESSAGES/processcore.mo share/locale/sa/LC_MESSAGES/KSysGuardFormatter.mo share/locale/sa/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/sa/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/sa/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/sa/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/sa/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.horizontalbars.mo share/locale/sa/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/sa/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/sa/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/sa/LC_MESSAGES/ksysguard_sensors.mo share/locale/sa/LC_MESSAGES/ksysguard_systemstats.mo share/locale/sa/LC_MESSAGES/processcore.mo share/locale/se/LC_MESSAGES/processcore.mo share/locale/si/LC_MESSAGES/processcore.mo share/locale/sk/LC_MESSAGES/KSysGuardFormatter.mo share/locale/sk/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/sk/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/sk/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/sk/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/sk/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.horizontalbars.mo share/locale/sk/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/sk/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/sk/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/sk/LC_MESSAGES/ksysguard_sensors.mo share/locale/sk/LC_MESSAGES/ksysguard_systemstats.mo share/locale/sk/LC_MESSAGES/processcore.mo share/locale/sl/LC_MESSAGES/KSysGuardFormatter.mo share/locale/sl/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/sl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/sl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/sl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/sl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.horizontalbars.mo share/locale/sl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/sl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/sl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/sl/LC_MESSAGES/ksysguard_sensors.mo share/locale/sl/LC_MESSAGES/ksysguard_systemstats.mo share/locale/sl/LC_MESSAGES/processcore.mo share/locale/sq/LC_MESSAGES/processcore.mo share/locale/sr/LC_MESSAGES/processcore.mo share/locale/sr@ijekavian/LC_MESSAGES/processcore.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/processcore.mo share/locale/sr@latin/LC_MESSAGES/processcore.mo share/locale/sv/LC_MESSAGES/KSysGuardFormatter.mo share/locale/sv/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/sv/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/sv/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/sv/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/sv/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.horizontalbars.mo share/locale/sv/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/sv/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/sv/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/sv/LC_MESSAGES/ksysguard_sensors.mo share/locale/sv/LC_MESSAGES/ksysguard_systemstats.mo share/locale/sv/LC_MESSAGES/processcore.mo +share/locale/ta/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/ta/LC_MESSAGES/processcore.mo share/locale/te/LC_MESSAGES/processcore.mo share/locale/tg/LC_MESSAGES/processcore.mo share/locale/th/LC_MESSAGES/processcore.mo share/locale/tr/LC_MESSAGES/KSysGuardFormatter.mo share/locale/tr/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/tr/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/tr/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/tr/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/tr/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.horizontalbars.mo share/locale/tr/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/tr/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/tr/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/tr/LC_MESSAGES/ksysguard_sensors.mo share/locale/tr/LC_MESSAGES/ksysguard_systemstats.mo share/locale/tr/LC_MESSAGES/processcore.mo share/locale/ug/LC_MESSAGES/processcore.mo share/locale/uk/LC_MESSAGES/KSysGuardFormatter.mo share/locale/uk/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/uk/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/uk/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/uk/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/uk/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.horizontalbars.mo share/locale/uk/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/uk/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/uk/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/uk/LC_MESSAGES/ksysguard_sensors.mo share/locale/uk/LC_MESSAGES/ksysguard_systemstats.mo share/locale/uk/LC_MESSAGES/processcore.mo share/locale/vi/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/vi/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/vi/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/vi/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/vi/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/vi/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/wa/LC_MESSAGES/processcore.mo share/locale/zh_CN/LC_MESSAGES/KSysGuardFormatter.mo share/locale/zh_CN/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/zh_CN/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/zh_CN/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/zh_CN/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/zh_CN/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.horizontalbars.mo share/locale/zh_CN/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/zh_CN/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/zh_CN/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/zh_CN/LC_MESSAGES/ksysguard_sensors.mo share/locale/zh_CN/LC_MESSAGES/ksysguard_systemstats.mo share/locale/zh_CN/LC_MESSAGES/processcore.mo share/locale/zh_TW/LC_MESSAGES/KSysGuardFormatter.mo share/locale/zh_TW/LC_MESSAGES/KSysGuardSensorFaces.mo share/locale/zh_TW/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.barchart.mo share/locale/zh_TW/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.colorgrid.mo share/locale/zh_TW/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.facegrid.mo share/locale/zh_TW/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.horizontalbars.mo share/locale/zh_TW/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.linechart.mo share/locale/zh_TW/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.piechart.mo share/locale/zh_TW/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.textonly.mo share/locale/zh_TW/LC_MESSAGES/ksysguard_sensors.mo share/locale/zh_TW/LC_MESSAGES/ksysguard_systemstats.mo share/locale/zh_TW/LC_MESSAGES/processcore.mo share/polkit-1/actions/org.kde.ksysguard.processlisthelper.policy share/qlogging-categories6/libksysguard.categories diff --git a/sysutils/plasma6-plasma-disks/Makefile b/sysutils/plasma6-plasma-disks/Makefile index 6804a6922f7d..968894523329 100644 --- a/sysutils/plasma6-plasma-disks/Makefile +++ b/sysutils/plasma6-plasma-disks/Makefile @@ -1,18 +1,17 @@ PORTNAME= plasma-disks DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= sysutils kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Monitors S.M.A.R.T. capable devices for imminent failure RUN_DEPENDS= smartmontools>0:sysutils/smartmontools USES= cmake gettext gl kde:6 qt:6 tar:xz USE_KDE= auth config coreaddons dbusaddons i18n kcmutils kio \ notifications package service solid \ ecm:build USE_GL= gl opengl USE_QT= base declarative .include diff --git a/sysutils/plasma6-plasma-disks/distinfo b/sysutils/plasma6-plasma-disks/distinfo index 013483217f9d..940344fc9e3a 100644 --- a/sysutils/plasma6-plasma-disks/distinfo +++ b/sysutils/plasma6-plasma-disks/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1768328297 -SHA256 (KDE/plasma/6.5.5/plasma-disks-6.5.5.tar.xz) = df3863ebbfd1fdc925e01b1fc95e906016a452d77854a20fcb2297681dc46b77 -SIZE (KDE/plasma/6.5.5/plasma-disks-6.5.5.tar.xz) = 105252 +TIMESTAMP = 1771162212 +SHA256 (KDE/plasma/6.6.0/plasma-disks-6.6.0.tar.xz) = 4a4e1038e8f0ff434751868d50373fb1e23a0f2c05fc18aac13f8d2742b0b823 +SIZE (KDE/plasma/6.6.0/plasma-disks-6.6.0.tar.xz) = 107024 diff --git a/sysutils/plasma6-plasma-systemmonitor/Makefile b/sysutils/plasma6-plasma-systemmonitor/Makefile index c5952f04792a..5e564aefdaeb 100644 --- a/sysutils/plasma6-plasma-systemmonitor/Makefile +++ b/sysutils/plasma6-plasma-systemmonitor/Makefile @@ -1,21 +1,20 @@ PORTNAME= plasma-systemmonitor DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= sysutils kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Interface for monitoring system sensors, process information and other system resources USES= cmake gettext gl kde:6 python:run qt:6 shebangfix tar:xz xorg USE_KDE= attica config coreaddons dbusaddons globalaccel i18n \ itemmodels kio kirigami-addons kcmutils kquickcharts libksysguard \ newstuff package service windowsystem \ ecm:build \ ksystemstats:run USE_QT= base declarative USE_XORG= x11 USE_GL= gl opengl SHEBANG_FILES= kconf_update/plasma-systemmonitor-replace-vmpss.py .include diff --git a/sysutils/plasma6-plasma-systemmonitor/distinfo b/sysutils/plasma6-plasma-systemmonitor/distinfo index 5898bb206b0a..aeee8ff70c58 100644 --- a/sysutils/plasma6-plasma-systemmonitor/distinfo +++ b/sysutils/plasma6-plasma-systemmonitor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1768328297 -SHA256 (KDE/plasma/6.5.5/plasma-systemmonitor-6.5.5.tar.xz) = 8be93fa95d510f2b53ac8a86f7e66aa10e5480af3632e419689bdb5ad33ef1fe -SIZE (KDE/plasma/6.5.5/plasma-systemmonitor-6.5.5.tar.xz) = 220212 +TIMESTAMP = 1771162213 +SHA256 (KDE/plasma/6.6.0/plasma-systemmonitor-6.6.0.tar.xz) = c105ed686ad0799a89bf968213ab4a719820d8eb2609bd76033d656807aef958 +SIZE (KDE/plasma/6.6.0/plasma-systemmonitor-6.6.0.tar.xz) = 236824 diff --git a/sysutils/plasma6-plasma-systemmonitor/pkg-plist b/sysutils/plasma6-plasma-systemmonitor/pkg-plist index debaeca379a5..6149eee957ed 100644 --- a/sysutils/plasma6-plasma-systemmonitor/pkg-plist +++ b/sysutils/plasma6-plasma-systemmonitor/pkg-plist @@ -1,211 +1,212 @@ bin/plasma-systemmonitor lib/libPlasmaSystemMonitorPage.so lib/libPlasmaSystemMonitorTable.so %%QT_QMLDIR%%/org/kde/ksysguard/page/ColumnControl.qml %%QT_QMLDIR%%/org/kde/ksysguard/page/ConditionalLoader.qml %%QT_QMLDIR%%/org/kde/ksysguard/page/Container.qml %%QT_QMLDIR%%/org/kde/ksysguard/page/DialogLoader.qml %%QT_QMLDIR%%/org/kde/ksysguard/page/EditablePage.qml %%QT_QMLDIR%%/org/kde/ksysguard/page/EditablePageAction.qml %%QT_QMLDIR%%/org/kde/ksysguard/page/EditorToolBar.qml %%QT_QMLDIR%%/org/kde/ksysguard/page/FaceConfigurationPage.qml %%QT_QMLDIR%%/org/kde/ksysguard/page/FaceControl.qml %%QT_QMLDIR%%/org/kde/ksysguard/page/LoadPresetDialog.qml %%QT_QMLDIR%%/org/kde/ksysguard/page/MissingSensorsDialog.qml %%QT_QMLDIR%%/org/kde/ksysguard/page/MoveButton.qml %%QT_QMLDIR%%/org/kde/ksysguard/page/PageContents.qml %%QT_QMLDIR%%/org/kde/ksysguard/page/PageDialog.qml %%QT_QMLDIR%%/org/kde/ksysguard/page/PageEditor.qml %%QT_QMLDIR%%/org/kde/ksysguard/page/PageSortDialog.qml %%QT_QMLDIR%%/org/kde/ksysguard/page/PlaceholderRectangle.qml %%QT_QMLDIR%%/org/kde/ksysguard/page/PlasmaSystemMonitorPage.qmltypes %%QT_QMLDIR%%/org/kde/ksysguard/page/RowControl.qml %%QT_QMLDIR%%/org/kde/ksysguard/page/SectionControl.qml %%QT_QMLDIR%%/org/kde/ksysguard/page/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/ksysguard/page/libPlasmaSystemMonitorPageplugin.so %%QT_QMLDIR%%/org/kde/ksysguard/page/qmldir %%QT_QMLDIR%%/org/kde/ksysguard/table/BaseCellDelegate.qml %%QT_QMLDIR%%/org/kde/ksysguard/table/BaseTableView.qml %%QT_QMLDIR%%/org/kde/ksysguard/table/ColumnConfigurationDialog.qml %%QT_QMLDIR%%/org/kde/ksysguard/table/FirstCellDelegate.qml %%QT_QMLDIR%%/org/kde/ksysguard/table/KillDialog.qml %%QT_QMLDIR%%/org/kde/ksysguard/table/LineChartCellDelegate.qml %%QT_QMLDIR%%/org/kde/ksysguard/table/PlasmaSystemMonitorTable.qmltypes +%%QT_QMLDIR%%/org/kde/ksysguard/table/ReniceDialog.qml %%QT_QMLDIR%%/org/kde/ksysguard/table/TableViewHeader.qml %%QT_QMLDIR%%/org/kde/ksysguard/table/TextCellDelegate.qml %%QT_QMLDIR%%/org/kde/ksysguard/table/UserCellDelegate.qml %%QT_QMLDIR%%/org/kde/ksysguard/table/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/ksysguard/table/libPlasmaSystemMonitorTableplugin.so %%QT_QMLDIR%%/org/kde/ksysguard/table/qmldir share/applications/org.kde.plasma-systemmonitor.desktop share/kconf_update/plasma-systemmonitor-replace-vmpss.py share/kconf_update/plasma-systemmonitor.upd share/kglobalaccel/org.kde.plasma-systemmonitor.desktop share/knsrcfiles/plasma-systemmonitor.knsrc share/ksysguard/sensorfaces/org.kde.ksysguard.applicationstable/contents/config/main.xml share/ksysguard/sensorfaces/org.kde.ksysguard.applicationstable/contents/faceproperties share/ksysguard/sensorfaces/org.kde.ksysguard.applicationstable/contents/ui/ApplicationDetails.qml share/ksysguard/sensorfaces/org.kde.ksysguard.applicationstable/contents/ui/ApplicationInformation.qml share/ksysguard/sensorfaces/org.kde.ksysguard.applicationstable/contents/ui/ApplicationsTableView.qml share/ksysguard/sensorfaces/org.kde.ksysguard.applicationstable/contents/ui/CompactRepresentation.qml share/ksysguard/sensorfaces/org.kde.ksysguard.applicationstable/contents/ui/Config.qml share/ksysguard/sensorfaces/org.kde.ksysguard.applicationstable/contents/ui/FullRepresentation.qml share/ksysguard/sensorfaces/org.kde.ksysguard.applicationstable/contents/ui/LineChartCard.qml share/ksysguard/sensorfaces/org.kde.ksysguard.applicationstable/metadata.json share/ksysguard/sensorfaces/org.kde.ksysguard.processtable/contents/config/main.xml share/ksysguard/sensorfaces/org.kde.ksysguard.processtable/contents/faceproperties share/ksysguard/sensorfaces/org.kde.ksysguard.processtable/contents/ui/CompactRepresentation.qml share/ksysguard/sensorfaces/org.kde.ksysguard.processtable/contents/ui/Config.qml share/ksysguard/sensorfaces/org.kde.ksysguard.processtable/contents/ui/FullRepresentation.qml share/ksysguard/sensorfaces/org.kde.ksysguard.processtable/contents/ui/ProcessTableView.qml share/ksysguard/sensorfaces/org.kde.ksysguard.processtable/metadata.json share/locale/ar/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo share/locale/ar/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo share/locale/ar/LC_MESSAGES/plasma-systemmonitor.mo share/locale/ast/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo share/locale/ast/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo share/locale/ast/LC_MESSAGES/plasma-systemmonitor.mo share/locale/az/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo share/locale/az/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo share/locale/az/LC_MESSAGES/plasma-systemmonitor.mo share/locale/be/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo share/locale/be/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo share/locale/be/LC_MESSAGES/plasma-systemmonitor.mo share/locale/bg/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo share/locale/bg/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo share/locale/bg/LC_MESSAGES/plasma-systemmonitor.mo share/locale/ca/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo share/locale/ca/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo share/locale/ca/LC_MESSAGES/plasma-systemmonitor.mo share/locale/ca@valencia/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo share/locale/ca@valencia/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo share/locale/ca@valencia/LC_MESSAGES/plasma-systemmonitor.mo share/locale/cs/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo share/locale/cs/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo share/locale/cs/LC_MESSAGES/plasma-systemmonitor.mo share/locale/da/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo share/locale/da/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo share/locale/da/LC_MESSAGES/plasma-systemmonitor.mo share/locale/de/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo share/locale/de/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo share/locale/de/LC_MESSAGES/plasma-systemmonitor.mo share/locale/en_GB/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo share/locale/en_GB/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo share/locale/en_GB/LC_MESSAGES/plasma-systemmonitor.mo share/locale/eo/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo share/locale/eo/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo share/locale/eo/LC_MESSAGES/plasma-systemmonitor.mo share/locale/es/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo share/locale/es/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo share/locale/es/LC_MESSAGES/plasma-systemmonitor.mo share/locale/eu/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo share/locale/eu/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo share/locale/eu/LC_MESSAGES/plasma-systemmonitor.mo share/locale/fi/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo share/locale/fi/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo share/locale/fi/LC_MESSAGES/plasma-systemmonitor.mo share/locale/fr/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo share/locale/fr/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo share/locale/fr/LC_MESSAGES/plasma-systemmonitor.mo share/locale/ga/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo share/locale/ga/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo share/locale/ga/LC_MESSAGES/plasma-systemmonitor.mo share/locale/gl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo share/locale/gl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo share/locale/gl/LC_MESSAGES/plasma-systemmonitor.mo share/locale/he/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo share/locale/he/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo share/locale/he/LC_MESSAGES/plasma-systemmonitor.mo share/locale/hi/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo share/locale/hi/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo share/locale/hi/LC_MESSAGES/plasma-systemmonitor.mo share/locale/hu/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo share/locale/hu/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo share/locale/hu/LC_MESSAGES/plasma-systemmonitor.mo share/locale/ia/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo share/locale/ia/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo share/locale/ia/LC_MESSAGES/plasma-systemmonitor.mo share/locale/id/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo share/locale/id/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo share/locale/id/LC_MESSAGES/plasma-systemmonitor.mo share/locale/is/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo share/locale/is/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo share/locale/is/LC_MESSAGES/plasma-systemmonitor.mo share/locale/it/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo share/locale/it/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo share/locale/it/LC_MESSAGES/plasma-systemmonitor.mo share/locale/ja/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo share/locale/ja/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo share/locale/ja/LC_MESSAGES/plasma-systemmonitor.mo share/locale/ka/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo share/locale/ka/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo share/locale/ka/LC_MESSAGES/plasma-systemmonitor.mo share/locale/ko/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo share/locale/ko/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo share/locale/ko/LC_MESSAGES/plasma-systemmonitor.mo share/locale/lt/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo share/locale/lt/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo share/locale/lt/LC_MESSAGES/plasma-systemmonitor.mo share/locale/lv/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo share/locale/lv/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo share/locale/lv/LC_MESSAGES/plasma-systemmonitor.mo share/locale/nb/LC_MESSAGES/plasma-systemmonitor.mo share/locale/nl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo share/locale/nl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo share/locale/nl/LC_MESSAGES/plasma-systemmonitor.mo share/locale/nn/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo share/locale/nn/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo share/locale/nn/LC_MESSAGES/plasma-systemmonitor.mo share/locale/pa/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo share/locale/pa/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo share/locale/pa/LC_MESSAGES/plasma-systemmonitor.mo share/locale/pl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo share/locale/pl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo share/locale/pl/LC_MESSAGES/plasma-systemmonitor.mo share/locale/pt/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo share/locale/pt/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo share/locale/pt/LC_MESSAGES/plasma-systemmonitor.mo share/locale/pt_BR/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo share/locale/pt_BR/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo share/locale/pt_BR/LC_MESSAGES/plasma-systemmonitor.mo share/locale/ro/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo share/locale/ro/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo share/locale/ro/LC_MESSAGES/plasma-systemmonitor.mo share/locale/ru/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo share/locale/ru/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo share/locale/ru/LC_MESSAGES/plasma-systemmonitor.mo share/locale/sa/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo share/locale/sa/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo share/locale/sa/LC_MESSAGES/plasma-systemmonitor.mo share/locale/sk/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo share/locale/sk/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo share/locale/sk/LC_MESSAGES/plasma-systemmonitor.mo share/locale/sl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo share/locale/sl/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo share/locale/sl/LC_MESSAGES/plasma-systemmonitor.mo share/locale/sv/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo share/locale/sv/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo share/locale/sv/LC_MESSAGES/plasma-systemmonitor.mo share/locale/ta/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo share/locale/ta/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo share/locale/ta/LC_MESSAGES/plasma-systemmonitor.mo share/locale/tr/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo share/locale/tr/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo share/locale/tr/LC_MESSAGES/plasma-systemmonitor.mo share/locale/uk/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo share/locale/uk/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo share/locale/uk/LC_MESSAGES/plasma-systemmonitor.mo share/locale/zh_CN/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo share/locale/zh_CN/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo share/locale/zh_CN/LC_MESSAGES/plasma-systemmonitor.mo share/locale/zh_TW/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.applicationstable.mo share/locale/zh_TW/LC_MESSAGES/ksysguard_face_org.kde.ksysguard.processtable.mo share/locale/zh_TW/LC_MESSAGES/plasma-systemmonitor.mo share/metainfo/org.kde.plasma-systemmonitor.metainfo.xml %%DATADIR%%/applications.page %%DATADIR%%/history.page %%DATADIR%%/old-history.page %%DATADIR%%/old-overview.page %%DATADIR%%/overview.page %%DATADIR%%/processes.page share/plasma/kinfocenter/externalmodules/kcm_external_plasma-systemmonitor.desktop diff --git a/sysutils/plasma6-polkit-kde-agent-1/distinfo b/sysutils/plasma6-polkit-kde-agent-1/distinfo index 58af9979b878..b7220cfff3ca 100644 --- a/sysutils/plasma6-polkit-kde-agent-1/distinfo +++ b/sysutils/plasma6-polkit-kde-agent-1/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1768328298 -SHA256 (KDE/plasma/6.5.5/polkit-kde-agent-1-6.5.5.tar.xz) = e75d827e5b54c0ea05e7a01ae90b3d3d839dff5fcbe0903abf0527dcae193d4a -SIZE (KDE/plasma/6.5.5/polkit-kde-agent-1-6.5.5.tar.xz) = 57636 +TIMESTAMP = 1771162213 +SHA256 (KDE/plasma/6.6.0/polkit-kde-agent-1-6.6.0.tar.xz) = a9dcef012f6e1bb54ea1aee397108d683cccb77a0f2c762010d7547684b4692b +SIZE (KDE/plasma/6.6.0/polkit-kde-agent-1-6.6.0.tar.xz) = 57460 diff --git a/sysutils/plasma6-powerdevil/Makefile b/sysutils/plasma6-powerdevil/Makefile index 646781998829..d030934be580 100644 --- a/sysutils/plasma6-powerdevil/Makefile +++ b/sysutils/plasma6-powerdevil/Makefile @@ -1,24 +1,23 @@ PORTNAME= powerdevil DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= sysutils kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Manages the power consumption settings of a Plasma shell LIB_DEPENDS= libudev.so:devel/libudev-devd \ libxkbcommon.so:x11/libxkbcommon RUN_DEPENDS= ${LOCALBASE}/libexec/upowerd:sysutils/upower USES= cmake gettext gl kde:6 qt:6 tar:xz xorg USE_GL= gl opengl USE_KDE= activities auth colorscheme completion config configwidgets \ coreaddons crash dbusaddons doctools globalaccel i18n idletime \ itemmodels jobwidgets kcmutils kio kirigami2 layer-shell-qt \ libkscreen notifications notifyconfig plasma-workspace service \ solid widgetsaddons windowsystem xmlgui \ ecm:build USE_QT= base declarative USE_XORG= x11 xcb .include diff --git a/sysutils/plasma6-powerdevil/distinfo b/sysutils/plasma6-powerdevil/distinfo index f1023ce86bf4..51ee1a1fd258 100644 --- a/sysutils/plasma6-powerdevil/distinfo +++ b/sysutils/plasma6-powerdevil/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1768328298 -SHA256 (KDE/plasma/6.5.5/powerdevil-6.5.5.tar.xz) = 1f67c14d05df9cdf86571dd86c33ad91e855e5595cabab7f42289bf7e35ebfe4 -SIZE (KDE/plasma/6.5.5/powerdevil-6.5.5.tar.xz) = 1244852 +TIMESTAMP = 1771162213 +SHA256 (KDE/plasma/6.6.0/powerdevil-6.6.0.tar.xz) = 5290db86ba546d9fc7ac468d4d7e68759a476bc7b9be8775ce0ddea2f4c2db4e +SIZE (KDE/plasma/6.6.0/powerdevil-6.6.0.tar.xz) = 1254976 diff --git a/sysutils/plasma6-systemsettings/Makefile b/sysutils/plasma6-systemsettings/Makefile index dd4661979533..4e8815f43bce 100644 --- a/sysutils/plasma6-systemsettings/Makefile +++ b/sysutils/plasma6-systemsettings/Makefile @@ -1,22 +1,21 @@ PORTNAME= systemsettings DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= sysutils kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Control center to configure your Plasma Desktop RUN_DEPENDS= accountsservice>0:sysutils/accountsservice USES= cmake gettext gl kde:6 qt:6 tar:xz xorg USE_GL= gl opengl USE_KDE= activities auth colorscheme completion config configwidgets \ coreaddons crash dbusaddons doctools guiaddons i18n iconthemes \ itemmodels itemviews jobwidgets kcmutils kio kirigami2 \ package plasma-workspace runner service solid \ widgetsaddons windowsystem xmlgui \ ecm:build USE_QT= base declarative USE_XORG= x11 .include diff --git a/sysutils/plasma6-systemsettings/distinfo b/sysutils/plasma6-systemsettings/distinfo index a9194837a074..45edd990de3e 100644 --- a/sysutils/plasma6-systemsettings/distinfo +++ b/sysutils/plasma6-systemsettings/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1768328299 -SHA256 (KDE/plasma/6.5.5/systemsettings-6.5.5.tar.xz) = 8677fe07e66bad787e7ef43e935296c201973a4ec9505ba00d6f3afe4b1cc2c6 -SIZE (KDE/plasma/6.5.5/systemsettings-6.5.5.tar.xz) = 220900 +TIMESTAMP = 1771162214 +SHA256 (KDE/plasma/6.6.0/systemsettings-6.6.0.tar.xz) = d0c8bf9a89cea5f1d7463b115054c0060dfa8efb9e2720b727ca80cf6bff6249 +SIZE (KDE/plasma/6.6.0/systemsettings-6.6.0.tar.xz) = 222060 diff --git a/www/plasma6-plasma-browser-integration/Makefile b/www/plasma6-plasma-browser-integration/Makefile index c165126cc084..8373f640af8b 100644 --- a/www/plasma6-plasma-browser-integration/Makefile +++ b/www/plasma6-plasma-browser-integration/Makefile @@ -1,21 +1,20 @@ PORTNAME= plasma-browser-integration DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= www kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Components necessary to integrate browsers into the Plasma Desktop USES= cmake gettext gl kde:6 qt:6 tar:xz USE_KDE= activities config coreaddons crash dbusaddons filemetadata \ i18n itemmodels jobwidgets kio notifications plasma-workspace \ purpose runner service statusnotifieritem \ ecm:build USE_GL= gl opengl USE_QT= base declarative post-patch: ${REINPLACE_CMD} "/^add_subdirectory(flatpak-integrator)/d" \ ${WRKSRC}/CMakeLists.txt .include diff --git a/www/plasma6-plasma-browser-integration/distinfo b/www/plasma6-plasma-browser-integration/distinfo index ea2e81f88dda..1c62bd8bd863 100644 --- a/www/plasma6-plasma-browser-integration/distinfo +++ b/www/plasma6-plasma-browser-integration/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1768328300 -SHA256 (KDE/plasma/6.5.5/plasma-browser-integration-6.5.5.tar.xz) = 88e9a2ccbeefa2bb2fbbff86b19d8ac45176100a89153628ade173ed6c1bd9ee -SIZE (KDE/plasma/6.5.5/plasma-browser-integration-6.5.5.tar.xz) = 236308 +TIMESTAMP = 1771162214 +SHA256 (KDE/plasma/6.6.0/plasma-browser-integration-6.6.0.tar.xz) = f09c2e7dcdca53d0284dad9d172b5ef5b9f2368cfabbe644348ca7705784e7dc +SIZE (KDE/plasma/6.6.0/plasma-browser-integration-6.6.0.tar.xz) = 239616 diff --git a/www/plasma6-plasma-browser-integration/pkg-plist b/www/plasma6-plasma-browser-integration/pkg-plist index 2b19d0d7ca54..23f5e92d53bf 100644 --- a/www/plasma6-plasma-browser-integration/pkg-plist +++ b/www/plasma6-plasma-browser-integration/pkg-plist @@ -1,109 +1,112 @@ bin/plasma-browser-integration-host etc/chromium/native-messaging-hosts/org.kde.plasma.browser_integration.json etc/opt/chrome/native-messaging-hosts/org.kde.plasma.browser_integration.json etc/opt/edge/native-messaging-hosts/org.kde.plasma.browser_integration.json lib/librewolf/native-messaging-hosts/org.kde.plasma.browser_integration.json lib/mozilla/native-messaging-hosts/org.kde.plasma.browser_integration.json %%QT_PLUGINDIR%%/kf6/kded/browserintegrationreminder.so +lib/waterfox/native-messaging-hosts/org.kde.plasma.browser_integration.json share/applications/org.kde.plasma.browser_integration.host.desktop share/krunner/dbusplugins/plasma-runner-browserhistory.desktop share/krunner/dbusplugins/plasma-runner-browsertabs.desktop share/locale/ar/LC_MESSAGES/plasma-browser-integration-host.mo share/locale/ar/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/ast/LC_MESSAGES/plasma-browser-integration-host.mo share/locale/ast/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/az/LC_MESSAGES/plasma-browser-integration-host.mo share/locale/az/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/bg/LC_MESSAGES/plasma-browser-integration-host.mo share/locale/bg/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/ca/LC_MESSAGES/plasma-browser-integration-host.mo share/locale/ca/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/ca@valencia/LC_MESSAGES/plasma-browser-integration-host.mo share/locale/ca@valencia/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/cs/LC_MESSAGES/plasma-browser-integration-host.mo share/locale/cs/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/da/LC_MESSAGES/plasma-browser-integration-host.mo share/locale/da/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/de/LC_MESSAGES/plasma-browser-integration-host.mo share/locale/de/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/el/LC_MESSAGES/plasma-browser-integration-host.mo share/locale/el/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/en_GB/LC_MESSAGES/plasma-browser-integration-host.mo share/locale/en_GB/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/eo/LC_MESSAGES/plasma-browser-integration-host.mo share/locale/eo/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/es/LC_MESSAGES/plasma-browser-integration-host.mo share/locale/es/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/et/LC_MESSAGES/plasma-browser-integration-host.mo share/locale/et/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/eu/LC_MESSAGES/plasma-browser-integration-host.mo share/locale/eu/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/fi/LC_MESSAGES/plasma-browser-integration-host.mo share/locale/fi/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/fr/LC_MESSAGES/plasma-browser-integration-host.mo share/locale/fr/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/ga/LC_MESSAGES/plasma-browser-integration-host.mo share/locale/ga/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/gl/LC_MESSAGES/plasma-browser-integration-host.mo share/locale/gl/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/he/LC_MESSAGES/plasma-browser-integration-host.mo share/locale/he/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/hi/LC_MESSAGES/plasma-browser-integration-host.mo share/locale/hi/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/hu/LC_MESSAGES/plasma-browser-integration-host.mo share/locale/hu/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/ia/LC_MESSAGES/plasma-browser-integration-host.mo share/locale/ia/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/id/LC_MESSAGES/plasma-browser-integration-host.mo share/locale/id/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/is/LC_MESSAGES/plasma-browser-integration-host.mo share/locale/is/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/it/LC_MESSAGES/plasma-browser-integration-host.mo share/locale/it/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/ja/LC_MESSAGES/plasma-browser-integration-host.mo share/locale/ja/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/ka/LC_MESSAGES/plasma-browser-integration-host.mo share/locale/ka/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/ko/LC_MESSAGES/plasma-browser-integration-host.mo share/locale/ko/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/lt/LC_MESSAGES/plasma-browser-integration-host.mo share/locale/lt/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/lv/LC_MESSAGES/plasma-browser-integration-host.mo share/locale/lv/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/ml/LC_MESSAGES/plasma-browser-integration-host.mo share/locale/ml/LC_MESSAGES/plasma-browser-integration-reminder.mo +share/locale/nb/LC_MESSAGES/plasma-browser-integration-host.mo +share/locale/nb/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/nl/LC_MESSAGES/plasma-browser-integration-host.mo share/locale/nl/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/nn/LC_MESSAGES/plasma-browser-integration-host.mo share/locale/nn/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/pa/LC_MESSAGES/plasma-browser-integration-host.mo share/locale/pa/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/pl/LC_MESSAGES/plasma-browser-integration-host.mo share/locale/pl/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/pt/LC_MESSAGES/plasma-browser-integration-host.mo share/locale/pt/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/pt_BR/LC_MESSAGES/plasma-browser-integration-host.mo share/locale/pt_BR/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/ro/LC_MESSAGES/plasma-browser-integration-host.mo share/locale/ro/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/ru/LC_MESSAGES/plasma-browser-integration-host.mo share/locale/ru/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/sa/LC_MESSAGES/plasma-browser-integration-host.mo share/locale/sa/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/sk/LC_MESSAGES/plasma-browser-integration-host.mo share/locale/sk/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/sl/LC_MESSAGES/plasma-browser-integration-host.mo share/locale/sl/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/sv/LC_MESSAGES/plasma-browser-integration-host.mo share/locale/sv/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/ta/LC_MESSAGES/plasma-browser-integration-host.mo share/locale/ta/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/tg/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/tr/LC_MESSAGES/plasma-browser-integration-host.mo share/locale/tr/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/uk/LC_MESSAGES/plasma-browser-integration-host.mo share/locale/uk/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/zh_CN/LC_MESSAGES/plasma-browser-integration-host.mo share/locale/zh_CN/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/zh_TW/LC_MESSAGES/plasma-browser-integration-host.mo share/locale/zh_TW/LC_MESSAGES/plasma-browser-integration-reminder.mo diff --git a/x11-themes/plasma6-aurorae/Makefile b/x11-themes/plasma6-aurorae/Makefile index 2ba9285c2d4c..77c078fd95db 100644 --- a/x11-themes/plasma6-aurorae/Makefile +++ b/x11-themes/plasma6-aurorae/Makefile @@ -1,20 +1,19 @@ PORTNAME= aurorae DISTVERSION= ${KDE_PLASMA_VERSION} CATEGORIES= x11-themes kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Themeable window decoration for KWin USES= cmake gettext gl kde:6 qt:6 shebangfix tar:xz xorg USE_GL= gl opengl USE_KDE= colorscheme config coreaddons decoration i18n \ - kcmutils newstuff package \ - ecm:build \ - svg:run + kcmutils newstuff package svg \ + ecm:build USE_QT= base declarative tools USE_XORG= x11 -SHEBANG_FILES= src/plasma-apply-aurorae.cmake +SHEBANG_FILES= plasma-apply-aurorae.cmake bash_CMD= /bin/sh .include diff --git a/x11-themes/plasma6-aurorae/distinfo b/x11-themes/plasma6-aurorae/distinfo index d1554959fd20..a49061fd405d 100644 --- a/x11-themes/plasma6-aurorae/distinfo +++ b/x11-themes/plasma6-aurorae/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1768328300 -SHA256 (KDE/plasma/6.5.5/aurorae-6.5.5.tar.xz) = a8d01edd3f046ed41b32d4f10d23f7be2d05e69b836f5b358e994b2405c73092 -SIZE (KDE/plasma/6.5.5/aurorae-6.5.5.tar.xz) = 58252 +TIMESTAMP = 1771162214 +SHA256 (KDE/plasma/6.6.0/aurorae-6.6.0.tar.xz) = a2beb62a7dc9ef9c426c2fb546037a3bdd6a8f24fbbe113135c5bedb797d6d7a +SIZE (KDE/plasma/6.6.0/aurorae-6.6.0.tar.xz) = 65508 diff --git a/x11-themes/plasma6-aurorae/pkg-plist b/x11-themes/plasma6-aurorae/pkg-plist index 7b10362b1472..f713bd744221 100644 --- a/x11-themes/plasma6-aurorae/pkg-plist +++ b/x11-themes/plasma6-aurorae/pkg-plist @@ -1,59 +1,60 @@ lib/cmake/Aurorae/AuroraeConfig.cmake lib/cmake/Aurorae/AuroraeConfigVersion.cmake lib/libexec/plasma-apply-aurorae %%QT_PLUGINDIR%%/org.kde.kdecoration3.kcm/kcm_auroraedecoration.so %%QT_PLUGINDIR%%/org.kde.kdecoration3/org.kde.kwin.aurorae.so +%%QT_PLUGINDIR%%/org.kde.kdecoration3/org.kde.kwin.aurorae.v2.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 share/knsrcfiles/aurorae.knsrc share/kwin/aurorae/AppMenuButton.qml share/kwin/aurorae/AuroraeButton.qml share/kwin/aurorae/AuroraeButtonGroup.qml share/kwin/aurorae/AuroraeMaximizeButton.qml share/kwin/aurorae/Decoration.qml share/kwin/aurorae/DecorationButton.qml share/kwin/aurorae/MenuButton.qml share/kwin/aurorae/aurorae.qml share/kwin/decorations/kwin4_decoration_qml_plastik/contents/config/main.xml share/kwin/decorations/kwin4_decoration_qml_plastik/contents/ui/PlastikButton.qml share/kwin/decorations/kwin4_decoration_qml_plastik/contents/ui/config.ui share/kwin/decorations/kwin4_decoration_qml_plastik/contents/ui/main.qml share/kwin/decorations/kwin4_decoration_qml_plastik/metadata.json share/locale/ar/LC_MESSAGES/aurorae.mo share/locale/ca/LC_MESSAGES/aurorae.mo share/locale/ca@valencia/LC_MESSAGES/aurorae.mo share/locale/cs/LC_MESSAGES/aurorae.mo share/locale/de/LC_MESSAGES/aurorae.mo share/locale/en_GB/LC_MESSAGES/aurorae.mo share/locale/es/LC_MESSAGES/aurorae.mo share/locale/eu/LC_MESSAGES/aurorae.mo share/locale/fi/LC_MESSAGES/aurorae.mo share/locale/fr/LC_MESSAGES/aurorae.mo share/locale/ga/LC_MESSAGES/aurorae.mo share/locale/gl/LC_MESSAGES/aurorae.mo share/locale/he/LC_MESSAGES/aurorae.mo share/locale/hu/LC_MESSAGES/aurorae.mo share/locale/ia/LC_MESSAGES/aurorae.mo share/locale/it/LC_MESSAGES/aurorae.mo share/locale/ka/LC_MESSAGES/aurorae.mo share/locale/ko/LC_MESSAGES/aurorae.mo share/locale/lt/LC_MESSAGES/aurorae.mo share/locale/lv/LC_MESSAGES/aurorae.mo share/locale/nb/LC_MESSAGES/aurorae.mo share/locale/nl/LC_MESSAGES/aurorae.mo share/locale/pl/LC_MESSAGES/aurorae.mo share/locale/pt_BR/LC_MESSAGES/aurorae.mo share/locale/ru/LC_MESSAGES/aurorae.mo share/locale/sl/LC_MESSAGES/aurorae.mo share/locale/sv/LC_MESSAGES/aurorae.mo share/locale/tr/LC_MESSAGES/aurorae.mo share/locale/uk/LC_MESSAGES/aurorae.mo share/locale/zh_CN/LC_MESSAGES/aurorae.mo share/locale/zh_TW/LC_MESSAGES/aurorae.mo diff --git a/x11-themes/plasma6-breeze-gtk/Makefile b/x11-themes/plasma6-breeze-gtk/Makefile index a75a8db6cf69..99029a29145d 100644 --- a/x11-themes/plasma6-breeze-gtk/Makefile +++ b/x11-themes/plasma6-breeze-gtk/Makefile @@ -1,24 +1,23 @@ PORTNAME= breeze-gtk DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= x11-themes kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Breeze widget theme for GTK 2 and 3 BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pycairo>0:graphics/py-pycairo@${PY_FLAVOR} \ sassc:textproc/sassc RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pycairo>0:graphics/py-pycairo@${PY_FLAVOR} USES= cmake gnome kde:6 python qt:6 tar:xz USE_GNOME= gtk20 USE_KDE= breeze \ ecm:build USE_QT= base CMAKE_ARGS= -DPython3_EXECUTABLE:PATH=${PYTHON_CMD} BINARY_ALIAS= python3=${PYTHON_CMD} NO_ARCH= yes .include diff --git a/x11-themes/plasma6-breeze-gtk/distinfo b/x11-themes/plasma6-breeze-gtk/distinfo index c62181c8a2dd..eb0b1c42d841 100644 --- a/x11-themes/plasma6-breeze-gtk/distinfo +++ b/x11-themes/plasma6-breeze-gtk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1768328302 -SHA256 (KDE/plasma/6.5.5/breeze-gtk-6.5.5.tar.xz) = 35da4e0b8fbb168c14e6118527d619089b7acc3f128e20a8c0ad84096b54d281 -SIZE (KDE/plasma/6.5.5/breeze-gtk-6.5.5.tar.xz) = 40840 +TIMESTAMP = 1771162215 +SHA256 (KDE/plasma/6.6.0/breeze-gtk-6.6.0.tar.xz) = de64d1ade6deb440220106d3946fe99fd4404bc598b0bb466b353a668ad9bdb8 +SIZE (KDE/plasma/6.6.0/breeze-gtk-6.6.0.tar.xz) = 40800 diff --git a/x11-themes/plasma6-breeze/distinfo b/x11-themes/plasma6-breeze/distinfo index 474b011c82c0..a7c6b080485b 100644 --- a/x11-themes/plasma6-breeze/distinfo +++ b/x11-themes/plasma6-breeze/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1768328302 -SHA256 (KDE/plasma/6.5.5/breeze-6.5.5.tar.xz) = 09b3f7bd2386c4b91c418462f02b203510f2ae88489398ef05e0b6ddea3aa590 -SIZE (KDE/plasma/6.5.5/breeze-6.5.5.tar.xz) = 41801276 +TIMESTAMP = 1771162215 +SHA256 (KDE/plasma/6.6.0/breeze-6.6.0.tar.xz) = 162594cb74d2e6c033d08b45fc52904b488f232097c7aa025d837bf1e7fa38e8 +SIZE (KDE/plasma/6.6.0/breeze-6.6.0.tar.xz) = 42473220 diff --git a/x11-themes/plasma6-kde-gtk-config/distinfo b/x11-themes/plasma6-kde-gtk-config/distinfo index 195247f5154c..6fb29dacd320 100644 --- a/x11-themes/plasma6-kde-gtk-config/distinfo +++ b/x11-themes/plasma6-kde-gtk-config/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1768328303 -SHA256 (KDE/plasma/6.5.5/kde-gtk-config-6.5.5.tar.xz) = 666b4a5ed1fcb969c98c102b5477c351d073422d4fa80eb84a41b007d9d9885a -SIZE (KDE/plasma/6.5.5/kde-gtk-config-6.5.5.tar.xz) = 79108 +TIMESTAMP = 1771162215 +SHA256 (KDE/plasma/6.6.0/kde-gtk-config-6.6.0.tar.xz) = f7e6585265e96da425b9e54b536050a8755f48e82a38a24a837ff762b923723c +SIZE (KDE/plasma/6.6.0/kde-gtk-config-6.6.0.tar.xz) = 79200 diff --git a/x11-themes/plasma6-oxygen/distinfo b/x11-themes/plasma6-oxygen/distinfo index e7e4eabf804e..5f4bd83b8175 100644 --- a/x11-themes/plasma6-oxygen/distinfo +++ b/x11-themes/plasma6-oxygen/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1768328304 -SHA256 (KDE/plasma/6.5.5/oxygen-6.5.5.tar.xz) = a18114184a80f60609f14c129ee775578e7c7f2a747a4b15c8277e10f5cac6fe -SIZE (KDE/plasma/6.5.5/oxygen-6.5.5.tar.xz) = 2971220 +TIMESTAMP = 1771162216 +SHA256 (KDE/plasma/6.6.0/oxygen-6.6.0.tar.xz) = 7bbf7b9cab9f2d325382b777d1bd81a153407c74df1610a23e91b4aa0caf15a3 +SIZE (KDE/plasma/6.6.0/oxygen-6.6.0.tar.xz) = 2977160 diff --git a/x11-themes/plasma6-oxygen/pkg-plist b/x11-themes/plasma6-oxygen/pkg-plist index 468e45b583db..faafac53c798 100644 --- a/x11-themes/plasma6-oxygen/pkg-plist +++ b/x11-themes/plasma6-oxygen/pkg-plist @@ -1,1514 +1,1512 @@ bin/oxygen-demo6 bin/oxygen-settings6 lib/liboxygenstyle6.so.6 lib/liboxygenstyle6.so.%%KDE_PLASMA_VERSION%% lib/liboxygenstyleconfig6.so.6 lib/liboxygenstyleconfig6.so.%%KDE_PLASMA_VERSION%% %%QT_PLUGINDIR%%/kstyle_config/kstyle_oxygen_config.so %%QT_PLUGINDIR%%/org.kde.kdecoration3.kcm/kcm_oxygendecoration.so %%QT_PLUGINDIR%%/org.kde.kdecoration3/org.kde.oxygen.so %%QT_PLUGINDIR%%/styles/oxygen6.so share/applications/kcm_oxygendecoration.desktop share/color-schemes/Oxygen.colors share/color-schemes/OxygenCold.colors share/icons/KDE_Classic/cursors/00000000000000020006000e7e9ffc3f share/icons/KDE_Classic/cursors/00008160000006810000408080010102 share/icons/KDE_Classic/cursors/08e8e1c95fe2fc01f976f1e063a24ccd share/icons/KDE_Classic/cursors/3ecb610c1bf2410f44200f48c40d3599 share/icons/KDE_Classic/cursors/4498f0e0c1937ffe01fd06f973665830 share/icons/KDE_Classic/cursors/5c6cd98b3f3ebcb1f9c7f1c204630408 share/icons/KDE_Classic/cursors/9081237383d90e509aa00f00170e968f share/icons/KDE_Classic/cursors/9d800788f1b08800ae810202380a0822 share/icons/KDE_Classic/cursors/X_cursor share/icons/KDE_Classic/cursors/all-scroll share/icons/KDE_Classic/cursors/bottom_left_corner share/icons/KDE_Classic/cursors/bottom_right_corner share/icons/KDE_Classic/cursors/bottom_side share/icons/KDE_Classic/cursors/center_ptr share/icons/KDE_Classic/cursors/closedhand share/icons/KDE_Classic/cursors/col-resize share/icons/KDE_Classic/cursors/cross share/icons/KDE_Classic/cursors/crossed_circle share/icons/KDE_Classic/cursors/crosshair share/icons/KDE_Classic/cursors/d9ce0ab605698f320427677b458ad60b share/icons/KDE_Classic/cursors/dnd-move share/icons/KDE_Classic/cursors/dnd-no-drop share/icons/KDE_Classic/cursors/dnd-none share/icons/KDE_Classic/cursors/e-resize share/icons/KDE_Classic/cursors/e29285e634086352946a0e7090d73106 share/icons/KDE_Classic/cursors/fcf21c00b30f7e3f83fe0dfd12e71cff share/icons/KDE_Classic/cursors/fleur share/icons/KDE_Classic/cursors/forbidden share/icons/KDE_Classic/cursors/half-busy share/icons/KDE_Classic/cursors/hand1 share/icons/KDE_Classic/cursors/hand2 share/icons/KDE_Classic/cursors/help share/icons/KDE_Classic/cursors/ibeam share/icons/KDE_Classic/cursors/left_ptr share/icons/KDE_Classic/cursors/left_ptr_watch share/icons/KDE_Classic/cursors/left_side share/icons/KDE_Classic/cursors/move share/icons/KDE_Classic/cursors/n-resize share/icons/KDE_Classic/cursors/ne-resize share/icons/KDE_Classic/cursors/nesw-resize share/icons/KDE_Classic/cursors/not-allowed share/icons/KDE_Classic/cursors/nw-resize share/icons/KDE_Classic/cursors/nwse-resize share/icons/KDE_Classic/cursors/openhand share/icons/KDE_Classic/cursors/pirate share/icons/KDE_Classic/cursors/pointer share/icons/KDE_Classic/cursors/pointing_hand share/icons/KDE_Classic/cursors/progress share/icons/KDE_Classic/cursors/question_arrow share/icons/KDE_Classic/cursors/right_ptr share/icons/KDE_Classic/cursors/right_side share/icons/KDE_Classic/cursors/row-resize share/icons/KDE_Classic/cursors/s-resize share/icons/KDE_Classic/cursors/sb_h_double_arrow share/icons/KDE_Classic/cursors/sb_v_double_arrow share/icons/KDE_Classic/cursors/se-resize share/icons/KDE_Classic/cursors/size_all share/icons/KDE_Classic/cursors/size_bdiag share/icons/KDE_Classic/cursors/size_fdiag share/icons/KDE_Classic/cursors/size_hor share/icons/KDE_Classic/cursors/size_ver share/icons/KDE_Classic/cursors/split_h share/icons/KDE_Classic/cursors/split_v share/icons/KDE_Classic/cursors/sw-resize share/icons/KDE_Classic/cursors/text share/icons/KDE_Classic/cursors/top_left_corner share/icons/KDE_Classic/cursors/top_right_corner share/icons/KDE_Classic/cursors/top_side share/icons/KDE_Classic/cursors/up_arrow share/icons/KDE_Classic/cursors/v_double_arrow share/icons/KDE_Classic/cursors/w-resize share/icons/KDE_Classic/cursors/wait share/icons/KDE_Classic/cursors/watch share/icons/KDE_Classic/cursors/whats_this share/icons/KDE_Classic/cursors/xcursorconfig share/icons/KDE_Classic/cursors/xterm share/icons/KDE_Classic/index.theme share/icons/Oxygen_Black/cursors/00000000000000020006000e7e9ffc3f share/icons/Oxygen_Black/cursors/00008160000006810000408080010102 share/icons/Oxygen_Black/cursors/03b6e0fcb3499374a867c041f52298f0 share/icons/Oxygen_Black/cursors/08e8e1c95fe2fc01f976f1e063a24ccd share/icons/Oxygen_Black/cursors/1081e37283d90000800003c07f3ef6bf share/icons/Oxygen_Black/cursors/3085a0e285430894940527032f8b26df share/icons/Oxygen_Black/cursors/3ecb610c1bf2410f44200f48c40d3599 share/icons/Oxygen_Black/cursors/4498f0e0c1937ffe01fd06f973665830 share/icons/Oxygen_Black/cursors/5c6cd98b3f3ebcb1f9c7f1c204630408 share/icons/Oxygen_Black/cursors/6407b0e94181790501fd1e167b474872 share/icons/Oxygen_Black/cursors/640fb0e74195791501fd1ed57b41487f share/icons/Oxygen_Black/cursors/9081237383d90e509aa00f00170e968f share/icons/Oxygen_Black/cursors/9d800788f1b08800ae810202380a0822 share/icons/Oxygen_Black/cursors/X_cursor share/icons/Oxygen_Black/cursors/a2a266d0498c3104214a47bd64ab0fc8 share/icons/Oxygen_Black/cursors/alias share/icons/Oxygen_Black/cursors/all-scroll share/icons/Oxygen_Black/cursors/b66166c04f8c3109214a4fbd64a50fc8 share/icons/Oxygen_Black/cursors/circle share/icons/Oxygen_Black/cursors/closedhand share/icons/Oxygen_Black/cursors/col-resize share/icons/Oxygen_Black/cursors/color-picker share/icons/Oxygen_Black/cursors/copy share/icons/Oxygen_Black/cursors/cross share/icons/Oxygen_Black/cursors/crossed_circle share/icons/Oxygen_Black/cursors/d9ce0ab605698f320427677b458ad60b share/icons/Oxygen_Black/cursors/dnd-copy share/icons/Oxygen_Black/cursors/dnd-link share/icons/Oxygen_Black/cursors/dnd-move share/icons/Oxygen_Black/cursors/dnd-no-drop share/icons/Oxygen_Black/cursors/dnd-none share/icons/Oxygen_Black/cursors/e-resize share/icons/Oxygen_Black/cursors/e29285e634086352946a0e7090d73106 share/icons/Oxygen_Black/cursors/fcf21c00b30f7e3f83fe0dfd12e71cff share/icons/Oxygen_Black/cursors/fleur share/icons/Oxygen_Black/cursors/forbidden share/icons/Oxygen_Black/cursors/half-busy share/icons/Oxygen_Black/cursors/hand1 share/icons/Oxygen_Black/cursors/hand2 share/icons/Oxygen_Black/cursors/help share/icons/Oxygen_Black/cursors/ibeam share/icons/Oxygen_Black/cursors/left_ptr share/icons/Oxygen_Black/cursors/left_ptr_watch share/icons/Oxygen_Black/cursors/link share/icons/Oxygen_Black/cursors/move share/icons/Oxygen_Black/cursors/n-resize share/icons/Oxygen_Black/cursors/ne-resize share/icons/Oxygen_Black/cursors/nesw-resize share/icons/Oxygen_Black/cursors/not-allowed share/icons/Oxygen_Black/cursors/nw-resize share/icons/Oxygen_Black/cursors/nwse-resize share/icons/Oxygen_Black/cursors/openhand share/icons/Oxygen_Black/cursors/pencil share/icons/Oxygen_Black/cursors/pirate share/icons/Oxygen_Black/cursors/plus share/icons/Oxygen_Black/cursors/pointer share/icons/Oxygen_Black/cursors/pointing_hand share/icons/Oxygen_Black/cursors/progress share/icons/Oxygen_Black/cursors/question_arrow share/icons/Oxygen_Black/cursors/row-resize share/icons/Oxygen_Black/cursors/s-resize share/icons/Oxygen_Black/cursors/sb_h_double_arrow share/icons/Oxygen_Black/cursors/sb_v_double_arrow share/icons/Oxygen_Black/cursors/se-resize share/icons/Oxygen_Black/cursors/size_all share/icons/Oxygen_Black/cursors/size_bdiag share/icons/Oxygen_Black/cursors/size_fdiag share/icons/Oxygen_Black/cursors/size_hor share/icons/Oxygen_Black/cursors/size_ver share/icons/Oxygen_Black/cursors/split_h share/icons/Oxygen_Black/cursors/split_v share/icons/Oxygen_Black/cursors/sw-resize share/icons/Oxygen_Black/cursors/text share/icons/Oxygen_Black/cursors/up_arrow share/icons/Oxygen_Black/cursors/v_double_arrow share/icons/Oxygen_Black/cursors/w-resize share/icons/Oxygen_Black/cursors/wait share/icons/Oxygen_Black/cursors/watch share/icons/Oxygen_Black/cursors/whats_this share/icons/Oxygen_Black/cursors/xterm share/icons/Oxygen_Black/cursors_scalable/.directory share/icons/Oxygen_Black/cursors_scalable/00000000000000020006000e7e9ffc3f share/icons/Oxygen_Black/cursors_scalable/00008160000006810000408080010102 share/icons/Oxygen_Black/cursors_scalable/03b6e0fcb3499374a867c041f52298f0 share/icons/Oxygen_Black/cursors_scalable/08e8e1c95fe2fc01f976f1e063a24ccd share/icons/Oxygen_Black/cursors_scalable/1081e37283d90000800003c07f3ef6bf share/icons/Oxygen_Black/cursors_scalable/3085a0e285430894940527032f8b26df share/icons/Oxygen_Black/cursors_scalable/3ecb610c1bf2410f44200f48c40d3599 share/icons/Oxygen_Black/cursors_scalable/4498f0e0c1937ffe01fd06f973665830 share/icons/Oxygen_Black/cursors_scalable/5c6cd98b3f3ebcb1f9c7f1c204630408 share/icons/Oxygen_Black/cursors_scalable/6407b0e94181790501fd1e167b474872 share/icons/Oxygen_Black/cursors_scalable/640fb0e74195791501fd1ed57b41487f share/icons/Oxygen_Black/cursors_scalable/9081237383d90e509aa00f00170e968f share/icons/Oxygen_Black/cursors_scalable/9d800788f1b08800ae810202380a0822 share/icons/Oxygen_Black/cursors_scalable/X_cursor/metadata.json share/icons/Oxygen_Black/cursors_scalable/X_cursor/x.svg share/icons/Oxygen_Black/cursors_scalable/a2a266d0498c3104214a47bd64ab0fc8 share/icons/Oxygen_Black/cursors_scalable/alias share/icons/Oxygen_Black/cursors_scalable/all-scroll share/icons/Oxygen_Black/cursors_scalable/b66166c04f8c3109214a4fbd64a50fc8 share/icons/Oxygen_Black/cursors_scalable/circle/circle.svg share/icons/Oxygen_Black/cursors_scalable/circle/metadata.json share/icons/Oxygen_Black/cursors_scalable/closedhand/grab.svg share/icons/Oxygen_Black/cursors_scalable/closedhand/metadata.json share/icons/Oxygen_Black/cursors_scalable/col-resize share/icons/Oxygen_Black/cursors_scalable/color-picker/metadata.json share/icons/Oxygen_Black/cursors_scalable/color-picker/picker.svg share/icons/Oxygen_Black/cursors_scalable/copy/copy.svg share/icons/Oxygen_Black/cursors_scalable/copy/metadata.json share/icons/Oxygen_Black/cursors_scalable/cross/cross.svg share/icons/Oxygen_Black/cursors_scalable/cross/metadata.json share/icons/Oxygen_Black/cursors_scalable/crossed_circle share/icons/Oxygen_Black/cursors_scalable/d9ce0ab605698f320427677b458ad60b share/icons/Oxygen_Black/cursors_scalable/dnd-copy share/icons/Oxygen_Black/cursors_scalable/dnd-link share/icons/Oxygen_Black/cursors_scalable/dnd-move share/icons/Oxygen_Black/cursors_scalable/dnd-no-drop share/icons/Oxygen_Black/cursors_scalable/dnd-none share/icons/Oxygen_Black/cursors_scalable/e-resize share/icons/Oxygen_Black/cursors_scalable/e29285e634086352946a0e7090d73106 share/icons/Oxygen_Black/cursors_scalable/fcf21c00b30f7e3f83fe0dfd12e71cff share/icons/Oxygen_Black/cursors_scalable/fleur/fleur.svg share/icons/Oxygen_Black/cursors_scalable/fleur/metadata.json share/icons/Oxygen_Black/cursors_scalable/forbidden/forbidden.svg share/icons/Oxygen_Black/cursors_scalable/forbidden/metadata.json share/icons/Oxygen_Black/cursors_scalable/half-busy/half-busy.svg share/icons/Oxygen_Black/cursors_scalable/half-busy/half-busy1.svg share/icons/Oxygen_Black/cursors_scalable/half-busy/half-busy10.svg share/icons/Oxygen_Black/cursors_scalable/half-busy/half-busy11.svg share/icons/Oxygen_Black/cursors_scalable/half-busy/half-busy12.svg share/icons/Oxygen_Black/cursors_scalable/half-busy/half-busy13.svg share/icons/Oxygen_Black/cursors_scalable/half-busy/half-busy14.svg share/icons/Oxygen_Black/cursors_scalable/half-busy/half-busy15.svg share/icons/Oxygen_Black/cursors_scalable/half-busy/half-busy16.svg share/icons/Oxygen_Black/cursors_scalable/half-busy/half-busy17.svg share/icons/Oxygen_Black/cursors_scalable/half-busy/half-busy2.svg share/icons/Oxygen_Black/cursors_scalable/half-busy/half-busy3.svg share/icons/Oxygen_Black/cursors_scalable/half-busy/half-busy4.svg share/icons/Oxygen_Black/cursors_scalable/half-busy/half-busy5.svg share/icons/Oxygen_Black/cursors_scalable/half-busy/half-busy6.svg share/icons/Oxygen_Black/cursors_scalable/half-busy/half-busy7.svg share/icons/Oxygen_Black/cursors_scalable/half-busy/half-busy8.svg share/icons/Oxygen_Black/cursors_scalable/half-busy/half-busy9.svg share/icons/Oxygen_Black/cursors_scalable/half-busy/metadata.json share/icons/Oxygen_Black/cursors_scalable/hand1 share/icons/Oxygen_Black/cursors_scalable/hand2 share/icons/Oxygen_Black/cursors_scalable/help/help.svg share/icons/Oxygen_Black/cursors_scalable/help/metadata.json share/icons/Oxygen_Black/cursors_scalable/ibeam share/icons/Oxygen_Black/cursors_scalable/left_ptr/left_ptr.svg share/icons/Oxygen_Black/cursors_scalable/left_ptr/metadata.json share/icons/Oxygen_Black/cursors_scalable/left_ptr_watch share/icons/Oxygen_Black/cursors_scalable/link/link.svg share/icons/Oxygen_Black/cursors_scalable/link/metadata.json share/icons/Oxygen_Black/cursors_scalable/move share/icons/Oxygen_Black/cursors_scalable/n-resize share/icons/Oxygen_Black/cursors_scalable/not-allowed share/icons/Oxygen_Black/cursors_scalable/openhand/grab_open.svg share/icons/Oxygen_Black/cursors_scalable/openhand/metadata.json share/icons/Oxygen_Black/cursors_scalable/pencil/metadata.json share/icons/Oxygen_Black/cursors_scalable/pencil/pencil.svg share/icons/Oxygen_Black/cursors_scalable/pirate/kill.svg share/icons/Oxygen_Black/cursors_scalable/pirate/metadata.json share/icons/Oxygen_Black/cursors_scalable/plus/metadata.json share/icons/Oxygen_Black/cursors_scalable/plus/plus.svg share/icons/Oxygen_Black/cursors_scalable/pointer share/icons/Oxygen_Black/cursors_scalable/pointing_hand/hand.svg share/icons/Oxygen_Black/cursors_scalable/pointing_hand/metadata.json share/icons/Oxygen_Black/cursors_scalable/progress share/icons/Oxygen_Black/cursors_scalable/question_arrow share/icons/Oxygen_Black/cursors_scalable/row-resize share/icons/Oxygen_Black/cursors_scalable/s-resize share/icons/Oxygen_Black/cursors_scalable/sb_h_double_arrow share/icons/Oxygen_Black/cursors_scalable/sb_v_double_arrow share/icons/Oxygen_Black/cursors_scalable/size_all share/icons/Oxygen_Black/cursors_scalable/size_bdiag/metadata.json share/icons/Oxygen_Black/cursors_scalable/size_bdiag/size_diag-tr2bl.svg share/icons/Oxygen_Black/cursors_scalable/size_fdiag/metadata.json share/icons/Oxygen_Black/cursors_scalable/size_fdiag/size_diag-tl2br.svg share/icons/Oxygen_Black/cursors_scalable/size_hor/metadata.json share/icons/Oxygen_Black/cursors_scalable/size_hor/size_hor.svg share/icons/Oxygen_Black/cursors_scalable/size_ver/metadata.json share/icons/Oxygen_Black/cursors_scalable/size_ver/size_ver.svg share/icons/Oxygen_Black/cursors_scalable/split_h/metadata.json share/icons/Oxygen_Black/cursors_scalable/split_h/split_h.svg share/icons/Oxygen_Black/cursors_scalable/split_v/metadata.json share/icons/Oxygen_Black/cursors_scalable/split_v/split_v.svg share/icons/Oxygen_Black/cursors_scalable/text share/icons/Oxygen_Black/cursors_scalable/up_arrow/metadata.json share/icons/Oxygen_Black/cursors_scalable/up_arrow/up_arrow.svg share/icons/Oxygen_Black/cursors_scalable/v_double_arrow share/icons/Oxygen_Black/cursors_scalable/w-resize share/icons/Oxygen_Black/cursors_scalable/wait/busy.svg share/icons/Oxygen_Black/cursors_scalable/wait/busy1.svg share/icons/Oxygen_Black/cursors_scalable/wait/busy10.svg share/icons/Oxygen_Black/cursors_scalable/wait/busy11.svg share/icons/Oxygen_Black/cursors_scalable/wait/busy12.svg share/icons/Oxygen_Black/cursors_scalable/wait/busy13.svg share/icons/Oxygen_Black/cursors_scalable/wait/busy14.svg share/icons/Oxygen_Black/cursors_scalable/wait/busy15.svg share/icons/Oxygen_Black/cursors_scalable/wait/busy16.svg share/icons/Oxygen_Black/cursors_scalable/wait/busy17.svg share/icons/Oxygen_Black/cursors_scalable/wait/busy2.svg share/icons/Oxygen_Black/cursors_scalable/wait/busy3.svg share/icons/Oxygen_Black/cursors_scalable/wait/busy4.svg share/icons/Oxygen_Black/cursors_scalable/wait/busy5.svg share/icons/Oxygen_Black/cursors_scalable/wait/busy6.svg share/icons/Oxygen_Black/cursors_scalable/wait/busy7.svg share/icons/Oxygen_Black/cursors_scalable/wait/busy8.svg share/icons/Oxygen_Black/cursors_scalable/wait/busy9.svg share/icons/Oxygen_Black/cursors_scalable/wait/metadata.json share/icons/Oxygen_Black/cursors_scalable/watch share/icons/Oxygen_Black/cursors_scalable/whats_this share/icons/Oxygen_Black/cursors_scalable/xterm/metadata.json share/icons/Oxygen_Black/cursors_scalable/xterm/xterm.svg share/icons/Oxygen_Black/index.theme share/icons/Oxygen_Blue/cursors/00000000000000020006000e7e9ffc3f share/icons/Oxygen_Blue/cursors/00008160000006810000408080010102 share/icons/Oxygen_Blue/cursors/03b6e0fcb3499374a867c041f52298f0 share/icons/Oxygen_Blue/cursors/08e8e1c95fe2fc01f976f1e063a24ccd share/icons/Oxygen_Blue/cursors/1081e37283d90000800003c07f3ef6bf share/icons/Oxygen_Blue/cursors/3085a0e285430894940527032f8b26df share/icons/Oxygen_Blue/cursors/3ecb610c1bf2410f44200f48c40d3599 share/icons/Oxygen_Blue/cursors/4498f0e0c1937ffe01fd06f973665830 share/icons/Oxygen_Blue/cursors/5c6cd98b3f3ebcb1f9c7f1c204630408 share/icons/Oxygen_Blue/cursors/6407b0e94181790501fd1e167b474872 share/icons/Oxygen_Blue/cursors/640fb0e74195791501fd1ed57b41487f share/icons/Oxygen_Blue/cursors/9081237383d90e509aa00f00170e968f share/icons/Oxygen_Blue/cursors/9d800788f1b08800ae810202380a0822 share/icons/Oxygen_Blue/cursors/X_cursor share/icons/Oxygen_Blue/cursors/a2a266d0498c3104214a47bd64ab0fc8 share/icons/Oxygen_Blue/cursors/alias share/icons/Oxygen_Blue/cursors/all-scroll share/icons/Oxygen_Blue/cursors/b66166c04f8c3109214a4fbd64a50fc8 share/icons/Oxygen_Blue/cursors/circle share/icons/Oxygen_Blue/cursors/closedhand share/icons/Oxygen_Blue/cursors/col-resize share/icons/Oxygen_Blue/cursors/color-picker share/icons/Oxygen_Blue/cursors/copy share/icons/Oxygen_Blue/cursors/cross share/icons/Oxygen_Blue/cursors/crossed_circle share/icons/Oxygen_Blue/cursors/d9ce0ab605698f320427677b458ad60b share/icons/Oxygen_Blue/cursors/dnd-copy share/icons/Oxygen_Blue/cursors/dnd-link share/icons/Oxygen_Blue/cursors/dnd-move share/icons/Oxygen_Blue/cursors/dnd-no-drop share/icons/Oxygen_Blue/cursors/dnd-none share/icons/Oxygen_Blue/cursors/e-resize share/icons/Oxygen_Blue/cursors/e29285e634086352946a0e7090d73106 share/icons/Oxygen_Blue/cursors/fcf21c00b30f7e3f83fe0dfd12e71cff share/icons/Oxygen_Blue/cursors/fleur share/icons/Oxygen_Blue/cursors/forbidden share/icons/Oxygen_Blue/cursors/half-busy share/icons/Oxygen_Blue/cursors/hand1 share/icons/Oxygen_Blue/cursors/hand2 share/icons/Oxygen_Blue/cursors/help share/icons/Oxygen_Blue/cursors/ibeam share/icons/Oxygen_Blue/cursors/left_ptr share/icons/Oxygen_Blue/cursors/left_ptr_watch share/icons/Oxygen_Blue/cursors/link share/icons/Oxygen_Blue/cursors/move share/icons/Oxygen_Blue/cursors/n-resize share/icons/Oxygen_Blue/cursors/ne-resize share/icons/Oxygen_Blue/cursors/nesw-resize share/icons/Oxygen_Blue/cursors/not-allowed share/icons/Oxygen_Blue/cursors/nw-resize share/icons/Oxygen_Blue/cursors/nwse-resize share/icons/Oxygen_Blue/cursors/openhand share/icons/Oxygen_Blue/cursors/pencil share/icons/Oxygen_Blue/cursors/pirate share/icons/Oxygen_Blue/cursors/plus share/icons/Oxygen_Blue/cursors/pointer share/icons/Oxygen_Blue/cursors/pointing_hand share/icons/Oxygen_Blue/cursors/progress share/icons/Oxygen_Blue/cursors/question_arrow share/icons/Oxygen_Blue/cursors/row-resize share/icons/Oxygen_Blue/cursors/s-resize share/icons/Oxygen_Blue/cursors/sb_h_double_arrow share/icons/Oxygen_Blue/cursors/sb_v_double_arrow share/icons/Oxygen_Blue/cursors/se-resize share/icons/Oxygen_Blue/cursors/size_all share/icons/Oxygen_Blue/cursors/size_bdiag share/icons/Oxygen_Blue/cursors/size_fdiag share/icons/Oxygen_Blue/cursors/size_hor share/icons/Oxygen_Blue/cursors/size_ver share/icons/Oxygen_Blue/cursors/split_h share/icons/Oxygen_Blue/cursors/split_v share/icons/Oxygen_Blue/cursors/sw-resize share/icons/Oxygen_Blue/cursors/text share/icons/Oxygen_Blue/cursors/up_arrow share/icons/Oxygen_Blue/cursors/v_double_arrow share/icons/Oxygen_Blue/cursors/w-resize share/icons/Oxygen_Blue/cursors/wait share/icons/Oxygen_Blue/cursors/watch share/icons/Oxygen_Blue/cursors/whats_this share/icons/Oxygen_Blue/cursors/xterm share/icons/Oxygen_Blue/cursors_scalable/.directory share/icons/Oxygen_Blue/cursors_scalable/00000000000000020006000e7e9ffc3f share/icons/Oxygen_Blue/cursors_scalable/00008160000006810000408080010102 share/icons/Oxygen_Blue/cursors_scalable/03b6e0fcb3499374a867c041f52298f0 share/icons/Oxygen_Blue/cursors_scalable/08e8e1c95fe2fc01f976f1e063a24ccd share/icons/Oxygen_Blue/cursors_scalable/1081e37283d90000800003c07f3ef6bf share/icons/Oxygen_Blue/cursors_scalable/3085a0e285430894940527032f8b26df share/icons/Oxygen_Blue/cursors_scalable/3ecb610c1bf2410f44200f48c40d3599 share/icons/Oxygen_Blue/cursors_scalable/4498f0e0c1937ffe01fd06f973665830 share/icons/Oxygen_Blue/cursors_scalable/5c6cd98b3f3ebcb1f9c7f1c204630408 share/icons/Oxygen_Blue/cursors_scalable/6407b0e94181790501fd1e167b474872 share/icons/Oxygen_Blue/cursors_scalable/640fb0e74195791501fd1ed57b41487f share/icons/Oxygen_Blue/cursors_scalable/9081237383d90e509aa00f00170e968f share/icons/Oxygen_Blue/cursors_scalable/9d800788f1b08800ae810202380a0822 share/icons/Oxygen_Blue/cursors_scalable/X_cursor/metadata.json share/icons/Oxygen_Blue/cursors_scalable/X_cursor/x.svg share/icons/Oxygen_Blue/cursors_scalable/a2a266d0498c3104214a47bd64ab0fc8 share/icons/Oxygen_Blue/cursors_scalable/alias share/icons/Oxygen_Blue/cursors_scalable/all-scroll share/icons/Oxygen_Blue/cursors_scalable/b66166c04f8c3109214a4fbd64a50fc8 share/icons/Oxygen_Blue/cursors_scalable/circle/circle.svg share/icons/Oxygen_Blue/cursors_scalable/circle/metadata.json share/icons/Oxygen_Blue/cursors_scalable/closedhand/grab.svg share/icons/Oxygen_Blue/cursors_scalable/closedhand/metadata.json share/icons/Oxygen_Blue/cursors_scalable/col-resize share/icons/Oxygen_Blue/cursors_scalable/color-picker/metadata.json share/icons/Oxygen_Blue/cursors_scalable/color-picker/picker.svg share/icons/Oxygen_Blue/cursors_scalable/copy/copy.svg share/icons/Oxygen_Blue/cursors_scalable/copy/metadata.json share/icons/Oxygen_Blue/cursors_scalable/cross/cross.svg share/icons/Oxygen_Blue/cursors_scalable/cross/metadata.json share/icons/Oxygen_Blue/cursors_scalable/crossed_circle share/icons/Oxygen_Blue/cursors_scalable/d9ce0ab605698f320427677b458ad60b share/icons/Oxygen_Blue/cursors_scalable/dnd-copy share/icons/Oxygen_Blue/cursors_scalable/dnd-link share/icons/Oxygen_Blue/cursors_scalable/dnd-move share/icons/Oxygen_Blue/cursors_scalable/dnd-no-drop share/icons/Oxygen_Blue/cursors_scalable/dnd-none share/icons/Oxygen_Blue/cursors_scalable/e-resize share/icons/Oxygen_Blue/cursors_scalable/e29285e634086352946a0e7090d73106 share/icons/Oxygen_Blue/cursors_scalable/fcf21c00b30f7e3f83fe0dfd12e71cff share/icons/Oxygen_Blue/cursors_scalable/fleur/fleur.svg share/icons/Oxygen_Blue/cursors_scalable/fleur/metadata.json share/icons/Oxygen_Blue/cursors_scalable/forbidden/forbidden.svg share/icons/Oxygen_Blue/cursors_scalable/forbidden/metadata.json share/icons/Oxygen_Blue/cursors_scalable/half-busy/half-busy.svg share/icons/Oxygen_Blue/cursors_scalable/half-busy/half-busy1.svg share/icons/Oxygen_Blue/cursors_scalable/half-busy/half-busy10.svg share/icons/Oxygen_Blue/cursors_scalable/half-busy/half-busy11.svg share/icons/Oxygen_Blue/cursors_scalable/half-busy/half-busy12.svg share/icons/Oxygen_Blue/cursors_scalable/half-busy/half-busy13.svg share/icons/Oxygen_Blue/cursors_scalable/half-busy/half-busy14.svg share/icons/Oxygen_Blue/cursors_scalable/half-busy/half-busy15.svg share/icons/Oxygen_Blue/cursors_scalable/half-busy/half-busy16.svg share/icons/Oxygen_Blue/cursors_scalable/half-busy/half-busy17.svg share/icons/Oxygen_Blue/cursors_scalable/half-busy/half-busy2.svg share/icons/Oxygen_Blue/cursors_scalable/half-busy/half-busy3.svg share/icons/Oxygen_Blue/cursors_scalable/half-busy/half-busy4.svg share/icons/Oxygen_Blue/cursors_scalable/half-busy/half-busy5.svg share/icons/Oxygen_Blue/cursors_scalable/half-busy/half-busy6.svg share/icons/Oxygen_Blue/cursors_scalable/half-busy/half-busy7.svg share/icons/Oxygen_Blue/cursors_scalable/half-busy/half-busy8.svg share/icons/Oxygen_Blue/cursors_scalable/half-busy/half-busy9.svg share/icons/Oxygen_Blue/cursors_scalable/half-busy/metadata.json share/icons/Oxygen_Blue/cursors_scalable/hand1 share/icons/Oxygen_Blue/cursors_scalable/hand2 share/icons/Oxygen_Blue/cursors_scalable/help/help.svg share/icons/Oxygen_Blue/cursors_scalable/help/metadata.json share/icons/Oxygen_Blue/cursors_scalable/ibeam share/icons/Oxygen_Blue/cursors_scalable/left_ptr/left_ptr.svg share/icons/Oxygen_Blue/cursors_scalable/left_ptr/metadata.json share/icons/Oxygen_Blue/cursors_scalable/left_ptr_watch share/icons/Oxygen_Blue/cursors_scalable/link/link.svg share/icons/Oxygen_Blue/cursors_scalable/link/metadata.json share/icons/Oxygen_Blue/cursors_scalable/move share/icons/Oxygen_Blue/cursors_scalable/n-resize share/icons/Oxygen_Blue/cursors_scalable/not-allowed share/icons/Oxygen_Blue/cursors_scalable/openhand/grab_open.svg share/icons/Oxygen_Blue/cursors_scalable/openhand/metadata.json share/icons/Oxygen_Blue/cursors_scalable/pencil/metadata.json share/icons/Oxygen_Blue/cursors_scalable/pencil/pencil.svg share/icons/Oxygen_Blue/cursors_scalable/pirate/kill.svg share/icons/Oxygen_Blue/cursors_scalable/pirate/metadata.json share/icons/Oxygen_Blue/cursors_scalable/plus/metadata.json share/icons/Oxygen_Blue/cursors_scalable/plus/plus.svg share/icons/Oxygen_Blue/cursors_scalable/pointer share/icons/Oxygen_Blue/cursors_scalable/pointing_hand/hand.svg share/icons/Oxygen_Blue/cursors_scalable/pointing_hand/metadata.json share/icons/Oxygen_Blue/cursors_scalable/progress share/icons/Oxygen_Blue/cursors_scalable/question_arrow share/icons/Oxygen_Blue/cursors_scalable/row-resize share/icons/Oxygen_Blue/cursors_scalable/s-resize share/icons/Oxygen_Blue/cursors_scalable/sb_h_double_arrow share/icons/Oxygen_Blue/cursors_scalable/sb_v_double_arrow share/icons/Oxygen_Blue/cursors_scalable/size_all share/icons/Oxygen_Blue/cursors_scalable/size_bdiag/metadata.json share/icons/Oxygen_Blue/cursors_scalable/size_bdiag/size_diag-tr2bl.svg share/icons/Oxygen_Blue/cursors_scalable/size_fdiag/metadata.json share/icons/Oxygen_Blue/cursors_scalable/size_fdiag/size_diag-tl2br.svg share/icons/Oxygen_Blue/cursors_scalable/size_hor/metadata.json share/icons/Oxygen_Blue/cursors_scalable/size_hor/size_hor.svg share/icons/Oxygen_Blue/cursors_scalable/size_ver/metadata.json share/icons/Oxygen_Blue/cursors_scalable/size_ver/size_ver.svg share/icons/Oxygen_Blue/cursors_scalable/split_h/metadata.json share/icons/Oxygen_Blue/cursors_scalable/split_h/split_h.svg share/icons/Oxygen_Blue/cursors_scalable/split_v/metadata.json share/icons/Oxygen_Blue/cursors_scalable/split_v/split_v.svg share/icons/Oxygen_Blue/cursors_scalable/text share/icons/Oxygen_Blue/cursors_scalable/up_arrow/metadata.json share/icons/Oxygen_Blue/cursors_scalable/up_arrow/up_arrow.svg share/icons/Oxygen_Blue/cursors_scalable/v_double_arrow share/icons/Oxygen_Blue/cursors_scalable/w-resize share/icons/Oxygen_Blue/cursors_scalable/wait/busy.svg share/icons/Oxygen_Blue/cursors_scalable/wait/busy1.svg share/icons/Oxygen_Blue/cursors_scalable/wait/busy10.svg share/icons/Oxygen_Blue/cursors_scalable/wait/busy11.svg share/icons/Oxygen_Blue/cursors_scalable/wait/busy12.svg share/icons/Oxygen_Blue/cursors_scalable/wait/busy13.svg share/icons/Oxygen_Blue/cursors_scalable/wait/busy14.svg share/icons/Oxygen_Blue/cursors_scalable/wait/busy15.svg share/icons/Oxygen_Blue/cursors_scalable/wait/busy16.svg share/icons/Oxygen_Blue/cursors_scalable/wait/busy17.svg share/icons/Oxygen_Blue/cursors_scalable/wait/busy2.svg share/icons/Oxygen_Blue/cursors_scalable/wait/busy3.svg share/icons/Oxygen_Blue/cursors_scalable/wait/busy4.svg share/icons/Oxygen_Blue/cursors_scalable/wait/busy5.svg share/icons/Oxygen_Blue/cursors_scalable/wait/busy6.svg share/icons/Oxygen_Blue/cursors_scalable/wait/busy7.svg share/icons/Oxygen_Blue/cursors_scalable/wait/busy8.svg share/icons/Oxygen_Blue/cursors_scalable/wait/busy9.svg share/icons/Oxygen_Blue/cursors_scalable/wait/metadata.json share/icons/Oxygen_Blue/cursors_scalable/watch share/icons/Oxygen_Blue/cursors_scalable/whats_this share/icons/Oxygen_Blue/cursors_scalable/xterm/metadata.json share/icons/Oxygen_Blue/cursors_scalable/xterm/xterm.svg share/icons/Oxygen_Blue/index.theme share/icons/Oxygen_White/cursors/00000000000000020006000e7e9ffc3f share/icons/Oxygen_White/cursors/00008160000006810000408080010102 share/icons/Oxygen_White/cursors/03b6e0fcb3499374a867c041f52298f0 share/icons/Oxygen_White/cursors/08e8e1c95fe2fc01f976f1e063a24ccd share/icons/Oxygen_White/cursors/1081e37283d90000800003c07f3ef6bf share/icons/Oxygen_White/cursors/3085a0e285430894940527032f8b26df share/icons/Oxygen_White/cursors/3ecb610c1bf2410f44200f48c40d3599 share/icons/Oxygen_White/cursors/4498f0e0c1937ffe01fd06f973665830 share/icons/Oxygen_White/cursors/5c6cd98b3f3ebcb1f9c7f1c204630408 share/icons/Oxygen_White/cursors/6407b0e94181790501fd1e167b474872 share/icons/Oxygen_White/cursors/640fb0e74195791501fd1ed57b41487f share/icons/Oxygen_White/cursors/9081237383d90e509aa00f00170e968f share/icons/Oxygen_White/cursors/9d800788f1b08800ae810202380a0822 share/icons/Oxygen_White/cursors/X_cursor share/icons/Oxygen_White/cursors/a2a266d0498c3104214a47bd64ab0fc8 share/icons/Oxygen_White/cursors/alias share/icons/Oxygen_White/cursors/all-scroll share/icons/Oxygen_White/cursors/b66166c04f8c3109214a4fbd64a50fc8 share/icons/Oxygen_White/cursors/circle share/icons/Oxygen_White/cursors/closedhand share/icons/Oxygen_White/cursors/col-resize share/icons/Oxygen_White/cursors/color-picker share/icons/Oxygen_White/cursors/copy share/icons/Oxygen_White/cursors/cross share/icons/Oxygen_White/cursors/crossed_circle share/icons/Oxygen_White/cursors/d9ce0ab605698f320427677b458ad60b share/icons/Oxygen_White/cursors/dnd-copy share/icons/Oxygen_White/cursors/dnd-link share/icons/Oxygen_White/cursors/dnd-move share/icons/Oxygen_White/cursors/dnd-no-drop share/icons/Oxygen_White/cursors/dnd-none share/icons/Oxygen_White/cursors/e-resize share/icons/Oxygen_White/cursors/e29285e634086352946a0e7090d73106 share/icons/Oxygen_White/cursors/fcf21c00b30f7e3f83fe0dfd12e71cff share/icons/Oxygen_White/cursors/fleur share/icons/Oxygen_White/cursors/forbidden share/icons/Oxygen_White/cursors/half-busy share/icons/Oxygen_White/cursors/hand1 share/icons/Oxygen_White/cursors/hand2 share/icons/Oxygen_White/cursors/help share/icons/Oxygen_White/cursors/ibeam share/icons/Oxygen_White/cursors/left_ptr share/icons/Oxygen_White/cursors/left_ptr_watch share/icons/Oxygen_White/cursors/link share/icons/Oxygen_White/cursors/move share/icons/Oxygen_White/cursors/n-resize share/icons/Oxygen_White/cursors/ne-resize share/icons/Oxygen_White/cursors/nesw-resize share/icons/Oxygen_White/cursors/not-allowed share/icons/Oxygen_White/cursors/nw-resize share/icons/Oxygen_White/cursors/nwse-resize share/icons/Oxygen_White/cursors/openhand share/icons/Oxygen_White/cursors/pencil share/icons/Oxygen_White/cursors/pirate share/icons/Oxygen_White/cursors/plus share/icons/Oxygen_White/cursors/pointer share/icons/Oxygen_White/cursors/pointing_hand share/icons/Oxygen_White/cursors/progress share/icons/Oxygen_White/cursors/question_arrow share/icons/Oxygen_White/cursors/row-resize share/icons/Oxygen_White/cursors/s-resize share/icons/Oxygen_White/cursors/sb_h_double_arrow share/icons/Oxygen_White/cursors/sb_v_double_arrow share/icons/Oxygen_White/cursors/se-resize share/icons/Oxygen_White/cursors/size_all share/icons/Oxygen_White/cursors/size_bdiag share/icons/Oxygen_White/cursors/size_fdiag share/icons/Oxygen_White/cursors/size_hor share/icons/Oxygen_White/cursors/size_ver share/icons/Oxygen_White/cursors/split_h share/icons/Oxygen_White/cursors/split_v share/icons/Oxygen_White/cursors/sw-resize share/icons/Oxygen_White/cursors/text share/icons/Oxygen_White/cursors/up_arrow share/icons/Oxygen_White/cursors/v_double_arrow share/icons/Oxygen_White/cursors/w-resize share/icons/Oxygen_White/cursors/wait share/icons/Oxygen_White/cursors/watch share/icons/Oxygen_White/cursors/whats_this share/icons/Oxygen_White/cursors/xterm share/icons/Oxygen_White/cursors_scalable/.directory share/icons/Oxygen_White/cursors_scalable/00000000000000020006000e7e9ffc3f share/icons/Oxygen_White/cursors_scalable/00008160000006810000408080010102 share/icons/Oxygen_White/cursors_scalable/03b6e0fcb3499374a867c041f52298f0 share/icons/Oxygen_White/cursors_scalable/08e8e1c95fe2fc01f976f1e063a24ccd share/icons/Oxygen_White/cursors_scalable/1081e37283d90000800003c07f3ef6bf share/icons/Oxygen_White/cursors_scalable/3085a0e285430894940527032f8b26df share/icons/Oxygen_White/cursors_scalable/3ecb610c1bf2410f44200f48c40d3599 share/icons/Oxygen_White/cursors_scalable/4498f0e0c1937ffe01fd06f973665830 share/icons/Oxygen_White/cursors_scalable/5c6cd98b3f3ebcb1f9c7f1c204630408 share/icons/Oxygen_White/cursors_scalable/6407b0e94181790501fd1e167b474872 share/icons/Oxygen_White/cursors_scalable/640fb0e74195791501fd1ed57b41487f share/icons/Oxygen_White/cursors_scalable/9081237383d90e509aa00f00170e968f share/icons/Oxygen_White/cursors_scalable/9d800788f1b08800ae810202380a0822 share/icons/Oxygen_White/cursors_scalable/X_cursor/metadata.json share/icons/Oxygen_White/cursors_scalable/X_cursor/x.svg share/icons/Oxygen_White/cursors_scalable/a2a266d0498c3104214a47bd64ab0fc8 share/icons/Oxygen_White/cursors_scalable/alias share/icons/Oxygen_White/cursors_scalable/all-scroll share/icons/Oxygen_White/cursors_scalable/b66166c04f8c3109214a4fbd64a50fc8 share/icons/Oxygen_White/cursors_scalable/circle/circle.svg share/icons/Oxygen_White/cursors_scalable/circle/metadata.json share/icons/Oxygen_White/cursors_scalable/closedhand/grab.svg share/icons/Oxygen_White/cursors_scalable/closedhand/metadata.json share/icons/Oxygen_White/cursors_scalable/col-resize share/icons/Oxygen_White/cursors_scalable/color-picker/metadata.json share/icons/Oxygen_White/cursors_scalable/color-picker/picker.svg share/icons/Oxygen_White/cursors_scalable/copy/copy.svg share/icons/Oxygen_White/cursors_scalable/copy/metadata.json share/icons/Oxygen_White/cursors_scalable/cross/cross.svg share/icons/Oxygen_White/cursors_scalable/cross/metadata.json share/icons/Oxygen_White/cursors_scalable/crossed_circle share/icons/Oxygen_White/cursors_scalable/d9ce0ab605698f320427677b458ad60b share/icons/Oxygen_White/cursors_scalable/dnd-copy share/icons/Oxygen_White/cursors_scalable/dnd-link share/icons/Oxygen_White/cursors_scalable/dnd-move share/icons/Oxygen_White/cursors_scalable/dnd-no-drop share/icons/Oxygen_White/cursors_scalable/dnd-none share/icons/Oxygen_White/cursors_scalable/e-resize share/icons/Oxygen_White/cursors_scalable/e29285e634086352946a0e7090d73106 share/icons/Oxygen_White/cursors_scalable/fcf21c00b30f7e3f83fe0dfd12e71cff share/icons/Oxygen_White/cursors_scalable/fleur/fleur.svg share/icons/Oxygen_White/cursors_scalable/fleur/metadata.json share/icons/Oxygen_White/cursors_scalable/forbidden/forbidden.svg share/icons/Oxygen_White/cursors_scalable/forbidden/metadata.json share/icons/Oxygen_White/cursors_scalable/half-busy/half-busy.svg share/icons/Oxygen_White/cursors_scalable/half-busy/half-busy1.svg share/icons/Oxygen_White/cursors_scalable/half-busy/half-busy10.svg share/icons/Oxygen_White/cursors_scalable/half-busy/half-busy11.svg share/icons/Oxygen_White/cursors_scalable/half-busy/half-busy12.svg share/icons/Oxygen_White/cursors_scalable/half-busy/half-busy13.svg share/icons/Oxygen_White/cursors_scalable/half-busy/half-busy14.svg share/icons/Oxygen_White/cursors_scalable/half-busy/half-busy15.svg share/icons/Oxygen_White/cursors_scalable/half-busy/half-busy16.svg share/icons/Oxygen_White/cursors_scalable/half-busy/half-busy17.svg share/icons/Oxygen_White/cursors_scalable/half-busy/half-busy2.svg share/icons/Oxygen_White/cursors_scalable/half-busy/half-busy3.svg share/icons/Oxygen_White/cursors_scalable/half-busy/half-busy4.svg share/icons/Oxygen_White/cursors_scalable/half-busy/half-busy5.svg share/icons/Oxygen_White/cursors_scalable/half-busy/half-busy6.svg share/icons/Oxygen_White/cursors_scalable/half-busy/half-busy7.svg share/icons/Oxygen_White/cursors_scalable/half-busy/half-busy8.svg share/icons/Oxygen_White/cursors_scalable/half-busy/half-busy9.svg share/icons/Oxygen_White/cursors_scalable/half-busy/metadata.json share/icons/Oxygen_White/cursors_scalable/hand1 share/icons/Oxygen_White/cursors_scalable/hand2 share/icons/Oxygen_White/cursors_scalable/help/help.svg share/icons/Oxygen_White/cursors_scalable/help/metadata.json share/icons/Oxygen_White/cursors_scalable/ibeam share/icons/Oxygen_White/cursors_scalable/left_ptr/left_ptr.svg share/icons/Oxygen_White/cursors_scalable/left_ptr/metadata.json share/icons/Oxygen_White/cursors_scalable/left_ptr_watch share/icons/Oxygen_White/cursors_scalable/link/link.svg share/icons/Oxygen_White/cursors_scalable/link/metadata.json share/icons/Oxygen_White/cursors_scalable/move share/icons/Oxygen_White/cursors_scalable/n-resize share/icons/Oxygen_White/cursors_scalable/not-allowed share/icons/Oxygen_White/cursors_scalable/openhand/grab_open.svg share/icons/Oxygen_White/cursors_scalable/openhand/metadata.json share/icons/Oxygen_White/cursors_scalable/pencil/metadata.json share/icons/Oxygen_White/cursors_scalable/pencil/pencil.svg share/icons/Oxygen_White/cursors_scalable/pirate/kill.svg share/icons/Oxygen_White/cursors_scalable/pirate/metadata.json share/icons/Oxygen_White/cursors_scalable/plus/metadata.json share/icons/Oxygen_White/cursors_scalable/plus/plus.svg share/icons/Oxygen_White/cursors_scalable/pointer share/icons/Oxygen_White/cursors_scalable/pointing_hand/hand.svg share/icons/Oxygen_White/cursors_scalable/pointing_hand/metadata.json share/icons/Oxygen_White/cursors_scalable/progress share/icons/Oxygen_White/cursors_scalable/question_arrow share/icons/Oxygen_White/cursors_scalable/row-resize share/icons/Oxygen_White/cursors_scalable/s-resize share/icons/Oxygen_White/cursors_scalable/sb_h_double_arrow share/icons/Oxygen_White/cursors_scalable/sb_v_double_arrow share/icons/Oxygen_White/cursors_scalable/size_all share/icons/Oxygen_White/cursors_scalable/size_bdiag/metadata.json share/icons/Oxygen_White/cursors_scalable/size_bdiag/size_diag-tr2bl.svg share/icons/Oxygen_White/cursors_scalable/size_fdiag/metadata.json share/icons/Oxygen_White/cursors_scalable/size_fdiag/size_diag-tl2br.svg share/icons/Oxygen_White/cursors_scalable/size_hor/metadata.json share/icons/Oxygen_White/cursors_scalable/size_hor/size_hor.svg share/icons/Oxygen_White/cursors_scalable/size_ver/metadata.json share/icons/Oxygen_White/cursors_scalable/size_ver/size_ver.svg share/icons/Oxygen_White/cursors_scalable/split_h/metadata.json share/icons/Oxygen_White/cursors_scalable/split_h/split_h.svg share/icons/Oxygen_White/cursors_scalable/split_v/metadata.json share/icons/Oxygen_White/cursors_scalable/split_v/split_v.svg share/icons/Oxygen_White/cursors_scalable/text share/icons/Oxygen_White/cursors_scalable/up_arrow/metadata.json share/icons/Oxygen_White/cursors_scalable/up_arrow/up_arrow.svg share/icons/Oxygen_White/cursors_scalable/v_double_arrow share/icons/Oxygen_White/cursors_scalable/w-resize share/icons/Oxygen_White/cursors_scalable/wait/busy.svg share/icons/Oxygen_White/cursors_scalable/wait/busy1.svg share/icons/Oxygen_White/cursors_scalable/wait/busy10.svg share/icons/Oxygen_White/cursors_scalable/wait/busy11.svg share/icons/Oxygen_White/cursors_scalable/wait/busy12.svg share/icons/Oxygen_White/cursors_scalable/wait/busy13.svg share/icons/Oxygen_White/cursors_scalable/wait/busy14.svg share/icons/Oxygen_White/cursors_scalable/wait/busy15.svg share/icons/Oxygen_White/cursors_scalable/wait/busy16.svg share/icons/Oxygen_White/cursors_scalable/wait/busy17.svg share/icons/Oxygen_White/cursors_scalable/wait/busy2.svg share/icons/Oxygen_White/cursors_scalable/wait/busy3.svg share/icons/Oxygen_White/cursors_scalable/wait/busy4.svg share/icons/Oxygen_White/cursors_scalable/wait/busy5.svg share/icons/Oxygen_White/cursors_scalable/wait/busy6.svg share/icons/Oxygen_White/cursors_scalable/wait/busy7.svg share/icons/Oxygen_White/cursors_scalable/wait/busy8.svg share/icons/Oxygen_White/cursors_scalable/wait/busy9.svg share/icons/Oxygen_White/cursors_scalable/wait/metadata.json share/icons/Oxygen_White/cursors_scalable/watch share/icons/Oxygen_White/cursors_scalable/whats_this share/icons/Oxygen_White/cursors_scalable/xterm/metadata.json share/icons/Oxygen_White/cursors_scalable/xterm/xterm.svg share/icons/Oxygen_White/index.theme share/icons/Oxygen_Yellow/cursors/00000000000000020006000e7e9ffc3f share/icons/Oxygen_Yellow/cursors/00008160000006810000408080010102 share/icons/Oxygen_Yellow/cursors/03b6e0fcb3499374a867c041f52298f0 share/icons/Oxygen_Yellow/cursors/08e8e1c95fe2fc01f976f1e063a24ccd share/icons/Oxygen_Yellow/cursors/1081e37283d90000800003c07f3ef6bf share/icons/Oxygen_Yellow/cursors/3085a0e285430894940527032f8b26df share/icons/Oxygen_Yellow/cursors/3ecb610c1bf2410f44200f48c40d3599 share/icons/Oxygen_Yellow/cursors/4498f0e0c1937ffe01fd06f973665830 share/icons/Oxygen_Yellow/cursors/5c6cd98b3f3ebcb1f9c7f1c204630408 share/icons/Oxygen_Yellow/cursors/6407b0e94181790501fd1e167b474872 share/icons/Oxygen_Yellow/cursors/640fb0e74195791501fd1ed57b41487f share/icons/Oxygen_Yellow/cursors/9081237383d90e509aa00f00170e968f share/icons/Oxygen_Yellow/cursors/9d800788f1b08800ae810202380a0822 share/icons/Oxygen_Yellow/cursors/X_cursor share/icons/Oxygen_Yellow/cursors/a2a266d0498c3104214a47bd64ab0fc8 share/icons/Oxygen_Yellow/cursors/alias share/icons/Oxygen_Yellow/cursors/all-scroll share/icons/Oxygen_Yellow/cursors/b66166c04f8c3109214a4fbd64a50fc8 share/icons/Oxygen_Yellow/cursors/circle share/icons/Oxygen_Yellow/cursors/closedhand share/icons/Oxygen_Yellow/cursors/col-resize share/icons/Oxygen_Yellow/cursors/color-picker share/icons/Oxygen_Yellow/cursors/copy share/icons/Oxygen_Yellow/cursors/cross share/icons/Oxygen_Yellow/cursors/crossed_circle share/icons/Oxygen_Yellow/cursors/d9ce0ab605698f320427677b458ad60b share/icons/Oxygen_Yellow/cursors/dnd-copy share/icons/Oxygen_Yellow/cursors/dnd-link share/icons/Oxygen_Yellow/cursors/dnd-move share/icons/Oxygen_Yellow/cursors/dnd-no-drop share/icons/Oxygen_Yellow/cursors/dnd-none share/icons/Oxygen_Yellow/cursors/e-resize share/icons/Oxygen_Yellow/cursors/e29285e634086352946a0e7090d73106 share/icons/Oxygen_Yellow/cursors/fcf21c00b30f7e3f83fe0dfd12e71cff share/icons/Oxygen_Yellow/cursors/fleur share/icons/Oxygen_Yellow/cursors/forbidden share/icons/Oxygen_Yellow/cursors/half-busy share/icons/Oxygen_Yellow/cursors/hand1 share/icons/Oxygen_Yellow/cursors/hand2 share/icons/Oxygen_Yellow/cursors/help share/icons/Oxygen_Yellow/cursors/ibeam share/icons/Oxygen_Yellow/cursors/left_ptr share/icons/Oxygen_Yellow/cursors/left_ptr_watch share/icons/Oxygen_Yellow/cursors/link share/icons/Oxygen_Yellow/cursors/move share/icons/Oxygen_Yellow/cursors/n-resize share/icons/Oxygen_Yellow/cursors/ne-resize share/icons/Oxygen_Yellow/cursors/nesw-resize share/icons/Oxygen_Yellow/cursors/not-allowed share/icons/Oxygen_Yellow/cursors/nw-resize share/icons/Oxygen_Yellow/cursors/nwse-resize share/icons/Oxygen_Yellow/cursors/openhand share/icons/Oxygen_Yellow/cursors/pencil share/icons/Oxygen_Yellow/cursors/pirate share/icons/Oxygen_Yellow/cursors/plus share/icons/Oxygen_Yellow/cursors/pointer share/icons/Oxygen_Yellow/cursors/pointing_hand share/icons/Oxygen_Yellow/cursors/progress share/icons/Oxygen_Yellow/cursors/question_arrow share/icons/Oxygen_Yellow/cursors/row-resize share/icons/Oxygen_Yellow/cursors/s-resize share/icons/Oxygen_Yellow/cursors/sb_h_double_arrow share/icons/Oxygen_Yellow/cursors/sb_v_double_arrow share/icons/Oxygen_Yellow/cursors/se-resize share/icons/Oxygen_Yellow/cursors/size_all share/icons/Oxygen_Yellow/cursors/size_bdiag share/icons/Oxygen_Yellow/cursors/size_fdiag share/icons/Oxygen_Yellow/cursors/size_hor share/icons/Oxygen_Yellow/cursors/size_ver share/icons/Oxygen_Yellow/cursors/split_h share/icons/Oxygen_Yellow/cursors/split_v share/icons/Oxygen_Yellow/cursors/sw-resize share/icons/Oxygen_Yellow/cursors/text share/icons/Oxygen_Yellow/cursors/up_arrow share/icons/Oxygen_Yellow/cursors/v_double_arrow share/icons/Oxygen_Yellow/cursors/w-resize share/icons/Oxygen_Yellow/cursors/wait share/icons/Oxygen_Yellow/cursors/watch share/icons/Oxygen_Yellow/cursors/whats_this share/icons/Oxygen_Yellow/cursors/xterm share/icons/Oxygen_Yellow/cursors_scalable/.directory share/icons/Oxygen_Yellow/cursors_scalable/00000000000000020006000e7e9ffc3f share/icons/Oxygen_Yellow/cursors_scalable/00008160000006810000408080010102 share/icons/Oxygen_Yellow/cursors_scalable/03b6e0fcb3499374a867c041f52298f0 share/icons/Oxygen_Yellow/cursors_scalable/08e8e1c95fe2fc01f976f1e063a24ccd share/icons/Oxygen_Yellow/cursors_scalable/1081e37283d90000800003c07f3ef6bf share/icons/Oxygen_Yellow/cursors_scalable/3085a0e285430894940527032f8b26df share/icons/Oxygen_Yellow/cursors_scalable/3ecb610c1bf2410f44200f48c40d3599 share/icons/Oxygen_Yellow/cursors_scalable/4498f0e0c1937ffe01fd06f973665830 share/icons/Oxygen_Yellow/cursors_scalable/5c6cd98b3f3ebcb1f9c7f1c204630408 share/icons/Oxygen_Yellow/cursors_scalable/6407b0e94181790501fd1e167b474872 share/icons/Oxygen_Yellow/cursors_scalable/640fb0e74195791501fd1ed57b41487f share/icons/Oxygen_Yellow/cursors_scalable/9081237383d90e509aa00f00170e968f share/icons/Oxygen_Yellow/cursors_scalable/9d800788f1b08800ae810202380a0822 share/icons/Oxygen_Yellow/cursors_scalable/X_cursor/metadata.json share/icons/Oxygen_Yellow/cursors_scalable/X_cursor/x.svg share/icons/Oxygen_Yellow/cursors_scalable/a2a266d0498c3104214a47bd64ab0fc8 share/icons/Oxygen_Yellow/cursors_scalable/alias share/icons/Oxygen_Yellow/cursors_scalable/all-scroll share/icons/Oxygen_Yellow/cursors_scalable/b66166c04f8c3109214a4fbd64a50fc8 share/icons/Oxygen_Yellow/cursors_scalable/circle/circle.svg share/icons/Oxygen_Yellow/cursors_scalable/circle/metadata.json share/icons/Oxygen_Yellow/cursors_scalable/closedhand/grab.svg share/icons/Oxygen_Yellow/cursors_scalable/closedhand/metadata.json share/icons/Oxygen_Yellow/cursors_scalable/col-resize share/icons/Oxygen_Yellow/cursors_scalable/color-picker/metadata.json share/icons/Oxygen_Yellow/cursors_scalable/color-picker/picker.svg share/icons/Oxygen_Yellow/cursors_scalable/copy/copy.svg share/icons/Oxygen_Yellow/cursors_scalable/copy/metadata.json share/icons/Oxygen_Yellow/cursors_scalable/cross/cross.svg share/icons/Oxygen_Yellow/cursors_scalable/cross/metadata.json share/icons/Oxygen_Yellow/cursors_scalable/crossed_circle share/icons/Oxygen_Yellow/cursors_scalable/d9ce0ab605698f320427677b458ad60b share/icons/Oxygen_Yellow/cursors_scalable/dnd-copy share/icons/Oxygen_Yellow/cursors_scalable/dnd-link share/icons/Oxygen_Yellow/cursors_scalable/dnd-move share/icons/Oxygen_Yellow/cursors_scalable/dnd-no-drop share/icons/Oxygen_Yellow/cursors_scalable/dnd-none share/icons/Oxygen_Yellow/cursors_scalable/e-resize share/icons/Oxygen_Yellow/cursors_scalable/e29285e634086352946a0e7090d73106 share/icons/Oxygen_Yellow/cursors_scalable/fcf21c00b30f7e3f83fe0dfd12e71cff share/icons/Oxygen_Yellow/cursors_scalable/fleur/fleur.svg share/icons/Oxygen_Yellow/cursors_scalable/fleur/metadata.json share/icons/Oxygen_Yellow/cursors_scalable/forbidden/forbidden.svg share/icons/Oxygen_Yellow/cursors_scalable/forbidden/metadata.json share/icons/Oxygen_Yellow/cursors_scalable/half-busy/half-busy.svg share/icons/Oxygen_Yellow/cursors_scalable/half-busy/half-busy1.svg share/icons/Oxygen_Yellow/cursors_scalable/half-busy/half-busy10.svg share/icons/Oxygen_Yellow/cursors_scalable/half-busy/half-busy11.svg share/icons/Oxygen_Yellow/cursors_scalable/half-busy/half-busy12.svg share/icons/Oxygen_Yellow/cursors_scalable/half-busy/half-busy13.svg share/icons/Oxygen_Yellow/cursors_scalable/half-busy/half-busy14.svg share/icons/Oxygen_Yellow/cursors_scalable/half-busy/half-busy15.svg share/icons/Oxygen_Yellow/cursors_scalable/half-busy/half-busy16.svg share/icons/Oxygen_Yellow/cursors_scalable/half-busy/half-busy17.svg share/icons/Oxygen_Yellow/cursors_scalable/half-busy/half-busy2.svg share/icons/Oxygen_Yellow/cursors_scalable/half-busy/half-busy3.svg share/icons/Oxygen_Yellow/cursors_scalable/half-busy/half-busy4.svg share/icons/Oxygen_Yellow/cursors_scalable/half-busy/half-busy5.svg share/icons/Oxygen_Yellow/cursors_scalable/half-busy/half-busy6.svg share/icons/Oxygen_Yellow/cursors_scalable/half-busy/half-busy7.svg share/icons/Oxygen_Yellow/cursors_scalable/half-busy/half-busy8.svg share/icons/Oxygen_Yellow/cursors_scalable/half-busy/half-busy9.svg share/icons/Oxygen_Yellow/cursors_scalable/half-busy/metadata.json share/icons/Oxygen_Yellow/cursors_scalable/hand1 share/icons/Oxygen_Yellow/cursors_scalable/hand2 share/icons/Oxygen_Yellow/cursors_scalable/help/help.svg share/icons/Oxygen_Yellow/cursors_scalable/help/metadata.json share/icons/Oxygen_Yellow/cursors_scalable/ibeam share/icons/Oxygen_Yellow/cursors_scalable/left_ptr/left_ptr.svg share/icons/Oxygen_Yellow/cursors_scalable/left_ptr/metadata.json share/icons/Oxygen_Yellow/cursors_scalable/left_ptr_watch share/icons/Oxygen_Yellow/cursors_scalable/link/link.svg share/icons/Oxygen_Yellow/cursors_scalable/link/metadata.json share/icons/Oxygen_Yellow/cursors_scalable/move share/icons/Oxygen_Yellow/cursors_scalable/n-resize share/icons/Oxygen_Yellow/cursors_scalable/not-allowed share/icons/Oxygen_Yellow/cursors_scalable/openhand/grab_open.svg share/icons/Oxygen_Yellow/cursors_scalable/openhand/metadata.json share/icons/Oxygen_Yellow/cursors_scalable/pencil/metadata.json share/icons/Oxygen_Yellow/cursors_scalable/pencil/pencil.svg share/icons/Oxygen_Yellow/cursors_scalable/pirate/kill.svg share/icons/Oxygen_Yellow/cursors_scalable/pirate/metadata.json share/icons/Oxygen_Yellow/cursors_scalable/plus/metadata.json share/icons/Oxygen_Yellow/cursors_scalable/plus/plus.svg share/icons/Oxygen_Yellow/cursors_scalable/pointer share/icons/Oxygen_Yellow/cursors_scalable/pointing_hand/hand.svg share/icons/Oxygen_Yellow/cursors_scalable/pointing_hand/metadata.json share/icons/Oxygen_Yellow/cursors_scalable/progress share/icons/Oxygen_Yellow/cursors_scalable/question_arrow share/icons/Oxygen_Yellow/cursors_scalable/row-resize share/icons/Oxygen_Yellow/cursors_scalable/s-resize share/icons/Oxygen_Yellow/cursors_scalable/sb_h_double_arrow share/icons/Oxygen_Yellow/cursors_scalable/sb_v_double_arrow share/icons/Oxygen_Yellow/cursors_scalable/size_all share/icons/Oxygen_Yellow/cursors_scalable/size_bdiag/metadata.json share/icons/Oxygen_Yellow/cursors_scalable/size_bdiag/size_diag-tr2bl.svg share/icons/Oxygen_Yellow/cursors_scalable/size_fdiag/metadata.json share/icons/Oxygen_Yellow/cursors_scalable/size_fdiag/size_diag-tl2br.svg share/icons/Oxygen_Yellow/cursors_scalable/size_hor/metadata.json share/icons/Oxygen_Yellow/cursors_scalable/size_hor/size_hor.svg share/icons/Oxygen_Yellow/cursors_scalable/size_ver/metadata.json share/icons/Oxygen_Yellow/cursors_scalable/size_ver/size_ver.svg share/icons/Oxygen_Yellow/cursors_scalable/split_h/metadata.json share/icons/Oxygen_Yellow/cursors_scalable/split_h/split_h.svg share/icons/Oxygen_Yellow/cursors_scalable/split_v/metadata.json share/icons/Oxygen_Yellow/cursors_scalable/split_v/split_v.svg share/icons/Oxygen_Yellow/cursors_scalable/text share/icons/Oxygen_Yellow/cursors_scalable/up_arrow/metadata.json share/icons/Oxygen_Yellow/cursors_scalable/up_arrow/up_arrow.svg share/icons/Oxygen_Yellow/cursors_scalable/v_double_arrow share/icons/Oxygen_Yellow/cursors_scalable/w-resize share/icons/Oxygen_Yellow/cursors_scalable/wait/busy.svg share/icons/Oxygen_Yellow/cursors_scalable/wait/busy1.svg share/icons/Oxygen_Yellow/cursors_scalable/wait/busy10.svg share/icons/Oxygen_Yellow/cursors_scalable/wait/busy11.svg share/icons/Oxygen_Yellow/cursors_scalable/wait/busy12.svg share/icons/Oxygen_Yellow/cursors_scalable/wait/busy13.svg share/icons/Oxygen_Yellow/cursors_scalable/wait/busy14.svg share/icons/Oxygen_Yellow/cursors_scalable/wait/busy15.svg share/icons/Oxygen_Yellow/cursors_scalable/wait/busy16.svg share/icons/Oxygen_Yellow/cursors_scalable/wait/busy17.svg share/icons/Oxygen_Yellow/cursors_scalable/wait/busy2.svg share/icons/Oxygen_Yellow/cursors_scalable/wait/busy3.svg share/icons/Oxygen_Yellow/cursors_scalable/wait/busy4.svg share/icons/Oxygen_Yellow/cursors_scalable/wait/busy5.svg share/icons/Oxygen_Yellow/cursors_scalable/wait/busy6.svg share/icons/Oxygen_Yellow/cursors_scalable/wait/busy7.svg share/icons/Oxygen_Yellow/cursors_scalable/wait/busy8.svg share/icons/Oxygen_Yellow/cursors_scalable/wait/busy9.svg share/icons/Oxygen_Yellow/cursors_scalable/wait/metadata.json share/icons/Oxygen_Yellow/cursors_scalable/watch share/icons/Oxygen_Yellow/cursors_scalable/whats_this share/icons/Oxygen_Yellow/cursors_scalable/xterm/metadata.json share/icons/Oxygen_Yellow/cursors_scalable/xterm/xterm.svg share/icons/Oxygen_Yellow/index.theme share/icons/Oxygen_Zion/cursors/00000000000000020006000e7e9ffc3f share/icons/Oxygen_Zion/cursors/00008160000006810000408080010102 share/icons/Oxygen_Zion/cursors/03b6e0fcb3499374a867c041f52298f0 share/icons/Oxygen_Zion/cursors/08e8e1c95fe2fc01f976f1e063a24ccd share/icons/Oxygen_Zion/cursors/1081e37283d90000800003c07f3ef6bf share/icons/Oxygen_Zion/cursors/3085a0e285430894940527032f8b26df share/icons/Oxygen_Zion/cursors/3ecb610c1bf2410f44200f48c40d3599 share/icons/Oxygen_Zion/cursors/4498f0e0c1937ffe01fd06f973665830 share/icons/Oxygen_Zion/cursors/5c6cd98b3f3ebcb1f9c7f1c204630408 share/icons/Oxygen_Zion/cursors/6407b0e94181790501fd1e167b474872 share/icons/Oxygen_Zion/cursors/640fb0e74195791501fd1ed57b41487f share/icons/Oxygen_Zion/cursors/9081237383d90e509aa00f00170e968f share/icons/Oxygen_Zion/cursors/9d800788f1b08800ae810202380a0822 share/icons/Oxygen_Zion/cursors/X_cursor share/icons/Oxygen_Zion/cursors/a2a266d0498c3104214a47bd64ab0fc8 share/icons/Oxygen_Zion/cursors/alias share/icons/Oxygen_Zion/cursors/all-scroll share/icons/Oxygen_Zion/cursors/b66166c04f8c3109214a4fbd64a50fc8 share/icons/Oxygen_Zion/cursors/circle share/icons/Oxygen_Zion/cursors/closedhand share/icons/Oxygen_Zion/cursors/col-resize share/icons/Oxygen_Zion/cursors/color-picker share/icons/Oxygen_Zion/cursors/copy share/icons/Oxygen_Zion/cursors/cross share/icons/Oxygen_Zion/cursors/crossed_circle share/icons/Oxygen_Zion/cursors/d9ce0ab605698f320427677b458ad60b share/icons/Oxygen_Zion/cursors/dnd-copy share/icons/Oxygen_Zion/cursors/dnd-link share/icons/Oxygen_Zion/cursors/dnd-move share/icons/Oxygen_Zion/cursors/dnd-no-drop share/icons/Oxygen_Zion/cursors/dnd-none share/icons/Oxygen_Zion/cursors/e-resize share/icons/Oxygen_Zion/cursors/e29285e634086352946a0e7090d73106 share/icons/Oxygen_Zion/cursors/fcf21c00b30f7e3f83fe0dfd12e71cff share/icons/Oxygen_Zion/cursors/fleur share/icons/Oxygen_Zion/cursors/forbidden share/icons/Oxygen_Zion/cursors/half-busy share/icons/Oxygen_Zion/cursors/hand1 share/icons/Oxygen_Zion/cursors/hand2 share/icons/Oxygen_Zion/cursors/help share/icons/Oxygen_Zion/cursors/ibeam share/icons/Oxygen_Zion/cursors/left_ptr share/icons/Oxygen_Zion/cursors/left_ptr_watch share/icons/Oxygen_Zion/cursors/link share/icons/Oxygen_Zion/cursors/move share/icons/Oxygen_Zion/cursors/n-resize share/icons/Oxygen_Zion/cursors/ne-resize share/icons/Oxygen_Zion/cursors/nesw-resize share/icons/Oxygen_Zion/cursors/not-allowed share/icons/Oxygen_Zion/cursors/nw-resize share/icons/Oxygen_Zion/cursors/nwse-resize share/icons/Oxygen_Zion/cursors/openhand share/icons/Oxygen_Zion/cursors/pencil share/icons/Oxygen_Zion/cursors/pirate share/icons/Oxygen_Zion/cursors/plus share/icons/Oxygen_Zion/cursors/pointer share/icons/Oxygen_Zion/cursors/pointing_hand share/icons/Oxygen_Zion/cursors/progress share/icons/Oxygen_Zion/cursors/question_arrow share/icons/Oxygen_Zion/cursors/row-resize share/icons/Oxygen_Zion/cursors/s-resize share/icons/Oxygen_Zion/cursors/sb_h_double_arrow share/icons/Oxygen_Zion/cursors/sb_v_double_arrow share/icons/Oxygen_Zion/cursors/se-resize share/icons/Oxygen_Zion/cursors/size_all share/icons/Oxygen_Zion/cursors/size_bdiag share/icons/Oxygen_Zion/cursors/size_fdiag share/icons/Oxygen_Zion/cursors/size_hor share/icons/Oxygen_Zion/cursors/size_ver share/icons/Oxygen_Zion/cursors/split_h share/icons/Oxygen_Zion/cursors/split_v share/icons/Oxygen_Zion/cursors/sw-resize share/icons/Oxygen_Zion/cursors/text share/icons/Oxygen_Zion/cursors/up_arrow share/icons/Oxygen_Zion/cursors/v_double_arrow share/icons/Oxygen_Zion/cursors/w-resize share/icons/Oxygen_Zion/cursors/wait share/icons/Oxygen_Zion/cursors/watch share/icons/Oxygen_Zion/cursors/whats_this share/icons/Oxygen_Zion/cursors/xterm share/icons/Oxygen_Zion/cursors_scalable/.directory share/icons/Oxygen_Zion/cursors_scalable/00000000000000020006000e7e9ffc3f share/icons/Oxygen_Zion/cursors_scalable/00008160000006810000408080010102 share/icons/Oxygen_Zion/cursors_scalable/03b6e0fcb3499374a867c041f52298f0 share/icons/Oxygen_Zion/cursors_scalable/08e8e1c95fe2fc01f976f1e063a24ccd share/icons/Oxygen_Zion/cursors_scalable/1081e37283d90000800003c07f3ef6bf share/icons/Oxygen_Zion/cursors_scalable/3085a0e285430894940527032f8b26df share/icons/Oxygen_Zion/cursors_scalable/3ecb610c1bf2410f44200f48c40d3599 share/icons/Oxygen_Zion/cursors_scalable/4498f0e0c1937ffe01fd06f973665830 share/icons/Oxygen_Zion/cursors_scalable/5c6cd98b3f3ebcb1f9c7f1c204630408 share/icons/Oxygen_Zion/cursors_scalable/6407b0e94181790501fd1e167b474872 share/icons/Oxygen_Zion/cursors_scalable/640fb0e74195791501fd1ed57b41487f share/icons/Oxygen_Zion/cursors_scalable/9081237383d90e509aa00f00170e968f share/icons/Oxygen_Zion/cursors_scalable/9d800788f1b08800ae810202380a0822 share/icons/Oxygen_Zion/cursors_scalable/X_cursor/metadata.json share/icons/Oxygen_Zion/cursors_scalable/X_cursor/x.svg share/icons/Oxygen_Zion/cursors_scalable/a2a266d0498c3104214a47bd64ab0fc8 share/icons/Oxygen_Zion/cursors_scalable/alias share/icons/Oxygen_Zion/cursors_scalable/all-scroll share/icons/Oxygen_Zion/cursors_scalable/b66166c04f8c3109214a4fbd64a50fc8 share/icons/Oxygen_Zion/cursors_scalable/circle/circle.svg share/icons/Oxygen_Zion/cursors_scalable/circle/metadata.json share/icons/Oxygen_Zion/cursors_scalable/closedhand/grab.svg share/icons/Oxygen_Zion/cursors_scalable/closedhand/metadata.json share/icons/Oxygen_Zion/cursors_scalable/col-resize share/icons/Oxygen_Zion/cursors_scalable/color-picker/metadata.json share/icons/Oxygen_Zion/cursors_scalable/color-picker/picker.svg share/icons/Oxygen_Zion/cursors_scalable/copy/copy.svg share/icons/Oxygen_Zion/cursors_scalable/copy/metadata.json share/icons/Oxygen_Zion/cursors_scalable/cross/cross.svg share/icons/Oxygen_Zion/cursors_scalable/cross/metadata.json share/icons/Oxygen_Zion/cursors_scalable/crossed_circle share/icons/Oxygen_Zion/cursors_scalable/d9ce0ab605698f320427677b458ad60b share/icons/Oxygen_Zion/cursors_scalable/dnd-copy share/icons/Oxygen_Zion/cursors_scalable/dnd-link share/icons/Oxygen_Zion/cursors_scalable/dnd-move share/icons/Oxygen_Zion/cursors_scalable/dnd-no-drop share/icons/Oxygen_Zion/cursors_scalable/dnd-none share/icons/Oxygen_Zion/cursors_scalable/e-resize share/icons/Oxygen_Zion/cursors_scalable/e29285e634086352946a0e7090d73106 share/icons/Oxygen_Zion/cursors_scalable/fcf21c00b30f7e3f83fe0dfd12e71cff share/icons/Oxygen_Zion/cursors_scalable/fleur/fleur.svg share/icons/Oxygen_Zion/cursors_scalable/fleur/metadata.json share/icons/Oxygen_Zion/cursors_scalable/forbidden/forbidden.svg share/icons/Oxygen_Zion/cursors_scalable/forbidden/metadata.json share/icons/Oxygen_Zion/cursors_scalable/half-busy/half-busy.svg share/icons/Oxygen_Zion/cursors_scalable/half-busy/half-busy1.svg share/icons/Oxygen_Zion/cursors_scalable/half-busy/half-busy10.svg share/icons/Oxygen_Zion/cursors_scalable/half-busy/half-busy11.svg share/icons/Oxygen_Zion/cursors_scalable/half-busy/half-busy12.svg share/icons/Oxygen_Zion/cursors_scalable/half-busy/half-busy13.svg share/icons/Oxygen_Zion/cursors_scalable/half-busy/half-busy14.svg share/icons/Oxygen_Zion/cursors_scalable/half-busy/half-busy15.svg share/icons/Oxygen_Zion/cursors_scalable/half-busy/half-busy16.svg share/icons/Oxygen_Zion/cursors_scalable/half-busy/half-busy17.svg share/icons/Oxygen_Zion/cursors_scalable/half-busy/half-busy2.svg share/icons/Oxygen_Zion/cursors_scalable/half-busy/half-busy3.svg share/icons/Oxygen_Zion/cursors_scalable/half-busy/half-busy4.svg share/icons/Oxygen_Zion/cursors_scalable/half-busy/half-busy5.svg share/icons/Oxygen_Zion/cursors_scalable/half-busy/half-busy6.svg share/icons/Oxygen_Zion/cursors_scalable/half-busy/half-busy7.svg share/icons/Oxygen_Zion/cursors_scalable/half-busy/half-busy8.svg share/icons/Oxygen_Zion/cursors_scalable/half-busy/half-busy9.svg share/icons/Oxygen_Zion/cursors_scalable/half-busy/metadata.json share/icons/Oxygen_Zion/cursors_scalable/hand1 share/icons/Oxygen_Zion/cursors_scalable/hand2 share/icons/Oxygen_Zion/cursors_scalable/help/help.svg share/icons/Oxygen_Zion/cursors_scalable/help/metadata.json share/icons/Oxygen_Zion/cursors_scalable/ibeam share/icons/Oxygen_Zion/cursors_scalable/left_ptr/left_ptr.svg share/icons/Oxygen_Zion/cursors_scalable/left_ptr/metadata.json share/icons/Oxygen_Zion/cursors_scalable/left_ptr_watch share/icons/Oxygen_Zion/cursors_scalable/link/link.svg share/icons/Oxygen_Zion/cursors_scalable/link/metadata.json share/icons/Oxygen_Zion/cursors_scalable/move share/icons/Oxygen_Zion/cursors_scalable/n-resize share/icons/Oxygen_Zion/cursors_scalable/not-allowed share/icons/Oxygen_Zion/cursors_scalable/openhand/grab_open.svg share/icons/Oxygen_Zion/cursors_scalable/openhand/metadata.json share/icons/Oxygen_Zion/cursors_scalable/pencil/metadata.json share/icons/Oxygen_Zion/cursors_scalable/pencil/pencil.svg share/icons/Oxygen_Zion/cursors_scalable/pirate/kill.svg share/icons/Oxygen_Zion/cursors_scalable/pirate/metadata.json share/icons/Oxygen_Zion/cursors_scalable/plus/metadata.json share/icons/Oxygen_Zion/cursors_scalable/plus/plus.svg share/icons/Oxygen_Zion/cursors_scalable/pointer share/icons/Oxygen_Zion/cursors_scalable/pointing_hand/hand.svg share/icons/Oxygen_Zion/cursors_scalable/pointing_hand/metadata.json share/icons/Oxygen_Zion/cursors_scalable/progress share/icons/Oxygen_Zion/cursors_scalable/question_arrow share/icons/Oxygen_Zion/cursors_scalable/row-resize share/icons/Oxygen_Zion/cursors_scalable/s-resize share/icons/Oxygen_Zion/cursors_scalable/sb_h_double_arrow share/icons/Oxygen_Zion/cursors_scalable/sb_v_double_arrow share/icons/Oxygen_Zion/cursors_scalable/size_all share/icons/Oxygen_Zion/cursors_scalable/size_bdiag/metadata.json share/icons/Oxygen_Zion/cursors_scalable/size_bdiag/size_diag-tr2bl.svg share/icons/Oxygen_Zion/cursors_scalable/size_fdiag/metadata.json share/icons/Oxygen_Zion/cursors_scalable/size_fdiag/size_diag-tl2br.svg share/icons/Oxygen_Zion/cursors_scalable/size_hor/metadata.json share/icons/Oxygen_Zion/cursors_scalable/size_hor/size_hor.svg share/icons/Oxygen_Zion/cursors_scalable/size_ver/metadata.json share/icons/Oxygen_Zion/cursors_scalable/size_ver/size_ver.svg share/icons/Oxygen_Zion/cursors_scalable/split_h/metadata.json share/icons/Oxygen_Zion/cursors_scalable/split_h/split_h.svg share/icons/Oxygen_Zion/cursors_scalable/split_v/metadata.json share/icons/Oxygen_Zion/cursors_scalable/split_v/split_v.svg share/icons/Oxygen_Zion/cursors_scalable/text share/icons/Oxygen_Zion/cursors_scalable/up_arrow/metadata.json share/icons/Oxygen_Zion/cursors_scalable/up_arrow/up_arrow.svg share/icons/Oxygen_Zion/cursors_scalable/v_double_arrow share/icons/Oxygen_Zion/cursors_scalable/w-resize share/icons/Oxygen_Zion/cursors_scalable/wait/busy.svg share/icons/Oxygen_Zion/cursors_scalable/wait/busy1.svg share/icons/Oxygen_Zion/cursors_scalable/wait/busy10.svg share/icons/Oxygen_Zion/cursors_scalable/wait/busy11.svg share/icons/Oxygen_Zion/cursors_scalable/wait/busy12.svg share/icons/Oxygen_Zion/cursors_scalable/wait/busy13.svg share/icons/Oxygen_Zion/cursors_scalable/wait/busy14.svg share/icons/Oxygen_Zion/cursors_scalable/wait/busy15.svg share/icons/Oxygen_Zion/cursors_scalable/wait/busy16.svg share/icons/Oxygen_Zion/cursors_scalable/wait/busy17.svg share/icons/Oxygen_Zion/cursors_scalable/wait/busy2.svg share/icons/Oxygen_Zion/cursors_scalable/wait/busy3.svg share/icons/Oxygen_Zion/cursors_scalable/wait/busy4.svg share/icons/Oxygen_Zion/cursors_scalable/wait/busy5.svg share/icons/Oxygen_Zion/cursors_scalable/wait/busy6.svg share/icons/Oxygen_Zion/cursors_scalable/wait/busy7.svg share/icons/Oxygen_Zion/cursors_scalable/wait/busy8.svg share/icons/Oxygen_Zion/cursors_scalable/wait/busy9.svg share/icons/Oxygen_Zion/cursors_scalable/wait/metadata.json share/icons/Oxygen_Zion/cursors_scalable/watch share/icons/Oxygen_Zion/cursors_scalable/whats_this share/icons/Oxygen_Zion/cursors_scalable/xterm/metadata.json share/icons/Oxygen_Zion/cursors_scalable/xterm/xterm.svg share/icons/Oxygen_Zion/index.theme share/icons/hicolor/256x256/apps/oxygen-settings.png share/kstyle/themes/oxygen.themerc share/locale/af/LC_MESSAGES/oxygen_style_config.mo share/locale/af/LC_MESSAGES/oxygen_style_demo.mo share/locale/ar/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/ar/LC_MESSAGES/oxygen_kdecoration.mo share/locale/ar/LC_MESSAGES/oxygen_style_config.mo share/locale/ar/LC_MESSAGES/oxygen_style_demo.mo share/locale/ast/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/ast/LC_MESSAGES/oxygen_kdecoration.mo share/locale/ast/LC_MESSAGES/oxygen_style_config.mo share/locale/ast/LC_MESSAGES/oxygen_style_demo.mo share/locale/az/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/az/LC_MESSAGES/oxygen_kdecoration.mo share/locale/az/LC_MESSAGES/oxygen_style_config.mo share/locale/az/LC_MESSAGES/oxygen_style_demo.mo share/locale/be/LC_MESSAGES/oxygen_style_config.mo share/locale/be/LC_MESSAGES/oxygen_style_demo.mo share/locale/be@latin/LC_MESSAGES/oxygen_style_config.mo share/locale/be@latin/LC_MESSAGES/oxygen_style_demo.mo share/locale/bg/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/bg/LC_MESSAGES/oxygen_kdecoration.mo share/locale/bg/LC_MESSAGES/oxygen_style_config.mo share/locale/bg/LC_MESSAGES/oxygen_style_demo.mo share/locale/bn_IN/LC_MESSAGES/oxygen_style_config.mo share/locale/bn_IN/LC_MESSAGES/oxygen_style_demo.mo share/locale/br/LC_MESSAGES/oxygen_style_config.mo share/locale/br/LC_MESSAGES/oxygen_style_demo.mo share/locale/bs/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/bs/LC_MESSAGES/oxygen_kdecoration.mo share/locale/bs/LC_MESSAGES/oxygen_style_config.mo share/locale/bs/LC_MESSAGES/oxygen_style_demo.mo share/locale/ca/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/ca/LC_MESSAGES/oxygen_kdecoration.mo share/locale/ca/LC_MESSAGES/oxygen_style_config.mo share/locale/ca/LC_MESSAGES/oxygen_style_demo.mo share/locale/ca@valencia/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/ca@valencia/LC_MESSAGES/oxygen_kdecoration.mo share/locale/ca@valencia/LC_MESSAGES/oxygen_style_config.mo share/locale/ca@valencia/LC_MESSAGES/oxygen_style_demo.mo share/locale/cs/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/cs/LC_MESSAGES/oxygen_kdecoration.mo share/locale/cs/LC_MESSAGES/oxygen_style_config.mo share/locale/cs/LC_MESSAGES/oxygen_style_demo.mo share/locale/csb/LC_MESSAGES/oxygen_style_config.mo share/locale/csb/LC_MESSAGES/oxygen_style_demo.mo share/locale/cy/LC_MESSAGES/oxygen_style_config.mo share/locale/cy/LC_MESSAGES/oxygen_style_demo.mo share/locale/da/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/da/LC_MESSAGES/oxygen_kdecoration.mo share/locale/da/LC_MESSAGES/oxygen_style_config.mo share/locale/da/LC_MESSAGES/oxygen_style_demo.mo share/locale/de/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/de/LC_MESSAGES/oxygen_kdecoration.mo share/locale/de/LC_MESSAGES/oxygen_style_config.mo share/locale/de/LC_MESSAGES/oxygen_style_demo.mo share/locale/el/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/el/LC_MESSAGES/oxygen_kdecoration.mo share/locale/el/LC_MESSAGES/oxygen_style_config.mo share/locale/el/LC_MESSAGES/oxygen_style_demo.mo share/locale/en_GB/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/en_GB/LC_MESSAGES/oxygen_kdecoration.mo share/locale/en_GB/LC_MESSAGES/oxygen_style_config.mo share/locale/en_GB/LC_MESSAGES/oxygen_style_demo.mo share/locale/eo/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/eo/LC_MESSAGES/oxygen_kdecoration.mo share/locale/eo/LC_MESSAGES/oxygen_style_config.mo share/locale/eo/LC_MESSAGES/oxygen_style_demo.mo share/locale/es/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/es/LC_MESSAGES/oxygen_kdecoration.mo share/locale/es/LC_MESSAGES/oxygen_style_config.mo share/locale/es/LC_MESSAGES/oxygen_style_demo.mo share/locale/et/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/et/LC_MESSAGES/oxygen_kdecoration.mo share/locale/et/LC_MESSAGES/oxygen_style_config.mo share/locale/et/LC_MESSAGES/oxygen_style_demo.mo share/locale/eu/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/eu/LC_MESSAGES/oxygen_kdecoration.mo share/locale/eu/LC_MESSAGES/oxygen_style_config.mo share/locale/eu/LC_MESSAGES/oxygen_style_demo.mo share/locale/fa/LC_MESSAGES/oxygen_style_config.mo share/locale/fa/LC_MESSAGES/oxygen_style_demo.mo share/locale/fi/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/fi/LC_MESSAGES/oxygen_kdecoration.mo share/locale/fi/LC_MESSAGES/oxygen_style_config.mo share/locale/fi/LC_MESSAGES/oxygen_style_demo.mo share/locale/fr/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/fr/LC_MESSAGES/oxygen_kdecoration.mo share/locale/fr/LC_MESSAGES/oxygen_style_config.mo share/locale/fr/LC_MESSAGES/oxygen_style_demo.mo share/locale/fy/LC_MESSAGES/oxygen_style_config.mo share/locale/fy/LC_MESSAGES/oxygen_style_demo.mo share/locale/ga/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/ga/LC_MESSAGES/oxygen_kdecoration.mo share/locale/ga/LC_MESSAGES/oxygen_style_config.mo share/locale/ga/LC_MESSAGES/oxygen_style_demo.mo share/locale/gl/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/gl/LC_MESSAGES/oxygen_kdecoration.mo share/locale/gl/LC_MESSAGES/oxygen_style_config.mo share/locale/gl/LC_MESSAGES/oxygen_style_demo.mo share/locale/gu/LC_MESSAGES/oxygen_style_config.mo share/locale/gu/LC_MESSAGES/oxygen_style_demo.mo share/locale/he/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/he/LC_MESSAGES/oxygen_kdecoration.mo share/locale/he/LC_MESSAGES/oxygen_style_config.mo share/locale/he/LC_MESSAGES/oxygen_style_demo.mo share/locale/hi/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/hi/LC_MESSAGES/oxygen_kdecoration.mo share/locale/hi/LC_MESSAGES/oxygen_style_config.mo share/locale/hi/LC_MESSAGES/oxygen_style_demo.mo share/locale/hne/LC_MESSAGES/oxygen_style_config.mo share/locale/hne/LC_MESSAGES/oxygen_style_demo.mo share/locale/hr/LC_MESSAGES/oxygen_style_config.mo share/locale/hr/LC_MESSAGES/oxygen_style_demo.mo share/locale/hsb/LC_MESSAGES/oxygen_style_config.mo share/locale/hsb/LC_MESSAGES/oxygen_style_demo.mo share/locale/hu/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/hu/LC_MESSAGES/oxygen_kdecoration.mo share/locale/hu/LC_MESSAGES/oxygen_style_config.mo share/locale/hu/LC_MESSAGES/oxygen_style_demo.mo share/locale/ia/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/ia/LC_MESSAGES/oxygen_kdecoration.mo share/locale/ia/LC_MESSAGES/oxygen_style_config.mo share/locale/ia/LC_MESSAGES/oxygen_style_demo.mo share/locale/id/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/id/LC_MESSAGES/oxygen_kdecoration.mo share/locale/id/LC_MESSAGES/oxygen_style_config.mo share/locale/id/LC_MESSAGES/oxygen_style_demo.mo -share/locale/is/LC_MESSAGES/liboxygenstyleconfig.mo -share/locale/is/LC_MESSAGES/oxygen_kdecoration.mo share/locale/is/LC_MESSAGES/oxygen_style_config.mo share/locale/is/LC_MESSAGES/oxygen_style_demo.mo share/locale/it/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/it/LC_MESSAGES/oxygen_kdecoration.mo share/locale/it/LC_MESSAGES/oxygen_style_config.mo share/locale/it/LC_MESSAGES/oxygen_style_demo.mo share/locale/ja/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/ja/LC_MESSAGES/oxygen_kdecoration.mo share/locale/ja/LC_MESSAGES/oxygen_style_config.mo share/locale/ja/LC_MESSAGES/oxygen_style_demo.mo share/locale/ka/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/ka/LC_MESSAGES/oxygen_kdecoration.mo share/locale/ka/LC_MESSAGES/oxygen_style_config.mo share/locale/ka/LC_MESSAGES/oxygen_style_demo.mo share/locale/kk/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/kk/LC_MESSAGES/oxygen_style_config.mo share/locale/kk/LC_MESSAGES/oxygen_style_demo.mo share/locale/km/LC_MESSAGES/oxygen_style_config.mo share/locale/km/LC_MESSAGES/oxygen_style_demo.mo share/locale/kn/LC_MESSAGES/oxygen_style_config.mo share/locale/kn/LC_MESSAGES/oxygen_style_demo.mo share/locale/ko/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/ko/LC_MESSAGES/oxygen_kdecoration.mo share/locale/ko/LC_MESSAGES/oxygen_style_config.mo share/locale/ko/LC_MESSAGES/oxygen_style_demo.mo share/locale/ku/LC_MESSAGES/oxygen_style_config.mo share/locale/ku/LC_MESSAGES/oxygen_style_demo.mo share/locale/lb/LC_MESSAGES/oxygen_style_config.mo share/locale/lb/LC_MESSAGES/oxygen_style_demo.mo share/locale/lt/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/lt/LC_MESSAGES/oxygen_kdecoration.mo share/locale/lt/LC_MESSAGES/oxygen_style_config.mo share/locale/lt/LC_MESSAGES/oxygen_style_demo.mo share/locale/lv/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/lv/LC_MESSAGES/oxygen_kdecoration.mo share/locale/lv/LC_MESSAGES/oxygen_style_config.mo share/locale/lv/LC_MESSAGES/oxygen_style_demo.mo share/locale/mai/LC_MESSAGES/oxygen_style_config.mo share/locale/mai/LC_MESSAGES/oxygen_style_demo.mo share/locale/mk/LC_MESSAGES/oxygen_style_config.mo share/locale/mk/LC_MESSAGES/oxygen_style_demo.mo share/locale/ml/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/ml/LC_MESSAGES/oxygen_kdecoration.mo share/locale/ml/LC_MESSAGES/oxygen_style_config.mo share/locale/ml/LC_MESSAGES/oxygen_style_demo.mo share/locale/mr/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/mr/LC_MESSAGES/oxygen_style_config.mo share/locale/mr/LC_MESSAGES/oxygen_style_demo.mo share/locale/ms/LC_MESSAGES/oxygen_style_config.mo share/locale/ms/LC_MESSAGES/oxygen_style_demo.mo share/locale/nb/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/nb/LC_MESSAGES/oxygen_kdecoration.mo share/locale/nb/LC_MESSAGES/oxygen_style_config.mo share/locale/nb/LC_MESSAGES/oxygen_style_demo.mo share/locale/nds/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/nds/LC_MESSAGES/oxygen_kdecoration.mo share/locale/nds/LC_MESSAGES/oxygen_style_config.mo share/locale/nds/LC_MESSAGES/oxygen_style_demo.mo share/locale/ne/LC_MESSAGES/oxygen_style_config.mo share/locale/ne/LC_MESSAGES/oxygen_style_demo.mo share/locale/nl/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/nl/LC_MESSAGES/oxygen_kdecoration.mo share/locale/nl/LC_MESSAGES/oxygen_style_config.mo share/locale/nl/LC_MESSAGES/oxygen_style_demo.mo share/locale/nn/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/nn/LC_MESSAGES/oxygen_kdecoration.mo share/locale/nn/LC_MESSAGES/oxygen_style_config.mo share/locale/nn/LC_MESSAGES/oxygen_style_demo.mo share/locale/or/LC_MESSAGES/oxygen_style_config.mo share/locale/or/LC_MESSAGES/oxygen_style_demo.mo share/locale/pa/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/pa/LC_MESSAGES/oxygen_kdecoration.mo share/locale/pa/LC_MESSAGES/oxygen_style_config.mo share/locale/pa/LC_MESSAGES/oxygen_style_demo.mo share/locale/pl/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/pl/LC_MESSAGES/oxygen_kdecoration.mo share/locale/pl/LC_MESSAGES/oxygen_style_config.mo share/locale/pl/LC_MESSAGES/oxygen_style_demo.mo share/locale/pt/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/pt/LC_MESSAGES/oxygen_kdecoration.mo share/locale/pt/LC_MESSAGES/oxygen_style_config.mo share/locale/pt/LC_MESSAGES/oxygen_style_demo.mo share/locale/pt_BR/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/pt_BR/LC_MESSAGES/oxygen_kdecoration.mo share/locale/pt_BR/LC_MESSAGES/oxygen_style_config.mo share/locale/pt_BR/LC_MESSAGES/oxygen_style_demo.mo share/locale/ro/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/ro/LC_MESSAGES/oxygen_kdecoration.mo share/locale/ro/LC_MESSAGES/oxygen_style_config.mo share/locale/ro/LC_MESSAGES/oxygen_style_demo.mo share/locale/ru/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/ru/LC_MESSAGES/oxygen_kdecoration.mo share/locale/ru/LC_MESSAGES/oxygen_style_config.mo share/locale/ru/LC_MESSAGES/oxygen_style_demo.mo share/locale/sa/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/sa/LC_MESSAGES/oxygen_kdecoration.mo share/locale/sa/LC_MESSAGES/oxygen_style_config.mo share/locale/sa/LC_MESSAGES/oxygen_style_demo.mo share/locale/se/LC_MESSAGES/oxygen_kdecoration.mo share/locale/se/LC_MESSAGES/oxygen_style_config.mo share/locale/se/LC_MESSAGES/oxygen_style_demo.mo share/locale/si/LC_MESSAGES/oxygen_style_config.mo share/locale/si/LC_MESSAGES/oxygen_style_demo.mo share/locale/sk/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/sk/LC_MESSAGES/oxygen_kdecoration.mo share/locale/sk/LC_MESSAGES/oxygen_style_config.mo share/locale/sk/LC_MESSAGES/oxygen_style_demo.mo share/locale/sl/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/sl/LC_MESSAGES/oxygen_kdecoration.mo share/locale/sl/LC_MESSAGES/oxygen_style_config.mo share/locale/sl/LC_MESSAGES/oxygen_style_demo.mo share/locale/sq/LC_MESSAGES/oxygen_style_config.mo share/locale/sq/LC_MESSAGES/oxygen_style_demo.mo share/locale/sr/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/sr/LC_MESSAGES/oxygen_kdecoration.mo share/locale/sr/LC_MESSAGES/oxygen_style_config.mo share/locale/sr/LC_MESSAGES/oxygen_style_demo.mo share/locale/sr@ijekavian/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/sr@ijekavian/LC_MESSAGES/oxygen_kdecoration.mo share/locale/sr@ijekavian/LC_MESSAGES/oxygen_style_config.mo share/locale/sr@ijekavian/LC_MESSAGES/oxygen_style_demo.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/oxygen_kdecoration.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/oxygen_style_config.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/oxygen_style_demo.mo share/locale/sr@latin/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/sr@latin/LC_MESSAGES/oxygen_kdecoration.mo share/locale/sr@latin/LC_MESSAGES/oxygen_style_config.mo share/locale/sr@latin/LC_MESSAGES/oxygen_style_demo.mo share/locale/sv/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/sv/LC_MESSAGES/oxygen_kdecoration.mo share/locale/sv/LC_MESSAGES/oxygen_style_config.mo share/locale/sv/LC_MESSAGES/oxygen_style_demo.mo share/locale/ta/LC_MESSAGES/oxygen_style_config.mo share/locale/ta/LC_MESSAGES/oxygen_style_demo.mo share/locale/te/LC_MESSAGES/oxygen_style_config.mo share/locale/te/LC_MESSAGES/oxygen_style_demo.mo share/locale/tg/LC_MESSAGES/oxygen_style_config.mo share/locale/tg/LC_MESSAGES/oxygen_style_demo.mo share/locale/th/LC_MESSAGES/oxygen_style_config.mo share/locale/th/LC_MESSAGES/oxygen_style_demo.mo share/locale/tr/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/tr/LC_MESSAGES/oxygen_kdecoration.mo share/locale/tr/LC_MESSAGES/oxygen_style_config.mo share/locale/tr/LC_MESSAGES/oxygen_style_demo.mo share/locale/ug/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/ug/LC_MESSAGES/oxygen_style_config.mo share/locale/ug/LC_MESSAGES/oxygen_style_demo.mo share/locale/uk/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/uk/LC_MESSAGES/oxygen_kdecoration.mo share/locale/uk/LC_MESSAGES/oxygen_style_config.mo share/locale/uk/LC_MESSAGES/oxygen_style_demo.mo share/locale/vi/LC_MESSAGES/oxygen_style_config.mo share/locale/vi/LC_MESSAGES/oxygen_style_demo.mo share/locale/wa/LC_MESSAGES/oxygen_style_config.mo share/locale/wa/LC_MESSAGES/oxygen_style_demo.mo share/locale/zh_CN/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/zh_CN/LC_MESSAGES/oxygen_kdecoration.mo share/locale/zh_CN/LC_MESSAGES/oxygen_style_config.mo share/locale/zh_CN/LC_MESSAGES/oxygen_style_demo.mo share/locale/zh_TW/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/zh_TW/LC_MESSAGES/oxygen_kdecoration.mo share/locale/zh_TW/LC_MESSAGES/oxygen_style_config.mo share/locale/zh_TW/LC_MESSAGES/oxygen_style_demo.mo share/plasma/desktoptheme/oxygen/colors share/plasma/desktoptheme/oxygen/dialogs/background.svgz share/plasma/desktoptheme/oxygen/metadata.json share/plasma/desktoptheme/oxygen/opaque/dialogs/background.svgz share/plasma/desktoptheme/oxygen/opaque/dialogs/krunner.svgz share/plasma/desktoptheme/oxygen/opaque/widgets/extender-background.svgz share/plasma/desktoptheme/oxygen/opaque/widgets/panel-background.svgz share/plasma/desktoptheme/oxygen/opaque/widgets/tooltip.svgz share/plasma/desktoptheme/oxygen/plasmarc share/plasma/desktoptheme/oxygen/widgets/action-overlays.svgz share/plasma/desktoptheme/oxygen/widgets/actionbutton.svgz share/plasma/desktoptheme/oxygen/widgets/analog_meter.svgz share/plasma/desktoptheme/oxygen/widgets/arrows.svgz share/plasma/desktoptheme/oxygen/widgets/background.svgz share/plasma/desktoptheme/oxygen/widgets/bar_meter_horizontal.svgz share/plasma/desktoptheme/oxygen/widgets/bar_meter_vertical.svgz share/plasma/desktoptheme/oxygen/widgets/branding.svgz share/plasma/desktoptheme/oxygen/widgets/busywidget.svgz share/plasma/desktoptheme/oxygen/widgets/button.svgz share/plasma/desktoptheme/oxygen/widgets/clock.svgz share/plasma/desktoptheme/oxygen/widgets/containment-controls.svgz share/plasma/desktoptheme/oxygen/widgets/dragger.svgz share/plasma/desktoptheme/oxygen/widgets/extender-background.svgz share/plasma/desktoptheme/oxygen/widgets/extender-dragger.svgz share/plasma/desktoptheme/oxygen/widgets/frame.svgz share/plasma/desktoptheme/oxygen/widgets/glowbar.svgz share/plasma/desktoptheme/oxygen/widgets/line.svgz share/plasma/desktoptheme/oxygen/widgets/lineedit.svgz share/plasma/desktoptheme/oxygen/widgets/media-delegate.svgz share/plasma/desktoptheme/oxygen/widgets/monitor.svgz share/plasma/desktoptheme/oxygen/widgets/pager.svgz share/plasma/desktoptheme/oxygen/widgets/panel-background.svgz share/plasma/desktoptheme/oxygen/widgets/plot-background.svgz share/plasma/desktoptheme/oxygen/widgets/scrollbar.svgz share/plasma/desktoptheme/oxygen/widgets/scrollwidget.svgz share/plasma/desktoptheme/oxygen/widgets/slider.svgz share/plasma/desktoptheme/oxygen/widgets/tabbar.svgz share/plasma/desktoptheme/oxygen/widgets/tasks.svgz share/plasma/desktoptheme/oxygen/widgets/timer.svgz share/plasma/desktoptheme/oxygen/widgets/tooltip.svgz share/plasma/desktoptheme/oxygen/widgets/translucentbackground.svgz share/plasma/desktoptheme/oxygen/widgets/viewitem.svgz share/plasma/look-and-feel/org.kde.oxygen/contents/defaults share/plasma/look-and-feel/org.kde.oxygen/contents/previews/preview.png share/plasma/look-and-feel/org.kde.oxygen/contents/previews/splash.png share/plasma/look-and-feel/org.kde.oxygen/contents/splash/Splash.qml share/plasma/look-and-feel/org.kde.oxygen/contents/splash/images/background.png share/plasma/look-and-feel/org.kde.oxygen/contents/splash/images/kde.png share/plasma/look-and-feel/org.kde.oxygen/contents/splash/images/rectangle.png share/plasma/look-and-feel/org.kde.oxygen/metadata.json diff --git a/x11-themes/plasma6-plasma-workspace-wallpapers/distinfo b/x11-themes/plasma6-plasma-workspace-wallpapers/distinfo index fa6e0d63e4ae..c7cbead8a1e4 100644 --- a/x11-themes/plasma6-plasma-workspace-wallpapers/distinfo +++ b/x11-themes/plasma6-plasma-workspace-wallpapers/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1768328312 -SHA256 (KDE/plasma/6.5.5/plasma-workspace-wallpapers-6.5.5.tar.xz) = 5b59f7a437fe2b5d8c2fba460ae8a472378e4c4bd42fa725a90735bcf5f3a0b1 -SIZE (KDE/plasma/6.5.5/plasma-workspace-wallpapers-6.5.5.tar.xz) = 186904600 +TIMESTAMP = 1771162217 +SHA256 (KDE/plasma/6.6.0/plasma-workspace-wallpapers-6.6.0.tar.xz) = 67b1d4856914d7d88c0a77c2b52e83aa73fae63bb64d2ba9e339937c087c191c +SIZE (KDE/plasma/6.6.0/plasma-workspace-wallpapers-6.6.0.tar.xz) = 226401448 diff --git a/x11-themes/plasma6-plasma-workspace-wallpapers/pkg-plist b/x11-themes/plasma6-plasma-workspace-wallpapers/pkg-plist index 847931585148..9bbd984472cb 100644 --- a/x11-themes/plasma6-plasma-workspace-wallpapers/pkg-plist +++ b/x11-themes/plasma6-plasma-workspace-wallpapers/pkg-plist @@ -1,274 +1,281 @@ share/wallpapers/Altai/contents/images/1080x1920.png share/wallpapers/Altai/contents/images/5120x2880.png share/wallpapers/Altai/contents/screenshot.png share/wallpapers/Altai/metadata.json share/wallpapers/Autumn/contents/images/1280x1024.jpg share/wallpapers/Autumn/contents/images/1280x800.jpg share/wallpapers/Autumn/contents/images/1440x900.jpg share/wallpapers/Autumn/contents/images/1600x1200.jpg share/wallpapers/Autumn/contents/images/1638x1024.jpg share/wallpapers/Autumn/contents/images/1680x1050.jpg share/wallpapers/Autumn/contents/images/1920x1080.jpg share/wallpapers/Autumn/contents/images/1920x1200.jpg share/wallpapers/Autumn/contents/images/2560x1440.jpg share/wallpapers/Autumn/contents/images/2560x1600.jpg share/wallpapers/Autumn/contents/images/640x480.jpg share/wallpapers/Autumn/contents/images/800x600.jpg share/wallpapers/Autumn/contents/screenshot.jpg share/wallpapers/Autumn/metadata.json share/wallpapers/BytheWater/contents/images/1280x1024.jpg share/wallpapers/BytheWater/contents/images/1280x800.jpg share/wallpapers/BytheWater/contents/images/1440x900.jpg share/wallpapers/BytheWater/contents/images/1600x1200.jpg share/wallpapers/BytheWater/contents/images/1638x1024.jpg share/wallpapers/BytheWater/contents/images/1680x1050.jpg share/wallpapers/BytheWater/contents/images/1920x1080.jpg share/wallpapers/BytheWater/contents/images/1920x1200.jpg share/wallpapers/BytheWater/contents/images/2560x1440.jpg share/wallpapers/BytheWater/contents/images/2560x1600.jpg share/wallpapers/BytheWater/contents/images/640x480.jpg share/wallpapers/BytheWater/contents/images/800x600.jpg share/wallpapers/BytheWater/contents/screenshot.jpg share/wallpapers/BytheWater/metadata.json share/wallpapers/Canopee/contents/images/3840x2160.png share/wallpapers/Canopee/contents/screenshot.png share/wallpapers/Canopee/metadata.json share/wallpapers/Cascade/contents/images/3840x2160.png share/wallpapers/Cascade/contents/screenshot.png share/wallpapers/Cascade/metadata.json share/wallpapers/Cluster/contents/images/3840x2160.png share/wallpapers/Cluster/contents/screenshot.png share/wallpapers/Cluster/metadata.json share/wallpapers/Coast/contents/images/1440x2960.png share/wallpapers/Coast/contents/images/5120x2880.png share/wallpapers/Coast/contents/images/7680x2160.png share/wallpapers/Coast/contents/images_dark/1440x2960.png share/wallpapers/Coast/contents/images_dark/5120x2880.png share/wallpapers/Coast/contents/images_dark/7680x2160.png share/wallpapers/Coast/metadata.json share/wallpapers/ColdRipple/contents/images/1280x1024.jpg share/wallpapers/ColdRipple/contents/images/1280x800.jpg share/wallpapers/ColdRipple/contents/images/1440x900.jpg share/wallpapers/ColdRipple/contents/images/1600x1200.jpg share/wallpapers/ColdRipple/contents/images/1638x1024.jpg share/wallpapers/ColdRipple/contents/images/1680x1050.jpg share/wallpapers/ColdRipple/contents/images/1920x1080.jpg share/wallpapers/ColdRipple/contents/images/1920x1200.jpg share/wallpapers/ColdRipple/contents/images/2560x1440.jpg share/wallpapers/ColdRipple/contents/images/2560x1600.jpg share/wallpapers/ColdRipple/contents/images/640x480.jpg share/wallpapers/ColdRipple/contents/images/800x600.jpg share/wallpapers/ColdRipple/contents/screenshot.jpg share/wallpapers/ColdRipple/metadata.json share/wallpapers/ColorfulCups/contents/images/2560x1600.jpg share/wallpapers/ColorfulCups/contents/screenshot.jpg share/wallpapers/ColorfulCups/metadata.json share/wallpapers/DarkestHour/contents/images/1280x1024.jpg share/wallpapers/DarkestHour/contents/images/1280x800.jpg share/wallpapers/DarkestHour/contents/images/1440x900.jpg share/wallpapers/DarkestHour/contents/images/1600x1200.jpg share/wallpapers/DarkestHour/contents/images/1638x1024.jpg share/wallpapers/DarkestHour/contents/images/1680x1050.jpg share/wallpapers/DarkestHour/contents/images/1920x1080.jpg share/wallpapers/DarkestHour/contents/images/1920x1200.jpg share/wallpapers/DarkestHour/contents/images/2560x1440.jpg share/wallpapers/DarkestHour/contents/images/2560x1600.jpg share/wallpapers/DarkestHour/contents/images/640x480.jpg share/wallpapers/DarkestHour/contents/images/800x600.jpg share/wallpapers/DarkestHour/contents/screenshot.jpg share/wallpapers/DarkestHour/metadata.json share/wallpapers/Elarun/contents/images/2560x1600.png share/wallpapers/Elarun/contents/screenshot.jpg share/wallpapers/Elarun/metadata.json share/wallpapers/EveningGlow/contents/images/1280x1024.jpg share/wallpapers/EveningGlow/contents/images/1280x800.jpg share/wallpapers/EveningGlow/contents/images/1440x900.jpg share/wallpapers/EveningGlow/contents/images/1600x1200.jpg share/wallpapers/EveningGlow/contents/images/1638x1024.jpg share/wallpapers/EveningGlow/contents/images/1680x1050.jpg share/wallpapers/EveningGlow/contents/images/1920x1080.jpg share/wallpapers/EveningGlow/contents/images/1920x1200.jpg share/wallpapers/EveningGlow/contents/images/2560x1440.jpg share/wallpapers/EveningGlow/contents/images/2560x1600.jpg share/wallpapers/EveningGlow/contents/images/640x480.jpg share/wallpapers/EveningGlow/contents/images/800x600.jpg share/wallpapers/EveningGlow/contents/screenshot.jpg share/wallpapers/EveningGlow/metadata.json share/wallpapers/FallenLeaf/contents/images/1280x1024.jpg share/wallpapers/FallenLeaf/contents/images/1280x800.jpg share/wallpapers/FallenLeaf/contents/images/1440x900.jpg share/wallpapers/FallenLeaf/contents/images/1600x1200.jpg share/wallpapers/FallenLeaf/contents/images/1638x1024.jpg share/wallpapers/FallenLeaf/contents/images/1680x1050.jpg share/wallpapers/FallenLeaf/contents/images/1920x1080.jpg share/wallpapers/FallenLeaf/contents/images/1920x1200.jpg share/wallpapers/FallenLeaf/contents/images/2560x1440.jpg share/wallpapers/FallenLeaf/contents/images/2560x1600.jpg share/wallpapers/FallenLeaf/contents/images/640x480.jpg share/wallpapers/FallenLeaf/contents/images/800x600.jpg share/wallpapers/FallenLeaf/contents/screenshot.jpg share/wallpapers/FallenLeaf/metadata.json share/wallpapers/Flow/contents/images/5120x2880.jpg share/wallpapers/Flow/contents/images/720x1440.jpg share/wallpapers/Flow/contents/images_dark/5120x2880.jpg share/wallpapers/Flow/contents/images_dark/720x1440.jpg share/wallpapers/Flow/contents/screenshot.png share/wallpapers/Flow/metadata.json share/wallpapers/FlyingKonqui/contents/images/1280x1024.png share/wallpapers/FlyingKonqui/contents/images/1280x800.png share/wallpapers/FlyingKonqui/contents/images/1440x900.png share/wallpapers/FlyingKonqui/contents/images/1600x1200.png share/wallpapers/FlyingKonqui/contents/images/1638x1024.png share/wallpapers/FlyingKonqui/contents/images/1680x1050.png share/wallpapers/FlyingKonqui/contents/images/1920x1080.png share/wallpapers/FlyingKonqui/contents/images/1920x1200.png share/wallpapers/FlyingKonqui/contents/images/2560x1440.png share/wallpapers/FlyingKonqui/contents/images/2560x1600.png share/wallpapers/FlyingKonqui/contents/images/640x480.png share/wallpapers/FlyingKonqui/contents/images/800x600.png share/wallpapers/FlyingKonqui/contents/screenshot.png share/wallpapers/FlyingKonqui/metadata.json share/wallpapers/Grey/contents/images/1280x1024.jpg share/wallpapers/Grey/contents/images/1280x800.jpg share/wallpapers/Grey/contents/images/1440x900.jpg share/wallpapers/Grey/contents/images/1600x1200.jpg share/wallpapers/Grey/contents/images/1638x1024.jpg share/wallpapers/Grey/contents/images/1680x1050.jpg share/wallpapers/Grey/contents/images/1920x1080.jpg share/wallpapers/Grey/contents/images/1920x1200.jpg share/wallpapers/Grey/contents/images/2560x1440.jpg share/wallpapers/Grey/contents/images/2560x1600.jpg share/wallpapers/Grey/contents/images/640x480.jpg share/wallpapers/Grey/contents/images/800x600.jpg share/wallpapers/Grey/contents/screenshot.jpg share/wallpapers/Grey/metadata.json share/wallpapers/Honeywave/contents/images/1080x1920.jpg share/wallpapers/Honeywave/contents/images/5120x2880.jpg share/wallpapers/Honeywave/contents/screenshot.png share/wallpapers/Honeywave/metadata.json share/wallpapers/IceCold/contents/images/5120x2880.png share/wallpapers/IceCold/contents/screenshot.png share/wallpapers/IceCold/metadata.json share/wallpapers/Kay/contents/images/1080x1920.png share/wallpapers/Kay/contents/images/5120x2880.png share/wallpapers/Kay/contents/images_dark/1080x1920.png share/wallpapers/Kay/contents/images_dark/5120x2880.png share/wallpapers/Kay/metadata.json share/wallpapers/Kite/contents/images/1280x1024.jpg share/wallpapers/Kite/contents/images/1280x800.jpg share/wallpapers/Kite/contents/images/1440x900.jpg share/wallpapers/Kite/contents/images/1600x1200.jpg share/wallpapers/Kite/contents/images/1638x1024.jpg share/wallpapers/Kite/contents/images/1680x1050.jpg share/wallpapers/Kite/contents/images/1920x1080.jpg share/wallpapers/Kite/contents/images/1920x1200.jpg share/wallpapers/Kite/contents/images/2560x1440.jpg share/wallpapers/Kite/contents/images/2560x1600.jpg share/wallpapers/Kite/contents/images/640x480.jpg share/wallpapers/Kite/contents/images/800x600.jpg share/wallpapers/Kite/contents/screenshot.jpg share/wallpapers/Kite/metadata.json share/wallpapers/Kokkini/contents/images/3840x2160.png share/wallpapers/Kokkini/contents/screenshot.png share/wallpapers/Kokkini/metadata.json share/wallpapers/MilkyWay/contents/images/1080x1920.png share/wallpapers/MilkyWay/contents/images/5120x2880.png share/wallpapers/MilkyWay/contents/screenshot.png share/wallpapers/MilkyWay/metadata.json share/wallpapers/Mountain/contents/images/1080x1920.png share/wallpapers/Mountain/contents/images/5120x2880.png share/wallpapers/Mountain/contents/images_dark/1080x1920.png share/wallpapers/Mountain/contents/images_dark/5120x2880.png share/wallpapers/Mountain/metadata.json share/wallpapers/Nexus/contents/images/1080x1920.png share/wallpapers/Nexus/contents/images/5120x2880.png share/wallpapers/Nexus/contents/images_dark/1080x1920.png share/wallpapers/Nexus/contents/images_dark/5120x2880.png share/wallpapers/Nexus/metadata.json share/wallpapers/Nuvole/contents/images/1080x1920.png share/wallpapers/Nuvole/contents/images/5120x2880.png share/wallpapers/Nuvole/contents/images/7680x2160.png share/wallpapers/Nuvole/contents/images_dark/1080x1920.png share/wallpapers/Nuvole/contents/images_dark/5120x2880.png share/wallpapers/Nuvole/contents/images_dark/7680x2160.png share/wallpapers/Nuvole/metadata.json share/wallpapers/OneStandsOut/contents/images/1280x1024.jpg share/wallpapers/OneStandsOut/contents/images/1280x800.jpg share/wallpapers/OneStandsOut/contents/images/1440x900.jpg share/wallpapers/OneStandsOut/contents/images/1600x1200.jpg share/wallpapers/OneStandsOut/contents/images/1638x1024.jpg share/wallpapers/OneStandsOut/contents/images/1680x1050.jpg share/wallpapers/OneStandsOut/contents/images/1920x1080.jpg share/wallpapers/OneStandsOut/contents/images/1920x1200.jpg share/wallpapers/OneStandsOut/contents/images/2560x1440.jpg share/wallpapers/OneStandsOut/contents/images/2560x1600.jpg share/wallpapers/OneStandsOut/contents/images/640x480.jpg share/wallpapers/OneStandsOut/contents/images/800x600.jpg share/wallpapers/OneStandsOut/contents/screenshot.jpg share/wallpapers/OneStandsOut/metadata.json share/wallpapers/Opal/contents/images/3840x2160.png share/wallpapers/Opal/contents/screenshot.png share/wallpapers/Opal/metadata.json +share/wallpapers/Orionids/contents/images/1440x2960.png +share/wallpapers/Orionids/contents/images/5120x2880.png +share/wallpapers/Orionids/contents/images/7680x2160.png +share/wallpapers/Orionids/contents/images_dark/1440x2960.png +share/wallpapers/Orionids/contents/images_dark/5120x2880.png +share/wallpapers/Orionids/contents/images_dark/7680x2160.png +share/wallpapers/Orionids/metadata.json share/wallpapers/PastelHills/contents/images/1280x1024.jpg share/wallpapers/PastelHills/contents/images/1280x800.jpg share/wallpapers/PastelHills/contents/images/1440x900.jpg share/wallpapers/PastelHills/contents/images/1600x1200.jpg share/wallpapers/PastelHills/contents/images/1638x1024.jpg share/wallpapers/PastelHills/contents/images/1680x1050.jpg share/wallpapers/PastelHills/contents/images/1920x1080.jpg share/wallpapers/PastelHills/contents/images/1920x1200.jpg share/wallpapers/PastelHills/contents/images/2560x1440.jpg share/wallpapers/PastelHills/contents/images/3200x2000.jpg share/wallpapers/PastelHills/contents/images/640x480.jpg share/wallpapers/PastelHills/contents/images/800x600.jpg share/wallpapers/PastelHills/contents/screenshot.jpg share/wallpapers/PastelHills/metadata.json share/wallpapers/Patak/contents/images/1080x1920.png share/wallpapers/Patak/contents/images/5120x2880.png share/wallpapers/Patak/contents/images_dark/3840x2160.png share/wallpapers/Patak/contents/screenshot.png share/wallpapers/Patak/metadata.json share/wallpapers/Path/contents/images/1280x1024.jpg share/wallpapers/Path/contents/images/1280x800.jpg share/wallpapers/Path/contents/images/1440x900.jpg share/wallpapers/Path/contents/images/1600x1200.jpg share/wallpapers/Path/contents/images/1638x1024.jpg share/wallpapers/Path/contents/images/1680x1050.jpg share/wallpapers/Path/contents/images/1920x1080.jpg share/wallpapers/Path/contents/images/1920x1200.jpg share/wallpapers/Path/contents/images/2560x1440.jpg share/wallpapers/Path/contents/images/2560x1600.jpg share/wallpapers/Path/contents/images/640x480.jpg share/wallpapers/Path/contents/images/800x600.jpg share/wallpapers/Path/contents/screenshot.jpg share/wallpapers/Path/metadata.json share/wallpapers/SafeLanding/contents/images/1622x2880.jpg share/wallpapers/SafeLanding/contents/images/5120x2880.jpg share/wallpapers/SafeLanding/contents/screenshot.jpg share/wallpapers/SafeLanding/metadata.json share/wallpapers/ScarletTree/contents/images/1080x1920.png share/wallpapers/ScarletTree/contents/images/5120x2880.png share/wallpapers/ScarletTree/contents/images_dark/1080x1920.png share/wallpapers/ScarletTree/contents/images_dark/5120x2880.png share/wallpapers/ScarletTree/metadata.json share/wallpapers/Shell/contents/images/5120x2880.jpg share/wallpapers/Shell/contents/images/720x1440.jpg share/wallpapers/Shell/contents/screenshot.png share/wallpapers/Shell/metadata.json share/wallpapers/Volna/contents/images/5120x2880.jpg share/wallpapers/Volna/contents/screenshot.png share/wallpapers/Volna/metadata.json share/wallpapers/summer_1am/contents/images/1280x1024.jpg share/wallpapers/summer_1am/contents/images/1280x800.jpg share/wallpapers/summer_1am/contents/images/1440x900.jpg share/wallpapers/summer_1am/contents/images/1600x1200.jpg share/wallpapers/summer_1am/contents/images/1638x1024.jpg share/wallpapers/summer_1am/contents/images/1680x1050.jpg share/wallpapers/summer_1am/contents/images/1920x1080.jpg share/wallpapers/summer_1am/contents/images/1920x1200.jpg share/wallpapers/summer_1am/contents/images/2560x1440.jpg share/wallpapers/summer_1am/contents/images/2560x1600.jpg share/wallpapers/summer_1am/contents/images/640x480.jpg share/wallpapers/summer_1am/contents/images/800x600.jpg share/wallpapers/summer_1am/contents/screenshot.jpg share/wallpapers/summer_1am/metadata.json diff --git a/x11-themes/plasma6-qqc2-breeze-style/distinfo b/x11-themes/plasma6-qqc2-breeze-style/distinfo index 6324709f8819..11eb52cc0711 100644 --- a/x11-themes/plasma6-qqc2-breeze-style/distinfo +++ b/x11-themes/plasma6-qqc2-breeze-style/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1768328312 -SHA256 (KDE/plasma/6.5.5/qqc2-breeze-style-6.5.5.tar.xz) = 1ce7b641570f7111d751b54400e80832e0c3122d3cb6a4c2a01b16c2ed71b5af -SIZE (KDE/plasma/6.5.5/qqc2-breeze-style-6.5.5.tar.xz) = 66444 +TIMESTAMP = 1771162217 +SHA256 (KDE/plasma/6.6.0/qqc2-breeze-style-6.6.0.tar.xz) = 70c407627144d59c585c2f430e9834a014803678f16ca514e5fbf7a5cb83afec +SIZE (KDE/plasma/6.6.0/qqc2-breeze-style-6.6.0.tar.xz) = 66220 diff --git a/x11-toolkits/plasma6-kdeplasma-addons/Makefile b/x11-toolkits/plasma6-kdeplasma-addons/Makefile index a9faf2ee9323..2e51a9ed1560 100644 --- a/x11-toolkits/plasma6-kdeplasma-addons/Makefile +++ b/x11-toolkits/plasma6-kdeplasma-addons/Makefile @@ -1,24 +1,23 @@ PORTNAME= kdeplasma-addons DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= x11-toolkits kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= All kind of add-ons to improve your Plasma experience LIB_DEPENDS= libicuuc.so:devel/icu USES= cmake gettext gl kde:6 qt:6 tar:xz xorg USE_GL= gl opengl USE_KDE= colorscheme completion config configwidgets coreaddons \ globalaccel holidays i18n jobwidgets kcmutils kdeclarative kio \ libplasma newstuff notifications package runner \ service solid sonnet unitconversion widgetsaddons windowsystem \ xmlgui \ ecm:build \ - itemmodels:run kirigami-addons:run plasma5support:run -USE_QT= 5compat base declarative webchannel webengine \ + itemmodels:run kirigami-addons:run +USE_QT= base declarative webchannel webengine \ quick3d:run USE_XORG= x11 .include diff --git a/x11-toolkits/plasma6-kdeplasma-addons/distinfo b/x11-toolkits/plasma6-kdeplasma-addons/distinfo index cc9d94152e01..ab56d7fb1873 100644 --- a/x11-toolkits/plasma6-kdeplasma-addons/distinfo +++ b/x11-toolkits/plasma6-kdeplasma-addons/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1768328313 -SHA256 (KDE/plasma/6.5.5/kdeplasma-addons-6.5.5.tar.xz) = 32b69b987258998b95017cf08aba1d85b986303bd59e1bbc600ed12e2184f5cb -SIZE (KDE/plasma/6.5.5/kdeplasma-addons-6.5.5.tar.xz) = 1103348 +TIMESTAMP = 1771162217 +SHA256 (KDE/plasma/6.6.0/kdeplasma-addons-6.6.0.tar.xz) = df58519038f8fa02f399c3ebd06d6860880641f2bd68566b2207212f9ba34235 +SIZE (KDE/plasma/6.6.0/kdeplasma-addons-6.6.0.tar.xz) = 1109548 diff --git a/x11-toolkits/plasma6-kdeplasma-addons/pkg-plist b/x11-toolkits/plasma6-kdeplasma-addons/pkg-plist index 4def8fc12ebb..4a521f1b6fac 100644 --- a/x11-toolkits/plasma6-kdeplasma-addons/pkg-plist +++ b/x11-toolkits/plasma6-kdeplasma-addons/pkg-plist @@ -1,2125 +1,2076 @@ include/plasma/potdprovider/plasma_potd_export.h include/plasma/potdprovider/potdprovider.h lib/cmake/PlasmaPotdProvider/PlasmaPotdProviderConfig.cmake lib/cmake/PlasmaPotdProvider/PlasmaPotdProviderConfigVersion.cmake lib/cmake/PlasmaPotdProvider/PlasmaPotdProviderTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/PlasmaPotdProvider/PlasmaPotdProviderTargets.cmake lib/libexec/kf6/kauth/kameleonhelper lib/libplasmapotdprovidercore.so lib/libplasmapotdprovidercore.so.2 lib/libplasmapotdprovidercore.so.2.0.0 lib/libplasmaweatherdata.so lib/libplasmaweatherdata.so.6 lib/libplasmaweatherdata.so.%%KDE_PLASMA_VERSION%% lib/libplasmaweatherion.so lib/libplasmaweatherion.so.6 lib/libplasmaweatherion.so.%%KDE_PLASMA_VERSION%% %%QT_PLUGINDIR%%/kf6/kded/kameleon.so %%QT_PLUGINDIR%%/kf6/krunner/kcms/kcm_krunner_charrunner.so %%QT_PLUGINDIR%%/kf6/krunner/kcms/kcm_krunner_dictionary.so %%QT_PLUGINDIR%%/kf6/krunner/kcms/kcm_krunner_spellcheck.so %%QT_PLUGINDIR%%/kf6/krunner/krunner_charrunner.so %%QT_PLUGINDIR%%/kf6/krunner/krunner_colors.so %%QT_PLUGINDIR%%/kf6/krunner/krunner_dictionary.so %%QT_PLUGINDIR%%/kf6/krunner/krunner_katesessions.so %%QT_PLUGINDIR%%/kf6/krunner/krunner_konsoleprofiles.so %%QT_PLUGINDIR%%/kf6/krunner/krunner_spellcheck.so %%QT_PLUGINDIR%%/kf6/krunner/org.kde.datetime.so %%QT_PLUGINDIR%%/kf6/krunner/unitconverter.so %%QT_PLUGINDIR%%/kf6/packagestructure/plasma_comic.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_cube_config.so +%%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.addons.katesessions.so %%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.binaryclock.so +%%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.calculator.so +%%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.colorpicker.so %%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.comic.so +%%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.diskquota.so +%%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.fifteenpuzzle.so +%%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.fuzzyclock.so %%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.grouping.so %%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.keyboardindicator.so +%%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.konsoleprofiles.so +%%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.mediaframe.so +%%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.notes.so %%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.quicklaunch.so %%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.timer.so +%%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.userswitcher.so %%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.weather.so +%%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.webbrowser.so +%%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma_applet_dict.so %%QT_PLUGINDIR%%/plasma/weather_ions/bbcukmet.so %%QT_PLUGINDIR%%/plasma/weather_ions/dwd.so %%QT_PLUGINDIR%%/plasma/weather_ions/envcan.so %%QT_PLUGINDIR%%/plasma/weather_ions/noaa.so %%QT_PLUGINDIR%%/plasma/weather_ions/wettercom.so %%QT_PLUGINDIR%%/plasmacalendarplugins/alternatecalendar.so %%QT_PLUGINDIR%%/plasmacalendarplugins/alternatecalendar/AlternateCalendarConfig.qml %%QT_PLUGINDIR%%/plasmacalendarplugins/astronomicalevents.so %%QT_PLUGINDIR%%/plasmacalendarplugins/astronomicalevents/AstronomicalEventsConfig.qml %%QT_PLUGINDIR%%/potd/plasma_potd_apodprovider.so %%QT_PLUGINDIR%%/potd/plasma_potd_bingprovider.so %%QT_PLUGINDIR%%/potd/plasma_potd_epodprovider.so %%QT_PLUGINDIR%%/potd/plasma_potd_flickrprovider.so %%QT_PLUGINDIR%%/potd/plasma_potd_simonstalenhagprovider.so %%QT_PLUGINDIR%%/potd/plasma_potd_wcpotdprovider.so %%QT_QMLDIR%%/org/kde/plasma/private/alternatecalendarconfig/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/plasma/private/alternatecalendarconfig/libplasmacalendaralternatecalendarconfig.so %%QT_QMLDIR%%/org/kde/plasma/private/alternatecalendarconfig/plasmacalendaralternatecalendarconfig.qmltypes %%QT_QMLDIR%%/org/kde/plasma/private/alternatecalendarconfig/qmldir -%%QT_QMLDIR%%/org/kde/plasma/private/colorpicker/colorpickerplugin.qmltypes -%%QT_QMLDIR%%/org/kde/plasma/private/colorpicker/kde-qmlmodule.version -%%QT_QMLDIR%%/org/kde/plasma/private/colorpicker/libcolorpickerplugin.so -%%QT_QMLDIR%%/org/kde/plasma/private/colorpicker/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/dict/dictplugin.qmltypes %%QT_QMLDIR%%/org/kde/plasma/private/dict/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/plasma/private/dict/libdictplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/dict/qmldir -%%QT_QMLDIR%%/org/kde/plasma/private/diskquota/diskquotaplugin.qmltypes -%%QT_QMLDIR%%/org/kde/plasma/private/diskquota/kde-qmlmodule.version -%%QT_QMLDIR%%/org/kde/plasma/private/diskquota/libdiskquotaplugin.so -%%QT_QMLDIR%%/org/kde/plasma/private/diskquota/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/fifteenpuzzle/fifteenpuzzleplugin.qmltypes %%QT_QMLDIR%%/org/kde/plasma/private/fifteenpuzzle/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/plasma/private/fifteenpuzzle/libfifteenpuzzleplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/fifteenpuzzle/qmldir -%%QT_QMLDIR%%/org/kde/plasma/private/mediaframe/kde-qmlmodule.version -%%QT_QMLDIR%%/org/kde/plasma/private/mediaframe/libmediaframeplugin.so -%%QT_QMLDIR%%/org/kde/plasma/private/mediaframe/mediaframeplugin.qmltypes -%%QT_QMLDIR%%/org/kde/plasma/private/mediaframe/qmldir -%%QT_QMLDIR%%/org/kde/plasma/private/notes/kde-qmlmodule.version -%%QT_QMLDIR%%/org/kde/plasma/private/notes/libnotesplugin.so -%%QT_QMLDIR%%/org/kde/plasma/private/notes/notesplugin.qmltypes -%%QT_QMLDIR%%/org/kde/plasma/private/notes/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/profiles/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/plasma/private/profiles/libprofiles_qml_plugin.so %%QT_QMLDIR%%/org/kde/plasma/private/profiles/profiles_qml_plugin.qmltypes %%QT_QMLDIR%%/org/kde/plasma/private/profiles/qmldir %%QT_QMLDIR%%/org/kde/plasma/wallpapers/potd/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/plasma/wallpapers/potd/libplasma_wallpaper_potdplugin.so %%QT_QMLDIR%%/org/kde/plasma/wallpapers/potd/plasma_wallpaper_potdplugin.qmltypes %%QT_QMLDIR%%/org/kde/plasma/wallpapers/potd/qmldir %%QT_QMLDIR%%/org/kde/plasmacalendar/astronomicaleventsconfig/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/plasmacalendar/astronomicaleventsconfig/libplasmacalendarastronomicaleventsconfig.so %%QT_QMLDIR%%/org/kde/plasmacalendar/astronomicaleventsconfig/plasmacalendarastronomicaleventsconfig.qmltypes %%QT_QMLDIR%%/org/kde/plasmacalendar/astronomicaleventsconfig/qmldir share/dbus-1/system-services/org.kde.kameleonhelper.service share/dbus-1/system.d/org.kde.kameleonhelper.conf share/icons/hicolor/scalable/apps/accessories-dictionary.svgz -share/icons/hicolor/scalable/apps/fifteenpuzzle.svgz share/kdevappwizard/templates/plasmapotdprovider.tar.bz2 share/knotifications6/plasma_applet_timer.notifyrc share/knsrcfiles/comic.knsrc share/kwin/effects/cube/contents/config/main.xml share/kwin/effects/cube/contents/ui/Cube.qml share/kwin/effects/cube/contents/ui/CubeCameraController.qml share/kwin/effects/cube/contents/ui/CubeFace.qml share/kwin/effects/cube/contents/ui/DesktopView.qml share/kwin/effects/cube/contents/ui/PlaceholderView.qml share/kwin/effects/cube/contents/ui/ScreenView.qml share/kwin/effects/cube/contents/ui/constants.js share/kwin/effects/cube/contents/ui/main.qml share/kwin/effects/cube/metadata.json +share/kwin/scripts/virtualdesktopsonlyonprimary/contents/code/main.js +share/kwin/scripts/virtualdesktopsonlyonprimary/metadata.json share/kwin/tabbox/big_icons/contents/ui/main.qml share/kwin/tabbox/big_icons/metadata.json share/kwin/tabbox/compact/contents/ui/main.qml share/kwin/tabbox/compact/metadata.json share/kwin/tabbox/coverswitch/contents/ui/main.qml share/kwin/tabbox/coverswitch/metadata.json share/kwin/tabbox/flipswitch/contents/ui/main.qml share/kwin/tabbox/flipswitch/metadata.json share/kwin/tabbox/sidebar/contents/ui/main.qml share/kwin/tabbox/sidebar/metadata.json share/locale/ar/LC_MESSAGES/kwin_effect_cube.mo share/locale/ar/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/ar/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/ar/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/ar/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/ar/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/ar/LC_MESSAGES/plasma_runner_colors.mo share/locale/ar/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/ar/LC_MESSAGES/plasma_runner_datetime.mo share/locale/ar/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/ar/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/ar/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/ar/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/ar/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo +share/locale/ar/LC_MESSAGES/plasma_wallpaper_org.kde.tiled.mo share/locale/ast/LC_MESSAGES/kwin_effect_cube.mo share/locale/ast/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/ast/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/ast/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/ast/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/ast/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/ast/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/ast/LC_MESSAGES/plasma_runner_datetime.mo share/locale/ast/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/ast/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/ast/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/ast/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/ast/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/az/LC_MESSAGES/kwin_effect_cube.mo share/locale/az/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/az/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/az/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/az/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/az/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/az/LC_MESSAGES/plasma_runner_colors.mo share/locale/az/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/az/LC_MESSAGES/plasma_runner_datetime.mo share/locale/az/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/az/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/az/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/az/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/az/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/be/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/be/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/be/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/bg/LC_MESSAGES/kwin_effect_cube.mo share/locale/bg/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/bg/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/bg/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/bg/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/bg/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/bg/LC_MESSAGES/plasma_runner_colors.mo share/locale/bg/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/bg/LC_MESSAGES/plasma_runner_datetime.mo share/locale/bg/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/bg/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/bg/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/bg/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/bg/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo +share/locale/bg/LC_MESSAGES/plasma_wallpaper_org.kde.tiled.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/bs/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/bs/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/bs/LC_MESSAGES/plasma_runner_datetime.mo share/locale/bs/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/bs/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/bs/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/ca/LC_MESSAGES/kwin_effect_cube.mo share/locale/ca/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/ca/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/ca/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/ca/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/ca/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/ca/LC_MESSAGES/plasma_runner_colors.mo share/locale/ca/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/ca/LC_MESSAGES/plasma_runner_datetime.mo share/locale/ca/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/ca/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/ca/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/ca/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/ca/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo +share/locale/ca/LC_MESSAGES/plasma_wallpaper_org.kde.tiled.mo share/locale/ca@valencia/LC_MESSAGES/kwin_effect_cube.mo share/locale/ca@valencia/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/ca@valencia/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/ca@valencia/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/ca@valencia/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_colors.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_datetime.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/ca@valencia/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_wallpaper_org.kde.tiled.mo share/locale/cs/LC_MESSAGES/kwin_effect_cube.mo share/locale/cs/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/cs/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/cs/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/cs/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/cs/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/cs/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/cs/LC_MESSAGES/plasma_runner_datetime.mo share/locale/cs/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/cs/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/cs/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/cs/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/cs/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/csb/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/csb/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/csb/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/csb/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/da/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/da/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/da/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/da/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/da/LC_MESSAGES/plasma_runner_datetime.mo share/locale/da/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/da/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/da/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/da/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/da/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/de/LC_MESSAGES/kwin_effect_cube.mo share/locale/de/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/de/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/de/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/de/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/de/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/de/LC_MESSAGES/plasma_runner_colors.mo share/locale/de/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/de/LC_MESSAGES/plasma_runner_datetime.mo share/locale/de/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/de/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/de/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/de/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/de/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo +share/locale/de/LC_MESSAGES/plasma_wallpaper_org.kde.tiled.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/el/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/el/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/el/LC_MESSAGES/plasma_runner_datetime.mo share/locale/el/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/el/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/el/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/en_GB/LC_MESSAGES/kwin_effect_cube.mo share/locale/en_GB/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/en_GB/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/en_GB/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/en_GB/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_datetime.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/en_GB/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/eo/LC_MESSAGES/kwin_effect_cube.mo share/locale/eo/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/eo/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/eo/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/eo/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/eo/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/eo/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/eo/LC_MESSAGES/plasma_runner_datetime.mo share/locale/eo/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/eo/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/eo/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/eo/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/eo/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/es/LC_MESSAGES/kwin_effect_cube.mo share/locale/es/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/es/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/es/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/es/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/es/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/es/LC_MESSAGES/plasma_runner_colors.mo share/locale/es/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/es/LC_MESSAGES/plasma_runner_datetime.mo share/locale/es/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/es/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/es/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/es/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/es/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo +share/locale/es/LC_MESSAGES/plasma_wallpaper_org.kde.tiled.mo share/locale/et/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/et/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/et/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/et/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/et/LC_MESSAGES/plasma_runner_datetime.mo share/locale/et/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/et/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/et/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/et/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/et/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/eu/LC_MESSAGES/kwin_effect_cube.mo share/locale/eu/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/eu/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/eu/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/eu/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/eu/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/eu/LC_MESSAGES/plasma_runner_colors.mo share/locale/eu/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/eu/LC_MESSAGES/plasma_runner_datetime.mo share/locale/eu/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/eu/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/eu/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/eu/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/eu/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo +share/locale/eu/LC_MESSAGES/plasma_wallpaper_org.kde.tiled.mo share/locale/fi/LC_MESSAGES/kwin_effect_cube.mo share/locale/fi/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/fi/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/fi/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/fi/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/fi/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/fi/LC_MESSAGES/plasma_runner_colors.mo share/locale/fi/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/fi/LC_MESSAGES/plasma_runner_datetime.mo share/locale/fi/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/fi/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/fi/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/fi/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/fi/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo +share/locale/fi/LC_MESSAGES/plasma_wallpaper_org.kde.tiled.mo share/locale/fr/LC_MESSAGES/kwin_effect_cube.mo share/locale/fr/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/fr/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/fr/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/fr/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/fr/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/fr/LC_MESSAGES/plasma_runner_colors.mo share/locale/fr/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/fr/LC_MESSAGES/plasma_runner_datetime.mo share/locale/fr/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/fr/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/fr/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/fr/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/fr/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo +share/locale/fr/LC_MESSAGES/plasma_wallpaper_org.kde.tiled.mo share/locale/ga/LC_MESSAGES/kwin_effect_cube.mo share/locale/ga/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/ga/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/ga/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/ga/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/ga/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/ga/LC_MESSAGES/plasma_runner_colors.mo share/locale/ga/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/ga/LC_MESSAGES/plasma_runner_datetime.mo share/locale/ga/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/ga/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/ga/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/ga/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/ga/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo +share/locale/ga/LC_MESSAGES/plasma_wallpaper_org.kde.tiled.mo share/locale/gl/LC_MESSAGES/kwin_effect_cube.mo share/locale/gl/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/gl/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/gl/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/gl/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/gl/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/gl/LC_MESSAGES/plasma_runner_colors.mo share/locale/gl/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/gl/LC_MESSAGES/plasma_runner_datetime.mo share/locale/gl/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/gl/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/gl/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/gl/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/gl/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/he/LC_MESSAGES/kwin_effect_cube.mo share/locale/he/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/he/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/he/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/he/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/he/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/he/LC_MESSAGES/plasma_runner_colors.mo share/locale/he/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/he/LC_MESSAGES/plasma_runner_datetime.mo share/locale/he/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/he/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/he/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/he/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/he/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo +share/locale/he/LC_MESSAGES/plasma_wallpaper_org.kde.tiled.mo share/locale/hi/LC_MESSAGES/kwin_effect_cube.mo share/locale/hi/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/hi/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/hi/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/hi/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/hi/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/hi/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/hi/LC_MESSAGES/plasma_runner_datetime.mo share/locale/hi/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/hi/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/hi/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/hi/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/hi/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/hr/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/hr/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/hr/LC_MESSAGES/plasma_runner_datetime.mo share/locale/hr/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/hr/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/hu/LC_MESSAGES/kwin_effect_cube.mo share/locale/hu/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/hu/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/hu/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/hu/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/hu/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/hu/LC_MESSAGES/plasma_runner_colors.mo share/locale/hu/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/hu/LC_MESSAGES/plasma_runner_datetime.mo share/locale/hu/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/hu/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/hu/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/hu/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/hu/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/ia/LC_MESSAGES/kwin_effect_cube.mo share/locale/ia/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/ia/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/ia/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/ia/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/ia/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/ia/LC_MESSAGES/plasma_runner_colors.mo share/locale/ia/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/ia/LC_MESSAGES/plasma_runner_datetime.mo share/locale/ia/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/ia/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/ia/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/ia/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/ia/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo +share/locale/ia/LC_MESSAGES/plasma_wallpaper_org.kde.tiled.mo share/locale/id/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/id/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/id/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/id/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/id/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/id/LC_MESSAGES/plasma_runner_datetime.mo share/locale/id/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/id/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/id/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/id/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/id/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/is/LC_MESSAGES/kwin_effect_cube.mo share/locale/is/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/is/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/is/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/is/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/is/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/is/LC_MESSAGES/plasma_runner_colors.mo share/locale/is/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/is/LC_MESSAGES/plasma_runner_datetime.mo share/locale/is/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/is/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/is/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/is/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/is/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo +share/locale/is/LC_MESSAGES/plasma_wallpaper_org.kde.tiled.mo share/locale/it/LC_MESSAGES/kwin_effect_cube.mo share/locale/it/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/it/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/it/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/it/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/it/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/it/LC_MESSAGES/plasma_runner_colors.mo share/locale/it/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/it/LC_MESSAGES/plasma_runner_datetime.mo share/locale/it/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/it/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/it/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/it/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/it/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo +share/locale/it/LC_MESSAGES/plasma_wallpaper_org.kde.tiled.mo share/locale/ja/LC_MESSAGES/kwin_effect_cube.mo share/locale/ja/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/ja/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/ja/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/ja/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/ja/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/ja/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/ja/LC_MESSAGES/plasma_runner_datetime.mo share/locale/ja/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/ja/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/ja/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/ja/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/ja/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/ka/LC_MESSAGES/kwin_effect_cube.mo share/locale/ka/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/ka/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/ka/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/ka/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/ka/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/ka/LC_MESSAGES/plasma_runner_colors.mo share/locale/ka/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/ka/LC_MESSAGES/plasma_runner_datetime.mo share/locale/ka/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/ka/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/ka/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/ka/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/ka/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo +share/locale/ka/LC_MESSAGES/plasma_wallpaper_org.kde.tiled.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/kk/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/kk/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/kk/LC_MESSAGES/plasma_runner_datetime.mo share/locale/kk/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/kk/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/kk/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/km/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/km/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/km/LC_MESSAGES/plasma_runner_datetime.mo share/locale/km/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/km/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/km/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/ko/LC_MESSAGES/kwin_effect_cube.mo share/locale/ko/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/ko/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/ko/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/ko/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/ko/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/ko/LC_MESSAGES/plasma_runner_colors.mo share/locale/ko/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/ko/LC_MESSAGES/plasma_runner_datetime.mo share/locale/ko/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/ko/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/ko/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/ko/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/ko/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/ku/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/ku/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/ku/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/lt/LC_MESSAGES/kwin_effect_cube.mo share/locale/lt/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/lt/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/lt/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/lt/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/lt/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/lt/LC_MESSAGES/plasma_runner_colors.mo share/locale/lt/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/lt/LC_MESSAGES/plasma_runner_datetime.mo share/locale/lt/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/lt/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/lt/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/lt/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/lt/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo +share/locale/lt/LC_MESSAGES/plasma_wallpaper_org.kde.tiled.mo share/locale/lv/LC_MESSAGES/kwin_effect_cube.mo share/locale/lv/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/lv/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/lv/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/lv/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/lv/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/lv/LC_MESSAGES/plasma_runner_colors.mo share/locale/lv/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/lv/LC_MESSAGES/plasma_runner_datetime.mo share/locale/lv/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/lv/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/lv/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/lv/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/lv/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/ml/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/ml/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/ml/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/ml/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/ml/LC_MESSAGES/plasma_runner_datetime.mo share/locale/ml/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/ml/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/ml/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/ml/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/mr/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/mr/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/mr/LC_MESSAGES/plasma_runner_datetime.mo share/locale/mr/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/mr/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/mr/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/my/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/nb/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/nb/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/nb/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/nb/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/nb/LC_MESSAGES/plasma_runner_datetime.mo share/locale/nb/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/nb/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/nb/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/nb/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/nds/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/nds/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/nds/LC_MESSAGES/plasma_runner_datetime.mo share/locale/nds/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/nds/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/nds/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/nl/LC_MESSAGES/kwin_effect_cube.mo share/locale/nl/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/nl/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/nl/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/nl/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/nl/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/nl/LC_MESSAGES/plasma_runner_colors.mo share/locale/nl/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/nl/LC_MESSAGES/plasma_runner_datetime.mo share/locale/nl/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/nl/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/nl/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/nl/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/nl/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo +share/locale/nl/LC_MESSAGES/plasma_wallpaper_org.kde.tiled.mo share/locale/nn/LC_MESSAGES/kwin_effect_cube.mo share/locale/nn/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/nn/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/nn/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/nn/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/nn/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/nn/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/nn/LC_MESSAGES/plasma_runner_datetime.mo share/locale/nn/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/nn/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/nn/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/nn/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/nn/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/pa/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/pa/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/pa/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/pa/LC_MESSAGES/plasma_runner_datetime.mo share/locale/pa/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/pa/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/pa/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/pl/LC_MESSAGES/kwin_effect_cube.mo share/locale/pl/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/pl/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/pl/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/pl/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/pl/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/pl/LC_MESSAGES/plasma_runner_colors.mo share/locale/pl/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/pl/LC_MESSAGES/plasma_runner_datetime.mo share/locale/pl/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/pl/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/pl/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/pl/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/pl/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo +share/locale/pl/LC_MESSAGES/plasma_wallpaper_org.kde.tiled.mo share/locale/pt/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/pt/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/pt/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/pt/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/pt/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/pt/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/pt/LC_MESSAGES/plasma_runner_datetime.mo share/locale/pt/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/pt/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/pt/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/pt/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/pt/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/pt_BR/LC_MESSAGES/kwin_effect_cube.mo share/locale/pt_BR/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/pt_BR/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/pt_BR/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/pt_BR/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_colors.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_datetime.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/pt_BR/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo +share/locale/pt_BR/LC_MESSAGES/plasma_wallpaper_org.kde.tiled.mo share/locale/ro/LC_MESSAGES/kwin_effect_cube.mo share/locale/ro/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/ro/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/ro/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/ro/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/ro/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/ro/LC_MESSAGES/plasma_runner_colors.mo share/locale/ro/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/ro/LC_MESSAGES/plasma_runner_datetime.mo share/locale/ro/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/ro/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/ro/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/ro/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/ro/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo +share/locale/ro/LC_MESSAGES/plasma_wallpaper_org.kde.tiled.mo share/locale/ru/LC_MESSAGES/kwin_effect_cube.mo share/locale/ru/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/ru/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/ru/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/ru/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/ru/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/ru/LC_MESSAGES/plasma_runner_colors.mo share/locale/ru/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/ru/LC_MESSAGES/plasma_runner_datetime.mo share/locale/ru/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/ru/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/ru/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/ru/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/ru/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/sa/LC_MESSAGES/kwin_effect_cube.mo share/locale/sa/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/sa/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/sa/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/sa/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/sa/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/sa/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/sa/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/sa/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/sa/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/sa/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/sa/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/sa/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/sa/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/sa/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/sa/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/sa/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/sa/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/sa/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/sa/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/sa/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/sa/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/sa/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/sa/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/sa/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/sa/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/sa/LC_MESSAGES/plasma_runner_datetime.mo share/locale/sa/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/sa/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/sa/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/sa/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/sa/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/sk/LC_MESSAGES/kwin_effect_cube.mo share/locale/sk/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/sk/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/sk/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/sk/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/sk/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/sk/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/sk/LC_MESSAGES/plasma_runner_datetime.mo share/locale/sk/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/sk/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/sk/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/sk/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/sk/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/sl/LC_MESSAGES/kwin_effect_cube.mo share/locale/sl/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/sl/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/sl/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/sl/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/sl/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/sl/LC_MESSAGES/plasma_runner_colors.mo share/locale/sl/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/sl/LC_MESSAGES/plasma_runner_datetime.mo share/locale/sl/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/sl/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/sl/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/sl/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/sl/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo +share/locale/sl/LC_MESSAGES/plasma_wallpaper_org.kde.tiled.mo share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/sq/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/sq/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/sq/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/sr/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/sr/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/sr/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/sr/LC_MESSAGES/plasma_runner_datetime.mo share/locale/sr/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/sr/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/sr/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_datetime.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_datetime.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/sr@latin/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_datetime.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/sv/LC_MESSAGES/kwin_effect_cube.mo share/locale/sv/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/sv/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/sv/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/sv/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/sv/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/sv/LC_MESSAGES/plasma_runner_colors.mo share/locale/sv/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/sv/LC_MESSAGES/plasma_runner_datetime.mo share/locale/sv/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/sv/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/sv/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/sv/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/sv/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/ta/LC_MESSAGES/kwin_effect_cube.mo share/locale/ta/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/ta/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/ta/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/ta/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/ta/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/ta/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/ta/LC_MESSAGES/plasma_runner_datetime.mo share/locale/ta/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/ta/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/ta/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/ta/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/ta/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/tg/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/tg/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/tg/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/tg/LC_MESSAGES/plasma_runner_datetime.mo share/locale/tg/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/tg/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/tg/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/tg/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/th/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/th/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/th/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/tok/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/tr/LC_MESSAGES/kwin_effect_cube.mo share/locale/tr/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/tr/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/tr/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/tr/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/tr/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/tr/LC_MESSAGES/plasma_runner_colors.mo share/locale/tr/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/tr/LC_MESSAGES/plasma_runner_datetime.mo share/locale/tr/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/tr/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/tr/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/tr/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/tr/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo +share/locale/tr/LC_MESSAGES/plasma_wallpaper_org.kde.tiled.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/ug/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/ug/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/ug/LC_MESSAGES/plasma_runner_datetime.mo share/locale/ug/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/ug/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/ug/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/uk/LC_MESSAGES/kwin_effect_cube.mo share/locale/uk/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/uk/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/uk/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/uk/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/uk/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/uk/LC_MESSAGES/plasma_runner_colors.mo share/locale/uk/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/uk/LC_MESSAGES/plasma_runner_datetime.mo share/locale/uk/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/uk/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/uk/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/uk/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/uk/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo +share/locale/uk/LC_MESSAGES/plasma_wallpaper_org.kde.tiled.mo share/locale/vi/LC_MESSAGES/kwin_effect_cube.mo share/locale/vi/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/vi/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/vi/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/vi/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/vi/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/vi/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/vi/LC_MESSAGES/plasma_runner_datetime.mo share/locale/vi/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/vi/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/vi/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/vi/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/vi/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/wa/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/wa/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/wa/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/zh_CN/LC_MESSAGES/kwin_effect_cube.mo share/locale/zh_CN/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/zh_CN/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/zh_CN/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/zh_CN/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_colors.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_datetime.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/zh_CN/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo +share/locale/zh_CN/LC_MESSAGES/plasma_wallpaper_org.kde.tiled.mo share/locale/zh_TW/LC_MESSAGES/kwin_effect_cube.mo share/locale/zh_TW/LC_MESSAGES/plasma_addons_engine_dict.mo share/locale/zh_TW/LC_MESSAGES/plasma_addons_profiles_utility.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.addons.katesessions.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.webbrowser.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/zh_TW/LC_MESSAGES/plasma_calendar_alternatecalendar.mo share/locale/zh_TW/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_colors.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_datetime.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/zh_TW/LC_MESSAGES/plasma_wallpaper_org.kde.potd.mo +share/locale/zh_TW/LC_MESSAGES/plasma_wallpaper_org.kde.tiled.mo share/plasma/desktoptheme/default/weather/wind-arrows.svgz share/plasma/desktoptheme/default/widgets/timer.svgz -share/plasma/plasmoids/org.kde.plasma.addons.katesessions/contents/ui/KateSessionsItemDelegate.qml -share/plasma/plasmoids/org.kde.plasma.addons.katesessions/contents/ui/Menu.qml -share/plasma/plasmoids/org.kde.plasma.addons.katesessions/contents/ui/main.qml -share/plasma/plasmoids/org.kde.plasma.addons.katesessions/metadata.json -share/plasma/plasmoids/org.kde.plasma.calculator/contents/ui/main.qml -share/plasma/plasmoids/org.kde.plasma.calculator/metadata.json -share/plasma/plasmoids/org.kde.plasma.colorpicker/contents/config/config.qml -share/plasma/plasmoids/org.kde.plasma.colorpicker/contents/config/main.xml -share/plasma/plasmoids/org.kde.plasma.colorpicker/contents/ui/ColorCircle.qml -share/plasma/plasmoids/org.kde.plasma.colorpicker/contents/ui/ColorContextMenu.qml -share/plasma/plasmoids/org.kde.plasma.colorpicker/contents/ui/CompactRepresentation.qml -share/plasma/plasmoids/org.kde.plasma.colorpicker/contents/ui/ImageColors.qml -share/plasma/plasmoids/org.kde.plasma.colorpicker/contents/ui/LoadingIndicator.qml -share/plasma/plasmoids/org.kde.plasma.colorpicker/contents/ui/configGeneral.qml -share/plasma/plasmoids/org.kde.plasma.colorpicker/contents/ui/logic.js -share/plasma/plasmoids/org.kde.plasma.colorpicker/contents/ui/main.qml -share/plasma/plasmoids/org.kde.plasma.colorpicker/metadata.json -share/plasma/plasmoids/org.kde.plasma.diskquota/contents/ui/ListDelegateItem.qml -share/plasma/plasmoids/org.kde.plasma.diskquota/contents/ui/main.qml -share/plasma/plasmoids/org.kde.plasma.diskquota/metadata.json -share/plasma/plasmoids/org.kde.plasma.fifteenpuzzle/contents/config/config.qml -share/plasma/plasmoids/org.kde.plasma.fifteenpuzzle/contents/config/main.xml -share/plasma/plasmoids/org.kde.plasma.fifteenpuzzle/contents/ui/FifteenPuzzle.qml -share/plasma/plasmoids/org.kde.plasma.fifteenpuzzle/contents/ui/Piece.qml -share/plasma/plasmoids/org.kde.plasma.fifteenpuzzle/contents/ui/blanksquare.svg -share/plasma/plasmoids/org.kde.plasma.fifteenpuzzle/contents/ui/configAppearance.qml -share/plasma/plasmoids/org.kde.plasma.fifteenpuzzle/contents/ui/main.qml -share/plasma/plasmoids/org.kde.plasma.fifteenpuzzle/metadata.json -share/plasma/plasmoids/org.kde.plasma.fuzzyclock/contents/config/config.qml -share/plasma/plasmoids/org.kde.plasma.fuzzyclock/contents/config/main.xml -share/plasma/plasmoids/org.kde.plasma.fuzzyclock/contents/ui/FuzzyClock.qml -share/plasma/plasmoids/org.kde.plasma.fuzzyclock/contents/ui/configAppearance.qml -share/plasma/plasmoids/org.kde.plasma.fuzzyclock/contents/ui/main.qml -share/plasma/plasmoids/org.kde.plasma.fuzzyclock/metadata.json -share/plasma/plasmoids/org.kde.plasma.grouping/contents/applet/CompactApplet.qml -share/plasma/plasmoids/org.kde.plasma.grouping/contents/config/config.qml -share/plasma/plasmoids/org.kde.plasma.grouping/contents/config/main.xml -share/plasma/plasmoids/org.kde.plasma.grouping/contents/ui/items/AbstractItem.qml -share/plasma/plasmoids/org.kde.plasma.grouping/contents/ui/items/PlasmoidItem.qml -share/plasma/plasmoids/org.kde.plasma.grouping/contents/ui/main.qml -share/plasma/plasmoids/org.kde.plasma.grouping/metadata.json share/plasma/plasmoids/org.kde.plasma.kickerdash/metadata.json -share/plasma/plasmoids/org.kde.plasma.konsoleprofiles/contents/ui/main.qml -share/plasma/plasmoids/org.kde.plasma.konsoleprofiles/metadata.json -share/plasma/plasmoids/org.kde.plasma.mediaframe/contents/config/config.qml -share/plasma/plasmoids/org.kde.plasma.mediaframe/contents/config/main.xml -share/plasma/plasmoids/org.kde.plasma.mediaframe/contents/ui/ConfigBehavior.qml -share/plasma/plasmoids/org.kde.plasma.mediaframe/contents/ui/ConfigMedia.qml -share/plasma/plasmoids/org.kde.plasma.mediaframe/contents/ui/main.qml -share/plasma/plasmoids/org.kde.plasma.mediaframe/metadata.json -share/plasma/plasmoids/org.kde.plasma.notes/contents/config/config.qml -share/plasma/plasmoids/org.kde.plasma.notes/contents/config/main.xml -share/plasma/plasmoids/org.kde.plasma.notes/contents/ui/ShortcutMenuItem.qml -share/plasma/plasmoids/org.kde.plasma.notes/contents/ui/configAppearance.qml -share/plasma/plasmoids/org.kde.plasma.notes/contents/ui/main.qml -share/plasma/plasmoids/org.kde.plasma.notes/metadata.json -share/plasma/plasmoids/org.kde.plasma.userswitcher/contents/config/config.qml -share/plasma/plasmoids/org.kde.plasma.userswitcher/contents/config/main.xml -share/plasma/plasmoids/org.kde.plasma.userswitcher/contents/ui/ActionListDelegate.qml -share/plasma/plasmoids/org.kde.plasma.userswitcher/contents/ui/ListDelegate.qml -share/plasma/plasmoids/org.kde.plasma.userswitcher/contents/ui/UserListDelegate.qml -share/plasma/plasmoids/org.kde.plasma.userswitcher/contents/ui/configGeneral.qml -share/plasma/plasmoids/org.kde.plasma.userswitcher/contents/ui/main.qml -share/plasma/plasmoids/org.kde.plasma.userswitcher/metadata.json -share/plasma/plasmoids/org.kde.plasma.webbrowser/contents/config/config.qml -share/plasma/plasmoids/org.kde.plasma.webbrowser/contents/config/main.xml -share/plasma/plasmoids/org.kde.plasma.webbrowser/contents/ui/ConfigAppearance.qml -share/plasma/plasmoids/org.kde.plasma.webbrowser/contents/ui/ConfigGeneral.qml -share/plasma/plasmoids/org.kde.plasma.webbrowser/contents/ui/main.qml -share/plasma/plasmoids/org.kde.plasma.webbrowser/metadata.json -share/plasma/plasmoids/org.kde.plasma_applet_dict/contents/config/config.qml -share/plasma/plasmoids/org.kde.plasma_applet_dict/contents/config/main.xml -share/plasma/plasmoids/org.kde.plasma_applet_dict/contents/ui/AvailableDictSheet.qml -share/plasma/plasmoids/org.kde.plasma_applet_dict/contents/ui/ConfigDictionaries.qml -share/plasma/plasmoids/org.kde.plasma_applet_dict/contents/ui/DictItemDelegate.qml -share/plasma/plasmoids/org.kde.plasma_applet_dict/contents/ui/main.qml -share/plasma/plasmoids/org.kde.plasma_applet_dict/metadata.json share/plasma/wallpapers/org.kde.haenau/contents/ui/BackgroundElement.qml share/plasma/wallpapers/org.kde.haenau/contents/ui/BottomBackgroundElement.qml share/plasma/wallpapers/org.kde.haenau/contents/ui/RightBackgroundElement.qml share/plasma/wallpapers/org.kde.haenau/contents/ui/main.qml share/plasma/wallpapers/org.kde.haenau/contents/ui/wallpaper.svgz share/plasma/wallpapers/org.kde.haenau/metadata.json share/plasma/wallpapers/org.kde.hunyango/contents/ui/ColorProvider.qml share/plasma/wallpapers/org.kde.hunyango/contents/ui/main.qml share/plasma/wallpapers/org.kde.hunyango/contents/ui/qmldir share/plasma/wallpapers/org.kde.hunyango/contents/ui/wallpaper.svgz share/plasma/wallpapers/org.kde.hunyango/metadata.json share/plasma/wallpapers/org.kde.potd/contents/config/main.xml share/plasma/wallpapers/org.kde.potd/contents/ui/ActionContextMenu.qml share/plasma/wallpapers/org.kde.potd/contents/ui/WallpaperDelegate.qml share/plasma/wallpapers/org.kde.potd/contents/ui/WallpaperPreview.qml share/plasma/wallpapers/org.kde.potd/contents/ui/config.qml share/plasma/wallpapers/org.kde.potd/contents/ui/main.qml share/plasma/wallpapers/org.kde.potd/metadata.json +share/plasma/wallpapers/org.kde.tiled/contents/config/main.xml +share/plasma/wallpapers/org.kde.tiled/contents/ui/config.qml +share/plasma/wallpapers/org.kde.tiled/contents/ui/main.qml +share/plasma/wallpapers/org.kde.tiled/metadata.json +share/plasma/wallpapers/org.kde.tiled/metadata.json.license share/plasma/weather/noaa_station_list.xml share/polkit-1/actions/org.kde.kameleonhelper.policy share/qlogging-categories6/kdeplasma-addons.categories share/qlogging-categories6/kdeplasma-addons.renamecategories diff --git a/x11-wm/plasma6-kdecoration/distinfo b/x11-wm/plasma6-kdecoration/distinfo index 5d0595cbebfa..cfe35cacbf54 100644 --- a/x11-wm/plasma6-kdecoration/distinfo +++ b/x11-wm/plasma6-kdecoration/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1768328314 -SHA256 (KDE/plasma/6.5.5/kdecoration-6.5.5.tar.xz) = dc217bc6374f07a427b6d78de677b1878e9af47352c6addeb89426211b53681a -SIZE (KDE/plasma/6.5.5/kdecoration-6.5.5.tar.xz) = 58952 +TIMESTAMP = 1771162217 +SHA256 (KDE/plasma/6.6.0/kdecoration-6.6.0.tar.xz) = 6a86a7e3bab3dc2e3f6486688e8502a5c1acec1379bb085f853b0e829ae64a3b +SIZE (KDE/plasma/6.6.0/kdecoration-6.6.0.tar.xz) = 61308 diff --git a/x11-wm/plasma6-kwin-x11/Makefile b/x11-wm/plasma6-kwin-x11/Makefile index 65a0379a40bf..121e35e210a9 100644 --- a/x11-wm/plasma6-kwin-x11/Makefile +++ b/x11-wm/plasma6-kwin-x11/Makefile @@ -1,45 +1,44 @@ PORTNAME= kwin-x11 DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= x11-wm kde kde-plasma COMMENT= Easy to use, but flexible, X Window Manager MAINTAINER= kde@FreeBSD.org BUILD_DEPENDS= ${LOCALBASE}/include/linux/input.h:devel/evdev-proto \ hwdata>0:misc/hwdata \ wayland-protocols>0:graphics/wayland-protocols LIB_DEPENDS= libdisplay-info.so:sysutils/libdisplay-info \ libdrm.so:graphics/libdrm \ libepoxy.so:graphics/libepoxy \ libfontconfig.so:x11-fonts/fontconfig \ libfreetype.so:print/freetype2 \ liblcms2.so:graphics/lcms2 \ libpipewire-0.3.so:multimedia/pipewire \ libqaccessibilityclient-qt6.so:accessibility/libqaccessibilityclient@qt6 \ libudev.so:devel/libudev-devd \ libwayland-client.so:graphics/wayland \ libxcb-cursor.so:x11/xcb-util-cursor \ libxcb-icccm.so:x11/xcb-util-wm \ libxcb-keysyms.so:x11/xcb-util-keysyms \ libxkbcommon.so:x11/libxkbcommon RUN_DEPENDS= hwdata>0:misc/hwdata USES= cmake gettext gl kde:6 pkgconfig python qt:6 shebangfix tar:xz \ xorg USE_GL= egl gbm gl opengl USE_KDE= auth breeze colorscheme config \ configwidgets coreaddons crash dbusaddons decoration \ globalaccel globalacceld guiaddons i18n idletime kcmutils \ kdeclarative knighttime kscreenlocker libplasma newstuff \ notifications package runner service svg widgetsaddons \ windowsystem xmlgui \ ecm:build plasma-wayland-protocols:build \ aurorae:run breeze:run USE_QT= base declarative sensors tools wayland USE_XORG= ice sm x11 xcb xext xi BINARY_ALIAS= python3=${PYTHON_CMD} SHEBANG_FILES= src/plugins/strip-effect-metadata.py .include diff --git a/x11-wm/plasma6-kwin-x11/distinfo b/x11-wm/plasma6-kwin-x11/distinfo index b75dc7f52b73..2e6b67861a2e 100644 --- a/x11-wm/plasma6-kwin-x11/distinfo +++ b/x11-wm/plasma6-kwin-x11/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1768328315 -SHA256 (KDE/plasma/6.5.5/kwin-x11-6.5.5.tar.xz) = 89b9d41234f6f9bfe87fb472d77aefd1a8f9a447c4357169dcf810ad44e9b1d4 -SIZE (KDE/plasma/6.5.5/kwin-x11-6.5.5.tar.xz) = 6872376 +TIMESTAMP = 1771162218 +SHA256 (KDE/plasma/6.6.0/kwin-x11-6.6.0.tar.xz) = 93c3aa581c2f16d9bfe6847d15721f7ca66b83c7e101dff450696e11c865c866 +SIZE (KDE/plasma/6.6.0/kwin-x11-6.6.0.tar.xz) = 6891900 diff --git a/x11-wm/plasma6-kwin-x11/pkg-plist b/x11-wm/plasma6-kwin-x11/pkg-plist index d507aabbb273..2155a05195ab 100644 --- a/x11-wm/plasma6-kwin-x11/pkg-plist +++ b/x11-wm/plasma6-kwin-x11/pkg-plist @@ -1,1515 +1,1522 @@ bin/kwin_x11 include/kwin-x11/activities.h include/kwin-x11/appmenu.h include/kwin-x11/atoms.h include/kwin-x11/client_machine.h include/kwin-x11/compositor.h include/kwin-x11/config-kwin.h include/kwin-x11/core/colorlut3d.h include/kwin-x11/core/colorpipeline.h include/kwin-x11/core/colorpipelinestage.h include/kwin-x11/core/colorspace.h include/kwin-x11/core/colortransformation.h include/kwin-x11/core/drmdevice.h include/kwin-x11/core/gbmgraphicsbufferallocator.h include/kwin-x11/core/graphicsbuffer.h include/kwin-x11/core/graphicsbufferallocator.h include/kwin-x11/core/graphicsbufferview.h include/kwin-x11/core/iccprofile.h include/kwin-x11/core/inputbackend.h include/kwin-x11/core/inputdevice.h include/kwin-x11/core/output.h include/kwin-x11/core/outputbackend.h include/kwin-x11/core/outputconfiguration.h include/kwin-x11/core/outputlayer.h include/kwin-x11/core/overlaywindow.h include/kwin-x11/core/pixelgrid.h include/kwin-x11/core/renderbackend.h include/kwin-x11/core/renderjournal.h include/kwin-x11/core/renderlayer.h include/kwin-x11/core/renderlayerdelegate.h include/kwin-x11/core/renderloop.h include/kwin-x11/core/renderloop_p.h include/kwin-x11/core/rendertarget.h include/kwin-x11/core/renderviewport.h include/kwin-x11/core/session.h include/kwin-x11/core/session_consolekit.h include/kwin-x11/core/session_logind.h include/kwin-x11/core/session_noop.h include/kwin-x11/core/shmgraphicsbufferallocator.h include/kwin-x11/cursor.h include/kwin-x11/cursorsource.h include/kwin-x11/dbusinterface.h include/kwin-x11/debug_console.h include/kwin-x11/effect/animationeffect.h include/kwin-x11/effect/effect.h include/kwin-x11/effect/effecthandler.h include/kwin-x11/effect/effecttogglablestate.h include/kwin-x11/effect/effectwindow.h include/kwin-x11/effect/globals.h include/kwin-x11/effect/offscreeneffect.h include/kwin-x11/effect/offscreenquickview.h include/kwin-x11/effect/quickeffect.h include/kwin-x11/effect/timeline.h include/kwin-x11/effect/xcb.h include/kwin-x11/focuschain.h include/kwin-x11/ftrace.h include/kwin-x11/gestures.h include/kwin-x11/globalshortcuts.h include/kwin-x11/group.h include/kwin-x11/idle_inhibition.h include/kwin-x11/idledetector.h include/kwin-x11/input.h include/kwin-x11/input_event.h include/kwin-x11/input_event_spy.h include/kwin-x11/inputmethod.h include/kwin-x11/inputpanelv1integration.h include/kwin-x11/inputpanelv1window.h include/kwin-x11/internalwindow.h include/kwin-x11/keyboard_input.h include/kwin-x11/keyboard_layout.h include/kwin-x11/keyboard_layout_switching.h include/kwin-x11/keyboard_repeat.h include/kwin-x11/killwindow.h include/kwin-x11/kscreenintegration.h include/kwin-x11/kwin_export.h include/kwin-x11/layershellv1integration.h include/kwin-x11/layershellv1window.h include/kwin-x11/lidswitchtracker.h include/kwin-x11/main.h include/kwin-x11/mousebuttons.h include/kwin-x11/netinfo.h include/kwin-x11/onscreennotification.h include/kwin-x11/opengl/abstract_opengl_context_attribute_builder.h include/kwin-x11/opengl/egl_context_attribute_builder.h include/kwin-x11/opengl/eglcontext.h include/kwin-x11/opengl/egldisplay.h include/kwin-x11/opengl/eglimagetexture.h include/kwin-x11/opengl/eglnativefence.h include/kwin-x11/opengl/eglswapchain.h include/kwin-x11/opengl/eglutils_p.h include/kwin-x11/opengl/glframebuffer.h include/kwin-x11/opengl/gllut.h include/kwin-x11/opengl/gllut3D.h include/kwin-x11/opengl/glplatform.h include/kwin-x11/opengl/glrendertimequery.h include/kwin-x11/opengl/glshader.h include/kwin-x11/opengl/glshadermanager.h include/kwin-x11/opengl/gltexture.h include/kwin-x11/opengl/gltexture_p.h include/kwin-x11/opengl/glutils.h include/kwin-x11/opengl/glvertexbuffer.h include/kwin-x11/opengl/openglcontext.h include/kwin-x11/options.h include/kwin-x11/osd.h include/kwin-x11/outline.h include/kwin-x11/outputconfigurationstore.h include/kwin-x11/placeholderoutput.h include/kwin-x11/placement.h include/kwin-x11/placementtracker.h include/kwin-x11/plugin.h include/kwin-x11/pluginmanager.h include/kwin-x11/pointer_input.h include/kwin-x11/rulebooksettings.h include/kwin-x11/rules.h include/kwin-x11/scene/borderoutline.h include/kwin-x11/scene/borderradius.h include/kwin-x11/scene/cursordelegate_opengl.h include/kwin-x11/scene/cursordelegate_qpainter.h include/kwin-x11/scene/cursoritem.h include/kwin-x11/scene/cursorscene.h include/kwin-x11/scene/decorationitem.h include/kwin-x11/scene/dndiconitem.h include/kwin-x11/scene/imageitem.h include/kwin-x11/scene/item.h include/kwin-x11/scene/itemgeometry.h include/kwin-x11/scene/itemrenderer.h include/kwin-x11/scene/itemrenderer_opengl.h include/kwin-x11/scene/itemrenderer_qpainter.h include/kwin-x11/scene/outlinedborderitem.h include/kwin-x11/scene/rootitem.h include/kwin-x11/scene/scene.h include/kwin-x11/scene/shadowitem.h include/kwin-x11/scene/surfaceitem.h include/kwin-x11/scene/surfaceitem_internal.h include/kwin-x11/scene/surfaceitem_wayland.h include/kwin-x11/scene/surfaceitem_x11.h include/kwin-x11/scene/windowitem.h include/kwin-x11/scene/workspacescene.h include/kwin-x11/scene/workspacescene_opengl.h include/kwin-x11/scene/workspacescene_qpainter.h include/kwin-x11/screenedge.h include/kwin-x11/screenlockerwatcher.h include/kwin-x11/shadow.h include/kwin-x11/sm.h include/kwin-x11/tablet_input.h include/kwin-x11/tabletmodemanager.h include/kwin-x11/touch_input.h include/kwin-x11/useractions.h include/kwin-x11/utils/c_ptr.h include/kwin-x11/utils/common.h include/kwin-x11/utils/cursortheme.h include/kwin-x11/utils/damagejournal.h include/kwin-x11/utils/drm_format_helper.h include/kwin-x11/utils/edid.h include/kwin-x11/utils/executable_path.h include/kwin-x11/utils/filedescriptor.h include/kwin-x11/utils/kernel.h include/kwin-x11/utils/memorymap.h include/kwin-x11/utils/orientationsensor.h include/kwin-x11/utils/ramfile.h include/kwin-x11/utils/realtime.h include/kwin-x11/utils/resource.h include/kwin-x11/utils/serviceutils.h include/kwin-x11/utils/softwarevsyncmonitor.h include/kwin-x11/utils/subsurfacemonitor.h include/kwin-x11/utils/udev.h include/kwin-x11/utils/version.h include/kwin-x11/utils/vsyncmonitor.h include/kwin-x11/utils/xcbutils.h include/kwin-x11/virtualdesktops.h include/kwin-x11/virtualdesktopsdbustypes.h include/kwin-x11/virtualkeyboard_dbus.h include/kwin-x11/wayland/alphamodifier_v1.h include/kwin-x11/wayland/appmenu.h include/kwin-x11/wayland/blur.h include/kwin-x11/wayland/clientconnection.h include/kwin-x11/wayland/colormanagement_v1.h include/kwin-x11/wayland/compositor.h include/kwin-x11/wayland/contenttype_v1.h include/kwin-x11/wayland/contrast.h include/kwin-x11/wayland/cursorshape_v1.h include/kwin-x11/wayland/datacontroldevice_v1.h include/kwin-x11/wayland/datacontroldevicemanager_v1.h include/kwin-x11/wayland/datacontroloffer_v1.h include/kwin-x11/wayland/datacontrolsource_v1.h include/kwin-x11/wayland/datadevice.h include/kwin-x11/wayland/datadevicemanager.h include/kwin-x11/wayland/dataoffer.h include/kwin-x11/wayland/datasource.h include/kwin-x11/wayland/display.h include/kwin-x11/wayland/dpms.h include/kwin-x11/wayland/externalbrightness_v1.h include/kwin-x11/wayland/fractionalscale_v1.h include/kwin-x11/wayland/frog_colormanagement_v1.h include/kwin-x11/wayland/idle.h include/kwin-x11/wayland/idleinhibit_v1.h include/kwin-x11/wayland/idlenotify_v1.h include/kwin-x11/wayland/inputmethod_v1.h include/kwin-x11/wayland/keyboard.h include/kwin-x11/wayland/keyboard_shortcuts_inhibit_v1.h include/kwin-x11/wayland/keystate.h include/kwin-x11/wayland/layershell_v1.h include/kwin-x11/wayland/linux_drm_syncobj_v1.h include/kwin-x11/wayland/lockscreen_overlay_v1.h include/kwin-x11/wayland/output.h include/kwin-x11/wayland/output_order_v1.h include/kwin-x11/wayland/outputdevice_v2.h include/kwin-x11/wayland/outputmanagement_v2.h include/kwin-x11/wayland/plasmashell.h include/kwin-x11/wayland/plasmavirtualdesktop.h include/kwin-x11/wayland/plasmawindowmanagement.h include/kwin-x11/wayland/pointer.h include/kwin-x11/wayland/pointerconstraints_v1.h include/kwin-x11/wayland/pointergestures_v1.h include/kwin-x11/wayland/presentationtime.h include/kwin-x11/wayland/primaryselectiondevice_v1.h include/kwin-x11/wayland/primaryselectiondevicemanager_v1.h include/kwin-x11/wayland/primaryselectionoffer_v1.h include/kwin-x11/wayland/primaryselectionsource_v1.h include/kwin-x11/wayland/quirks.h include/kwin-x11/wayland/qwayland-server-alpha-modifier-v1.h include/kwin-x11/wayland/qwayland-server-color-management-v1.h include/kwin-x11/wayland/qwayland-server-content-type-v1.h include/kwin-x11/wayland/qwayland-server-frog-color-management-v1.h include/kwin-x11/wayland/qwayland-server-kde-external-brightness-v1.h include/kwin-x11/wayland/qwayland-server-linux-drm-syncobj-v1.h include/kwin-x11/wayland/qwayland-server-presentation-time.h include/kwin-x11/wayland/relativepointer_v1.h include/kwin-x11/wayland/screencast_v1.h include/kwin-x11/wayland/screenedge_v1.h include/kwin-x11/wayland/seat.h include/kwin-x11/wayland/securitycontext_v1.h include/kwin-x11/wayland/server_decoration.h include/kwin-x11/wayland/server_decoration_palette.h include/kwin-x11/wayland/shadow.h include/kwin-x11/wayland/slide.h include/kwin-x11/wayland/subcompositor.h include/kwin-x11/wayland/surface.h include/kwin-x11/wayland/tablet_v2.h include/kwin-x11/wayland/tearingcontrol_v1.h include/kwin-x11/wayland/textinput_v1.h include/kwin-x11/wayland/textinput_v2.h include/kwin-x11/wayland/textinput_v3.h include/kwin-x11/wayland/touch.h include/kwin-x11/wayland/viewporter.h include/kwin-x11/wayland/wayland-alpha-modifier-v1-server-protocol.h include/kwin-x11/wayland/wayland-color-management-v1-server-protocol.h include/kwin-x11/wayland/wayland-content-type-v1-server-protocol.h include/kwin-x11/wayland/wayland-frog-color-management-v1-server-protocol.h include/kwin-x11/wayland/wayland-kde-external-brightness-v1-server-protocol.h include/kwin-x11/wayland/wayland-linux-drm-syncobj-v1-server-protocol.h include/kwin-x11/wayland/wayland-presentation-time-server-protocol.h include/kwin-x11/wayland/xdgactivation_v1.h include/kwin-x11/wayland/xdgdecoration_v1.h include/kwin-x11/wayland/xdgdialog_v1.h include/kwin-x11/wayland/xdgforeign_v2.h include/kwin-x11/wayland/xdgoutput_v1.h include/kwin-x11/wayland/xdgshell.h include/kwin-x11/wayland/xdgsystembell_v1.h include/kwin-x11/wayland/xdgtoplevelicon_v1.h include/kwin-x11/wayland/xwaylandkeyboardgrab_v1.h include/kwin-x11/wayland/xwaylandshell_v1.h include/kwin-x11/wayland_server.h include/kwin-x11/waylandshellintegration.h include/kwin-x11/waylandwindow.h include/kwin-x11/window.h include/kwin-x11/workspace.h include/kwin-x11/x11eventfilter.h include/kwin-x11/x11window.h include/kwin-x11/xdgactivationv1.h include/kwin-x11/xdgshellintegration.h include/kwin-x11/xdgshellwindow.h include/kwin-x11/xkb.h lib/cmake/KWinX11/KWinX11Config.cmake lib/cmake/KWinX11/KWinX11ConfigVersion.cmake lib/cmake/KWinX11/KWinX11Targets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KWinX11/KWinX11Targets.cmake lib/cmake/KWinX11DBusInterface/KWinX11DBusInterfaceConfig.cmake lib/kconf_update_bin/kwin-6.0-delete-desktop-switching-shortcuts-x11 lib/kconf_update_bin/kwin-6.0-remove-breeze-tabbox-default-x11 lib/kconf_update_bin/kwin-6.0-reset-active-mouse-screen-x11 lib/kconf_update_bin/kwin-6.1-remove-gridview-expose-shortcuts-x11 lib/kconf_update_bin/kwin-6.5-showpaint-changes-x11 lib/kconf_update_bin/kwin5_update_default_rules_x11 lib/libexec/kwin-applywindowdecoration-x11 lib/libexec/kwin_killer_helper_x11 lib/libkcmkwincommon-x11.so.6 lib/libkcmkwincommon-x11.so.%%KDE_PLASMA_VERSION%% lib/libkwin-x11.so lib/libkwin-x11.so.6 lib/libkwin-x11.so.%%KDE_PLASMA_VERSION%% %%QT_PLUGINDIR%%/kf6/packagestructure/kwin_aurorae_x11.so %%QT_PLUGINDIR%%/kf6/packagestructure/kwin_decoration_x11.so %%QT_PLUGINDIR%%/kf6/packagestructure/kwin_effect_x11.so %%QT_PLUGINDIR%%/kf6/packagestructure/kwin_scripts_x11.so %%QT_PLUGINDIR%%/kf6/packagestructure/kwin_windowswitcher_x11.so %%QT_PLUGINDIR%%/kwin-x11/effects/configs/kcm_kwin4_genericscripted.so %%QT_PLUGINDIR%%/kwin-x11/effects/configs/kwin_blur_config.so %%QT_PLUGINDIR%%/kwin-x11/effects/configs/kwin_diminactive_config.so %%QT_PLUGINDIR%%/kwin-x11/effects/configs/kwin_glide_config.so %%QT_PLUGINDIR%%/kwin-x11/effects/configs/kwin_magiclamp_config.so %%QT_PLUGINDIR%%/kwin-x11/effects/configs/kwin_mouseclick_config.so %%QT_PLUGINDIR%%/kwin-x11/effects/configs/kwin_mousemark_config.so %%QT_PLUGINDIR%%/kwin-x11/effects/configs/kwin_overview_config.so %%QT_PLUGINDIR%%/kwin-x11/effects/configs/kwin_slide_config.so %%QT_PLUGINDIR%%/kwin-x11/effects/configs/kwin_thumbnailaside_config.so %%QT_PLUGINDIR%%/kwin-x11/effects/configs/kwin_tileseditor_config.so %%QT_PLUGINDIR%%/kwin-x11/effects/configs/kwin_trackmouse_config.so %%QT_PLUGINDIR%%/kwin-x11/effects/configs/kwin_windowview_config.so %%QT_PLUGINDIR%%/kwin-x11/effects/configs/kwin_wobblywindows_config.so %%QT_PLUGINDIR%%/kwin-x11/plugins/krunnerintegration.so %%QT_PLUGINDIR%%/kwin-x11/plugins/nightlight.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_animations_x11.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_kwin_effects_x11.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_kwin_scripts_x11.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_kwin_virtualdesktops_x11.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_kwindecoration_x11.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_kwinrules_x11.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_kwinoptions_x11.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_kwinscreenedges_x11.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_kwintabbox_x11.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_kwintouchscreen_x11.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kwincompositing.so %%QT_QMLDIR%%/org/kde/kwin_x11/private/effects/WindowHeap.qml %%QT_QMLDIR%%/org/kde/kwin_x11/private/effects/WindowHeapDelegate.qml %%QT_QMLDIR%%/org/kde/kwin_x11/private/effects/effectsplugin.qmltypes %%QT_QMLDIR%%/org/kde/kwin_x11/private/effects/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/kwin_x11/private/effects/libeffectsplugin.so %%QT_QMLDIR%%/org/kde/kwin_x11/private/effects/qmldir %%QT_QMLDIR%%/org/kde/kwin_x11/private/kdecoration/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/kwin_x11/private/kdecoration/kdecorationprivatedeclarative.qmltypes %%QT_QMLDIR%%/org/kde/kwin_x11/private/kdecoration/libkdecorationprivatedeclarative.so %%QT_QMLDIR%%/org/kde/kwin_x11/private/kdecoration/qmldir @comment lib/systemd/user/plasma-kwin_x11.service share/applications/kcm_animations_x11.desktop share/applications/kcm_kwin_effects_x11.desktop share/applications/kcm_kwin_scripts_x11.desktop share/applications/kcm_kwin_virtualdesktops_x11.desktop share/applications/kcm_kwindecoration_x11.desktop share/applications/kcm_kwinoptions_x11.desktop share/applications/kcm_kwinrules_x11.desktop share/applications/kcm_kwintabbox_x11.desktop share/applications/kwincompositing.desktop share/applications/org.kde.kwin_x11.killer.desktop share/dbus-1/interfaces/kwin_x11_org.kde.KWin.NightLight.xml share/dbus-1/interfaces/kwin_x11_org.kde.KWin.Plugins.xml share/dbus-1/interfaces/kwin_x11_org.kde.KWin.TabletModeManager.xml share/dbus-1/interfaces/kwin_x11_org.kde.KWin.VirtualDesktopManager.xml share/dbus-1/interfaces/kwin_x11_org.kde.KWin.xml share/dbus-1/interfaces/kwin_x11_org.kde.kwin.Compositing.xml share/dbus-1/interfaces/kwin_x11_org.kde.kwin.Effects.xml share/dbus-1/interfaces/kwin_x11_org.kde.kwin.VirtualKeyboard.xml share/doc/HTML/ca/kcontrol/desktop-x11/index.cache.bz2 share/doc/HTML/ca/kcontrol/desktop-x11/index.docbook share/doc/HTML/ca/kcontrol/kwindecoration-x11/index.cache.bz2 share/doc/HTML/ca/kcontrol/kwindecoration-x11/index.docbook share/doc/HTML/ca/kcontrol/kwineffects-x11/index.cache.bz2 share/doc/HTML/ca/kcontrol/kwineffects-x11/index.docbook share/doc/HTML/ca/kcontrol/kwinscreenedges-x11/index.cache.bz2 share/doc/HTML/ca/kcontrol/kwinscreenedges-x11/index.docbook share/doc/HTML/ca/kcontrol/kwintabbox-x11/index.cache.bz2 share/doc/HTML/ca/kcontrol/kwintabbox-x11/index.docbook share/doc/HTML/ca/kcontrol/kwintouchscreen-x11/index.cache.bz2 share/doc/HTML/ca/kcontrol/kwintouchscreen-x11/index.docbook share/doc/HTML/ca/kcontrol/kwinvirtualkeyboard-x11/index.cache.bz2 share/doc/HTML/ca/kcontrol/kwinvirtualkeyboard-x11/index.docbook share/doc/HTML/ca/kcontrol/windowbehaviour-x11/index.cache.bz2 share/doc/HTML/ca/kcontrol/windowbehaviour-x11/index.docbook share/doc/HTML/ca/kcontrol/windowspecific-x11/index.cache.bz2 share/doc/HTML/ca/kcontrol/windowspecific-x11/index.docbook share/doc/HTML/en/kcontrol/desktop-x11/index.cache.bz2 share/doc/HTML/en/kcontrol/desktop-x11/index.docbook share/doc/HTML/en/kcontrol/kwindecoration-x11/button.png share/doc/HTML/en/kcontrol/kwindecoration-x11/configure.png share/doc/HTML/en/kcontrol/kwindecoration-x11/decoration.png share/doc/HTML/en/kcontrol/kwindecoration-x11/index.cache.bz2 share/doc/HTML/en/kcontrol/kwindecoration-x11/index.docbook share/doc/HTML/en/kcontrol/kwindecoration-x11/main.png share/doc/HTML/en/kcontrol/kwineffects-x11/configure-effects.png share/doc/HTML/en/kcontrol/kwineffects-x11/dialog-information.png share/doc/HTML/en/kcontrol/kwineffects-x11/index.cache.bz2 share/doc/HTML/en/kcontrol/kwineffects-x11/index.docbook share/doc/HTML/en/kcontrol/kwineffects-x11/video.png share/doc/HTML/en/kcontrol/kwinscreenedges-x11/index.cache.bz2 share/doc/HTML/en/kcontrol/kwinscreenedges-x11/index.docbook share/doc/HTML/en/kcontrol/kwintabbox-x11/index.cache.bz2 share/doc/HTML/en/kcontrol/kwintabbox-x11/index.docbook share/doc/HTML/en/kcontrol/kwintabbox-x11/taskswitcher.png share/doc/HTML/en/kcontrol/kwintouchscreen-x11/index.cache.bz2 share/doc/HTML/en/kcontrol/kwintouchscreen-x11/index.docbook share/doc/HTML/en/kcontrol/kwinvirtualkeyboard-x11/index.cache.bz2 share/doc/HTML/en/kcontrol/kwinvirtualkeyboard-x11/index.docbook share/doc/HTML/en/kcontrol/windowbehaviour-x11/index.cache.bz2 share/doc/HTML/en/kcontrol/windowbehaviour-x11/index.docbook share/doc/HTML/en/kcontrol/windowspecific-x11/Face-smile.png share/doc/HTML/en/kcontrol/windowspecific-x11/akgregator-info.png share/doc/HTML/en/kcontrol/windowspecific-x11/akregator-attributes.png share/doc/HTML/en/kcontrol/windowspecific-x11/akregator-fav.png share/doc/HTML/en/kcontrol/windowspecific-x11/config-win-behavior.png share/doc/HTML/en/kcontrol/windowspecific-x11/emacs-attribute.png share/doc/HTML/en/kcontrol/windowspecific-x11/emacs-info.png share/doc/HTML/en/kcontrol/windowspecific-x11/focus-stealing-pop2top-attribute.png share/doc/HTML/en/kcontrol/windowspecific-x11/index.cache.bz2 share/doc/HTML/en/kcontrol/windowspecific-x11/index.docbook share/doc/HTML/en/kcontrol/windowspecific-x11/knotes-attribute.png share/doc/HTML/en/kcontrol/windowspecific-x11/knotes-info.png share/doc/HTML/en/kcontrol/windowspecific-x11/kopete-attribute-2.png share/doc/HTML/en/kcontrol/windowspecific-x11/kopete-chat-attribute.png share/doc/HTML/en/kcontrol/windowspecific-x11/kopete-chat-info.png share/doc/HTML/en/kcontrol/windowspecific-x11/kopete-info.png share/doc/HTML/en/kcontrol/windowspecific-x11/kwin-detect-window.png share/doc/HTML/en/kcontrol/windowspecific-x11/kwin-kopete-rules.png share/doc/HTML/en/kcontrol/windowspecific-x11/kwin-rule-editor.png share/doc/HTML/en/kcontrol/windowspecific-x11/kwin-rules-main-n-akregator.png share/doc/HTML/en/kcontrol/windowspecific-x11/kwin-rules-main.png share/doc/HTML/en/kcontrol/windowspecific-x11/kwin-rules-ordering.png share/doc/HTML/en/kcontrol/windowspecific-x11/kwin-window-attributes.png share/doc/HTML/en/kcontrol/windowspecific-x11/kwin-window-matching.png share/doc/HTML/en/kcontrol/windowspecific-x11/pager-4-desktops.png share/doc/HTML/en/kcontrol/windowspecific-x11/tbird-compose-attribute.png share/doc/HTML/en/kcontrol/windowspecific-x11/tbird-compose-info.png share/doc/HTML/en/kcontrol/windowspecific-x11/tbird-main-attribute.png share/doc/HTML/en/kcontrol/windowspecific-x11/tbird-main-info.png share/doc/HTML/en/kcontrol/windowspecific-x11/tbird-reminder-attribute-2.png share/doc/HTML/en/kcontrol/windowspecific-x11/tbird-reminder-info.png share/doc/HTML/en/kcontrol/windowspecific-x11/window-matching-emacs.png share/doc/HTML/en/kcontrol/windowspecific-x11/window-matching-init.png share/doc/HTML/en/kcontrol/windowspecific-x11/window-matching-knotes.png share/doc/HTML/en/kcontrol/windowspecific-x11/window-matching-kopete-chat.png share/doc/HTML/en/kcontrol/windowspecific-x11/window-matching-kopete.png share/doc/HTML/en/kcontrol/windowspecific-x11/window-matching-ready-akregator.png share/doc/HTML/en/kcontrol/windowspecific-x11/window-matching-tbird-compose.png share/doc/HTML/en/kcontrol/windowspecific-x11/window-matching-tbird-main.png share/doc/HTML/en/kcontrol/windowspecific-x11/window-matching-tbird-reminder.png -share/doc/HTML/es/kcontrol/desktop-x11/index.cache.bz2 -share/doc/HTML/es/kcontrol/desktop-x11/index.docbook -share/doc/HTML/es/kcontrol/kwindecoration-x11/index.cache.bz2 -share/doc/HTML/es/kcontrol/kwindecoration-x11/index.docbook -share/doc/HTML/es/kcontrol/kwineffects-x11/index.cache.bz2 -share/doc/HTML/es/kcontrol/kwineffects-x11/index.docbook -share/doc/HTML/es/kcontrol/kwinscreenedges-x11/index.cache.bz2 -share/doc/HTML/es/kcontrol/kwinscreenedges-x11/index.docbook -share/doc/HTML/es/kcontrol/kwintouchscreen-x11/index.cache.bz2 -share/doc/HTML/es/kcontrol/kwintouchscreen-x11/index.docbook -share/doc/HTML/es/kcontrol/kwinvirtualkeyboard-x11/index.cache.bz2 -share/doc/HTML/es/kcontrol/kwinvirtualkeyboard-x11/index.docbook share/doc/HTML/it/kcontrol/desktop-x11/index.cache.bz2 share/doc/HTML/it/kcontrol/desktop-x11/index.docbook share/doc/HTML/it/kcontrol/kwindecoration-x11/index.cache.bz2 share/doc/HTML/it/kcontrol/kwindecoration-x11/index.docbook share/doc/HTML/it/kcontrol/kwineffects-x11/index.cache.bz2 share/doc/HTML/it/kcontrol/kwineffects-x11/index.docbook share/doc/HTML/it/kcontrol/kwinscreenedges-x11/index.cache.bz2 share/doc/HTML/it/kcontrol/kwinscreenedges-x11/index.docbook share/doc/HTML/it/kcontrol/kwintabbox-x11/index.cache.bz2 share/doc/HTML/it/kcontrol/kwintabbox-x11/index.docbook share/doc/HTML/it/kcontrol/kwintouchscreen-x11/index.cache.bz2 share/doc/HTML/it/kcontrol/kwintouchscreen-x11/index.docbook share/doc/HTML/it/kcontrol/kwinvirtualkeyboard-x11/index.cache.bz2 share/doc/HTML/it/kcontrol/kwinvirtualkeyboard-x11/index.docbook share/doc/HTML/it/kcontrol/windowbehaviour-x11/index.cache.bz2 share/doc/HTML/it/kcontrol/windowbehaviour-x11/index.docbook share/doc/HTML/it/kcontrol/windowspecific-x11/index.cache.bz2 share/doc/HTML/it/kcontrol/windowspecific-x11/index.docbook share/doc/HTML/nl/kcontrol/desktop-x11/index.cache.bz2 share/doc/HTML/nl/kcontrol/desktop-x11/index.docbook share/doc/HTML/nl/kcontrol/kwindecoration-x11/index.cache.bz2 share/doc/HTML/nl/kcontrol/kwindecoration-x11/index.docbook share/doc/HTML/nl/kcontrol/kwineffects-x11/index.cache.bz2 share/doc/HTML/nl/kcontrol/kwineffects-x11/index.docbook share/doc/HTML/nl/kcontrol/kwinscreenedges-x11/index.cache.bz2 share/doc/HTML/nl/kcontrol/kwinscreenedges-x11/index.docbook share/doc/HTML/nl/kcontrol/kwintabbox-x11/index.cache.bz2 share/doc/HTML/nl/kcontrol/kwintabbox-x11/index.docbook share/doc/HTML/nl/kcontrol/kwintouchscreen-x11/index.cache.bz2 share/doc/HTML/nl/kcontrol/kwintouchscreen-x11/index.docbook share/doc/HTML/nl/kcontrol/kwinvirtualkeyboard-x11/index.cache.bz2 share/doc/HTML/nl/kcontrol/kwinvirtualkeyboard-x11/index.docbook share/doc/HTML/nl/kcontrol/windowbehaviour-x11/index.cache.bz2 share/doc/HTML/nl/kcontrol/windowbehaviour-x11/index.docbook share/doc/HTML/nl/kcontrol/windowspecific-x11/index.cache.bz2 share/doc/HTML/nl/kcontrol/windowspecific-x11/index.docbook share/doc/HTML/pt_BR/kcontrol/desktop-x11/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/desktop-x11/index.docbook share/doc/HTML/pt_BR/kcontrol/kwindecoration-x11/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/kwindecoration-x11/index.docbook share/doc/HTML/pt_BR/kcontrol/kwineffects-x11/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/kwineffects-x11/index.docbook share/doc/HTML/pt_BR/kcontrol/kwinscreenedges-x11/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/kwinscreenedges-x11/index.docbook share/doc/HTML/pt_BR/kcontrol/kwintabbox-x11/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/kwintabbox-x11/index.docbook share/doc/HTML/pt_BR/kcontrol/kwintouchscreen-x11/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/kwintouchscreen-x11/index.docbook share/doc/HTML/pt_BR/kcontrol/kwinvirtualkeyboard-x11/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/kwinvirtualkeyboard-x11/index.docbook share/doc/HTML/pt_BR/kcontrol/windowbehaviour-x11/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/windowbehaviour-x11/index.docbook share/doc/HTML/pt_BR/kcontrol/windowspecific-x11/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/windowspecific-x11/index.docbook +share/doc/HTML/tr/kcontrol/desktop-x11/index.cache.bz2 +share/doc/HTML/tr/kcontrol/desktop-x11/index.docbook +share/doc/HTML/tr/kcontrol/kwindecoration-x11/index.cache.bz2 +share/doc/HTML/tr/kcontrol/kwindecoration-x11/index.docbook +share/doc/HTML/tr/kcontrol/kwineffects-x11/index.cache.bz2 +share/doc/HTML/tr/kcontrol/kwineffects-x11/index.docbook +share/doc/HTML/tr/kcontrol/kwinscreenedges-x11/index.cache.bz2 +share/doc/HTML/tr/kcontrol/kwinscreenedges-x11/index.docbook +share/doc/HTML/tr/kcontrol/kwintabbox-x11/index.cache.bz2 +share/doc/HTML/tr/kcontrol/kwintabbox-x11/index.docbook +share/doc/HTML/tr/kcontrol/kwintouchscreen-x11/index.cache.bz2 +share/doc/HTML/tr/kcontrol/kwintouchscreen-x11/index.docbook +share/doc/HTML/tr/kcontrol/kwinvirtualkeyboard-x11/index.cache.bz2 +share/doc/HTML/tr/kcontrol/kwinvirtualkeyboard-x11/index.docbook +share/doc/HTML/tr/kcontrol/windowbehaviour-x11/index.cache.bz2 +share/doc/HTML/tr/kcontrol/windowbehaviour-x11/index.docbook +share/doc/HTML/tr/kcontrol/windowspecific-x11/index.cache.bz2 +share/doc/HTML/tr/kcontrol/windowspecific-x11/index.docbook share/doc/HTML/uk/kcontrol/desktop-x11/index.cache.bz2 share/doc/HTML/uk/kcontrol/desktop-x11/index.docbook share/doc/HTML/uk/kcontrol/kwindecoration-x11/index.cache.bz2 share/doc/HTML/uk/kcontrol/kwindecoration-x11/index.docbook share/doc/HTML/uk/kcontrol/kwineffects-x11/index.cache.bz2 share/doc/HTML/uk/kcontrol/kwineffects-x11/index.docbook share/doc/HTML/uk/kcontrol/kwinscreenedges-x11/index.cache.bz2 share/doc/HTML/uk/kcontrol/kwinscreenedges-x11/index.docbook share/doc/HTML/uk/kcontrol/kwintabbox-x11/index.cache.bz2 share/doc/HTML/uk/kcontrol/kwintabbox-x11/index.docbook share/doc/HTML/uk/kcontrol/kwintouchscreen-x11/index.cache.bz2 share/doc/HTML/uk/kcontrol/kwintouchscreen-x11/index.docbook share/doc/HTML/uk/kcontrol/kwinvirtualkeyboard-x11/index.cache.bz2 share/doc/HTML/uk/kcontrol/kwinvirtualkeyboard-x11/index.docbook share/doc/HTML/uk/kcontrol/windowbehaviour-x11/index.cache.bz2 share/doc/HTML/uk/kcontrol/windowbehaviour-x11/index.docbook share/doc/HTML/uk/kcontrol/windowspecific-x11/index.cache.bz2 share/doc/HTML/uk/kcontrol/windowspecific-x11/index.docbook share/icons/hicolor/16x16/apps/kwin-x11.png share/icons/hicolor/32x32/apps/kwin-x11.png share/icons/hicolor/48x48/apps/kwin-x11.png share/icons/hicolor/scalable/apps/kwin-x11.svgz share/kconf_update/kwin-x11.upd share/knotifications6/kwin-x11.notifyrc share/knsrcfiles/kwineffect-x11.knsrc share/knsrcfiles/kwinscripts-x11.knsrc share/knsrcfiles/kwinswitcher-x11.knsrc share/knsrcfiles/window-decorations-x11.knsrc share/krunner/dbusplugins/kwin-runner-windows-x11.desktop %%DATADIR%%/builtin-effects/blendchanges.json %%DATADIR%%/builtin-effects/blur.json %%DATADIR%%/builtin-effects/colorblindnesscorrection.json %%DATADIR%%/builtin-effects/colorpicker.json %%DATADIR%%/builtin-effects/contrast.json %%DATADIR%%/builtin-effects/diminactive.json %%DATADIR%%/builtin-effects/fallapart.json %%DATADIR%%/builtin-effects/glide.json %%DATADIR%%/builtin-effects/highlightwindow.json %%DATADIR%%/builtin-effects/invert.json %%DATADIR%%/builtin-effects/kscreen.json %%DATADIR%%/builtin-effects/magiclamp.json %%DATADIR%%/builtin-effects/magnifier.json %%DATADIR%%/builtin-effects/mouseclick.json %%DATADIR%%/builtin-effects/mousemark.json %%DATADIR%%/builtin-effects/outputlocator.json %%DATADIR%%/builtin-effects/overview.json %%DATADIR%%/builtin-effects/screenedge.json %%DATADIR%%/builtin-effects/screenshot.json %%DATADIR%%/builtin-effects/sheet.json %%DATADIR%%/builtin-effects/showfps.json %%DATADIR%%/builtin-effects/showpaint.json %%DATADIR%%/builtin-effects/slide.json %%DATADIR%%/builtin-effects/slideback.json %%DATADIR%%/builtin-effects/slidingpopups.json %%DATADIR%%/builtin-effects/startupfeedback.json %%DATADIR%%/builtin-effects/systembell.json %%DATADIR%%/builtin-effects/thumbnailaside.json %%DATADIR%%/builtin-effects/tileseditor.json %%DATADIR%%/builtin-effects/trackmouse.json %%DATADIR%%/builtin-effects/windowview.json %%DATADIR%%/builtin-effects/wobblywindows.json %%DATADIR%%/builtin-effects/zoom.json %%DATADIR%%/effects/dialogparent/contents/code/main.js %%DATADIR%%/effects/dialogparent/metadata.json %%DATADIR%%/effects/dimscreen/contents/code/main.js %%DATADIR%%/effects/dimscreen/metadata.json %%DATADIR%%/effects/eyeonscreen/contents/code/main.js %%DATADIR%%/effects/eyeonscreen/metadata.json %%DATADIR%%/effects/fade/contents/code/main.js %%DATADIR%%/effects/fade/contents/config/main.xml %%DATADIR%%/effects/fade/metadata.json %%DATADIR%%/effects/fadedesktop/contents/code/main.js %%DATADIR%%/effects/fadedesktop/metadata.json %%DATADIR%%/effects/fadingpopups/contents/code/main.js %%DATADIR%%/effects/fadingpopups/metadata.json %%DATADIR%%/effects/frozenapp/contents/code/main.js %%DATADIR%%/effects/frozenapp/metadata.json %%DATADIR%%/effects/fullscreen/contents/code/main.js %%DATADIR%%/effects/fullscreen/metadata.json %%DATADIR%%/effects/login/contents/code/main.js %%DATADIR%%/effects/login/contents/config/main.xml %%DATADIR%%/effects/login/contents/ui/config.ui %%DATADIR%%/effects/login/metadata.json %%DATADIR%%/effects/logout/contents/code/main.js %%DATADIR%%/effects/logout/metadata.json %%DATADIR%%/effects/maximize/contents/code/main.js %%DATADIR%%/effects/maximize/metadata.json %%DATADIR%%/effects/outputlocator/qml/OutputLabel.qml %%DATADIR%%/effects/scale/contents/code/main.js %%DATADIR%%/effects/scale/contents/config/main.xml %%DATADIR%%/effects/scale/contents/ui/config.ui %%DATADIR%%/effects/scale/metadata.json %%DATADIR%%/effects/sessionquit/contents/code/main.js %%DATADIR%%/effects/sessionquit/metadata.json %%DATADIR%%/effects/showfps/qml/main-fallback.qml %%DATADIR%%/effects/showfps/qml/main.qml %%DATADIR%%/effects/squash/contents/code/main.js %%DATADIR%%/effects/squash/metadata.json %%DATADIR%%/effects/tileseditor/qml/ResizeCorner.qml %%DATADIR%%/effects/tileseditor/qml/ResizeHandle.qml %%DATADIR%%/effects/tileseditor/qml/TileDelegate.qml %%DATADIR%%/effects/tileseditor/qml/layouts.svg %%DATADIR%%/effects/tileseditor/qml/main.qml %%DATADIR%%/effects/translucency/contents/code/main.js %%DATADIR%%/effects/translucency/contents/config/main.xml %%DATADIR%%/effects/translucency/contents/ui/config.ui %%DATADIR%%/effects/translucency/metadata.json %%DATADIR%%/effects/windowaperture/contents/code/main.js %%DATADIR%%/effects/windowaperture/metadata.json %%DATADIR%%/effects/windowview/qml/main.qml %%DATADIR%%/frames/plasma/frame_none.qml %%DATADIR%%/frames/plasma/frame_styled.qml %%DATADIR%%/frames/plasma/frame_unstyled.qml %%DATADIR%%/kcm_kwintabbox/desktop.png %%DATADIR%%/kcm_kwintabbox/dolphin.png %%DATADIR%%/kcm_kwintabbox/falkon.png %%DATADIR%%/kcm_kwintabbox/kmail.png %%DATADIR%%/kcm_kwintabbox/systemsettings.png %%DATADIR%%/onscreennotification/plasma/dummydata/osd.qml %%DATADIR%%/onscreennotification/plasma/main.qml %%DATADIR%%/outline/plasma/outline.qml %%DATADIR%%/scripts/desktopchangeosd/contents/ui/main.qml %%DATADIR%%/scripts/desktopchangeosd/contents/ui/osd.qml %%DATADIR%%/scripts/desktopchangeosd/metadata.json %%DATADIR%%/scripts/minimizeall/contents/code/main.js %%DATADIR%%/scripts/minimizeall/metadata.json %%DATADIR%%/scripts/synchronizeskipswitcher/contents/code/main.js %%DATADIR%%/scripts/synchronizeskipswitcher/metadata.json %%DATADIR%%/scripts/videowall/contents/code/main.js %%DATADIR%%/scripts/videowall/contents/config/main.xml %%DATADIR%%/scripts/videowall/contents/ui/config.ui %%DATADIR%%/scripts/videowall/metadata.json %%DATADIR%%/tabbox/thumbnail_grid/contents/ui/main.qml %%DATADIR%%/tabbox/thumbnail_grid/metadata.json %%DATADIR%%/tm_inner.png %%DATADIR%%/tm_outer.png share/locale/af/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/af/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/af/LC_MESSAGES/kcmkwm_x11.mo share/locale/af/LC_MESSAGES/kwin_x11.mo share/locale/ar/LC_MESSAGES/kcm_animations_x11.mo share/locale/ar/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/ar/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/ar/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/ar/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/ar/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/ar/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/ar/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/ar/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/ar/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/ar/LC_MESSAGES/kcmkwm_x11.mo share/locale/ar/LC_MESSAGES/kwin_x11.mo share/locale/as/LC_MESSAGES/kwin_x11.mo share/locale/ast/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/ast/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/ast/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/ast/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/ast/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/ast/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/ast/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/ast/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/ast/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/ast/LC_MESSAGES/kcmkwm_x11.mo share/locale/ast/LC_MESSAGES/kwin_x11.mo share/locale/az/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/az/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/az/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/az/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/az/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/az/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/az/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/az/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/az/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/az/LC_MESSAGES/kcmkwm_x11.mo share/locale/az/LC_MESSAGES/kwin_x11.mo share/locale/be/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/be/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/be/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/be/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/be/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/be/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/be/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/be/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/be/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/be/LC_MESSAGES/kcmkwm_x11.mo share/locale/be/LC_MESSAGES/kwin_x11.mo share/locale/be@latin/LC_MESSAGES/kwin_x11.mo share/locale/bg/LC_MESSAGES/kcm_animations_x11.mo share/locale/bg/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/bg/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/bg/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/bg/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/bg/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/bg/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/bg/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/bg/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/bg/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/bg/LC_MESSAGES/kcmkwm_x11.mo share/locale/bg/LC_MESSAGES/kwin_x11.mo share/locale/bn/LC_MESSAGES/kcmkwm_x11.mo share/locale/bn/LC_MESSAGES/kwin_x11.mo share/locale/bn_IN/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/bn_IN/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/bn_IN/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/bn_IN/LC_MESSAGES/kcmkwm_x11.mo share/locale/bn_IN/LC_MESSAGES/kwin_x11.mo share/locale/br/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/br/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/br/LC_MESSAGES/kcmkwm_x11.mo share/locale/br/LC_MESSAGES/kwin_x11.mo share/locale/bs/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/bs/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/bs/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/bs/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/bs/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/bs/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/bs/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/bs/LC_MESSAGES/kcmkwm_x11.mo share/locale/bs/LC_MESSAGES/kwin_x11.mo share/locale/ca/LC_MESSAGES/kcm_animations_x11.mo share/locale/ca/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/ca/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/ca/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/ca/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/ca/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/ca/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/ca/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/ca/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/ca/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/ca/LC_MESSAGES/kcmkwm_x11.mo share/locale/ca/LC_MESSAGES/kwin_x11.mo share/locale/ca@valencia/LC_MESSAGES/kcm_animations_x11.mo share/locale/ca@valencia/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/ca@valencia/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/ca@valencia/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/ca@valencia/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/ca@valencia/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/ca@valencia/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/ca@valencia/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/ca@valencia/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/ca@valencia/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/ca@valencia/LC_MESSAGES/kcmkwm_x11.mo share/locale/ca@valencia/LC_MESSAGES/kwin_x11.mo share/locale/cs/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/cs/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/cs/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/cs/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/cs/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/cs/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/cs/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/cs/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/cs/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/cs/LC_MESSAGES/kcmkwm_x11.mo share/locale/cs/LC_MESSAGES/kwin_x11.mo share/locale/csb/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/csb/LC_MESSAGES/kwin_x11.mo share/locale/cy/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/cy/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/cy/LC_MESSAGES/kcmkwm_x11.mo share/locale/cy/LC_MESSAGES/kwin_x11.mo share/locale/da/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/da/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/da/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/da/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/da/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/da/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/da/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/da/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/da/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/da/LC_MESSAGES/kcmkwm_x11.mo share/locale/da/LC_MESSAGES/kwin_x11.mo share/locale/de/LC_MESSAGES/kcm_animations_x11.mo share/locale/de/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/de/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/de/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/de/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/de/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/de/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/de/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/de/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/de/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/de/LC_MESSAGES/kcmkwm_x11.mo share/locale/de/LC_MESSAGES/kwin_x11.mo share/locale/el/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/el/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/el/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/el/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/el/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/el/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/el/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/el/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/el/LC_MESSAGES/kcmkwm_x11.mo share/locale/el/LC_MESSAGES/kwin_x11.mo share/locale/en_GB/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/en_GB/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/en_GB/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/en_GB/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/en_GB/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/en_GB/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/en_GB/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/en_GB/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/en_GB/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/en_GB/LC_MESSAGES/kcmkwm_x11.mo share/locale/en_GB/LC_MESSAGES/kwin_x11.mo share/locale/eo/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/eo/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/eo/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/eo/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/eo/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/eo/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/eo/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/eo/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/eo/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/eo/LC_MESSAGES/kcmkwm_x11.mo share/locale/eo/LC_MESSAGES/kwin_x11.mo share/locale/es/LC_MESSAGES/kcm_animations_x11.mo share/locale/es/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/es/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/es/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/es/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/es/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/es/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/es/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/es/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/es/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/es/LC_MESSAGES/kcmkwm_x11.mo share/locale/es/LC_MESSAGES/kwin_x11.mo share/locale/et/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/et/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/et/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/et/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/et/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/et/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/et/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/et/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/et/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/et/LC_MESSAGES/kcmkwm_x11.mo share/locale/et/LC_MESSAGES/kwin_x11.mo share/locale/eu/LC_MESSAGES/kcm_animations_x11.mo share/locale/eu/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/eu/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/eu/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/eu/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/eu/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/eu/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/eu/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/eu/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/eu/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/eu/LC_MESSAGES/kcmkwm_x11.mo share/locale/eu/LC_MESSAGES/kwin_x11.mo share/locale/fa/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/fa/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/fa/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/fa/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/fa/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/fa/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/fa/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/fa/LC_MESSAGES/kcmkwm_x11.mo share/locale/fa/LC_MESSAGES/kwin_x11.mo share/locale/fi/LC_MESSAGES/kcm_animations_x11.mo share/locale/fi/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/fi/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/fi/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/fi/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/fi/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/fi/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/fi/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/fi/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/fi/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/fi/LC_MESSAGES/kcmkwm_x11.mo share/locale/fi/LC_MESSAGES/kwin_x11.mo share/locale/fr/LC_MESSAGES/kcm_animations_x11.mo share/locale/fr/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/fr/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/fr/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/fr/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/fr/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/fr/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/fr/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/fr/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/fr/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/fr/LC_MESSAGES/kcmkwm_x11.mo share/locale/fr/LC_MESSAGES/kwin_x11.mo share/locale/fy/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/fy/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/fy/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/fy/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/fy/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/fy/LC_MESSAGES/kcmkwm_x11.mo share/locale/fy/LC_MESSAGES/kwin_x11.mo share/locale/ga/LC_MESSAGES/kcm_animations_x11.mo share/locale/ga/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/ga/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/ga/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/ga/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/ga/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/ga/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/ga/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/ga/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/ga/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/ga/LC_MESSAGES/kcmkwm_x11.mo share/locale/ga/LC_MESSAGES/kwin_x11.mo share/locale/gl/LC_MESSAGES/kcm_animations_x11.mo share/locale/gl/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/gl/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/gl/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/gl/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/gl/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/gl/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/gl/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/gl/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/gl/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/gl/LC_MESSAGES/kcmkwm_x11.mo share/locale/gl/LC_MESSAGES/kwin_x11.mo share/locale/gu/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/gu/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/gu/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/gu/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/gu/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/gu/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/gu/LC_MESSAGES/kcmkwm_x11.mo share/locale/gu/LC_MESSAGES/kwin_x11.mo share/locale/he/LC_MESSAGES/kcm_animations_x11.mo share/locale/he/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/he/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/he/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/he/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/he/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/he/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/he/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/he/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/he/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/he/LC_MESSAGES/kcmkwm_x11.mo share/locale/he/LC_MESSAGES/kwin_x11.mo share/locale/hi/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/hi/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/hi/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/hi/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/hi/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/hi/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/hi/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/hi/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/hi/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/hi/LC_MESSAGES/kcmkwm_x11.mo share/locale/hi/LC_MESSAGES/kwin_x11.mo share/locale/hne/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/hne/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/hne/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/hne/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/hne/LC_MESSAGES/kcmkwm_x11.mo share/locale/hne/LC_MESSAGES/kwin_x11.mo share/locale/hr/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/hr/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/hr/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/hr/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/hr/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/hr/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/hr/LC_MESSAGES/kcmkwm_x11.mo share/locale/hr/LC_MESSAGES/kwin_x11.mo share/locale/hsb/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/hsb/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/hsb/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/hsb/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/hsb/LC_MESSAGES/kcmkwm_x11.mo share/locale/hsb/LC_MESSAGES/kwin_x11.mo share/locale/hu/LC_MESSAGES/kcm_animations_x11.mo share/locale/hu/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/hu/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/hu/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/hu/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/hu/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/hu/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/hu/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/hu/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/hu/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/hu/LC_MESSAGES/kcmkwm_x11.mo share/locale/hu/LC_MESSAGES/kwin_x11.mo share/locale/ia/LC_MESSAGES/kcm_animations_x11.mo share/locale/ia/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/ia/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/ia/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/ia/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/ia/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/ia/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/ia/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/ia/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/ia/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/ia/LC_MESSAGES/kcmkwm_x11.mo share/locale/ia/LC_MESSAGES/kwin_x11.mo share/locale/id/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/id/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/id/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/id/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/id/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/id/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/id/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/id/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/id/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/id/LC_MESSAGES/kcmkwm_x11.mo share/locale/id/LC_MESSAGES/kwin_x11.mo share/locale/is/LC_MESSAGES/kcm_animations_x11.mo share/locale/is/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/is/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/is/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/is/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/is/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/is/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/is/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/is/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/is/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/is/LC_MESSAGES/kcmkwm_x11.mo share/locale/is/LC_MESSAGES/kwin_x11.mo share/locale/it/LC_MESSAGES/kcm_animations_x11.mo share/locale/it/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/it/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/it/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/it/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/it/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/it/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/it/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/it/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/it/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/it/LC_MESSAGES/kcmkwm_x11.mo share/locale/it/LC_MESSAGES/kwin_x11.mo share/locale/ja/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/ja/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/ja/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/ja/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/ja/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/ja/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/ja/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/ja/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/ja/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/ja/LC_MESSAGES/kcmkwm_x11.mo share/locale/ja/LC_MESSAGES/kwin_x11.mo share/locale/ka/LC_MESSAGES/kcm_animations_x11.mo share/locale/ka/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/ka/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/ka/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/ka/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/ka/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/ka/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/ka/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/ka/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/ka/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/ka/LC_MESSAGES/kcmkwm_x11.mo share/locale/ka/LC_MESSAGES/kwin_x11.mo share/locale/kk/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/kk/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/kk/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/kk/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/kk/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/kk/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/kk/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/kk/LC_MESSAGES/kcmkwm_x11.mo share/locale/kk/LC_MESSAGES/kwin_x11.mo share/locale/km/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/km/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/km/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/km/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/km/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/km/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/km/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/km/LC_MESSAGES/kcmkwm_x11.mo share/locale/km/LC_MESSAGES/kwin_x11.mo share/locale/kn/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/kn/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/kn/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/kn/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/kn/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/kn/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/kn/LC_MESSAGES/kcmkwm_x11.mo share/locale/kn/LC_MESSAGES/kwin_x11.mo share/locale/ko/LC_MESSAGES/kcm_animations_x11.mo share/locale/ko/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/ko/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/ko/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/ko/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/ko/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/ko/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/ko/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/ko/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/ko/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/ko/LC_MESSAGES/kcmkwm_x11.mo share/locale/ko/LC_MESSAGES/kwin_x11.mo share/locale/ku/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/ku/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/ku/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/ku/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/ku/LC_MESSAGES/kcmkwm_x11.mo share/locale/ku/LC_MESSAGES/kwin_x11.mo share/locale/lt/LC_MESSAGES/kcm_animations_x11.mo share/locale/lt/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/lt/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/lt/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/lt/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/lt/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/lt/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/lt/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/lt/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/lt/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/lt/LC_MESSAGES/kcmkwm_x11.mo share/locale/lt/LC_MESSAGES/kwin_x11.mo share/locale/lv/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/lv/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/lv/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/lv/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/lv/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/lv/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/lv/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/lv/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/lv/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/lv/LC_MESSAGES/kcmkwm_x11.mo share/locale/lv/LC_MESSAGES/kwin_x11.mo share/locale/mai/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/mai/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/mai/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/mai/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/mai/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/mai/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/mai/LC_MESSAGES/kcmkwm_x11.mo share/locale/mai/LC_MESSAGES/kwin_x11.mo share/locale/mk/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/mk/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/mk/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/mk/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/mk/LC_MESSAGES/kcmkwm_x11.mo share/locale/mk/LC_MESSAGES/kwin_x11.mo share/locale/ml/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/ml/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/ml/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/ml/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/ml/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/ml/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/ml/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/ml/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/ml/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/ml/LC_MESSAGES/kcmkwm_x11.mo share/locale/ml/LC_MESSAGES/kwin_x11.mo share/locale/mr/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/mr/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/mr/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/mr/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/mr/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/mr/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/mr/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/mr/LC_MESSAGES/kcmkwm_x11.mo share/locale/mr/LC_MESSAGES/kwin_x11.mo share/locale/ms/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/ms/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/ms/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/ms/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/ms/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/ms/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/ms/LC_MESSAGES/kcmkwm_x11.mo share/locale/ms/LC_MESSAGES/kwin_x11.mo share/locale/nb/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/nb/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/nb/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/nb/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/nb/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/nb/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/nb/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/nb/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/nb/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/nb/LC_MESSAGES/kcmkwm_x11.mo share/locale/nb/LC_MESSAGES/kwin_x11.mo share/locale/nds/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/nds/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/nds/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/nds/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/nds/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/nds/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/nds/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/nds/LC_MESSAGES/kcmkwm_x11.mo share/locale/nds/LC_MESSAGES/kwin_x11.mo share/locale/ne/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/ne/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/ne/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/ne/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/ne/LC_MESSAGES/kcmkwm_x11.mo share/locale/ne/LC_MESSAGES/kwin_x11.mo share/locale/nl/LC_MESSAGES/kcm_animations_x11.mo share/locale/nl/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/nl/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/nl/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/nl/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/nl/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/nl/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/nl/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/nl/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/nl/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/nl/LC_MESSAGES/kcmkwm_x11.mo share/locale/nl/LC_MESSAGES/kwin_x11.mo share/locale/nn/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/nn/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/nn/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/nn/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/nn/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/nn/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/nn/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/nn/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/nn/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/nn/LC_MESSAGES/kcmkwm_x11.mo share/locale/nn/LC_MESSAGES/kwin_x11.mo share/locale/oc/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/oc/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/oc/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/oc/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/oc/LC_MESSAGES/kcmkwm_x11.mo share/locale/oc/LC_MESSAGES/kwin_x11.mo share/locale/or/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/or/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/or/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/or/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/or/LC_MESSAGES/kcmkwm_x11.mo share/locale/or/LC_MESSAGES/kwin_x11.mo share/locale/pa/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/pa/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/pa/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/pa/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/pa/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/pa/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/pa/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/pa/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/pa/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/pa/LC_MESSAGES/kcmkwm_x11.mo share/locale/pa/LC_MESSAGES/kwin_x11.mo share/locale/pl/LC_MESSAGES/kcm_animations_x11.mo share/locale/pl/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/pl/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/pl/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/pl/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/pl/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/pl/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/pl/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/pl/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/pl/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/pl/LC_MESSAGES/kcmkwm_x11.mo share/locale/pl/LC_MESSAGES/kwin_x11.mo share/locale/pt/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/pt/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/pt/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/pt/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/pt/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/pt/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/pt/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/pt/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/pt/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/pt/LC_MESSAGES/kcmkwm_x11.mo share/locale/pt/LC_MESSAGES/kwin_x11.mo share/locale/pt_BR/LC_MESSAGES/kcm_animations_x11.mo share/locale/pt_BR/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/pt_BR/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/pt_BR/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/pt_BR/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/pt_BR/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/pt_BR/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/pt_BR/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/pt_BR/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/pt_BR/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/pt_BR/LC_MESSAGES/kcmkwm_x11.mo share/locale/pt_BR/LC_MESSAGES/kwin_x11.mo +share/locale/ro/LC_MESSAGES/kcm_animations_x11.mo share/locale/ro/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/ro/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/ro/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/ro/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/ro/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/ro/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/ro/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/ro/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/ro/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/ro/LC_MESSAGES/kcmkwm_x11.mo share/locale/ro/LC_MESSAGES/kwin_x11.mo share/locale/ru/LC_MESSAGES/kcm_animations_x11.mo share/locale/ru/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/ru/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/ru/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/ru/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/ru/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/ru/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/ru/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/ru/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/ru/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/ru/LC_MESSAGES/kcmkwm_x11.mo share/locale/ru/LC_MESSAGES/kwin_x11.mo share/locale/sa/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/sa/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/sa/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/sa/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/sa/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/sa/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/sa/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/sa/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/sa/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/sa/LC_MESSAGES/kcmkwm_x11.mo share/locale/sa/LC_MESSAGES/kwin_x11.mo share/locale/se/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/se/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/se/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/se/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/se/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/se/LC_MESSAGES/kcmkwm_x11.mo share/locale/se/LC_MESSAGES/kwin_x11.mo share/locale/si/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/si/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/si/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/si/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/si/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/si/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/si/LC_MESSAGES/kcmkwm_x11.mo share/locale/si/LC_MESSAGES/kwin_x11.mo share/locale/sk/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/sk/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/sk/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/sk/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/sk/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/sk/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/sk/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/sk/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/sk/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/sk/LC_MESSAGES/kcmkwm_x11.mo share/locale/sk/LC_MESSAGES/kwin_x11.mo share/locale/sl/LC_MESSAGES/kcm_animations_x11.mo share/locale/sl/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/sl/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/sl/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/sl/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/sl/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/sl/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/sl/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/sl/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/sl/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/sl/LC_MESSAGES/kcmkwm_x11.mo share/locale/sl/LC_MESSAGES/kwin_x11.mo share/locale/sq/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/sq/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/sq/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/sq/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/sq/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/sq/LC_MESSAGES/kcmkwm_x11.mo share/locale/sq/LC_MESSAGES/kwin_x11.mo share/locale/sr/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/sr/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/sr/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/sr/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/sr/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/sr/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/sr/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/sr/LC_MESSAGES/kcmkwm_x11.mo share/locale/sr/LC_MESSAGES/kwin_x11.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmkwm_x11.mo share/locale/sr@ijekavian/LC_MESSAGES/kwin_x11.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmkwm_x11.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kwin_x11.mo share/locale/sr@latin/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/sr@latin/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/sr@latin/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/sr@latin/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/sr@latin/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/sr@latin/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/sr@latin/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/sr@latin/LC_MESSAGES/kcmkwm_x11.mo share/locale/sr@latin/LC_MESSAGES/kwin_x11.mo share/locale/sv/LC_MESSAGES/kcm_animations_x11.mo share/locale/sv/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/sv/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/sv/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/sv/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/sv/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/sv/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/sv/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/sv/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/sv/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/sv/LC_MESSAGES/kcmkwm_x11.mo share/locale/sv/LC_MESSAGES/kwin_x11.mo share/locale/ta/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/ta/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/ta/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/ta/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/ta/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/ta/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/ta/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/ta/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/ta/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/ta/LC_MESSAGES/kcmkwm_x11.mo share/locale/ta/LC_MESSAGES/kwin_x11.mo share/locale/te/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/te/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/te/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/te/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/te/LC_MESSAGES/kcmkwm_x11.mo share/locale/te/LC_MESSAGES/kwin_x11.mo share/locale/tg/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/tg/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/tg/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/tg/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/tg/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/tg/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/tg/LC_MESSAGES/kcmkwm_x11.mo share/locale/tg/LC_MESSAGES/kwin_x11.mo share/locale/th/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/th/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/th/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/th/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/th/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/th/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/th/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/th/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/th/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/th/LC_MESSAGES/kcmkwm_x11.mo share/locale/th/LC_MESSAGES/kwin_x11.mo share/locale/tok/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/tr/LC_MESSAGES/kcm_animations_x11.mo share/locale/tr/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/tr/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/tr/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/tr/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/tr/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/tr/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/tr/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/tr/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/tr/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/tr/LC_MESSAGES/kcmkwm_x11.mo share/locale/tr/LC_MESSAGES/kwin_x11.mo share/locale/ug/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/ug/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/ug/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/ug/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/ug/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/ug/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/ug/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/ug/LC_MESSAGES/kcmkwm_x11.mo share/locale/ug/LC_MESSAGES/kwin_x11.mo share/locale/uk/LC_MESSAGES/kcm_animations_x11.mo share/locale/uk/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/uk/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/uk/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/uk/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/uk/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/uk/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/uk/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/uk/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/uk/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/uk/LC_MESSAGES/kcmkwm_x11.mo share/locale/uk/LC_MESSAGES/kwin_x11.mo share/locale/uz/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/uz/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/uz/LC_MESSAGES/kcmkwm_x11.mo share/locale/uz/LC_MESSAGES/kwin_x11.mo share/locale/uz@cyrillic/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/uz@cyrillic/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/uz@cyrillic/LC_MESSAGES/kcmkwm_x11.mo share/locale/uz@cyrillic/LC_MESSAGES/kwin_x11.mo share/locale/vi/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/vi/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/vi/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/vi/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/vi/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/vi/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/vi/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/vi/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/vi/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/vi/LC_MESSAGES/kcmkwm_x11.mo share/locale/vi/LC_MESSAGES/kwin_x11.mo share/locale/wa/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/wa/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/wa/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/wa/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/wa/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/wa/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/wa/LC_MESSAGES/kcmkwm_x11.mo share/locale/wa/LC_MESSAGES/kwin_x11.mo share/locale/xh/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/xh/LC_MESSAGES/kcmkwm_x11.mo share/locale/xh/LC_MESSAGES/kwin_x11.mo share/locale/zh_CN/LC_MESSAGES/kcm_animations_x11.mo share/locale/zh_CN/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/zh_CN/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/zh_CN/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/zh_CN/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/zh_CN/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/zh_CN/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/zh_CN/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/zh_CN/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/zh_CN/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/zh_CN/LC_MESSAGES/kcmkwm_x11.mo share/locale/zh_CN/LC_MESSAGES/kwin_x11.mo share/locale/zh_TW/LC_MESSAGES/kcm_animations_x11.mo share/locale/zh_TW/LC_MESSAGES/kcm_kwin_effects_x11.mo share/locale/zh_TW/LC_MESSAGES/kcm_kwin_scripts_x11.mo share/locale/zh_TW/LC_MESSAGES/kcm_kwin_virtualdesktops_x11.mo share/locale/zh_TW/LC_MESSAGES/kcm_kwindecoration_x11.mo share/locale/zh_TW/LC_MESSAGES/kcm_kwinrules_x11.mo share/locale/zh_TW/LC_MESSAGES/kcm_kwintabbox_x11.mo share/locale/zh_TW/LC_MESSAGES/kcmkwincommon_x11.mo share/locale/zh_TW/LC_MESSAGES/kcmkwincompositing_x11.mo share/locale/zh_TW/LC_MESSAGES/kcmkwinscreenedges_x11.mo share/locale/zh_TW/LC_MESSAGES/kcmkwm_x11.mo share/locale/zh_TW/LC_MESSAGES/kwin_x11.mo share/qlogging-categories6/org_kde_kwin_x11.categories diff --git a/x11-wm/plasma6-kwin/Makefile b/x11-wm/plasma6-kwin/Makefile index 083a1890c721..6685a02e253f 100644 --- a/x11-wm/plasma6-kwin/Makefile +++ b/x11-wm/plasma6-kwin/Makefile @@ -1,60 +1,55 @@ PORTNAME= kwin DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 3 CATEGORIES= x11-wm kde kde-plasma -PATCH_SITES= https://invent.kde.org/plasma/kwin/-/commit/ -PATCHFILES= f79af348ed9f18bc30417df4bfe539383fd9fa77.patch:-p1 COMMENT= Easy to use, but flexible, Wayland Compositor MAINTAINER= kde@FreeBSD.org BUILD_DEPENDS= ${LOCALBASE}/include/linux/input.h:devel/evdev-proto \ hwdata>0:misc/hwdata \ wayland-protocols>0:graphics/wayland-protocols LIB_DEPENDS= libdisplay-info.so:sysutils/libdisplay-info \ libdrm.so:graphics/libdrm \ libepoxy.so:graphics/libepoxy \ - libfontconfig.so:x11-fonts/fontconfig \ - libfreetype.so:print/freetype2 \ libinput.so:x11/libinput \ liblcms2.so:graphics/lcms2 \ libpipewire-0.3.so:multimedia/pipewire \ libqaccessibilityclient-qt6.so:accessibility/libqaccessibilityclient@qt6 \ libudev.so:devel/libudev-devd \ libwayland-client.so:graphics/wayland \ libxcb-icccm.so:x11/xcb-util-wm \ libxcb-keysyms.so:x11/xcb-util-keysyms \ libxcvt.so:x11/libxcvt \ libxkbcommon.so:x11/libxkbcommon RUN_DEPENDS= hwdata>0:misc/hwdata \ Xwayland:x11-servers/xwayland USES= cmake gettext gl kde:6 pkgconfig python qt:6 shebangfix tar:xz \ xorg USE_GL= egl gbm gl opengl USE_KDE= auth colorscheme config \ coreaddons crash dbusaddons decoration \ globalaccel globalacceld guiaddons holidays i18n idletime kcmutils \ kdeclarative knighttime kpipewire kscreenlocker libplasma newstuff \ notifications package runner service svg wayland widgetsaddons \ windowsystem xmlgui \ ecm:build plasma-wayland-protocols:build \ aurorae:run breeze:run USE_QT= base declarative multimedia sensors tools wayland USE_XORG= ice sm x11 xcb xext xi DATADIR= ${PREFIX}/share/kwin-wayland BINARY_ALIAS= python3=${PYTHON_CMD} SHEBANG_FILES= src/plugins/strip-effect-metadata.py CONFLICTS_INSTALL= theseus-ship # bin/kwin_wayland OPTIONS_DEFINE= EI OPTIONS_DEFAULT= EI OPTIONS_SUB= yes EI_DESC= Emulated input for Wayland EI_LIB_DEPENDS= libei.so:x11/libei EI_CMAKE_BOOL= KWIN_BUILD_EIS .include diff --git a/x11-wm/plasma6-kwin/distinfo b/x11-wm/plasma6-kwin/distinfo index 770a666f5e7a..c2fd46de8d33 100644 --- a/x11-wm/plasma6-kwin/distinfo +++ b/x11-wm/plasma6-kwin/distinfo @@ -1,5 +1,3 @@ -TIMESTAMP = 1769517581 -SHA256 (KDE/plasma/6.5.5/kwin-6.5.5.tar.xz) = fbad845044231174ca7aad45572d1713d1b6f65289d94cac24776a103f051e46 -SIZE (KDE/plasma/6.5.5/kwin-6.5.5.tar.xz) = 8803548 -SHA256 (KDE/plasma/6.5.5/f79af348ed9f18bc30417df4bfe539383fd9fa77.patch) = 75d194ed2a3ddcabad010844319572b1cec17d34b603f9cdb498fd51f33ff42d -SIZE (KDE/plasma/6.5.5/f79af348ed9f18bc30417df4bfe539383fd9fa77.patch) = 2695 +TIMESTAMP = 1771162218 +SHA256 (KDE/plasma/6.6.0/kwin-6.6.0.tar.xz) = 35134fcfb64d01904cdcd25aea8e90c68c37973a088971e4d678acfdc5020914 +SIZE (KDE/plasma/6.6.0/kwin-6.6.0.tar.xz) = 8879648 diff --git a/x11-wm/plasma6-kwin/pkg-plist b/x11-wm/plasma6-kwin/pkg-plist index 73e4c59b9986..b5e6e3ec9b6c 100644 --- a/x11-wm/plasma6-kwin/pkg-plist +++ b/x11-wm/plasma6-kwin/pkg-plist @@ -1,1733 +1,1740 @@ bin/kwin_wayland bin/kwin_wayland_wrapper bin/kwindowprop include/kwin/a11ykeyboardmonitor.h include/kwin/activities.h include/kwin/appmenu.h include/kwin/atoms.h include/kwin/client_machine.h include/kwin/compositor.h include/kwin/config-kwin.h +include/kwin/core/backendoutput.h include/kwin/core/colorlut3d.h include/kwin/core/colorpipeline.h include/kwin/core/colorpipelinestage.h include/kwin/core/colorspace.h include/kwin/core/colortransformation.h include/kwin/core/drmdevice.h include/kwin/core/gbmgraphicsbufferallocator.h include/kwin/core/graphicsbuffer.h include/kwin/core/graphicsbufferallocator.h include/kwin/core/graphicsbufferview.h include/kwin/core/iccprofile.h include/kwin/core/inputbackend.h include/kwin/core/inputdevice.h include/kwin/core/output.h include/kwin/core/outputbackend.h include/kwin/core/outputconfiguration.h include/kwin/core/outputlayer.h include/kwin/core/pixelgrid.h +include/kwin/core/rect.h +include/kwin/core/region.h include/kwin/core/renderbackend.h include/kwin/core/renderjournal.h include/kwin/core/renderloop.h include/kwin/core/renderloop_p.h include/kwin/core/rendertarget.h include/kwin/core/renderviewport.h include/kwin/core/session.h include/kwin/core/session_consolekit.h include/kwin/core/session_logind.h include/kwin/core/session_noop.h include/kwin/core/shmgraphicsbufferallocator.h include/kwin/cursor.h include/kwin/cursorsource.h include/kwin/dbusinterface.h include/kwin/debug_console.h include/kwin/effect/animationeffect.h include/kwin/effect/effect.h include/kwin/effect/effecthandler.h include/kwin/effect/effecttogglablestate.h include/kwin/effect/effectwindow.h include/kwin/effect/globals.h include/kwin/effect/offscreeneffect.h include/kwin/effect/offscreenquickview.h include/kwin/effect/quickeffect.h include/kwin/effect/timeline.h include/kwin/effect/xcb.h include/kwin/focuschain.h include/kwin/ftrace.h include/kwin/gestures.h include/kwin/globalshortcuts.h include/kwin/group.h include/kwin/idle_inhibition.h include/kwin/idledetector.h include/kwin/input.h include/kwin/input_event.h include/kwin/input_event_spy.h include/kwin/inputmethod.h include/kwin/inputpanelv1integration.h include/kwin/inputpanelv1window.h include/kwin/internalwindow.h include/kwin/keyboard_input.h include/kwin/keyboard_layout.h include/kwin/keyboard_layout_switching.h include/kwin/keyboard_repeat.h include/kwin/killwindow.h include/kwin/kscreenintegration.h include/kwin/kwin_export.h include/kwin/layershellv1integration.h include/kwin/layershellv1window.h include/kwin/lidswitchtracker.h include/kwin/main.h include/kwin/mousebuttons.h include/kwin/netinfo.h include/kwin/onscreennotification.h include/kwin/opengl/abstract_opengl_context_attribute_builder.h include/kwin/opengl/egl_context_attribute_builder.h include/kwin/opengl/eglcontext.h include/kwin/opengl/egldisplay.h include/kwin/opengl/eglimagetexture.h include/kwin/opengl/eglnativefence.h include/kwin/opengl/eglswapchain.h include/kwin/opengl/eglutils_p.h include/kwin/opengl/glframebuffer.h include/kwin/opengl/gllut.h include/kwin/opengl/gllut3D.h include/kwin/opengl/glplatform.h include/kwin/opengl/glrendertimequery.h include/kwin/opengl/glshader.h include/kwin/opengl/glshadermanager.h include/kwin/opengl/gltexture.h include/kwin/opengl/gltexture_p.h include/kwin/opengl/glutils.h include/kwin/opengl/glvertexbuffer.h include/kwin/options.h include/kwin/osd.h include/kwin/outline.h include/kwin/outputconfigurationstore.h include/kwin/placeholderoutput.h include/kwin/placement.h include/kwin/placementtracker.h include/kwin/plugin.h include/kwin/pluginmanager.h include/kwin/pointer_input.h include/kwin/rulebooksettings.h include/kwin/rules.h include/kwin/scene/borderoutline.h include/kwin/scene/borderradius.h include/kwin/scene/cursoritem.h include/kwin/scene/decorationitem.h include/kwin/scene/dndiconitem.h include/kwin/scene/imageitem.h include/kwin/scene/item.h include/kwin/scene/itemgeometry.h include/kwin/scene/itemrenderer.h include/kwin/scene/itemrenderer_opengl.h include/kwin/scene/itemrenderer_qpainter.h include/kwin/scene/outlinedborderitem.h include/kwin/scene/rootitem.h include/kwin/scene/scene.h include/kwin/scene/shadowitem.h include/kwin/scene/surfaceitem.h include/kwin/scene/surfaceitem_internal.h include/kwin/scene/surfaceitem_wayland.h include/kwin/scene/windowitem.h include/kwin/scene/workspacescene.h include/kwin/screenedge.h include/kwin/screenedgegestures.h include/kwin/shadow.h include/kwin/sm.h include/kwin/tablet_input.h include/kwin/tabletmodemanager.h include/kwin/touch_input.h include/kwin/useractions.h include/kwin/utils/c_ptr.h include/kwin/utils/common.h include/kwin/utils/cursortheme.h include/kwin/utils/damagejournal.h include/kwin/utils/drm_format_helper.h include/kwin/utils/edid.h include/kwin/utils/executable_path.h include/kwin/utils/filedescriptor.h include/kwin/utils/gravity.h include/kwin/utils/kernel.h include/kwin/utils/memorymap.h include/kwin/utils/orientationsensor.h include/kwin/utils/ramfile.h include/kwin/utils/realtime.h include/kwin/utils/resource.h +include/kwin/utils/serial.h include/kwin/utils/serviceutils.h include/kwin/utils/softwarevsyncmonitor.h include/kwin/utils/subsurfacemonitor.h include/kwin/utils/udev.h include/kwin/utils/version.h include/kwin/utils/vsyncmonitor.h include/kwin/utils/xcbutils.h include/kwin/virtualdesktops.h include/kwin/virtualdesktopsdbustypes.h include/kwin/virtualkeyboard_dbus.h include/kwin/wayland/alphamodifier_v1.h include/kwin/wayland/appmenu.h include/kwin/wayland/blur.h include/kwin/wayland/clientconnection.h include/kwin/wayland/colormanagement_v1.h include/kwin/wayland/colorrepresentation_v1.h include/kwin/wayland/compositor.h include/kwin/wayland/contenttype_v1.h include/kwin/wayland/contrast.h include/kwin/wayland/cursorshape_v1.h include/kwin/wayland/datacontroldevice_v1.h include/kwin/wayland/datacontroldevicemanager_v1.h include/kwin/wayland/datacontroloffer_v1.h include/kwin/wayland/datacontrolsource_v1.h include/kwin/wayland/datadevice.h include/kwin/wayland/datadevicemanager.h include/kwin/wayland/dataoffer.h include/kwin/wayland/datasource.h include/kwin/wayland/display.h include/kwin/wayland/dpms.h include/kwin/wayland/drmlease_v1.h include/kwin/wayland/externalbrightness_v1.h include/kwin/wayland/fifo_v1.h include/kwin/wayland/fractionalscale_v1.h include/kwin/wayland/frog_colormanagement_v1.h include/kwin/wayland/idle.h include/kwin/wayland/idleinhibit_v1.h include/kwin/wayland/idlenotify_v1.h include/kwin/wayland/inputmethod_v1.h include/kwin/wayland/keyboard.h include/kwin/wayland/keyboard_shortcuts_inhibit_v1.h include/kwin/wayland/keystate.h include/kwin/wayland/layershell_v1.h include/kwin/wayland/linux_drm_syncobj_v1.h include/kwin/wayland/lockscreen_overlay_v1.h include/kwin/wayland/output.h include/kwin/wayland/output_order_v1.h include/kwin/wayland/outputdevice_v2.h include/kwin/wayland/outputmanagement_v2.h include/kwin/wayland/plasmashell.h include/kwin/wayland/plasmavirtualdesktop.h include/kwin/wayland/plasmawindowmanagement.h include/kwin/wayland/pointer.h include/kwin/wayland/pointerconstraints_v1.h include/kwin/wayland/pointergestures_v1.h include/kwin/wayland/pointerwarp_v1.h include/kwin/wayland/presentationtime.h include/kwin/wayland/primaryselectiondevice_v1.h include/kwin/wayland/primaryselectiondevicemanager_v1.h include/kwin/wayland/primaryselectionoffer_v1.h include/kwin/wayland/primaryselectionsource_v1.h include/kwin/wayland/quirks.h include/kwin/wayland/qwayland-server-alpha-modifier-v1.h include/kwin/wayland/qwayland-server-color-management-v1.h include/kwin/wayland/qwayland-server-color-representation-v1.h include/kwin/wayland/qwayland-server-content-type-v1.h include/kwin/wayland/qwayland-server-fifo-v1.h include/kwin/wayland/qwayland-server-frog-color-management-v1.h include/kwin/wayland/qwayland-server-kde-external-brightness-v1.h include/kwin/wayland/qwayland-server-linux-drm-syncobj-v1.h include/kwin/wayland/qwayland-server-pointer-warp-v1.h include/kwin/wayland/qwayland-server-presentation-time.h include/kwin/wayland/qwayland-server-single-pixel-buffer-v1.h include/kwin/wayland/qwayland-server-xdg-toplevel-tag-v1.h include/kwin/wayland/relativepointer_v1.h include/kwin/wayland/screencast_v1.h include/kwin/wayland/screenedge_v1.h include/kwin/wayland/seat.h include/kwin/wayland/securitycontext_v1.h include/kwin/wayland/server_decoration.h include/kwin/wayland/server_decoration_palette.h include/kwin/wayland/shadow.h include/kwin/wayland/singlepixelbuffer.h include/kwin/wayland/slide.h include/kwin/wayland/subcompositor.h include/kwin/wayland/surface.h include/kwin/wayland/tablet_v2.h include/kwin/wayland/tearingcontrol_v1.h include/kwin/wayland/textinput.h include/kwin/wayland/textinput_v1.h include/kwin/wayland/textinput_v2.h include/kwin/wayland/textinput_v3.h include/kwin/wayland/touch.h include/kwin/wayland/viewporter.h include/kwin/wayland/wayland-alpha-modifier-v1-server-protocol.h include/kwin/wayland/wayland-color-management-v1-server-protocol.h include/kwin/wayland/wayland-color-representation-v1-server-protocol.h include/kwin/wayland/wayland-content-type-v1-server-protocol.h include/kwin/wayland/wayland-fifo-v1-server-protocol.h include/kwin/wayland/wayland-frog-color-management-v1-server-protocol.h include/kwin/wayland/wayland-kde-external-brightness-v1-server-protocol.h include/kwin/wayland/wayland-linux-drm-syncobj-v1-server-protocol.h include/kwin/wayland/wayland-pointer-warp-v1-server-protocol.h include/kwin/wayland/wayland-presentation-time-server-protocol.h include/kwin/wayland/wayland-single-pixel-buffer-v1-server-protocol.h include/kwin/wayland/wayland-xdg-toplevel-tag-v1-server-protocol.h include/kwin/wayland/xdgactivation_v1.h include/kwin/wayland/xdgdecoration_v1.h include/kwin/wayland/xdgdialog_v1.h include/kwin/wayland/xdgforeign_v2.h include/kwin/wayland/xdgoutput_v1.h include/kwin/wayland/xdgsession_v1.h include/kwin/wayland/xdgshell.h include/kwin/wayland/xdgsystembell_v1.h include/kwin/wayland/xdgtoplevelicon_v1.h include/kwin/wayland/xdgtopleveltag_v1.h include/kwin/wayland/xwaylandkeyboardgrab_v1.h include/kwin/wayland/xwaylandshell_v1.h include/kwin/wayland_server.h include/kwin/waylandshellintegration.h include/kwin/waylandwindow.h include/kwin/window.h include/kwin/workspace.h include/kwin/x11eventfilter.h include/kwin/x11window.h include/kwin/xdgactivationv1.h include/kwin/xdgshellintegration.h include/kwin/xdgshellwindow.h include/kwin/xkb.h lib/cmake/KWin/FindLibdrm.cmake lib/cmake/KWin/KWinConfig.cmake lib/cmake/KWin/KWinConfigVersion.cmake lib/cmake/KWin/KWinTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KWin/KWinTargets.cmake lib/cmake/KWinDBusInterface/KWinDBusInterfaceConfig.cmake lib/kconf_update_bin/kwin-6.0-delete-desktop-switching-shortcuts lib/kconf_update_bin/kwin-6.0-remove-breeze-tabbox-default lib/kconf_update_bin/kwin-6.0-reset-active-mouse-screen lib/kconf_update_bin/kwin-6.1-remove-gridview-expose-shortcuts lib/kconf_update_bin/kwin-6.5-showpaint-changes lib/kconf_update_bin/kwin5_update_default_rules lib/libexec/kwin-applywindowdecoration lib/libexec/kwin-tabbox-preview lib/libexec/kwin_killer_helper lib/libkcmkwincommon.so.6 lib/libkcmkwincommon.so.%%KDE_PLASMA_VERSION%% lib/libkwin.so lib/libkwin.so.6 lib/libkwin.so.%%KDE_PLASMA_VERSION%% %%QT_PLUGINDIR%%/kf6/packagestructure/kwin_aurorae.so %%QT_PLUGINDIR%%/kf6/packagestructure/kwin_decoration.so %%QT_PLUGINDIR%%/kf6/packagestructure/kwin_effect.so %%QT_PLUGINDIR%%/kf6/packagestructure/kwin_scripts.so %%QT_PLUGINDIR%%/kf6/packagestructure/kwin_windowswitcher.so %%QT_PLUGINDIR%%/kwin/effects/configs/kcm_kwin4_genericscripted.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_blur_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_diminactive_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_glide_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_hidecursor_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_magiclamp_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_mouseclick_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_mousemark_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_overview_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_slide_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_thumbnailaside_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_tileseditor_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_trackmouse_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_windowview_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_wobblywindows_config.so %%QT_PLUGINDIR%%/kwin/plugins/BounceKeysPlugin.so %%QT_PLUGINDIR%%/kwin/plugins/KeyNotificationPlugin.so %%QT_PLUGINDIR%%/kwin/plugins/MouseKeysPlugin.so +%%QT_PLUGINDIR%%/kwin/plugins/SlowKeysPlugin.so %%QT_PLUGINDIR%%/kwin/plugins/StickyKeysPlugin.so %%QT_PLUGINDIR%%/kwin/plugins/TouchpadShortcutsPlugin.so %%QT_PLUGINDIR%%/kwin/plugins/buttonsrebind.so %%EI%%%%QT_PLUGINDIR%%/kwin/plugins/eis.so +%%QT_PLUGINDIR%%/kwin/plugins/gamecontroller.so %%QT_PLUGINDIR%%/kwin/plugins/krunnerintegration.so %%QT_PLUGINDIR%%/kwin/plugins/nightlight.so %%QT_PLUGINDIR%%/kwin/plugins/screencast.so %%QT_PLUGINDIR%%/kwin/plugins/screenshot.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_animations.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_kwin_effects.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_kwin_scripts.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_kwin_virtualdesktops.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_kwindecoration.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_kwinrules.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_kwinxwayland.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_virtualkeyboard.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_kwinoptions.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_kwinscreenedges.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_kwintabbox.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_kwintouchscreen.so %%QT_QMLDIR%%/org/kde/kwin/private/effects/WindowHeap.qml %%QT_QMLDIR%%/org/kde/kwin/private/effects/WindowHeapDelegate.qml %%QT_QMLDIR%%/org/kde/kwin/private/effects/effectsplugin.qmltypes %%QT_QMLDIR%%/org/kde/kwin/private/effects/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/kwin/private/effects/libeffectsplugin.so %%QT_QMLDIR%%/org/kde/kwin/private/effects/qmldir %%QT_QMLDIR%%/org/kde/kwin/private/kdecoration/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/kwin/private/kdecoration/kdecorationprivatedeclarative.qmltypes %%QT_QMLDIR%%/org/kde/kwin/private/kdecoration/libkdecorationprivatedeclarative.so %%QT_QMLDIR%%/org/kde/kwin/private/kdecoration/qmldir @comment lib/systemd/user/plasma-kwin_wayland.service share/applications/kcm_animations.desktop share/applications/kcm_kwin_effects.desktop share/applications/kcm_kwin_scripts.desktop share/applications/kcm_kwin_virtualdesktops.desktop share/applications/kcm_kwindecoration.desktop share/applications/kcm_kwinoptions.desktop share/applications/kcm_kwinrules.desktop share/applications/kcm_kwintabbox.desktop share/applications/kcm_kwinxwayland.desktop share/applications/kcm_virtualkeyboard.desktop share/applications/org.kde.kwin.killer.desktop share/config.kcfg/kwin.kcfg share/config.kcfg/kwindecorationsettings.kcfg share/config.kcfg/nightlightsettings.kcfg share/config.kcfg/virtualdesktopssettings.kcfg share/dbus-1/interfaces/org.kde.KWin.NightLight.xml share/dbus-1/interfaces/org.kde.KWin.Plugins.xml share/dbus-1/interfaces/org.kde.KWin.TabletModeManager.xml share/dbus-1/interfaces/org.kde.KWin.VirtualDesktopManager.xml share/dbus-1/interfaces/org.kde.KWin.xml share/dbus-1/interfaces/org.kde.kwin.Compositing.xml share/dbus-1/interfaces/org.kde.kwin.Effects.xml share/dbus-1/interfaces/org.kde.kwin.InputDevice.xml share/dbus-1/interfaces/org.kde.kwin.VirtualKeyboard.xml share/doc/HTML/ca/kcontrol/desktop/index.cache.bz2 share/doc/HTML/ca/kcontrol/desktop/index.docbook share/doc/HTML/ca/kcontrol/kwindecoration/button.png share/doc/HTML/ca/kcontrol/kwindecoration/decoration.png share/doc/HTML/ca/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/ca/kcontrol/kwindecoration/index.docbook share/doc/HTML/ca/kcontrol/kwindecoration/main.png share/doc/HTML/ca/kcontrol/kwineffects/index.cache.bz2 share/doc/HTML/ca/kcontrol/kwineffects/index.docbook share/doc/HTML/ca/kcontrol/kwinscreenedges/index.cache.bz2 share/doc/HTML/ca/kcontrol/kwinscreenedges/index.docbook share/doc/HTML/ca/kcontrol/kwintabbox/index.cache.bz2 share/doc/HTML/ca/kcontrol/kwintabbox/index.docbook share/doc/HTML/ca/kcontrol/kwintouchscreen/index.cache.bz2 share/doc/HTML/ca/kcontrol/kwintouchscreen/index.docbook share/doc/HTML/ca/kcontrol/kwinvirtualkeyboard/index.cache.bz2 share/doc/HTML/ca/kcontrol/kwinvirtualkeyboard/index.docbook share/doc/HTML/ca/kcontrol/windowbehaviour/index.cache.bz2 share/doc/HTML/ca/kcontrol/windowbehaviour/index.docbook share/doc/HTML/ca/kcontrol/windowspecific/index.cache.bz2 share/doc/HTML/ca/kcontrol/windowspecific/index.docbook share/doc/HTML/de/kcontrol/desktop/index.cache.bz2 share/doc/HTML/de/kcontrol/desktop/index.docbook share/doc/HTML/de/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/de/kcontrol/kwindecoration/index.docbook share/doc/HTML/de/kcontrol/kwineffects/index.cache.bz2 share/doc/HTML/de/kcontrol/kwineffects/index.docbook share/doc/HTML/de/kcontrol/kwinscreenedges/index.cache.bz2 share/doc/HTML/de/kcontrol/kwinscreenedges/index.docbook share/doc/HTML/de/kcontrol/kwintabbox/index.cache.bz2 share/doc/HTML/de/kcontrol/kwintabbox/index.docbook share/doc/HTML/de/kcontrol/kwintouchscreen/index.cache.bz2 share/doc/HTML/de/kcontrol/kwintouchscreen/index.docbook share/doc/HTML/de/kcontrol/kwinvirtualkeyboard/index.cache.bz2 share/doc/HTML/de/kcontrol/kwinvirtualkeyboard/index.docbook share/doc/HTML/de/kcontrol/windowbehaviour/index.cache.bz2 share/doc/HTML/de/kcontrol/windowbehaviour/index.docbook share/doc/HTML/de/kcontrol/windowspecific/index.cache.bz2 share/doc/HTML/de/kcontrol/windowspecific/index.docbook share/doc/HTML/en/kcontrol/desktop/index.cache.bz2 share/doc/HTML/en/kcontrol/desktop/index.docbook share/doc/HTML/en/kcontrol/kwindecoration/button.png share/doc/HTML/en/kcontrol/kwindecoration/configure.png share/doc/HTML/en/kcontrol/kwindecoration/decoration.png share/doc/HTML/en/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/en/kcontrol/kwindecoration/index.docbook share/doc/HTML/en/kcontrol/kwindecoration/main.png share/doc/HTML/en/kcontrol/kwineffects/configure-effects.png share/doc/HTML/en/kcontrol/kwineffects/dialog-information.png share/doc/HTML/en/kcontrol/kwineffects/index.cache.bz2 share/doc/HTML/en/kcontrol/kwineffects/index.docbook share/doc/HTML/en/kcontrol/kwineffects/video.png share/doc/HTML/en/kcontrol/kwinscreenedges/index.cache.bz2 share/doc/HTML/en/kcontrol/kwinscreenedges/index.docbook share/doc/HTML/en/kcontrol/kwintabbox/index.cache.bz2 share/doc/HTML/en/kcontrol/kwintabbox/index.docbook share/doc/HTML/en/kcontrol/kwintabbox/taskswitcher.png share/doc/HTML/en/kcontrol/kwintouchscreen/index.cache.bz2 share/doc/HTML/en/kcontrol/kwintouchscreen/index.docbook share/doc/HTML/en/kcontrol/kwinvirtualkeyboard/index.cache.bz2 share/doc/HTML/en/kcontrol/kwinvirtualkeyboard/index.docbook share/doc/HTML/en/kcontrol/windowbehaviour/index.cache.bz2 share/doc/HTML/en/kcontrol/windowbehaviour/index.docbook share/doc/HTML/en/kcontrol/windowspecific/Face-smile.png share/doc/HTML/en/kcontrol/windowspecific/akgregator-info.png share/doc/HTML/en/kcontrol/windowspecific/akregator-attributes.png share/doc/HTML/en/kcontrol/windowspecific/akregator-fav.png share/doc/HTML/en/kcontrol/windowspecific/config-win-behavior.png share/doc/HTML/en/kcontrol/windowspecific/emacs-attribute.png share/doc/HTML/en/kcontrol/windowspecific/emacs-info.png share/doc/HTML/en/kcontrol/windowspecific/focus-stealing-pop2top-attribute.png share/doc/HTML/en/kcontrol/windowspecific/index.cache.bz2 share/doc/HTML/en/kcontrol/windowspecific/index.docbook share/doc/HTML/en/kcontrol/windowspecific/knotes-attribute.png share/doc/HTML/en/kcontrol/windowspecific/knotes-info.png share/doc/HTML/en/kcontrol/windowspecific/kopete-attribute-2.png share/doc/HTML/en/kcontrol/windowspecific/kopete-chat-attribute.png share/doc/HTML/en/kcontrol/windowspecific/kopete-chat-info.png share/doc/HTML/en/kcontrol/windowspecific/kopete-info.png share/doc/HTML/en/kcontrol/windowspecific/kwin-detect-window.png share/doc/HTML/en/kcontrol/windowspecific/kwin-kopete-rules.png share/doc/HTML/en/kcontrol/windowspecific/kwin-rule-editor.png share/doc/HTML/en/kcontrol/windowspecific/kwin-rules-main-n-akregator.png share/doc/HTML/en/kcontrol/windowspecific/kwin-rules-main.png share/doc/HTML/en/kcontrol/windowspecific/kwin-rules-ordering.png share/doc/HTML/en/kcontrol/windowspecific/kwin-window-attributes.png share/doc/HTML/en/kcontrol/windowspecific/kwin-window-matching.png share/doc/HTML/en/kcontrol/windowspecific/pager-4-desktops.png share/doc/HTML/en/kcontrol/windowspecific/tbird-compose-attribute.png share/doc/HTML/en/kcontrol/windowspecific/tbird-compose-info.png share/doc/HTML/en/kcontrol/windowspecific/tbird-main-attribute.png share/doc/HTML/en/kcontrol/windowspecific/tbird-main-info.png share/doc/HTML/en/kcontrol/windowspecific/tbird-reminder-attribute-2.png share/doc/HTML/en/kcontrol/windowspecific/tbird-reminder-info.png share/doc/HTML/en/kcontrol/windowspecific/window-matching-emacs.png share/doc/HTML/en/kcontrol/windowspecific/window-matching-init.png share/doc/HTML/en/kcontrol/windowspecific/window-matching-knotes.png share/doc/HTML/en/kcontrol/windowspecific/window-matching-kopete-chat.png share/doc/HTML/en/kcontrol/windowspecific/window-matching-kopete.png share/doc/HTML/en/kcontrol/windowspecific/window-matching-ready-akregator.png share/doc/HTML/en/kcontrol/windowspecific/window-matching-tbird-compose.png share/doc/HTML/en/kcontrol/windowspecific/window-matching-tbird-main.png share/doc/HTML/en/kcontrol/windowspecific/window-matching-tbird-reminder.png share/doc/HTML/es/kcontrol/desktop/index.cache.bz2 share/doc/HTML/es/kcontrol/desktop/index.docbook share/doc/HTML/es/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/es/kcontrol/kwindecoration/index.docbook share/doc/HTML/es/kcontrol/kwineffects/index.cache.bz2 share/doc/HTML/es/kcontrol/kwineffects/index.docbook share/doc/HTML/es/kcontrol/kwinscreenedges/index.cache.bz2 share/doc/HTML/es/kcontrol/kwinscreenedges/index.docbook share/doc/HTML/es/kcontrol/kwintouchscreen/index.cache.bz2 share/doc/HTML/es/kcontrol/kwintouchscreen/index.docbook share/doc/HTML/es/kcontrol/kwinvirtualkeyboard/index.cache.bz2 share/doc/HTML/es/kcontrol/kwinvirtualkeyboard/index.docbook share/doc/HTML/fr/kcontrol/desktop/index.cache.bz2 share/doc/HTML/fr/kcontrol/desktop/index.docbook share/doc/HTML/fr/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/fr/kcontrol/kwindecoration/index.docbook share/doc/HTML/fr/kcontrol/kwinscreenedges/index.cache.bz2 share/doc/HTML/fr/kcontrol/kwinscreenedges/index.docbook share/doc/HTML/fr/kcontrol/kwintabbox/index.cache.bz2 share/doc/HTML/fr/kcontrol/kwintabbox/index.docbook share/doc/HTML/fr/kcontrol/windowspecific/index.cache.bz2 share/doc/HTML/fr/kcontrol/windowspecific/index.docbook share/doc/HTML/id/kcontrol/desktop/index.cache.bz2 share/doc/HTML/id/kcontrol/desktop/index.docbook share/doc/HTML/id/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/id/kcontrol/kwindecoration/index.docbook share/doc/HTML/id/kcontrol/kwineffects/index.cache.bz2 share/doc/HTML/id/kcontrol/kwineffects/index.docbook share/doc/HTML/id/kcontrol/kwinscreenedges/index.cache.bz2 share/doc/HTML/id/kcontrol/kwinscreenedges/index.docbook share/doc/HTML/id/kcontrol/kwintabbox/index.cache.bz2 share/doc/HTML/id/kcontrol/kwintabbox/index.docbook share/doc/HTML/id/kcontrol/windowbehaviour/index.cache.bz2 share/doc/HTML/id/kcontrol/windowbehaviour/index.docbook share/doc/HTML/id/kcontrol/windowspecific/index.cache.bz2 share/doc/HTML/id/kcontrol/windowspecific/index.docbook share/doc/HTML/it/kcontrol/desktop/index.cache.bz2 share/doc/HTML/it/kcontrol/desktop/index.docbook share/doc/HTML/it/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/it/kcontrol/kwindecoration/index.docbook share/doc/HTML/it/kcontrol/kwineffects/index.cache.bz2 share/doc/HTML/it/kcontrol/kwineffects/index.docbook share/doc/HTML/it/kcontrol/kwinscreenedges/index.cache.bz2 share/doc/HTML/it/kcontrol/kwinscreenedges/index.docbook share/doc/HTML/it/kcontrol/kwintabbox/index.cache.bz2 share/doc/HTML/it/kcontrol/kwintabbox/index.docbook share/doc/HTML/it/kcontrol/kwintouchscreen/index.cache.bz2 share/doc/HTML/it/kcontrol/kwintouchscreen/index.docbook share/doc/HTML/it/kcontrol/kwinvirtualkeyboard/index.cache.bz2 share/doc/HTML/it/kcontrol/kwinvirtualkeyboard/index.docbook share/doc/HTML/it/kcontrol/windowbehaviour/index.cache.bz2 share/doc/HTML/it/kcontrol/windowbehaviour/index.docbook share/doc/HTML/it/kcontrol/windowspecific/index.cache.bz2 share/doc/HTML/it/kcontrol/windowspecific/index.docbook share/doc/HTML/nl/kcontrol/desktop/index.cache.bz2 share/doc/HTML/nl/kcontrol/desktop/index.docbook share/doc/HTML/nl/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/nl/kcontrol/kwindecoration/index.docbook share/doc/HTML/nl/kcontrol/kwineffects/index.cache.bz2 share/doc/HTML/nl/kcontrol/kwineffects/index.docbook share/doc/HTML/nl/kcontrol/kwinscreenedges/index.cache.bz2 share/doc/HTML/nl/kcontrol/kwinscreenedges/index.docbook share/doc/HTML/nl/kcontrol/kwintabbox/index.cache.bz2 share/doc/HTML/nl/kcontrol/kwintabbox/index.docbook share/doc/HTML/nl/kcontrol/kwintouchscreen/index.cache.bz2 share/doc/HTML/nl/kcontrol/kwintouchscreen/index.docbook share/doc/HTML/nl/kcontrol/kwinvirtualkeyboard/index.cache.bz2 share/doc/HTML/nl/kcontrol/kwinvirtualkeyboard/index.docbook share/doc/HTML/nl/kcontrol/windowbehaviour/index.cache.bz2 share/doc/HTML/nl/kcontrol/windowbehaviour/index.docbook share/doc/HTML/nl/kcontrol/windowspecific/index.cache.bz2 share/doc/HTML/nl/kcontrol/windowspecific/index.docbook share/doc/HTML/pt/kcontrol/desktop/index.cache.bz2 share/doc/HTML/pt/kcontrol/desktop/index.docbook share/doc/HTML/pt/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/pt/kcontrol/kwindecoration/index.docbook share/doc/HTML/pt/kcontrol/kwineffects/index.cache.bz2 share/doc/HTML/pt/kcontrol/kwineffects/index.docbook share/doc/HTML/pt/kcontrol/kwinscreenedges/index.cache.bz2 share/doc/HTML/pt/kcontrol/kwinscreenedges/index.docbook share/doc/HTML/pt/kcontrol/kwintabbox/index.cache.bz2 share/doc/HTML/pt/kcontrol/kwintabbox/index.docbook share/doc/HTML/pt/kcontrol/windowbehaviour/index.cache.bz2 share/doc/HTML/pt/kcontrol/windowbehaviour/index.docbook share/doc/HTML/pt/kcontrol/windowspecific/index.cache.bz2 share/doc/HTML/pt/kcontrol/windowspecific/index.docbook share/doc/HTML/pt_BR/kcontrol/desktop/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/desktop/index.docbook share/doc/HTML/pt_BR/kcontrol/kwindecoration/configure.png share/doc/HTML/pt_BR/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/kwindecoration/index.docbook share/doc/HTML/pt_BR/kcontrol/kwineffects/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/kwineffects/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/kwintouchscreen/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/kwintouchscreen/index.docbook share/doc/HTML/pt_BR/kcontrol/kwinvirtualkeyboard/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/kwinvirtualkeyboard/index.docbook share/doc/HTML/pt_BR/kcontrol/windowbehaviour/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/windowbehaviour/index.docbook share/doc/HTML/pt_BR/kcontrol/windowspecific/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/windowspecific/index.docbook share/doc/HTML/ru/kcontrol/desktop/index.cache.bz2 share/doc/HTML/ru/kcontrol/desktop/index.docbook share/doc/HTML/ru/kcontrol/kwindecoration/button.png share/doc/HTML/ru/kcontrol/kwindecoration/configure.png share/doc/HTML/ru/kcontrol/kwindecoration/decoration.png share/doc/HTML/ru/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/ru/kcontrol/kwindecoration/index.docbook share/doc/HTML/ru/kcontrol/kwindecoration/main.png share/doc/HTML/ru/kcontrol/kwineffects/index.cache.bz2 share/doc/HTML/ru/kcontrol/kwineffects/index.docbook share/doc/HTML/ru/kcontrol/kwinscreenedges/index.cache.bz2 share/doc/HTML/ru/kcontrol/kwinscreenedges/index.docbook share/doc/HTML/ru/kcontrol/kwintabbox/index.cache.bz2 share/doc/HTML/ru/kcontrol/kwintabbox/index.docbook share/doc/HTML/ru/kcontrol/kwintouchscreen/index.cache.bz2 share/doc/HTML/ru/kcontrol/kwintouchscreen/index.docbook share/doc/HTML/ru/kcontrol/kwinvirtualkeyboard/index.cache.bz2 share/doc/HTML/ru/kcontrol/kwinvirtualkeyboard/index.docbook share/doc/HTML/ru/kcontrol/windowbehaviour/index.cache.bz2 share/doc/HTML/ru/kcontrol/windowbehaviour/index.docbook share/doc/HTML/ru/kcontrol/windowspecific/akgregator-info.png share/doc/HTML/ru/kcontrol/windowspecific/akregator-attributes.png share/doc/HTML/ru/kcontrol/windowspecific/akregator-fav.png share/doc/HTML/ru/kcontrol/windowspecific/config-win-behavior.png share/doc/HTML/ru/kcontrol/windowspecific/emacs-attribute.png share/doc/HTML/ru/kcontrol/windowspecific/emacs-info.png share/doc/HTML/ru/kcontrol/windowspecific/focus-stealing-pop2top-attribute.png share/doc/HTML/ru/kcontrol/windowspecific/index.cache.bz2 share/doc/HTML/ru/kcontrol/windowspecific/index.docbook share/doc/HTML/ru/kcontrol/windowspecific/knotes-attribute.png share/doc/HTML/ru/kcontrol/windowspecific/knotes-info.png share/doc/HTML/ru/kcontrol/windowspecific/kopete-attribute-2.png share/doc/HTML/ru/kcontrol/windowspecific/kopete-chat-attribute.png share/doc/HTML/ru/kcontrol/windowspecific/kopete-chat-info.png share/doc/HTML/ru/kcontrol/windowspecific/kopete-info.png share/doc/HTML/ru/kcontrol/windowspecific/kwin-detect-window.png share/doc/HTML/ru/kcontrol/windowspecific/kwin-kopete-rules.png share/doc/HTML/ru/kcontrol/windowspecific/kwin-rule-editor.png share/doc/HTML/ru/kcontrol/windowspecific/kwin-rules-main-n-akregator.png share/doc/HTML/ru/kcontrol/windowspecific/kwin-rules-main.png share/doc/HTML/ru/kcontrol/windowspecific/kwin-rules-ordering.png share/doc/HTML/ru/kcontrol/windowspecific/kwin-window-attributes.png share/doc/HTML/ru/kcontrol/windowspecific/kwin-window-matching.png share/doc/HTML/ru/kcontrol/windowspecific/tbird-compose-attribute.png share/doc/HTML/ru/kcontrol/windowspecific/tbird-compose-info.png share/doc/HTML/ru/kcontrol/windowspecific/tbird-main-attribute.png share/doc/HTML/ru/kcontrol/windowspecific/tbird-main-info.png share/doc/HTML/ru/kcontrol/windowspecific/tbird-reminder-attribute-2.png share/doc/HTML/ru/kcontrol/windowspecific/tbird-reminder-info.png share/doc/HTML/ru/kcontrol/windowspecific/window-matching-emacs.png share/doc/HTML/ru/kcontrol/windowspecific/window-matching-init.png share/doc/HTML/ru/kcontrol/windowspecific/window-matching-knotes.png share/doc/HTML/ru/kcontrol/windowspecific/window-matching-kopete-chat.png share/doc/HTML/ru/kcontrol/windowspecific/window-matching-kopete.png share/doc/HTML/ru/kcontrol/windowspecific/window-matching-ready-akregator.png share/doc/HTML/ru/kcontrol/windowspecific/window-matching-tbird-compose.png share/doc/HTML/ru/kcontrol/windowspecific/window-matching-tbird-main.png share/doc/HTML/ru/kcontrol/windowspecific/window-matching-tbird-reminder.png share/doc/HTML/sl/kcontrol/desktop/index.cache.bz2 share/doc/HTML/sl/kcontrol/desktop/index.docbook share/doc/HTML/sl/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/sl/kcontrol/kwindecoration/index.docbook share/doc/HTML/sl/kcontrol/kwineffects/index.cache.bz2 share/doc/HTML/sl/kcontrol/kwineffects/index.docbook share/doc/HTML/sl/kcontrol/kwinscreenedges/index.cache.bz2 share/doc/HTML/sl/kcontrol/kwinscreenedges/index.docbook share/doc/HTML/sl/kcontrol/kwintabbox/index.cache.bz2 share/doc/HTML/sl/kcontrol/kwintabbox/index.docbook share/doc/HTML/sl/kcontrol/kwintouchscreen/index.cache.bz2 share/doc/HTML/sl/kcontrol/kwintouchscreen/index.docbook share/doc/HTML/sl/kcontrol/kwinvirtualkeyboard/index.cache.bz2 share/doc/HTML/sl/kcontrol/kwinvirtualkeyboard/index.docbook share/doc/HTML/sl/kcontrol/windowbehaviour/index.cache.bz2 share/doc/HTML/sl/kcontrol/windowbehaviour/index.docbook share/doc/HTML/sl/kcontrol/windowspecific/index.cache.bz2 share/doc/HTML/sl/kcontrol/windowspecific/index.docbook share/doc/HTML/sr/kcontrol/desktop/index.cache.bz2 share/doc/HTML/sr/kcontrol/desktop/index.docbook share/doc/HTML/sr@latin/kcontrol/desktop/index.cache.bz2 share/doc/HTML/sr@latin/kcontrol/desktop/index.docbook share/doc/HTML/sv/kcontrol/desktop/index.cache.bz2 share/doc/HTML/sv/kcontrol/desktop/index.docbook share/doc/HTML/sv/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/sv/kcontrol/kwindecoration/index.docbook share/doc/HTML/sv/kcontrol/kwineffects/index.cache.bz2 share/doc/HTML/sv/kcontrol/kwineffects/index.docbook share/doc/HTML/sv/kcontrol/kwinscreenedges/index.cache.bz2 share/doc/HTML/sv/kcontrol/kwinscreenedges/index.docbook share/doc/HTML/sv/kcontrol/kwintabbox/index.cache.bz2 share/doc/HTML/sv/kcontrol/kwintabbox/index.docbook share/doc/HTML/sv/kcontrol/kwintouchscreen/index.cache.bz2 share/doc/HTML/sv/kcontrol/kwintouchscreen/index.docbook share/doc/HTML/sv/kcontrol/kwinvirtualkeyboard/index.cache.bz2 share/doc/HTML/sv/kcontrol/kwinvirtualkeyboard/index.docbook share/doc/HTML/sv/kcontrol/windowbehaviour/index.cache.bz2 share/doc/HTML/sv/kcontrol/windowbehaviour/index.docbook share/doc/HTML/sv/kcontrol/windowspecific/index.cache.bz2 share/doc/HTML/sv/kcontrol/windowspecific/index.docbook share/doc/HTML/tr/kcontrol/desktop/index.cache.bz2 share/doc/HTML/tr/kcontrol/desktop/index.docbook share/doc/HTML/tr/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/tr/kcontrol/kwindecoration/index.docbook share/doc/HTML/tr/kcontrol/kwineffects/index.cache.bz2 share/doc/HTML/tr/kcontrol/kwineffects/index.docbook share/doc/HTML/tr/kcontrol/kwinscreenedges/index.cache.bz2 share/doc/HTML/tr/kcontrol/kwinscreenedges/index.docbook share/doc/HTML/tr/kcontrol/kwintabbox/index.cache.bz2 share/doc/HTML/tr/kcontrol/kwintabbox/index.docbook share/doc/HTML/tr/kcontrol/kwintouchscreen/index.cache.bz2 share/doc/HTML/tr/kcontrol/kwintouchscreen/index.docbook share/doc/HTML/tr/kcontrol/kwinvirtualkeyboard/index.cache.bz2 share/doc/HTML/tr/kcontrol/kwinvirtualkeyboard/index.docbook share/doc/HTML/tr/kcontrol/windowbehaviour/index.cache.bz2 share/doc/HTML/tr/kcontrol/windowbehaviour/index.docbook share/doc/HTML/tr/kcontrol/windowspecific/index.cache.bz2 share/doc/HTML/tr/kcontrol/windowspecific/index.docbook share/doc/HTML/uk/kcontrol/desktop/index.cache.bz2 share/doc/HTML/uk/kcontrol/desktop/index.docbook share/doc/HTML/uk/kcontrol/kwindecoration/button.png share/doc/HTML/uk/kcontrol/kwindecoration/decoration.png share/doc/HTML/uk/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/uk/kcontrol/kwindecoration/index.docbook share/doc/HTML/uk/kcontrol/kwindecoration/main.png share/doc/HTML/uk/kcontrol/kwineffects/index.cache.bz2 share/doc/HTML/uk/kcontrol/kwineffects/index.docbook share/doc/HTML/uk/kcontrol/kwinscreenedges/index.cache.bz2 share/doc/HTML/uk/kcontrol/kwinscreenedges/index.docbook share/doc/HTML/uk/kcontrol/kwintabbox/index.cache.bz2 share/doc/HTML/uk/kcontrol/kwintabbox/index.docbook share/doc/HTML/uk/kcontrol/kwintouchscreen/index.cache.bz2 share/doc/HTML/uk/kcontrol/kwintouchscreen/index.docbook share/doc/HTML/uk/kcontrol/kwinvirtualkeyboard/index.cache.bz2 share/doc/HTML/uk/kcontrol/kwinvirtualkeyboard/index.docbook share/doc/HTML/uk/kcontrol/windowbehaviour/index.cache.bz2 share/doc/HTML/uk/kcontrol/windowbehaviour/index.docbook share/doc/HTML/uk/kcontrol/windowspecific/index.cache.bz2 share/doc/HTML/uk/kcontrol/windowspecific/index.docbook share/icons/hicolor/16x16/apps/kwin.png share/icons/hicolor/32x32/apps/kwin.png share/icons/hicolor/48x48/apps/kwin.png share/icons/hicolor/scalable/apps/kwin.svgz share/kconf_update/kwin.upd share/knotifications6/kwin.notifyrc share/knsrcfiles/kwineffect.knsrc share/knsrcfiles/kwinscripts.knsrc share/knsrcfiles/kwinswitcher.knsrc share/knsrcfiles/window-decorations.knsrc share/krunner/dbusplugins/kwin-runner-windows.desktop %%DATADIR%%/builtin-effects/blendchanges.json %%DATADIR%%/builtin-effects/blur.json %%DATADIR%%/builtin-effects/colorblindnesscorrection.json %%DATADIR%%/builtin-effects/colorpicker.json %%DATADIR%%/builtin-effects/diminactive.json %%DATADIR%%/builtin-effects/fallapart.json %%DATADIR%%/builtin-effects/glide.json %%DATADIR%%/builtin-effects/hidecursor.json %%DATADIR%%/builtin-effects/highlightwindow.json %%DATADIR%%/builtin-effects/invert.json %%DATADIR%%/builtin-effects/kscreen.json %%DATADIR%%/builtin-effects/magiclamp.json %%DATADIR%%/builtin-effects/magnifier.json %%DATADIR%%/builtin-effects/mouseclick.json %%DATADIR%%/builtin-effects/mousemark.json %%DATADIR%%/builtin-effects/outputlocator.json %%DATADIR%%/builtin-effects/overview.json %%DATADIR%%/builtin-effects/screenedge.json %%DATADIR%%/builtin-effects/screentransform.json %%DATADIR%%/builtin-effects/shakecursor.json %%DATADIR%%/builtin-effects/sheet.json %%DATADIR%%/builtin-effects/showcompositing.json %%DATADIR%%/builtin-effects/showfps.json %%DATADIR%%/builtin-effects/showpaint.json %%DATADIR%%/builtin-effects/slide.json %%DATADIR%%/builtin-effects/slideback.json %%DATADIR%%/builtin-effects/slidingpopups.json %%DATADIR%%/builtin-effects/startupfeedback.json %%DATADIR%%/builtin-effects/systembell.json %%DATADIR%%/builtin-effects/thumbnailaside.json %%DATADIR%%/builtin-effects/tileseditor.json %%DATADIR%%/builtin-effects/touchpoints.json %%DATADIR%%/builtin-effects/trackmouse.json %%DATADIR%%/builtin-effects/windowview.json %%DATADIR%%/builtin-effects/wobblywindows.json %%DATADIR%%/builtin-effects/zoom.json %%DATADIR%%/effects/dialogparent/contents/code/main.js %%DATADIR%%/effects/dialogparent/metadata.json %%DATADIR%%/effects/dimscreen/contents/code/main.js %%DATADIR%%/effects/dimscreen/metadata.json %%DATADIR%%/effects/eyeonscreen/contents/code/main.js %%DATADIR%%/effects/eyeonscreen/metadata.json %%DATADIR%%/effects/fade/contents/code/main.js %%DATADIR%%/effects/fade/contents/config/main.xml %%DATADIR%%/effects/fade/metadata.json %%DATADIR%%/effects/fadedesktop/contents/code/main.js %%DATADIR%%/effects/fadedesktop/contents/config/main.xml %%DATADIR%%/effects/fadedesktop/contents/ui/config.ui %%DATADIR%%/effects/fadedesktop/metadata.json %%DATADIR%%/effects/fadingpopups/contents/code/main.js %%DATADIR%%/effects/fadingpopups/metadata.json %%DATADIR%%/effects/frozenapp/contents/code/main.js %%DATADIR%%/effects/frozenapp/metadata.json %%DATADIR%%/effects/fullscreen/contents/code/main.js %%DATADIR%%/effects/fullscreen/metadata.json %%DATADIR%%/effects/login/contents/code/main.js %%DATADIR%%/effects/login/contents/config/main.xml %%DATADIR%%/effects/login/contents/ui/config.ui %%DATADIR%%/effects/login/metadata.json %%DATADIR%%/effects/logout/contents/code/main.js %%DATADIR%%/effects/logout/metadata.json %%DATADIR%%/effects/maximize/contents/code/main.js %%DATADIR%%/effects/maximize/metadata.json %%DATADIR%%/effects/scale/contents/code/main.js %%DATADIR%%/effects/scale/contents/config/main.xml %%DATADIR%%/effects/scale/contents/ui/config.ui %%DATADIR%%/effects/scale/metadata.json %%DATADIR%%/effects/sessionquit/contents/code/main.js %%DATADIR%%/effects/sessionquit/metadata.json %%DATADIR%%/effects/squash/contents/code/main.js %%DATADIR%%/effects/squash/metadata.json %%DATADIR%%/effects/translucency/contents/code/main.js %%DATADIR%%/effects/translucency/contents/config/main.xml %%DATADIR%%/effects/translucency/contents/ui/config.ui %%DATADIR%%/effects/translucency/metadata.json %%DATADIR%%/effects/windowaperture/contents/code/main.js %%DATADIR%%/effects/windowaperture/metadata.json %%DATADIR%%/frames/plasma/frame_none.qml %%DATADIR%%/frames/plasma/frame_styled.qml %%DATADIR%%/frames/plasma/frame_unstyled.qml %%DATADIR%%/onscreennotification/plasma/dummydata/osd.qml %%DATADIR%%/onscreennotification/plasma/main.qml %%DATADIR%%/outline/plasma/outline.qml %%DATADIR%%/scripts/desktopchangeosd/contents/ui/main.qml %%DATADIR%%/scripts/desktopchangeosd/contents/ui/osd.qml %%DATADIR%%/scripts/desktopchangeosd/metadata.json %%DATADIR%%/scripts/minimizeall/contents/code/main.js %%DATADIR%%/scripts/minimizeall/metadata.json %%DATADIR%%/scripts/synchronizeskipswitcher/contents/code/main.js %%DATADIR%%/scripts/synchronizeskipswitcher/metadata.json %%DATADIR%%/scripts/videowall/contents/code/main.js %%DATADIR%%/scripts/videowall/contents/config/main.xml %%DATADIR%%/scripts/videowall/contents/ui/config.ui %%DATADIR%%/scripts/videowall/metadata.json %%DATADIR%%/tabbox/thumbnail_grid/contents/ui/main.qml %%DATADIR%%/tabbox/thumbnail_grid/metadata.json %%DATADIR%%/tm_inner.png %%DATADIR%%/tm_outer.png share/locale/af/LC_MESSAGES/kcm_kwindecoration.mo share/locale/af/LC_MESSAGES/kcm_kwinrules.mo share/locale/af/LC_MESSAGES/kcmkwm.mo share/locale/af/LC_MESSAGES/kwin.mo share/locale/ar/LC_MESSAGES/kcm_animations.mo share/locale/ar/LC_MESSAGES/kcm_kwin_effects.mo share/locale/ar/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/ar/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ar/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ar/LC_MESSAGES/kcm_kwinrules.mo share/locale/ar/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ar/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/ar/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/ar/LC_MESSAGES/kcmkwincommon.mo share/locale/ar/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ar/LC_MESSAGES/kcmkwm.mo share/locale/ar/LC_MESSAGES/kwin.mo share/locale/as/LC_MESSAGES/kwin.mo share/locale/ast/LC_MESSAGES/kcm_kwin_effects.mo share/locale/ast/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/ast/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ast/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ast/LC_MESSAGES/kcm_kwinrules.mo share/locale/ast/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ast/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/ast/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/ast/LC_MESSAGES/kcmkwincommon.mo share/locale/ast/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ast/LC_MESSAGES/kcmkwm.mo share/locale/ast/LC_MESSAGES/kwin.mo share/locale/az/LC_MESSAGES/kcm_kwin_effects.mo share/locale/az/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/az/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/az/LC_MESSAGES/kcm_kwindecoration.mo share/locale/az/LC_MESSAGES/kcm_kwinrules.mo share/locale/az/LC_MESSAGES/kcm_kwintabbox.mo share/locale/az/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/az/LC_MESSAGES/kcmkwincommon.mo share/locale/az/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/az/LC_MESSAGES/kcmkwm.mo share/locale/az/LC_MESSAGES/kwin.mo share/locale/be/LC_MESSAGES/kcm_kwin_effects.mo share/locale/be/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/be/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/be/LC_MESSAGES/kcm_kwindecoration.mo share/locale/be/LC_MESSAGES/kcm_kwinrules.mo share/locale/be/LC_MESSAGES/kcm_kwintabbox.mo share/locale/be/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/be/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/be/LC_MESSAGES/kcmkwincommon.mo share/locale/be/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/be/LC_MESSAGES/kcmkwm.mo share/locale/be/LC_MESSAGES/kwin.mo share/locale/be@latin/LC_MESSAGES/kwin.mo share/locale/bg/LC_MESSAGES/kcm_animations.mo share/locale/bg/LC_MESSAGES/kcm_kwin_effects.mo share/locale/bg/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/bg/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/bg/LC_MESSAGES/kcm_kwindecoration.mo share/locale/bg/LC_MESSAGES/kcm_kwinrules.mo share/locale/bg/LC_MESSAGES/kcm_kwintabbox.mo share/locale/bg/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/bg/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/bg/LC_MESSAGES/kcmkwincommon.mo share/locale/bg/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/bg/LC_MESSAGES/kcmkwm.mo share/locale/bg/LC_MESSAGES/kwin.mo share/locale/bn/LC_MESSAGES/kcmkwm.mo share/locale/bn/LC_MESSAGES/kwin.mo share/locale/bn_IN/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/bn_IN/LC_MESSAGES/kcm_kwindecoration.mo share/locale/bn_IN/LC_MESSAGES/kcm_kwinrules.mo share/locale/bn_IN/LC_MESSAGES/kcmkwm.mo share/locale/bn_IN/LC_MESSAGES/kwin.mo share/locale/br/LC_MESSAGES/kcm_kwindecoration.mo share/locale/br/LC_MESSAGES/kcm_kwinrules.mo share/locale/br/LC_MESSAGES/kcmkwm.mo share/locale/br/LC_MESSAGES/kwin.mo share/locale/bs/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/bs/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/bs/LC_MESSAGES/kcm_kwindecoration.mo share/locale/bs/LC_MESSAGES/kcm_kwinrules.mo share/locale/bs/LC_MESSAGES/kcm_kwintabbox.mo share/locale/bs/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/bs/LC_MESSAGES/kcmkwm.mo share/locale/bs/LC_MESSAGES/kwin.mo share/locale/ca/LC_MESSAGES/kcm_animations.mo share/locale/ca/LC_MESSAGES/kcm_kwin_effects.mo share/locale/ca/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/ca/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ca/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ca/LC_MESSAGES/kcm_kwinrules.mo share/locale/ca/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ca/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/ca/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/ca/LC_MESSAGES/kcmkwincommon.mo share/locale/ca/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ca/LC_MESSAGES/kcmkwm.mo share/locale/ca/LC_MESSAGES/kwin.mo share/locale/ca@valencia/LC_MESSAGES/kcm_animations.mo share/locale/ca@valencia/LC_MESSAGES/kcm_kwin_effects.mo share/locale/ca@valencia/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/ca@valencia/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ca@valencia/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ca@valencia/LC_MESSAGES/kcm_kwinrules.mo share/locale/ca@valencia/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ca@valencia/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/ca@valencia/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/ca@valencia/LC_MESSAGES/kcmkwincommon.mo share/locale/ca@valencia/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ca@valencia/LC_MESSAGES/kcmkwm.mo share/locale/ca@valencia/LC_MESSAGES/kwin.mo share/locale/cs/LC_MESSAGES/kcm_animations.mo share/locale/cs/LC_MESSAGES/kcm_kwin_effects.mo share/locale/cs/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/cs/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/cs/LC_MESSAGES/kcm_kwindecoration.mo share/locale/cs/LC_MESSAGES/kcm_kwinrules.mo share/locale/cs/LC_MESSAGES/kcm_kwintabbox.mo share/locale/cs/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/cs/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/cs/LC_MESSAGES/kcmkwincommon.mo share/locale/cs/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/cs/LC_MESSAGES/kcmkwm.mo share/locale/cs/LC_MESSAGES/kwin.mo share/locale/csb/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/csb/LC_MESSAGES/kwin.mo share/locale/cy/LC_MESSAGES/kcm_kwindecoration.mo share/locale/cy/LC_MESSAGES/kcm_kwinrules.mo share/locale/cy/LC_MESSAGES/kcmkwm.mo share/locale/cy/LC_MESSAGES/kwin.mo share/locale/da/LC_MESSAGES/kcm_kwin_effects.mo share/locale/da/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/da/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/da/LC_MESSAGES/kcm_kwindecoration.mo share/locale/da/LC_MESSAGES/kcm_kwinrules.mo share/locale/da/LC_MESSAGES/kcm_kwintabbox.mo share/locale/da/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/da/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/da/LC_MESSAGES/kcmkwincommon.mo share/locale/da/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/da/LC_MESSAGES/kcmkwm.mo share/locale/da/LC_MESSAGES/kwin.mo share/locale/de/LC_MESSAGES/kcm_animations.mo share/locale/de/LC_MESSAGES/kcm_kwin_effects.mo share/locale/de/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/de/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/de/LC_MESSAGES/kcm_kwindecoration.mo share/locale/de/LC_MESSAGES/kcm_kwinrules.mo share/locale/de/LC_MESSAGES/kcm_kwintabbox.mo share/locale/de/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/de/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/de/LC_MESSAGES/kcmkwincommon.mo share/locale/de/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/de/LC_MESSAGES/kcmkwm.mo share/locale/de/LC_MESSAGES/kwin.mo share/locale/el/LC_MESSAGES/kcm_kwin_effects.mo share/locale/el/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/el/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/el/LC_MESSAGES/kcm_kwindecoration.mo share/locale/el/LC_MESSAGES/kcm_kwinrules.mo share/locale/el/LC_MESSAGES/kcm_kwintabbox.mo share/locale/el/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/el/LC_MESSAGES/kcmkwm.mo share/locale/el/LC_MESSAGES/kwin.mo share/locale/en_GB/LC_MESSAGES/kcm_kwin_effects.mo share/locale/en_GB/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/en_GB/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/en_GB/LC_MESSAGES/kcm_kwindecoration.mo share/locale/en_GB/LC_MESSAGES/kcm_kwinrules.mo share/locale/en_GB/LC_MESSAGES/kcm_kwintabbox.mo share/locale/en_GB/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/en_GB/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/en_GB/LC_MESSAGES/kcmkwincommon.mo share/locale/en_GB/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/en_GB/LC_MESSAGES/kcmkwm.mo share/locale/en_GB/LC_MESSAGES/kwin.mo share/locale/eo/LC_MESSAGES/kcm_kwin_effects.mo share/locale/eo/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/eo/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/eo/LC_MESSAGES/kcm_kwindecoration.mo share/locale/eo/LC_MESSAGES/kcm_kwinrules.mo share/locale/eo/LC_MESSAGES/kcm_kwintabbox.mo share/locale/eo/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/eo/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/eo/LC_MESSAGES/kcmkwincommon.mo share/locale/eo/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/eo/LC_MESSAGES/kcmkwm.mo share/locale/eo/LC_MESSAGES/kwin.mo share/locale/es/LC_MESSAGES/kcm_animations.mo share/locale/es/LC_MESSAGES/kcm_kwin_effects.mo share/locale/es/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/es/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/es/LC_MESSAGES/kcm_kwindecoration.mo share/locale/es/LC_MESSAGES/kcm_kwinrules.mo share/locale/es/LC_MESSAGES/kcm_kwintabbox.mo share/locale/es/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/es/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/es/LC_MESSAGES/kcmkwincommon.mo share/locale/es/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/es/LC_MESSAGES/kcmkwm.mo share/locale/es/LC_MESSAGES/kwin.mo share/locale/et/LC_MESSAGES/kcm_kwin_effects.mo share/locale/et/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/et/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/et/LC_MESSAGES/kcm_kwindecoration.mo share/locale/et/LC_MESSAGES/kcm_kwinrules.mo share/locale/et/LC_MESSAGES/kcm_kwintabbox.mo share/locale/et/LC_MESSAGES/kcmkwincommon.mo share/locale/et/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/et/LC_MESSAGES/kcmkwm.mo share/locale/et/LC_MESSAGES/kwin.mo share/locale/eu/LC_MESSAGES/kcm_animations.mo share/locale/eu/LC_MESSAGES/kcm_kwin_effects.mo share/locale/eu/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/eu/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/eu/LC_MESSAGES/kcm_kwindecoration.mo share/locale/eu/LC_MESSAGES/kcm_kwinrules.mo share/locale/eu/LC_MESSAGES/kcm_kwintabbox.mo share/locale/eu/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/eu/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/eu/LC_MESSAGES/kcmkwincommon.mo share/locale/eu/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/eu/LC_MESSAGES/kcmkwm.mo share/locale/eu/LC_MESSAGES/kwin.mo share/locale/fa/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/fa/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/fa/LC_MESSAGES/kcm_kwindecoration.mo share/locale/fa/LC_MESSAGES/kcm_kwinrules.mo share/locale/fa/LC_MESSAGES/kcm_kwintabbox.mo share/locale/fa/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/fa/LC_MESSAGES/kcmkwm.mo share/locale/fa/LC_MESSAGES/kwin.mo share/locale/fi/LC_MESSAGES/kcm_animations.mo share/locale/fi/LC_MESSAGES/kcm_kwin_effects.mo share/locale/fi/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/fi/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/fi/LC_MESSAGES/kcm_kwindecoration.mo share/locale/fi/LC_MESSAGES/kcm_kwinrules.mo share/locale/fi/LC_MESSAGES/kcm_kwintabbox.mo share/locale/fi/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/fi/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/fi/LC_MESSAGES/kcmkwincommon.mo share/locale/fi/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/fi/LC_MESSAGES/kcmkwm.mo share/locale/fi/LC_MESSAGES/kwin.mo share/locale/fr/LC_MESSAGES/kcm_animations.mo share/locale/fr/LC_MESSAGES/kcm_kwin_effects.mo share/locale/fr/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/fr/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/fr/LC_MESSAGES/kcm_kwindecoration.mo share/locale/fr/LC_MESSAGES/kcm_kwinrules.mo share/locale/fr/LC_MESSAGES/kcm_kwintabbox.mo share/locale/fr/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/fr/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/fr/LC_MESSAGES/kcmkwincommon.mo share/locale/fr/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/fr/LC_MESSAGES/kcmkwm.mo share/locale/fr/LC_MESSAGES/kwin.mo share/locale/fy/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/fy/LC_MESSAGES/kcm_kwindecoration.mo share/locale/fy/LC_MESSAGES/kcm_kwinrules.mo share/locale/fy/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/fy/LC_MESSAGES/kcmkwm.mo share/locale/fy/LC_MESSAGES/kwin.mo share/locale/ga/LC_MESSAGES/kcm_animations.mo share/locale/ga/LC_MESSAGES/kcm_kwin_effects.mo share/locale/ga/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/ga/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ga/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ga/LC_MESSAGES/kcm_kwinrules.mo share/locale/ga/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ga/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/ga/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/ga/LC_MESSAGES/kcmkwincommon.mo share/locale/ga/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ga/LC_MESSAGES/kcmkwm.mo share/locale/ga/LC_MESSAGES/kwin.mo share/locale/gl/LC_MESSAGES/kcm_animations.mo share/locale/gl/LC_MESSAGES/kcm_kwin_effects.mo share/locale/gl/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/gl/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/gl/LC_MESSAGES/kcm_kwindecoration.mo share/locale/gl/LC_MESSAGES/kcm_kwinrules.mo share/locale/gl/LC_MESSAGES/kcm_kwintabbox.mo share/locale/gl/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/gl/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/gl/LC_MESSAGES/kcmkwincommon.mo share/locale/gl/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/gl/LC_MESSAGES/kcmkwm.mo share/locale/gl/LC_MESSAGES/kwin.mo share/locale/gu/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/gu/LC_MESSAGES/kcm_kwindecoration.mo share/locale/gu/LC_MESSAGES/kcm_kwinrules.mo share/locale/gu/LC_MESSAGES/kcm_kwintabbox.mo share/locale/gu/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/gu/LC_MESSAGES/kcmkwm.mo share/locale/gu/LC_MESSAGES/kwin.mo share/locale/he/LC_MESSAGES/kcm_animations.mo share/locale/he/LC_MESSAGES/kcm_kwin_effects.mo share/locale/he/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/he/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/he/LC_MESSAGES/kcm_kwindecoration.mo share/locale/he/LC_MESSAGES/kcm_kwinrules.mo share/locale/he/LC_MESSAGES/kcm_kwintabbox.mo share/locale/he/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/he/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/he/LC_MESSAGES/kcmkwincommon.mo share/locale/he/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/he/LC_MESSAGES/kcmkwm.mo share/locale/he/LC_MESSAGES/kwin.mo share/locale/hi/LC_MESSAGES/kcm_kwin_effects.mo share/locale/hi/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/hi/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/hi/LC_MESSAGES/kcm_kwindecoration.mo share/locale/hi/LC_MESSAGES/kcm_kwinrules.mo share/locale/hi/LC_MESSAGES/kcm_kwintabbox.mo share/locale/hi/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/hi/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/hi/LC_MESSAGES/kcmkwincommon.mo share/locale/hi/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/hi/LC_MESSAGES/kcmkwm.mo share/locale/hi/LC_MESSAGES/kwin.mo share/locale/hne/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/hne/LC_MESSAGES/kcm_kwindecoration.mo share/locale/hne/LC_MESSAGES/kcm_kwinrules.mo share/locale/hne/LC_MESSAGES/kcmkwm.mo share/locale/hne/LC_MESSAGES/kwin.mo share/locale/hr/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/hr/LC_MESSAGES/kcm_kwindecoration.mo share/locale/hr/LC_MESSAGES/kcm_kwinrules.mo share/locale/hr/LC_MESSAGES/kcm_kwintabbox.mo share/locale/hr/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/hr/LC_MESSAGES/kcmkwm.mo share/locale/hr/LC_MESSAGES/kwin.mo share/locale/hsb/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/hsb/LC_MESSAGES/kcm_kwindecoration.mo share/locale/hsb/LC_MESSAGES/kcm_kwinrules.mo share/locale/hsb/LC_MESSAGES/kcmkwm.mo share/locale/hsb/LC_MESSAGES/kwin.mo share/locale/hu/LC_MESSAGES/kcm_animations.mo share/locale/hu/LC_MESSAGES/kcm_kwin_effects.mo share/locale/hu/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/hu/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/hu/LC_MESSAGES/kcm_kwindecoration.mo share/locale/hu/LC_MESSAGES/kcm_kwinrules.mo share/locale/hu/LC_MESSAGES/kcm_kwintabbox.mo share/locale/hu/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/hu/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/hu/LC_MESSAGES/kcmkwincommon.mo share/locale/hu/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/hu/LC_MESSAGES/kcmkwm.mo share/locale/hu/LC_MESSAGES/kwin.mo share/locale/ia/LC_MESSAGES/kcm_animations.mo share/locale/ia/LC_MESSAGES/kcm_kwin_effects.mo share/locale/ia/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/ia/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ia/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ia/LC_MESSAGES/kcm_kwinrules.mo share/locale/ia/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ia/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/ia/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/ia/LC_MESSAGES/kcmkwincommon.mo share/locale/ia/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ia/LC_MESSAGES/kcmkwm.mo share/locale/ia/LC_MESSAGES/kwin.mo share/locale/id/LC_MESSAGES/kcm_kwin_effects.mo share/locale/id/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/id/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/id/LC_MESSAGES/kcm_kwindecoration.mo share/locale/id/LC_MESSAGES/kcm_kwinrules.mo share/locale/id/LC_MESSAGES/kcm_kwintabbox.mo share/locale/id/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/id/LC_MESSAGES/kcmkwincommon.mo share/locale/id/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/id/LC_MESSAGES/kcmkwm.mo share/locale/id/LC_MESSAGES/kwin.mo share/locale/is/LC_MESSAGES/kcm_animations.mo share/locale/is/LC_MESSAGES/kcm_kwin_effects.mo share/locale/is/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/is/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/is/LC_MESSAGES/kcm_kwindecoration.mo share/locale/is/LC_MESSAGES/kcm_kwinrules.mo share/locale/is/LC_MESSAGES/kcm_kwintabbox.mo share/locale/is/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/is/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/is/LC_MESSAGES/kcmkwincommon.mo share/locale/is/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/is/LC_MESSAGES/kcmkwm.mo share/locale/is/LC_MESSAGES/kwin.mo share/locale/it/LC_MESSAGES/kcm_animations.mo share/locale/it/LC_MESSAGES/kcm_kwin_effects.mo share/locale/it/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/it/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/it/LC_MESSAGES/kcm_kwindecoration.mo share/locale/it/LC_MESSAGES/kcm_kwinrules.mo share/locale/it/LC_MESSAGES/kcm_kwintabbox.mo share/locale/it/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/it/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/it/LC_MESSAGES/kcmkwincommon.mo share/locale/it/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/it/LC_MESSAGES/kcmkwm.mo share/locale/it/LC_MESSAGES/kwin.mo share/locale/ja/LC_MESSAGES/kcm_animations.mo share/locale/ja/LC_MESSAGES/kcm_kwin_effects.mo share/locale/ja/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/ja/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ja/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ja/LC_MESSAGES/kcm_kwinrules.mo share/locale/ja/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ja/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/ja/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/ja/LC_MESSAGES/kcmkwincommon.mo share/locale/ja/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ja/LC_MESSAGES/kcmkwm.mo share/locale/ja/LC_MESSAGES/kwin.mo share/locale/ka/LC_MESSAGES/kcm_animations.mo share/locale/ka/LC_MESSAGES/kcm_kwin_effects.mo share/locale/ka/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/ka/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ka/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ka/LC_MESSAGES/kcm_kwinrules.mo share/locale/ka/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ka/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/ka/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/ka/LC_MESSAGES/kcmkwincommon.mo share/locale/ka/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ka/LC_MESSAGES/kcmkwm.mo share/locale/ka/LC_MESSAGES/kwin.mo share/locale/kk/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/kk/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/kk/LC_MESSAGES/kcm_kwindecoration.mo share/locale/kk/LC_MESSAGES/kcm_kwinrules.mo share/locale/kk/LC_MESSAGES/kcm_kwintabbox.mo share/locale/kk/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/kk/LC_MESSAGES/kcmkwm.mo share/locale/kk/LC_MESSAGES/kwin.mo share/locale/km/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/km/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/km/LC_MESSAGES/kcm_kwindecoration.mo share/locale/km/LC_MESSAGES/kcm_kwinrules.mo share/locale/km/LC_MESSAGES/kcm_kwintabbox.mo share/locale/km/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/km/LC_MESSAGES/kcmkwm.mo share/locale/km/LC_MESSAGES/kwin.mo share/locale/kn/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/kn/LC_MESSAGES/kcm_kwindecoration.mo share/locale/kn/LC_MESSAGES/kcm_kwinrules.mo share/locale/kn/LC_MESSAGES/kcm_kwintabbox.mo share/locale/kn/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/kn/LC_MESSAGES/kcmkwm.mo share/locale/kn/LC_MESSAGES/kwin.mo share/locale/ko/LC_MESSAGES/kcm_animations.mo share/locale/ko/LC_MESSAGES/kcm_kwin_effects.mo share/locale/ko/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/ko/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ko/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ko/LC_MESSAGES/kcm_kwinrules.mo share/locale/ko/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ko/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/ko/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/ko/LC_MESSAGES/kcmkwincommon.mo share/locale/ko/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ko/LC_MESSAGES/kcmkwm.mo share/locale/ko/LC_MESSAGES/kwin.mo share/locale/ku/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ku/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ku/LC_MESSAGES/kcm_kwinrules.mo share/locale/ku/LC_MESSAGES/kcmkwm.mo share/locale/ku/LC_MESSAGES/kwin.mo share/locale/lt/LC_MESSAGES/kcm_animations.mo share/locale/lt/LC_MESSAGES/kcm_kwin_effects.mo share/locale/lt/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/lt/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/lt/LC_MESSAGES/kcm_kwindecoration.mo share/locale/lt/LC_MESSAGES/kcm_kwinrules.mo share/locale/lt/LC_MESSAGES/kcm_kwintabbox.mo share/locale/lt/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/lt/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/lt/LC_MESSAGES/kcmkwincommon.mo share/locale/lt/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/lt/LC_MESSAGES/kcmkwm.mo share/locale/lt/LC_MESSAGES/kwin.mo share/locale/lv/LC_MESSAGES/kcm_animations.mo share/locale/lv/LC_MESSAGES/kcm_kwin_effects.mo share/locale/lv/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/lv/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/lv/LC_MESSAGES/kcm_kwindecoration.mo share/locale/lv/LC_MESSAGES/kcm_kwinrules.mo share/locale/lv/LC_MESSAGES/kcm_kwintabbox.mo share/locale/lv/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/lv/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/lv/LC_MESSAGES/kcmkwincommon.mo share/locale/lv/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/lv/LC_MESSAGES/kcmkwm.mo share/locale/lv/LC_MESSAGES/kwin.mo share/locale/mai/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/mai/LC_MESSAGES/kcm_kwindecoration.mo share/locale/mai/LC_MESSAGES/kcm_kwinrules.mo share/locale/mai/LC_MESSAGES/kcm_kwintabbox.mo share/locale/mai/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/mai/LC_MESSAGES/kcmkwm.mo share/locale/mai/LC_MESSAGES/kwin.mo share/locale/mk/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/mk/LC_MESSAGES/kcm_kwindecoration.mo share/locale/mk/LC_MESSAGES/kcm_kwinrules.mo share/locale/mk/LC_MESSAGES/kcmkwm.mo share/locale/mk/LC_MESSAGES/kwin.mo share/locale/ml/LC_MESSAGES/kcm_kwin_effects.mo share/locale/ml/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/ml/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ml/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ml/LC_MESSAGES/kcm_kwinrules.mo share/locale/ml/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ml/LC_MESSAGES/kcmkwincommon.mo share/locale/ml/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ml/LC_MESSAGES/kcmkwm.mo share/locale/ml/LC_MESSAGES/kwin.mo share/locale/mr/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/mr/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/mr/LC_MESSAGES/kcm_kwindecoration.mo share/locale/mr/LC_MESSAGES/kcm_kwinrules.mo share/locale/mr/LC_MESSAGES/kcm_kwintabbox.mo share/locale/mr/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/mr/LC_MESSAGES/kcmkwm.mo share/locale/mr/LC_MESSAGES/kwin.mo share/locale/ms/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ms/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ms/LC_MESSAGES/kcm_kwinrules.mo share/locale/ms/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ms/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ms/LC_MESSAGES/kcmkwm.mo share/locale/ms/LC_MESSAGES/kwin.mo share/locale/nb/LC_MESSAGES/kcm_kwin_effects.mo share/locale/nb/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/nb/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/nb/LC_MESSAGES/kcm_kwindecoration.mo share/locale/nb/LC_MESSAGES/kcm_kwinrules.mo share/locale/nb/LC_MESSAGES/kcm_kwintabbox.mo share/locale/nb/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/nb/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/nb/LC_MESSAGES/kcmkwincommon.mo share/locale/nb/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/nb/LC_MESSAGES/kcmkwm.mo share/locale/nb/LC_MESSAGES/kwin.mo share/locale/nds/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/nds/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/nds/LC_MESSAGES/kcm_kwindecoration.mo share/locale/nds/LC_MESSAGES/kcm_kwinrules.mo share/locale/nds/LC_MESSAGES/kcm_kwintabbox.mo share/locale/nds/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/nds/LC_MESSAGES/kcmkwm.mo share/locale/nds/LC_MESSAGES/kwin.mo share/locale/ne/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ne/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ne/LC_MESSAGES/kcm_kwinrules.mo share/locale/ne/LC_MESSAGES/kcmkwm.mo share/locale/ne/LC_MESSAGES/kwin.mo share/locale/nl/LC_MESSAGES/kcm_animations.mo share/locale/nl/LC_MESSAGES/kcm_kwin_effects.mo share/locale/nl/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/nl/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/nl/LC_MESSAGES/kcm_kwindecoration.mo share/locale/nl/LC_MESSAGES/kcm_kwinrules.mo share/locale/nl/LC_MESSAGES/kcm_kwintabbox.mo share/locale/nl/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/nl/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/nl/LC_MESSAGES/kcmkwincommon.mo share/locale/nl/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/nl/LC_MESSAGES/kcmkwm.mo share/locale/nl/LC_MESSAGES/kwin.mo share/locale/nn/LC_MESSAGES/kcm_kwin_effects.mo share/locale/nn/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/nn/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/nn/LC_MESSAGES/kcm_kwindecoration.mo share/locale/nn/LC_MESSAGES/kcm_kwinrules.mo share/locale/nn/LC_MESSAGES/kcm_kwintabbox.mo share/locale/nn/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/nn/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/nn/LC_MESSAGES/kcmkwincommon.mo share/locale/nn/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/nn/LC_MESSAGES/kcmkwm.mo share/locale/nn/LC_MESSAGES/kwin.mo share/locale/oc/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/oc/LC_MESSAGES/kcm_kwindecoration.mo share/locale/oc/LC_MESSAGES/kcm_kwinrules.mo share/locale/oc/LC_MESSAGES/kcmkwm.mo share/locale/oc/LC_MESSAGES/kwin.mo share/locale/or/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/or/LC_MESSAGES/kcm_kwindecoration.mo share/locale/or/LC_MESSAGES/kcm_kwinrules.mo share/locale/or/LC_MESSAGES/kcmkwm.mo share/locale/or/LC_MESSAGES/kwin.mo share/locale/pa/LC_MESSAGES/kcm_kwin_effects.mo share/locale/pa/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/pa/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/pa/LC_MESSAGES/kcm_kwindecoration.mo share/locale/pa/LC_MESSAGES/kcm_kwinrules.mo share/locale/pa/LC_MESSAGES/kcm_kwintabbox.mo share/locale/pa/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/pa/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/pa/LC_MESSAGES/kcmkwincommon.mo share/locale/pa/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/pa/LC_MESSAGES/kcmkwm.mo share/locale/pa/LC_MESSAGES/kwin.mo share/locale/pl/LC_MESSAGES/kcm_animations.mo share/locale/pl/LC_MESSAGES/kcm_kwin_effects.mo share/locale/pl/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/pl/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/pl/LC_MESSAGES/kcm_kwindecoration.mo share/locale/pl/LC_MESSAGES/kcm_kwinrules.mo share/locale/pl/LC_MESSAGES/kcm_kwintabbox.mo share/locale/pl/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/pl/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/pl/LC_MESSAGES/kcmkwincommon.mo share/locale/pl/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/pl/LC_MESSAGES/kcmkwm.mo share/locale/pl/LC_MESSAGES/kwin.mo share/locale/pt/LC_MESSAGES/kcm_kwin_effects.mo share/locale/pt/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/pt/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/pt/LC_MESSAGES/kcm_kwindecoration.mo share/locale/pt/LC_MESSAGES/kcm_kwinrules.mo share/locale/pt/LC_MESSAGES/kcm_kwintabbox.mo share/locale/pt/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/pt/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/pt/LC_MESSAGES/kcmkwincommon.mo share/locale/pt/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/pt/LC_MESSAGES/kcmkwm.mo share/locale/pt/LC_MESSAGES/kwin.mo share/locale/pt_BR/LC_MESSAGES/kcm_animations.mo share/locale/pt_BR/LC_MESSAGES/kcm_kwin_effects.mo share/locale/pt_BR/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/pt_BR/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/pt_BR/LC_MESSAGES/kcm_kwindecoration.mo share/locale/pt_BR/LC_MESSAGES/kcm_kwinrules.mo share/locale/pt_BR/LC_MESSAGES/kcm_kwintabbox.mo share/locale/pt_BR/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/pt_BR/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/pt_BR/LC_MESSAGES/kcmkwincommon.mo share/locale/pt_BR/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/pt_BR/LC_MESSAGES/kcmkwm.mo share/locale/pt_BR/LC_MESSAGES/kwin.mo +share/locale/ro/LC_MESSAGES/kcm_animations.mo share/locale/ro/LC_MESSAGES/kcm_kwin_effects.mo share/locale/ro/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/ro/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ro/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ro/LC_MESSAGES/kcm_kwinrules.mo share/locale/ro/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ro/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/ro/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/ro/LC_MESSAGES/kcmkwincommon.mo share/locale/ro/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ro/LC_MESSAGES/kcmkwm.mo share/locale/ro/LC_MESSAGES/kwin.mo share/locale/ru/LC_MESSAGES/kcm_animations.mo share/locale/ru/LC_MESSAGES/kcm_kwin_effects.mo share/locale/ru/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/ru/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ru/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ru/LC_MESSAGES/kcm_kwinrules.mo share/locale/ru/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ru/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/ru/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/ru/LC_MESSAGES/kcmkwincommon.mo share/locale/ru/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ru/LC_MESSAGES/kcmkwm.mo share/locale/ru/LC_MESSAGES/kwin.mo share/locale/sa/LC_MESSAGES/kcm_kwin_effects.mo share/locale/sa/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/sa/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/sa/LC_MESSAGES/kcm_kwindecoration.mo share/locale/sa/LC_MESSAGES/kcm_kwinrules.mo share/locale/sa/LC_MESSAGES/kcm_kwintabbox.mo share/locale/sa/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/sa/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/sa/LC_MESSAGES/kcmkwincommon.mo share/locale/sa/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/sa/LC_MESSAGES/kcmkwm.mo share/locale/sa/LC_MESSAGES/kwin.mo share/locale/se/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/se/LC_MESSAGES/kcm_kwindecoration.mo share/locale/se/LC_MESSAGES/kcm_kwinrules.mo share/locale/se/LC_MESSAGES/kcmkwincommon.mo share/locale/se/LC_MESSAGES/kcmkwm.mo share/locale/se/LC_MESSAGES/kwin.mo share/locale/si/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/si/LC_MESSAGES/kcm_kwindecoration.mo share/locale/si/LC_MESSAGES/kcm_kwinrules.mo share/locale/si/LC_MESSAGES/kcm_kwintabbox.mo share/locale/si/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/si/LC_MESSAGES/kcmkwm.mo share/locale/si/LC_MESSAGES/kwin.mo share/locale/sk/LC_MESSAGES/kcm_kwin_effects.mo share/locale/sk/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/sk/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/sk/LC_MESSAGES/kcm_kwindecoration.mo share/locale/sk/LC_MESSAGES/kcm_kwinrules.mo share/locale/sk/LC_MESSAGES/kcm_kwintabbox.mo share/locale/sk/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/sk/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/sk/LC_MESSAGES/kcmkwincommon.mo share/locale/sk/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/sk/LC_MESSAGES/kcmkwm.mo share/locale/sk/LC_MESSAGES/kwin.mo share/locale/sl/LC_MESSAGES/kcm_animations.mo share/locale/sl/LC_MESSAGES/kcm_kwin_effects.mo share/locale/sl/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/sl/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/sl/LC_MESSAGES/kcm_kwindecoration.mo share/locale/sl/LC_MESSAGES/kcm_kwinrules.mo share/locale/sl/LC_MESSAGES/kcm_kwintabbox.mo share/locale/sl/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/sl/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/sl/LC_MESSAGES/kcmkwincommon.mo share/locale/sl/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/sl/LC_MESSAGES/kcmkwm.mo share/locale/sl/LC_MESSAGES/kwin.mo share/locale/sq/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/sq/LC_MESSAGES/kcm_kwindecoration.mo share/locale/sq/LC_MESSAGES/kcm_kwinrules.mo share/locale/sq/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/sq/LC_MESSAGES/kcmkwm.mo share/locale/sq/LC_MESSAGES/kwin.mo share/locale/sr/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/sr/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/sr/LC_MESSAGES/kcm_kwindecoration.mo share/locale/sr/LC_MESSAGES/kcm_kwinrules.mo share/locale/sr/LC_MESSAGES/kcm_kwintabbox.mo share/locale/sr/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/sr/LC_MESSAGES/kcmkwm.mo share/locale/sr/LC_MESSAGES/kwin.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_kwindecoration.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_kwinrules.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_kwintabbox.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmkwm.mo share/locale/sr@ijekavian/LC_MESSAGES/kwin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_kwindecoration.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_kwinrules.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_kwintabbox.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmkwm.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kwin.mo share/locale/sr@latin/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/sr@latin/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/sr@latin/LC_MESSAGES/kcm_kwindecoration.mo share/locale/sr@latin/LC_MESSAGES/kcm_kwinrules.mo share/locale/sr@latin/LC_MESSAGES/kcm_kwintabbox.mo share/locale/sr@latin/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/sr@latin/LC_MESSAGES/kcmkwm.mo share/locale/sr@latin/LC_MESSAGES/kwin.mo share/locale/sv/LC_MESSAGES/kcm_animations.mo share/locale/sv/LC_MESSAGES/kcm_kwin_effects.mo share/locale/sv/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/sv/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/sv/LC_MESSAGES/kcm_kwindecoration.mo share/locale/sv/LC_MESSAGES/kcm_kwinrules.mo share/locale/sv/LC_MESSAGES/kcm_kwintabbox.mo share/locale/sv/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/sv/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/sv/LC_MESSAGES/kcmkwincommon.mo share/locale/sv/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/sv/LC_MESSAGES/kcmkwm.mo share/locale/sv/LC_MESSAGES/kwin.mo share/locale/ta/LC_MESSAGES/kcm_kwin_effects.mo share/locale/ta/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/ta/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ta/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ta/LC_MESSAGES/kcm_kwinrules.mo share/locale/ta/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ta/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/ta/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/ta/LC_MESSAGES/kcmkwincommon.mo share/locale/ta/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ta/LC_MESSAGES/kcmkwm.mo share/locale/ta/LC_MESSAGES/kwin.mo share/locale/te/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/te/LC_MESSAGES/kcm_kwindecoration.mo share/locale/te/LC_MESSAGES/kcm_kwinrules.mo share/locale/te/LC_MESSAGES/kcmkwm.mo share/locale/te/LC_MESSAGES/kwin.mo share/locale/tg/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/tg/LC_MESSAGES/kcm_kwindecoration.mo share/locale/tg/LC_MESSAGES/kcm_kwinrules.mo share/locale/tg/LC_MESSAGES/kcmkwincommon.mo share/locale/tg/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/tg/LC_MESSAGES/kcmkwm.mo share/locale/tg/LC_MESSAGES/kwin.mo share/locale/th/LC_MESSAGES/kcm_kwin_effects.mo share/locale/th/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/th/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/th/LC_MESSAGES/kcm_kwindecoration.mo share/locale/th/LC_MESSAGES/kcm_kwinrules.mo share/locale/th/LC_MESSAGES/kcm_kwintabbox.mo share/locale/th/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/th/LC_MESSAGES/kcmkwincommon.mo share/locale/th/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/th/LC_MESSAGES/kcmkwm.mo share/locale/th/LC_MESSAGES/kwin.mo share/locale/tok/LC_MESSAGES/kcm_kwinrules.mo share/locale/tr/LC_MESSAGES/kcm_animations.mo share/locale/tr/LC_MESSAGES/kcm_kwin_effects.mo share/locale/tr/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/tr/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/tr/LC_MESSAGES/kcm_kwindecoration.mo share/locale/tr/LC_MESSAGES/kcm_kwinrules.mo share/locale/tr/LC_MESSAGES/kcm_kwintabbox.mo share/locale/tr/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/tr/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/tr/LC_MESSAGES/kcmkwincommon.mo share/locale/tr/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/tr/LC_MESSAGES/kcmkwm.mo share/locale/tr/LC_MESSAGES/kwin.mo share/locale/ug/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/ug/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ug/LC_MESSAGES/kcm_kwindecoration.mo share/locale/ug/LC_MESSAGES/kcm_kwinrules.mo share/locale/ug/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ug/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ug/LC_MESSAGES/kcmkwm.mo share/locale/ug/LC_MESSAGES/kwin.mo share/locale/uk/LC_MESSAGES/kcm_animations.mo share/locale/uk/LC_MESSAGES/kcm_kwin_effects.mo share/locale/uk/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/uk/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/uk/LC_MESSAGES/kcm_kwindecoration.mo share/locale/uk/LC_MESSAGES/kcm_kwinrules.mo share/locale/uk/LC_MESSAGES/kcm_kwintabbox.mo share/locale/uk/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/uk/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/uk/LC_MESSAGES/kcmkwincommon.mo share/locale/uk/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/uk/LC_MESSAGES/kcmkwm.mo share/locale/uk/LC_MESSAGES/kwin.mo share/locale/uz/LC_MESSAGES/kcm_kwindecoration.mo share/locale/uz/LC_MESSAGES/kcm_kwinrules.mo share/locale/uz/LC_MESSAGES/kcmkwm.mo share/locale/uz/LC_MESSAGES/kwin.mo share/locale/uz@cyrillic/LC_MESSAGES/kcm_kwindecoration.mo share/locale/uz@cyrillic/LC_MESSAGES/kcm_kwinrules.mo share/locale/uz@cyrillic/LC_MESSAGES/kcmkwm.mo share/locale/uz@cyrillic/LC_MESSAGES/kwin.mo share/locale/vi/LC_MESSAGES/kcm_kwin_effects.mo share/locale/vi/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/vi/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/vi/LC_MESSAGES/kcm_kwindecoration.mo share/locale/vi/LC_MESSAGES/kcm_kwinrules.mo share/locale/vi/LC_MESSAGES/kcm_kwintabbox.mo share/locale/vi/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/vi/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/vi/LC_MESSAGES/kcmkwincommon.mo share/locale/vi/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/vi/LC_MESSAGES/kcmkwm.mo share/locale/vi/LC_MESSAGES/kwin.mo share/locale/wa/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/wa/LC_MESSAGES/kcm_kwindecoration.mo share/locale/wa/LC_MESSAGES/kcm_kwinrules.mo share/locale/wa/LC_MESSAGES/kcm_kwintabbox.mo share/locale/wa/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/wa/LC_MESSAGES/kcmkwm.mo share/locale/wa/LC_MESSAGES/kwin.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_animations.mo share/locale/zh_CN/LC_MESSAGES/kcm_kwin_effects.mo share/locale/zh_CN/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/zh_CN/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/zh_CN/LC_MESSAGES/kcm_kwindecoration.mo share/locale/zh_CN/LC_MESSAGES/kcm_kwinrules.mo share/locale/zh_CN/LC_MESSAGES/kcm_kwintabbox.mo share/locale/zh_CN/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/zh_CN/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/zh_CN/LC_MESSAGES/kcmkwincommon.mo share/locale/zh_CN/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/zh_CN/LC_MESSAGES/kcmkwm.mo share/locale/zh_CN/LC_MESSAGES/kwin.mo share/locale/zh_TW/LC_MESSAGES/kcm_animations.mo share/locale/zh_TW/LC_MESSAGES/kcm_kwin_effects.mo share/locale/zh_TW/LC_MESSAGES/kcm_kwin_scripts.mo share/locale/zh_TW/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/zh_TW/LC_MESSAGES/kcm_kwindecoration.mo share/locale/zh_TW/LC_MESSAGES/kcm_kwinrules.mo share/locale/zh_TW/LC_MESSAGES/kcm_kwintabbox.mo share/locale/zh_TW/LC_MESSAGES/kcm_kwinxwayland.mo share/locale/zh_TW/LC_MESSAGES/kcm_virtualkeyboard.mo share/locale/zh_TW/LC_MESSAGES/kcmkwincommon.mo share/locale/zh_TW/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/zh_TW/LC_MESSAGES/kcmkwm.mo share/locale/zh_TW/LC_MESSAGES/kwin.mo share/qlogging-categories6/org_kde_kwin.categories diff --git a/x11/plasma6-kactivitymanagerd/Makefile b/x11/plasma6-kactivitymanagerd/Makefile index 109ec82bf98c..f6bd588650a5 100644 --- a/x11/plasma6-kactivitymanagerd/Makefile +++ b/x11/plasma6-kactivitymanagerd/Makefile @@ -1,19 +1,18 @@ PORTNAME= kactivitymanagerd DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= x11 kde kde-plasma COMMENT= System service to manage user's activities, track the usage patterns etc MAINTAINER= kde@FreeBSD.org BUILD_DEPENDS= ${LOCALBASE}/include/boost/range/algorithm.hpp:devel/boost-libs USES= cmake gettext gl kde:6 qt:6 tar:xz xorg USE_GL= gl opengl USE_KDE= colorscheme config configwidgets coreaddons crash dbusaddons \ globalaccel i18n kio service widgetsaddons windowsystem xmlgui \ ecm:build USE_QT= 5compat base sqldriver-sqlite USE_XORG= x11 .include diff --git a/x11/plasma6-kactivitymanagerd/distinfo b/x11/plasma6-kactivitymanagerd/distinfo index f9c61b1a12ee..63c57a325b96 100644 --- a/x11/plasma6-kactivitymanagerd/distinfo +++ b/x11/plasma6-kactivitymanagerd/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1768328316 -SHA256 (KDE/plasma/6.5.5/kactivitymanagerd-6.5.5.tar.xz) = 87a0f8865f180fc69dcab2fe75d9a840fb39c99393c1d37c11a3d3a30171fbf8 -SIZE (KDE/plasma/6.5.5/kactivitymanagerd-6.5.5.tar.xz) = 99072 +TIMESTAMP = 1771162219 +SHA256 (KDE/plasma/6.6.0/kactivitymanagerd-6.6.0.tar.xz) = 9802127831a8fef6c2d4469daabb25a8536309b87b3bad6bb19331489d66856c +SIZE (KDE/plasma/6.6.0/kactivitymanagerd-6.6.0.tar.xz) = 98900 diff --git a/x11/plasma6-kgamma/distinfo b/x11/plasma6-kgamma/distinfo index eaa1bd9ff0d0..9fbd24e7071a 100644 --- a/x11/plasma6-kgamma/distinfo +++ b/x11/plasma6-kgamma/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1768328317 -SHA256 (KDE/plasma/6.5.5/kgamma-6.5.5.tar.xz) = 2c375a256d36c2b0bc3407a290fb85618fad4c5a3d41310b6c715a9438bf3e36 -SIZE (KDE/plasma/6.5.5/kgamma-6.5.5.tar.xz) = 87492 +TIMESTAMP = 1771162219 +SHA256 (KDE/plasma/6.6.0/kgamma-6.6.0.tar.xz) = 6f0b23e1bbef841b0d6fc5b70aafd1ca891529d6db6f612d15a002a474e9622f +SIZE (KDE/plasma/6.6.0/kgamma-6.6.0.tar.xz) = 87516 diff --git a/x11/plasma6-kglobalacceld/Makefile b/x11/plasma6-kglobalacceld/Makefile index 304e4a96d76f..3bd02d1657b3 100644 --- a/x11/plasma6-kglobalacceld/Makefile +++ b/x11/plasma6-kglobalacceld/Makefile @@ -1,21 +1,20 @@ PORTNAME= kglobalacceld DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= x11 kde kde-plasma COMMENT= Daemon providing Global Keyboard Shortcut (Accelerator) functionality MAINTAINER= kde@FreeBSD.org LIB_DEPENDS= libxcb-keysyms.so:x11/xcb-util-keysyms \ libxkbcommon.so:x11/libxkbcommon USES= cmake gl kde:6 qt:6 tar:xz xorg USE_GL= gl opengl USE_KDE= config coreaddons crash dbusaddons globalaccel jobwidgets kio \ notifications service windowsystem \ ecm:build USE_QT= base USE_XORG= x11 xcb .include diff --git a/x11/plasma6-kglobalacceld/distinfo b/x11/plasma6-kglobalacceld/distinfo index 8370cf837d20..abf8ebdc8d6f 100644 --- a/x11/plasma6-kglobalacceld/distinfo +++ b/x11/plasma6-kglobalacceld/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1768328317 -SHA256 (KDE/plasma/6.5.5/kglobalacceld-6.5.5.tar.xz) = 6a3e52d957ed101e14d99e2d6830f54335017eebfaffddec8d4fcb765ddc0176 -SIZE (KDE/plasma/6.5.5/kglobalacceld-6.5.5.tar.xz) = 56340 +TIMESTAMP = 1771162219 +SHA256 (KDE/plasma/6.6.0/kglobalacceld-6.6.0.tar.xz) = 5dd5f582630c838b1bbbf163894b1b485a461f3e843b84ffaa6521664569db6c +SIZE (KDE/plasma/6.6.0/kglobalacceld-6.6.0.tar.xz) = 57860 diff --git a/x11/plasma6-kscreen/distinfo b/x11/plasma6-kscreen/distinfo index 724c6375e287..de0ac9ca2ae0 100644 --- a/x11/plasma6-kscreen/distinfo +++ b/x11/plasma6-kscreen/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1768328318 -SHA256 (KDE/plasma/6.5.5/kscreen-6.5.5.tar.xz) = 07c9a232825e1627329e77556908dfa8fec19166c3fb0e1e422fc1cd0e83c53f -SIZE (KDE/plasma/6.5.5/kscreen-6.5.5.tar.xz) = 1732244 +TIMESTAMP = 1771162219 +SHA256 (KDE/plasma/6.6.0/kscreen-6.6.0.tar.xz) = a56abeb547e433473571157fe313c82f27f114095e144ae4347512746583d924 +SIZE (KDE/plasma/6.6.0/kscreen-6.6.0.tar.xz) = 1745428 diff --git a/x11/plasma6-kscreen/pkg-plist b/x11/plasma6-kscreen/pkg-plist index dcb2f525475a..8da875a49b5b 100644 --- a/x11/plasma6-kscreen/pkg-plist +++ b/x11/plasma6-kscreen/pkg-plist @@ -1,205 +1,227 @@ bin/hdrcalibrator bin/kscreen-console lib/libexec/kscreen_osd_service %%QT_PLUGINDIR%%/kf6/kded/kscreen.so %%QT_PLUGINDIR%%/plasma/applets/org.kde.kscreen.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_kscreen.so @comment lib/systemd/user/plasma-kscreen-osd.service share/applications/kcm_kscreen.desktop share/dbus-1/services/org.kde.kscreen.osdService.service share/kglobalaccel/org.kde.kscreen.desktop share/locale/ar/LC_MESSAGES/hdrcalibrator.mo share/locale/ar/LC_MESSAGES/kcm_kscreen.mo share/locale/ar/LC_MESSAGES/kscreen_common.mo +share/locale/ar/LC_MESSAGES/kscreen_osd.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/ast/LC_MESSAGES/kcm_kscreen.mo share/locale/ast/LC_MESSAGES/kscreen_common.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/az/LC_MESSAGES/kcm_kscreen.mo share/locale/az/LC_MESSAGES/kscreen_common.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/bg/LC_MESSAGES/hdrcalibrator.mo share/locale/bg/LC_MESSAGES/kcm_kscreen.mo share/locale/bg/LC_MESSAGES/kscreen_common.mo +share/locale/bg/LC_MESSAGES/kscreen_osd.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/bs/LC_MESSAGES/kcm_kscreen.mo share/locale/ca/LC_MESSAGES/hdrcalibrator.mo share/locale/ca/LC_MESSAGES/kcm_kscreen.mo share/locale/ca/LC_MESSAGES/kscreen_common.mo +share/locale/ca/LC_MESSAGES/kscreen_osd.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/ca@valencia/LC_MESSAGES/hdrcalibrator.mo share/locale/ca@valencia/LC_MESSAGES/kcm_kscreen.mo share/locale/ca@valencia/LC_MESSAGES/kscreen_common.mo +share/locale/ca@valencia/LC_MESSAGES/kscreen_osd.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/cs/LC_MESSAGES/kcm_kscreen.mo share/locale/cs/LC_MESSAGES/kscreen_common.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/da/LC_MESSAGES/kcm_kscreen.mo share/locale/da/LC_MESSAGES/kscreen_common.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/de/LC_MESSAGES/hdrcalibrator.mo share/locale/de/LC_MESSAGES/kcm_kscreen.mo share/locale/de/LC_MESSAGES/kscreen_common.mo +share/locale/de/LC_MESSAGES/kscreen_osd.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/el/LC_MESSAGES/kcm_kscreen.mo share/locale/el/LC_MESSAGES/kscreen_common.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/en_GB/LC_MESSAGES/kcm_kscreen.mo share/locale/en_GB/LC_MESSAGES/kscreen_common.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/eo/LC_MESSAGES/kcm_kscreen.mo share/locale/eo/LC_MESSAGES/kscreen_common.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/es/LC_MESSAGES/hdrcalibrator.mo share/locale/es/LC_MESSAGES/kcm_kscreen.mo share/locale/es/LC_MESSAGES/kscreen_common.mo +share/locale/es/LC_MESSAGES/kscreen_osd.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/et/LC_MESSAGES/kcm_kscreen.mo share/locale/et/LC_MESSAGES/kscreen_common.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/eu/LC_MESSAGES/hdrcalibrator.mo share/locale/eu/LC_MESSAGES/kcm_kscreen.mo share/locale/eu/LC_MESSAGES/kscreen_common.mo +share/locale/eu/LC_MESSAGES/kscreen_osd.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/fi/LC_MESSAGES/hdrcalibrator.mo share/locale/fi/LC_MESSAGES/kcm_kscreen.mo share/locale/fi/LC_MESSAGES/kscreen_common.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/fr/LC_MESSAGES/hdrcalibrator.mo share/locale/fr/LC_MESSAGES/kcm_kscreen.mo share/locale/fr/LC_MESSAGES/kscreen_common.mo +share/locale/fr/LC_MESSAGES/kscreen_osd.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/ga/LC_MESSAGES/hdrcalibrator.mo share/locale/ga/LC_MESSAGES/kcm_kscreen.mo share/locale/ga/LC_MESSAGES/kscreen_common.mo +share/locale/ga/LC_MESSAGES/kscreen_osd.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/gl/LC_MESSAGES/hdrcalibrator.mo share/locale/gl/LC_MESSAGES/kcm_kscreen.mo share/locale/gl/LC_MESSAGES/kscreen_common.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/he/LC_MESSAGES/hdrcalibrator.mo share/locale/he/LC_MESSAGES/kcm_kscreen.mo share/locale/he/LC_MESSAGES/kscreen_common.mo +share/locale/he/LC_MESSAGES/kscreen_osd.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/hi/LC_MESSAGES/kcm_kscreen.mo share/locale/hi/LC_MESSAGES/kscreen_common.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/hsb/LC_MESSAGES/kcm_kscreen.mo share/locale/hsb/LC_MESSAGES/kscreen_common.mo share/locale/hsb/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/hu/LC_MESSAGES/hdrcalibrator.mo share/locale/hu/LC_MESSAGES/kcm_kscreen.mo share/locale/hu/LC_MESSAGES/kscreen_common.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/ia/LC_MESSAGES/hdrcalibrator.mo share/locale/ia/LC_MESSAGES/kcm_kscreen.mo share/locale/ia/LC_MESSAGES/kscreen_common.mo +share/locale/ia/LC_MESSAGES/kscreen_osd.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/id/LC_MESSAGES/kcm_kscreen.mo share/locale/id/LC_MESSAGES/kscreen_common.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo -share/locale/is/LC_MESSAGES/hdrcalibrator.mo share/locale/is/LC_MESSAGES/kcm_kscreen.mo share/locale/is/LC_MESSAGES/kscreen_common.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/it/LC_MESSAGES/hdrcalibrator.mo share/locale/it/LC_MESSAGES/kcm_kscreen.mo share/locale/it/LC_MESSAGES/kscreen_common.mo +share/locale/it/LC_MESSAGES/kscreen_osd.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/ja/LC_MESSAGES/kcm_kscreen.mo share/locale/ja/LC_MESSAGES/kscreen_common.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/ka/LC_MESSAGES/hdrcalibrator.mo share/locale/ka/LC_MESSAGES/kcm_kscreen.mo share/locale/ka/LC_MESSAGES/kscreen_common.mo +share/locale/ka/LC_MESSAGES/kscreen_osd.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/ko/LC_MESSAGES/hdrcalibrator.mo share/locale/ko/LC_MESSAGES/kcm_kscreen.mo share/locale/ko/LC_MESSAGES/kscreen_common.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/lt/LC_MESSAGES/hdrcalibrator.mo share/locale/lt/LC_MESSAGES/kcm_kscreen.mo share/locale/lt/LC_MESSAGES/kscreen_common.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/lv/LC_MESSAGES/hdrcalibrator.mo share/locale/lv/LC_MESSAGES/kcm_kscreen.mo share/locale/lv/LC_MESSAGES/kscreen_common.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/ml/LC_MESSAGES/kcm_kscreen.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/nb/LC_MESSAGES/kcm_kscreen.mo share/locale/nb/LC_MESSAGES/kscreen_common.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/nl/LC_MESSAGES/hdrcalibrator.mo share/locale/nl/LC_MESSAGES/kcm_kscreen.mo share/locale/nl/LC_MESSAGES/kscreen_common.mo +share/locale/nl/LC_MESSAGES/kscreen_osd.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/nn/LC_MESSAGES/kcm_kscreen.mo share/locale/nn/LC_MESSAGES/kscreen_common.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/pa/LC_MESSAGES/kcm_kscreen.mo share/locale/pa/LC_MESSAGES/kscreen_common.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/pl/LC_MESSAGES/hdrcalibrator.mo share/locale/pl/LC_MESSAGES/kcm_kscreen.mo share/locale/pl/LC_MESSAGES/kscreen_common.mo +share/locale/pl/LC_MESSAGES/kscreen_osd.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/pt/LC_MESSAGES/kcm_kscreen.mo share/locale/pt/LC_MESSAGES/kscreen_common.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/pt_BR/LC_MESSAGES/hdrcalibrator.mo share/locale/pt_BR/LC_MESSAGES/kcm_kscreen.mo share/locale/pt_BR/LC_MESSAGES/kscreen_common.mo +share/locale/pt_BR/LC_MESSAGES/kscreen_osd.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo +share/locale/ro/LC_MESSAGES/hdrcalibrator.mo share/locale/ro/LC_MESSAGES/kcm_kscreen.mo share/locale/ro/LC_MESSAGES/kscreen_common.mo +share/locale/ro/LC_MESSAGES/kscreen_osd.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/ru/LC_MESSAGES/hdrcalibrator.mo share/locale/ru/LC_MESSAGES/kcm_kscreen.mo share/locale/ru/LC_MESSAGES/kscreen_common.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/sa/LC_MESSAGES/kcm_kscreen.mo share/locale/sa/LC_MESSAGES/kscreen_common.mo share/locale/sa/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/sk/LC_MESSAGES/kcm_kscreen.mo share/locale/sk/LC_MESSAGES/kscreen_common.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/sl/LC_MESSAGES/hdrcalibrator.mo share/locale/sl/LC_MESSAGES/kcm_kscreen.mo share/locale/sl/LC_MESSAGES/kscreen_common.mo +share/locale/sl/LC_MESSAGES/kscreen_osd.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/sr/LC_MESSAGES/kcm_kscreen.mo share/locale/sr/LC_MESSAGES/kscreen_common.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_kscreen.mo share/locale/sr@ijekavian/LC_MESSAGES/kscreen_common.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_kscreen.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kscreen_common.mo share/locale/sr@latin/LC_MESSAGES/kcm_kscreen.mo share/locale/sr@latin/LC_MESSAGES/kscreen_common.mo share/locale/sv/LC_MESSAGES/hdrcalibrator.mo share/locale/sv/LC_MESSAGES/kcm_kscreen.mo share/locale/sv/LC_MESSAGES/kscreen_common.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/ta/LC_MESSAGES/kcm_kscreen.mo share/locale/ta/LC_MESSAGES/kscreen_common.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/tg/LC_MESSAGES/kcm_kscreen.mo share/locale/tg/LC_MESSAGES/kscreen_common.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/tr/LC_MESSAGES/hdrcalibrator.mo share/locale/tr/LC_MESSAGES/kcm_kscreen.mo share/locale/tr/LC_MESSAGES/kscreen_common.mo +share/locale/tr/LC_MESSAGES/kscreen_osd.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/uk/LC_MESSAGES/hdrcalibrator.mo share/locale/uk/LC_MESSAGES/kcm_kscreen.mo share/locale/uk/LC_MESSAGES/kscreen_common.mo +share/locale/uk/LC_MESSAGES/kscreen_osd.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/zh_CN/LC_MESSAGES/hdrcalibrator.mo share/locale/zh_CN/LC_MESSAGES/kcm_kscreen.mo share/locale/zh_CN/LC_MESSAGES/kscreen_common.mo +share/locale/zh_CN/LC_MESSAGES/kscreen_osd.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/zh_TW/LC_MESSAGES/hdrcalibrator.mo share/locale/zh_TW/LC_MESSAGES/kcm_kscreen.mo share/locale/zh_TW/LC_MESSAGES/kscreen_common.mo +share/locale/zh_TW/LC_MESSAGES/kscreen_osd.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/qlogging-categories6/kscreen.categories diff --git a/x11/plasma6-kwayland/distinfo b/x11/plasma6-kwayland/distinfo index 45b362fd312e..3f3f6b98626f 100644 --- a/x11/plasma6-kwayland/distinfo +++ b/x11/plasma6-kwayland/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1768328318 -SHA256 (KDE/plasma/6.5.5/kwayland-6.5.5.tar.xz) = 5db0105edecec7f8b429940be1d26dffe2d9dfbb0d967e9e16bddb0a22cfd397 -SIZE (KDE/plasma/6.5.5/kwayland-6.5.5.tar.xz) = 132908 +TIMESTAMP = 1771162220 +SHA256 (KDE/plasma/6.6.0/kwayland-6.6.0.tar.xz) = 6e180a4235390a2ae7296e6a760a0e7a57971e00790aed0d98d71034f1274801 +SIZE (KDE/plasma/6.6.0/kwayland-6.6.0.tar.xz) = 132808 diff --git a/x11/plasma6-layer-shell-qt/distinfo b/x11/plasma6-layer-shell-qt/distinfo index 02897f89340c..31528d480bf7 100644 --- a/x11/plasma6-layer-shell-qt/distinfo +++ b/x11/plasma6-layer-shell-qt/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1768328319 -SHA256 (KDE/plasma/6.5.5/layer-shell-qt-6.5.5.tar.xz) = 6844fee55b8b7cbc320cd8308b51595ef830d5a99b4d355b0fd59f88feab2c11 -SIZE (KDE/plasma/6.5.5/layer-shell-qt-6.5.5.tar.xz) = 36188 +TIMESTAMP = 1771162220 +SHA256 (KDE/plasma/6.6.0/layer-shell-qt-6.6.0.tar.xz) = 4551526a746a19f8e47b1419e645ee595bae722ba6b8eedc88c06b917fedeaca +SIZE (KDE/plasma/6.6.0/layer-shell-qt-6.6.0.tar.xz) = 36572 diff --git a/x11/plasma6-libkscreen/Makefile b/x11/plasma6-libkscreen/Makefile index dae6c0a641df..29e6570c4664 100644 --- a/x11/plasma6-libkscreen/Makefile +++ b/x11/plasma6-libkscreen/Makefile @@ -1,25 +1,24 @@ PORTNAME= libkscreen DISTVERSION= ${KDE_PLASMA_VERSION} CATEGORIES= x11 kde kde-plasma COMMENT= KDE screen management software MAINTAINER= kde@FreeBSD.org LIB_DEPENDS= libwayland-client.so:graphics/wayland \ libxkbcommon.so:x11/libxkbcommon -RUN_DEPENDS= ${PNP_IDS_FILE}:misc/hwdata +RUN_DEPENDS= ${LOCALBASE}/share/hwdata/pnp.ids:misc/hwdata USES= cmake compiler:c++11-lib gl kde:6 pkgconfig qt:6 tar:xz xorg USE_GL= gl opengl USE_KDE= config \ ecm:build plasma-wayland-protocols:build USE_QT= base wayland USE_XORG= xcb -PNP_IDS_FILE= ${LOCALBASE}/share/hwdata/pnp.ids - post-patch: - @${REINPLACE_CMD} -e 's|/usr/share/hwdata/pnp.ids|${PNP_IDS_FILE}|' \ +# Looking for pnp.ids + @${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|' \ ${WRKSRC}/src/edid.cpp .include diff --git a/x11/plasma6-libkscreen/distinfo b/x11/plasma6-libkscreen/distinfo index f06703d40d2b..60eac4a8999a 100644 --- a/x11/plasma6-libkscreen/distinfo +++ b/x11/plasma6-libkscreen/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1768328322 -SHA256 (KDE/plasma/6.5.5/libkscreen-6.5.5.tar.xz) = 595bf06cd8b0c906800a34efd7d93e45add99f2f7e9248c0e8203a838ec861f9 -SIZE (KDE/plasma/6.5.5/libkscreen-6.5.5.tar.xz) = 120024 +TIMESTAMP = 1771162222 +SHA256 (KDE/plasma/6.6.0/libkscreen-6.6.0.tar.xz) = 0396fe3b31ad66362fd1a3362646187f4d34f111490cdb10594a89c088c53467 +SIZE (KDE/plasma/6.6.0/libkscreen-6.6.0.tar.xz) = 119876 diff --git a/x11/plasma6-libkscreen/pkg-plist b/x11/plasma6-libkscreen/pkg-plist index a4716e450066..49150c5423e1 100644 --- a/x11/plasma6-libkscreen/pkg-plist +++ b/x11/plasma6-libkscreen/pkg-plist @@ -1,92 +1,91 @@ bin/kscreen-doctor include/KF6/KScreen/KScreen/Config include/KF6/KScreen/KScreen/ConfigMonitor include/KF6/KScreen/KScreen/ConfigOperation include/KF6/KScreen/KScreen/EDID include/KF6/KScreen/KScreen/GetConfigOperation include/KF6/KScreen/KScreen/Log include/KF6/KScreen/KScreen/Mode include/KF6/KScreen/KScreen/Output include/KF6/KScreen/KScreen/Screen include/KF6/KScreen/KScreen/SetConfigOperation include/KF6/KScreen/KScreen/Types include/KF6/KScreen/KScreenDpms/Dpms include/KF6/KScreen/kscreen/backendmanager_p.h include/KF6/KScreen/kscreen/config.h include/KF6/KScreen/kscreen/configmonitor.h include/KF6/KScreen/kscreen/configoperation.h include/KF6/KScreen/kscreen/edid.h include/KF6/KScreen/kscreen/getconfigoperation.h include/KF6/KScreen/kscreen/kscreen_export.h include/KF6/KScreen/kscreen/log.h include/KF6/KScreen/kscreen/mode.h include/KF6/KScreen/kscreen/output.h include/KF6/KScreen/kscreen/screen.h include/KF6/KScreen/kscreen/setconfigoperation.h include/KF6/KScreen/kscreen/types.h include/KF6/KScreen/kscreendpms/dpms.h include/KF6/KScreen/kscreendpms/kscreendpms_export.h include/KF6/kscreen_version.h lib/cmake/KF6Screen/KF6ScreenConfig.cmake lib/cmake/KF6Screen/KF6ScreenConfigVersion.cmake lib/cmake/KF6Screen/KF6ScreenTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF6Screen/KF6ScreenTargets.cmake lib/libKF6Screen.so lib/libKF6Screen.so.%%KDE_PLASMA_VERSION%% lib/libKF6Screen.so.8 lib/libKF6ScreenDpms.so lib/libKF6ScreenDpms.so.%%KDE_PLASMA_VERSION%% lib/libKF6ScreenDpms.so.8 lib/libexec/kf6/kscreen_backend_launcher %%QT_PLUGINDIR%%/kf6/kscreen/KSC_Fake.so %%QT_PLUGINDIR%%/kf6/kscreen/KSC_KWayland.so %%QT_PLUGINDIR%%/kf6/kscreen/KSC_XRandR.so @comment lib/systemd/user/plasma-kscreen.service libdata/pkgconfig/KF6Screen.pc share/dbus-1/services/org.kde.kscreen.service share/locale/ar/LC_MESSAGES/libkscreen6_qt.qm share/locale/ast/LC_MESSAGES/libkscreen6_qt.qm share/locale/bg/LC_MESSAGES/libkscreen6_qt.qm share/locale/ca/LC_MESSAGES/libkscreen6_qt.qm share/locale/ca@valencia/LC_MESSAGES/libkscreen6_qt.qm share/locale/cs/LC_MESSAGES/libkscreen6_qt.qm share/locale/de/LC_MESSAGES/libkscreen6_qt.qm share/locale/en_GB/LC_MESSAGES/libkscreen6_qt.qm share/locale/eo/LC_MESSAGES/libkscreen6_qt.qm share/locale/es/LC_MESSAGES/libkscreen6_qt.qm share/locale/eu/LC_MESSAGES/libkscreen6_qt.qm share/locale/fi/LC_MESSAGES/libkscreen6_qt.qm share/locale/fr/LC_MESSAGES/libkscreen6_qt.qm share/locale/ga/LC_MESSAGES/libkscreen6_qt.qm share/locale/gl/LC_MESSAGES/libkscreen6_qt.qm share/locale/he/LC_MESSAGES/libkscreen6_qt.qm share/locale/hi/LC_MESSAGES/libkscreen6_qt.qm share/locale/hu/LC_MESSAGES/libkscreen6_qt.qm share/locale/ia/LC_MESSAGES/libkscreen6_qt.qm share/locale/id/LC_MESSAGES/libkscreen6_qt.qm share/locale/is/LC_MESSAGES/libkscreen6_qt.qm share/locale/it/LC_MESSAGES/libkscreen6_qt.qm share/locale/ja/LC_MESSAGES/libkscreen6_qt.qm share/locale/ka/LC_MESSAGES/libkscreen6_qt.qm share/locale/ko/LC_MESSAGES/libkscreen6_qt.qm share/locale/lt/LC_MESSAGES/libkscreen6_qt.qm share/locale/lv/LC_MESSAGES/libkscreen6_qt.qm share/locale/nb/LC_MESSAGES/libkscreen6_qt.qm share/locale/nl/LC_MESSAGES/libkscreen6_qt.qm share/locale/nn/LC_MESSAGES/libkscreen6_qt.qm share/locale/pl/LC_MESSAGES/libkscreen6_qt.qm share/locale/pt/LC_MESSAGES/libkscreen6_qt.qm share/locale/pt_BR/LC_MESSAGES/libkscreen6_qt.qm share/locale/ro/LC_MESSAGES/libkscreen6_qt.qm share/locale/ru/LC_MESSAGES/libkscreen6_qt.qm share/locale/sa/LC_MESSAGES/libkscreen6_qt.qm share/locale/sk/LC_MESSAGES/libkscreen6_qt.qm share/locale/sl/LC_MESSAGES/libkscreen6_qt.qm -share/locale/sv/LC_MESSAGES/libkscreen6_qt.qm share/locale/ta/LC_MESSAGES/libkscreen6_qt.qm share/locale/tr/LC_MESSAGES/libkscreen6_qt.qm share/locale/uk/LC_MESSAGES/libkscreen6_qt.qm share/locale/zh_CN/LC_MESSAGES/libkscreen6_qt.qm share/locale/zh_TW/LC_MESSAGES/libkscreen6_qt.qm share/qlogging-categories6/libkscreen.categories share/zsh/site-functions/_kscreen-doctor diff --git a/x11/plasma6-libplasma/Makefile b/x11/plasma6-libplasma/Makefile index 45f94102812b..ab0f024ff9de 100644 --- a/x11/plasma6-libplasma/Makefile +++ b/x11/plasma6-libplasma/Makefile @@ -1,24 +1,23 @@ PORTNAME= libplasma DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= x11 kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Shared libraries for Plasma Desktop BUILD_DEPENDS= wayland-protocols>=0:graphics/wayland-protocols LIB_DEPENDS= libwayland-client.so:graphics/wayland \ libxkbcommon.so:x11/libxkbcommon USES= cmake gettext gl kde:6 pkgconfig qt:6 tar:xz xorg USE_XORG= ice sm x11 xcb xext USE_GL= egl gl opengl USE_KDE= activities archive colorscheme completion config configwidgets \ coreaddons globalaccel guiaddons i18n iconthemes jobwidgets \ kio kirigami2 notifications package \ plasma-wayland-protocols service solid svg widgetsaddons \ windowsystem \ ecm:build USE_QT= base declarative svg wayland .include diff --git a/x11/plasma6-libplasma/distinfo b/x11/plasma6-libplasma/distinfo index 5c95d3e9fb38..0791e6cf90e8 100644 --- a/x11/plasma6-libplasma/distinfo +++ b/x11/plasma6-libplasma/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1768328322 -SHA256 (KDE/plasma/6.5.5/libplasma-6.5.5.tar.xz) = 7d88f9bd0f90b90f4d2290cd8fa0f37e7af3810a0ed58c7d226a02838ab8a71a -SIZE (KDE/plasma/6.5.5/libplasma-6.5.5.tar.xz) = 1971228 +TIMESTAMP = 1771162222 +SHA256 (KDE/plasma/6.6.0/libplasma-6.6.0.tar.xz) = 8660109816bbb90a3677c7ba859073422d26bb11800d8ce2afa30871943c15e8 +SIZE (KDE/plasma/6.6.0/libplasma-6.6.0.tar.xz) = 1970836 diff --git a/x11/plasma6-plasma-activities-stats/distinfo b/x11/plasma6-plasma-activities-stats/distinfo index 5574a95e5136..56ef06667d11 100644 --- a/x11/plasma6-plasma-activities-stats/distinfo +++ b/x11/plasma6-plasma-activities-stats/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1768328328 -SHA256 (KDE/plasma/6.5.5/plasma-activities-stats-6.5.5.tar.xz) = 7f281b6840d33f934a4252fd74846913321214472fe431e5432b891f8d212a10 -SIZE (KDE/plasma/6.5.5/plasma-activities-stats-6.5.5.tar.xz) = 83096 +TIMESTAMP = 1771162225 +SHA256 (KDE/plasma/6.6.0/plasma-activities-stats-6.6.0.tar.xz) = 03fe7bda7db2dd30cb26cbb87d2829965532439a8d6532be089e317629ea9b5a +SIZE (KDE/plasma/6.6.0/plasma-activities-stats-6.6.0.tar.xz) = 83492 diff --git a/x11/plasma6-plasma-activities/distinfo b/x11/plasma6-plasma-activities/distinfo index 6d0e41ae0744..c01b50109ef2 100644 --- a/x11/plasma6-plasma-activities/distinfo +++ b/x11/plasma6-plasma-activities/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1768328325 -SHA256 (KDE/plasma/6.5.5/plasma-activities-6.5.5.tar.xz) = 4fe5980ebcc7470216d8ce937003c0f93b9416b0b615a3f8a0488cd26ee5a511 -SIZE (KDE/plasma/6.5.5/plasma-activities-6.5.5.tar.xz) = 63008 +TIMESTAMP = 1771162224 +SHA256 (KDE/plasma/6.6.0/plasma-activities-6.6.0.tar.xz) = 30848eff95958bd0da093a4d0006a7dd4550ea1f70838f09a95eb9bd5e784fa1 +SIZE (KDE/plasma/6.6.0/plasma-activities-6.6.0.tar.xz) = 62996 diff --git a/x11/plasma6-plasma-desktop/Makefile b/x11/plasma6-plasma-desktop/Makefile index a887c860b51c..a2069448ae1f 100644 --- a/x11/plasma6-plasma-desktop/Makefile +++ b/x11/plasma6-plasma-desktop/Makefile @@ -1,62 +1,61 @@ PORTNAME= plasma-desktop DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= x11 kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= KDE Plasma Desktop BUILD_DEPENDS= wayland-protocols>=0:graphics/wayland-protocols \ xf86-input-libinput>0:x11-drivers/xf86-input-libinput \ libinput>0:x11/libinput LIB_DEPENDS= libcanberra.so:audio/libcanberra \ libicuuc.so:devel/icu \ libkaccounts6.so:net-im/kaccounts-integration \ liboauth2plugin.so:sysutils/signon-plugin-oauth2@qt6 \ libpackagekitqt6.so:ports-mgmt/packagekit-qt \ libwayland-client.so:graphics/wayland \ libxcb-util.so:x11/xcb-util \ libxkbcommon.so:x11/libxkbcommon \ libxkbfile.so:x11/libxkbfile RUN_DEPENDS= noto-emoji>0:x11-fonts/noto-emoji \ xdg-user-dir:devel/xdg-user-dirs USES= cmake gettext gl gnome kde:6 pkgconfig python qt:6 tar:xz xorg USE_GL= gl opengl USE_GNOME= intltool USE_KDE= activities activities-stats attica auth baloo bookmarks \ codecs colorscheme completion config configwidgets coreaddons \ crash dbusaddons doctools filemetadata globalaccel guiaddons \ i18n iconthemes itemmodels itemviews jobwidgets kcmutils kio \ libksysguard libplasma newstuff notifications notifyconfig \ package plasma-workspace plasma5support runner service solid \ sonnet svg widgetsaddons windowsystem xmlgui \ ecm:build \ kirigami-addons:run kirigami2:run kpipewire:run \ qqc2-desktop-style:run USE_QT= 5compat base declarative svg wayland USE_XORG= x11 xcb xcursor xext xfixes xi xrender OPTIONS_DEFINE= SDL X11 OPTIONS_DEFAULT= X11 OPTIONS_GROUP= IM IM_DESC= Input Method Support OPTIONS_GROUP_IM= IBUS SCIM OPTIONS_SUB= yes IBUS_DESC= Enable IBUS backend for input dialog IBUS_LIB_DEPENDS= libibus-1.0.so:textproc/ibus IBUS_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_IBus SCIM_DESC= Enable SCIM backend for input dialog SCIM_LIB_DEPENDS= libscim-1.0.so:textproc/scim SCIM_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_SCIM SDL_DESC= Enable gamecontroller System Settings module SDL_USES= sdl SDL_USE= sdl=sdl2 SDL_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_SDL2 X11_RUN_DEPENDS= xf86-input-libinput>0:x11-drivers/xf86-input-libinput .include diff --git a/x11/plasma6-plasma-desktop/distinfo b/x11/plasma6-plasma-desktop/distinfo index 4726a7ed9799..c1f5a01f382d 100644 --- a/x11/plasma6-plasma-desktop/distinfo +++ b/x11/plasma6-plasma-desktop/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1768328329 -SHA256 (KDE/plasma/6.5.5/plasma-desktop-6.5.5.tar.xz) = 2367f12531575b2e445cd2b0fa0b756f151f10eaa27358b0966735ff400146c7 -SIZE (KDE/plasma/6.5.5/plasma-desktop-6.5.5.tar.xz) = 16758868 +TIMESTAMP = 1771162226 +SHA256 (KDE/plasma/6.6.0/plasma-desktop-6.6.0.tar.xz) = d91e4dd276ea1ad743e31ace859a36ec4dfb431495c81eb1a8eb32a49c73f342 +SIZE (KDE/plasma/6.6.0/plasma-desktop-6.6.0.tar.xz) = 17079072 diff --git a/x11/plasma6-plasma-desktop/pkg-plist b/x11/plasma6-plasma-desktop/pkg-plist index 5d8db6ced135..a064c754faa0 100644 --- a/x11/plasma6-plasma-desktop/pkg-plist +++ b/x11/plasma6-plasma-desktop/pkg-plist @@ -1,4190 +1,4098 @@ bin/kaccess bin/kapplymousetheme bin/kcm-touchpad-list-devices bin/knetattach bin/krunner-plugininstaller bin/plasma-emojier bin/solid-action-desktop-gen bin/tastenbrett etc/xdg/autostart/kaccess.desktop lib/libexec/kf6/kauth/kcmdatetimehelper %%IBUS%%lib/libexec/kimpanel-ibus-panel %%IBUS%%lib/libexec/kimpanel-ibus-panel-launcher %%SCIM%%lib/libexec/kimpanel-scim-panel lib/libkglobalaccelmodel.so.6 lib/libkglobalaccelmodel.so.%%KDE_PLASMA_VERSION%% %%QT_PLUGINDIR%%/attica_kde.so %%QT_PLUGINDIR%%/kf6/kded/device_automounter.so %%QT_PLUGINDIR%%/kf6/kded/kded_touchpad.so %%QT_PLUGINDIR%%/kf6/kded/keyboard.so %%QT_PLUGINDIR%%/kf6/krunner/krunner_keys.so %%QT_PLUGINDIR%%/kf6/krunner/krunner_kwin.so %%QT_PLUGINDIR%%/kf6/krunner/krunner_plasma-desktop.so %%QT_PLUGINDIR%%/plasma/applets/org.kde.panel.so +%%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.keyboardlayout.so %%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.kicker.so %%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.kickoff.so +%%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.kimpanel.so +%%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.marginsseparator.so +%%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.pager.so +%%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.showActivityManager.so +%%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.showdesktop.so +%%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.taskmanager.so %%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.trash.so %%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.windowlist.so %%QT_PLUGINDIR%%/plasma/kcminit/kcm_mouse_init.so %%QT_PLUGINDIR%%/plasma/kcminit/kcm_touchpad_init.so %%QT_PLUGINDIR%%/plasma/kcms/desktop/kcm_krunnersettings.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_access.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_activities.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_baloofile.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_desktoppaths.so %%SDL%%%%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_gamecontroller.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_kded.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_keyboard.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_keys.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_landingpage.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_mouse.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_plasmasearch.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_smserver.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_splashscreen.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_tablet.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_touchpad.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_touchscreen.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_workspace.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_clock.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_device_automounter.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_qtquicksettings.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_recentFiles.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_solid_actions.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcmspellchecking.so %%QT_QMLDIR%%/org/kde/plasma/activityswitcher/activityswitcherextensionplugin.qmltypes %%QT_QMLDIR%%/org/kde/plasma/activityswitcher/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/plasma/activityswitcher/libactivityswitcherextensionplugin.so %%QT_QMLDIR%%/org/kde/plasma/activityswitcher/qmldir %%QT_QMLDIR%%/org/kde/plasma/emoji/EmojierDeclarativePlugin.qmltypes %%QT_QMLDIR%%/org/kde/plasma/emoji/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/plasma/emoji/libEmojierDeclarativePlugin.so %%QT_QMLDIR%%/org/kde/plasma/emoji/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/kcm_keyboard/kcm_keyboard_declarative.qmltypes %%QT_QMLDIR%%/org/kde/plasma/private/kcm_keyboard/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/plasma/private/kcm_keyboard/libkcm_keyboard_declarative.so %%QT_QMLDIR%%/org/kde/plasma/private/kcm_keyboard/qmldir -%%QT_QMLDIR%%/org/kde/plasma/private/kimpanel/kde-qmlmodule.version -%%QT_QMLDIR%%/org/kde/plasma/private/kimpanel/kimpanelplugin.qmltypes -%%QT_QMLDIR%%/org/kde/plasma/private/kimpanel/libkimpanelplugin.so -%%QT_QMLDIR%%/org/kde/plasma/private/kimpanel/qmldir -%%QT_QMLDIR%%/org/kde/plasma/private/pager/kde-qmlmodule.version -%%QT_QMLDIR%%/org/kde/plasma/private/pager/libpagerplugin.so -%%QT_QMLDIR%%/org/kde/plasma/private/pager/pagerplugin.qmltypes -%%QT_QMLDIR%%/org/kde/plasma/private/pager/qmldir -%%QT_QMLDIR%%/org/kde/plasma/private/showdesktop/kde-qmlmodule.version -%%QT_QMLDIR%%/org/kde/plasma/private/showdesktop/libshowdesktopplugin.so -%%QT_QMLDIR%%/org/kde/plasma/private/showdesktop/qmldir -%%QT_QMLDIR%%/org/kde/plasma/private/showdesktop/showdesktopplugin.qmltypes -%%QT_QMLDIR%%/org/kde/plasma/private/taskmanager/kde-qmlmodule.version -%%QT_QMLDIR%%/org/kde/plasma/private/taskmanager/libtaskmanagerplugin.so -%%QT_QMLDIR%%/org/kde/plasma/private/taskmanager/qmldir -%%QT_QMLDIR%%/org/kde/plasma/private/taskmanager/taskmanagerplugin.qmltypes %%QT_QMLDIR%%/org/kde/private/desktopcontainment/folder/folderplugin.qmltypes %%QT_QMLDIR%%/org/kde/private/desktopcontainment/folder/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/private/desktopcontainment/folder/libfolderplugin.so %%QT_QMLDIR%%/org/kde/private/desktopcontainment/folder/qmldir @comment lib/systemd/user/plasma-kaccess.service share/accounts/providers/kde/opendesktop.provider share/accounts/services/kde/opendesktop-rating.service share/applications/kaccess.desktop share/applications/kcm_access.desktop share/applications/kcm_activities.desktop share/applications/kcm_baloofile.desktop share/applications/kcm_clock.desktop share/applications/kcm_desktoppaths.desktop %%SDL%%share/applications/kcm_gamecontroller.desktop share/applications/kcm_kded.desktop share/applications/kcm_keyboard.desktop share/applications/kcm_keys.desktop share/applications/kcm_krunnersettings.desktop share/applications/kcm_landingpage.desktop share/applications/kcm_mouse.desktop share/applications/kcm_plasmasearch.desktop share/applications/kcm_qtquicksettings.desktop share/applications/kcm_recentFiles.desktop share/applications/kcm_smserver.desktop share/applications/kcm_solid_actions.desktop share/applications/kcm_splashscreen.desktop share/applications/kcm_tablet.desktop share/applications/kcm_touchpad.desktop share/applications/kcm_touchscreen.desktop share/applications/kcm_workspace.desktop share/applications/kcmspellchecking.desktop share/applications/kde-mimeapps.list share/applications/org.kde.knetattach.desktop share/applications/org.kde.plasma.emojier.desktop share/config.kcfg/kactivitymanagerd_plugins_settings.kcfg -share/config.kcfg/kactivitymanagerd_settings.kcfg share/config.kcfg/kcmaccessibilitybell.kcfg share/config.kcfg/kcmaccessibilitycolorblindnesscorrection.kcfg share/config.kcfg/kcmaccessibilityinvert.kcfg share/config.kcfg/kcmaccessibilitykeyboard.kcfg share/config.kcfg/kcmaccessibilitymouse.kcfg share/config.kcfg/kcmaccessibilityscreenreader.kcfg share/config.kcfg/kcmaccessibilityshakecursor.kcfg share/config.kcfg/kcmaccessibilityzoommagnifier.kcfg share/config.kcfg/krunnersettingsbase.kcfg share/config.kcfg/landingpage_kdeglobalssettings.kcfg share/config.kcfg/splashscreensettings.kcfg share/config.kcfg/workspaceoptions_kdeglobalssettings.kcfg share/config.kcfg/workspaceoptions_kwinsettings.kcfg share/config.kcfg/workspaceoptions_plasmasettings.kcfg share/dbus-1/interfaces/org.kde.touchpad.xml share/dbus-1/system-services/org.kde.kcontrol.kcmclock.service share/dbus-1/system.d/org.kde.kcontrol.kcmclock.conf share/doc/HTML/ca/kcontrol/baloo/index.cache.bz2 share/doc/HTML/ca/kcontrol/baloo/index.docbook share/doc/HTML/ca/kcontrol/clock/index.cache.bz2 share/doc/HTML/ca/kcontrol/clock/index.docbook share/doc/HTML/ca/kcontrol/joystick/index.cache.bz2 share/doc/HTML/ca/kcontrol/joystick/index.docbook share/doc/HTML/ca/kcontrol/kcm_recentFiles/index.cache.bz2 share/doc/HTML/ca/kcontrol/kcm_recentFiles/index.docbook share/doc/HTML/ca/kcontrol/kcmaccess/index.cache.bz2 share/doc/HTML/ca/kcontrol/kcmaccess/index.docbook share/doc/HTML/ca/kcontrol/kcmactivities/index.cache.bz2 share/doc/HTML/ca/kcontrol/kcmactivities/index.docbook -share/doc/HTML/ca/kcontrol/kcmlaunchfeedback/index.cache.bz2 -share/doc/HTML/ca/kcontrol/kcmlaunchfeedback/index.docbook share/doc/HTML/ca/kcontrol/kcmsmserver/index.cache.bz2 share/doc/HTML/ca/kcontrol/kcmsmserver/index.docbook share/doc/HTML/ca/kcontrol/kded/index.cache.bz2 share/doc/HTML/ca/kcontrol/kded/index.docbook share/doc/HTML/ca/kcontrol/keyboard/index.cache.bz2 share/doc/HTML/ca/kcontrol/keyboard/index.docbook share/doc/HTML/ca/kcontrol/keys/index.cache.bz2 share/doc/HTML/ca/kcontrol/keys/index.docbook share/doc/HTML/ca/kcontrol/mouse/index.cache.bz2 share/doc/HTML/ca/kcontrol/mouse/index.docbook share/doc/HTML/ca/kcontrol/paths/index.cache.bz2 share/doc/HTML/ca/kcontrol/paths/index.docbook share/doc/HTML/ca/kcontrol/paths/paths.png share/doc/HTML/ca/kcontrol/solid-actions/add-action.png share/doc/HTML/ca/kcontrol/solid-actions/edit-action.png share/doc/HTML/ca/kcontrol/solid-actions/index.cache.bz2 share/doc/HTML/ca/kcontrol/solid-actions/index.docbook share/doc/HTML/ca/kcontrol/solid-actions/main.png share/doc/HTML/ca/kcontrol/solid-device-automounter/index.cache.bz2 share/doc/HTML/ca/kcontrol/solid-device-automounter/index.docbook share/doc/HTML/ca/kcontrol/spellchecking/index.cache.bz2 share/doc/HTML/ca/kcontrol/spellchecking/index.docbook share/doc/HTML/ca/kcontrol/splashscreen/get-new-theme.png share/doc/HTML/ca/kcontrol/splashscreen/index.cache.bz2 share/doc/HTML/ca/kcontrol/splashscreen/index.docbook share/doc/HTML/ca/kcontrol/splashscreen/splash-main.png share/doc/HTML/ca/kcontrol/workspaceoptions/index.cache.bz2 share/doc/HTML/ca/kcontrol/workspaceoptions/index.docbook share/doc/HTML/ca/kfontview/index.cache.bz2 share/doc/HTML/ca/kfontview/index.docbook share/doc/HTML/ca/kfontview/kfontview.png share/doc/HTML/ca/knetattach/index.cache.bz2 share/doc/HTML/ca/knetattach/index.docbook share/doc/HTML/ca/knetattach/screenshot.png share/doc/HTML/ca/knetattach/screenshot1.png share/doc/HTML/ca/knetattach/screenshot2.png share/doc/HTML/ca/knetattach/screenshot3.png share/doc/HTML/ca/knetattach/screenshot4.png share/doc/HTML/ca/plasma-desktop/add-widgets.png share/doc/HTML/ca/plasma-desktop/application-launcher.png share/doc/HTML/ca/plasma-desktop/application-menu.png share/doc/HTML/ca/plasma-desktop/index.cache.bz2 share/doc/HTML/ca/plasma-desktop/index.docbook share/doc/HTML/de/kcontrol/baloo/index.cache.bz2 share/doc/HTML/de/kcontrol/baloo/index.docbook share/doc/HTML/de/kcontrol/clock/index.cache.bz2 share/doc/HTML/de/kcontrol/clock/index.docbook share/doc/HTML/de/kcontrol/joystick/index.cache.bz2 share/doc/HTML/de/kcontrol/joystick/index.docbook share/doc/HTML/de/kcontrol/kcmaccess/index.cache.bz2 share/doc/HTML/de/kcontrol/kcmaccess/index.docbook share/doc/HTML/de/kcontrol/kcmactivities/index.cache.bz2 share/doc/HTML/de/kcontrol/kcmactivities/index.docbook -share/doc/HTML/de/kcontrol/kcmlaunchfeedback/index.cache.bz2 -share/doc/HTML/de/kcontrol/kcmlaunchfeedback/index.docbook share/doc/HTML/de/kcontrol/kcmsmserver/index.cache.bz2 share/doc/HTML/de/kcontrol/kcmsmserver/index.docbook share/doc/HTML/de/kcontrol/kded/index.cache.bz2 share/doc/HTML/de/kcontrol/kded/index.docbook share/doc/HTML/de/kcontrol/keyboard/index.cache.bz2 share/doc/HTML/de/kcontrol/keyboard/index.docbook share/doc/HTML/de/kcontrol/keys/index.cache.bz2 share/doc/HTML/de/kcontrol/keys/index.docbook share/doc/HTML/de/kcontrol/mouse/index.cache.bz2 share/doc/HTML/de/kcontrol/mouse/index.docbook share/doc/HTML/de/kcontrol/paths/index.cache.bz2 share/doc/HTML/de/kcontrol/paths/index.docbook share/doc/HTML/de/kcontrol/solid-actions/index.cache.bz2 share/doc/HTML/de/kcontrol/solid-actions/index.docbook share/doc/HTML/de/kcontrol/solid-device-automounter/index.cache.bz2 share/doc/HTML/de/kcontrol/solid-device-automounter/index.docbook share/doc/HTML/de/kcontrol/spellchecking/index.cache.bz2 share/doc/HTML/de/kcontrol/spellchecking/index.docbook share/doc/HTML/de/kcontrol/splashscreen/index.cache.bz2 share/doc/HTML/de/kcontrol/splashscreen/index.docbook share/doc/HTML/de/kcontrol/workspaceoptions/index.cache.bz2 share/doc/HTML/de/kcontrol/workspaceoptions/index.docbook share/doc/HTML/de/kfontview/index.cache.bz2 share/doc/HTML/de/kfontview/index.docbook share/doc/HTML/de/knetattach/index.cache.bz2 share/doc/HTML/de/knetattach/index.docbook share/doc/HTML/de/plasma-desktop/index.cache.bz2 share/doc/HTML/de/plasma-desktop/index.docbook share/doc/HTML/en/kcontrol/baloo/index.cache.bz2 share/doc/HTML/en/kcontrol/baloo/index.docbook share/doc/HTML/en/kcontrol/clock/index.cache.bz2 share/doc/HTML/en/kcontrol/clock/index.docbook share/doc/HTML/en/kcontrol/joystick/index.cache.bz2 share/doc/HTML/en/kcontrol/joystick/index.docbook share/doc/HTML/en/kcontrol/joystick/joystick-calibration.png share/doc/HTML/en/kcontrol/joystick/joystick-main.png share/doc/HTML/en/kcontrol/kcm_recentFiles/index.cache.bz2 share/doc/HTML/en/kcontrol/kcm_recentFiles/index.docbook share/doc/HTML/en/kcontrol/kcmaccess/index.cache.bz2 share/doc/HTML/en/kcontrol/kcmaccess/index.docbook share/doc/HTML/en/kcontrol/kcmactivities/configure.png share/doc/HTML/en/kcontrol/kcmactivities/edit-delete.png share/doc/HTML/en/kcontrol/kcmactivities/index.cache.bz2 share/doc/HTML/en/kcontrol/kcmactivities/index.docbook share/doc/HTML/en/kcontrol/kcmsmserver/index.cache.bz2 share/doc/HTML/en/kcontrol/kcmsmserver/index.docbook share/doc/HTML/en/kcontrol/kded/index.cache.bz2 share/doc/HTML/en/kcontrol/kded/index.docbook share/doc/HTML/en/kcontrol/keyboard/index.cache.bz2 share/doc/HTML/en/kcontrol/keyboard/index.docbook share/doc/HTML/en/kcontrol/keys/index.cache.bz2 share/doc/HTML/en/kcontrol/keys/index.docbook share/doc/HTML/en/kcontrol/keys/list-add.png share/doc/HTML/en/kcontrol/keys/remove.png share/doc/HTML/en/kcontrol/mouse/index.cache.bz2 share/doc/HTML/en/kcontrol/mouse/index.docbook share/doc/HTML/en/kcontrol/paths/index.cache.bz2 share/doc/HTML/en/kcontrol/paths/index.docbook share/doc/HTML/en/kcontrol/paths/paths.png share/doc/HTML/en/kcontrol/solid-actions/add-action.png share/doc/HTML/en/kcontrol/solid-actions/edit-action.png share/doc/HTML/en/kcontrol/solid-actions/index.cache.bz2 share/doc/HTML/en/kcontrol/solid-actions/index.docbook share/doc/HTML/en/kcontrol/solid-actions/main.png share/doc/HTML/en/kcontrol/solid-device-automounter/index.cache.bz2 share/doc/HTML/en/kcontrol/solid-device-automounter/index.docbook share/doc/HTML/en/kcontrol/spellchecking/index.cache.bz2 share/doc/HTML/en/kcontrol/spellchecking/index.docbook share/doc/HTML/en/kcontrol/splashscreen/get-new-theme.png share/doc/HTML/en/kcontrol/splashscreen/index.cache.bz2 share/doc/HTML/en/kcontrol/splashscreen/index.docbook share/doc/HTML/en/kcontrol/splashscreen/splash-main.png share/doc/HTML/en/kcontrol/workspaceoptions/index.cache.bz2 share/doc/HTML/en/kcontrol/workspaceoptions/index.docbook share/doc/HTML/en/kfontview/index.cache.bz2 share/doc/HTML/en/kfontview/index.docbook share/doc/HTML/en/kfontview/kfontview.png share/doc/HTML/en/knetattach/index.cache.bz2 share/doc/HTML/en/knetattach/index.docbook share/doc/HTML/en/knetattach/screenshot.png share/doc/HTML/en/knetattach/screenshot1.png share/doc/HTML/en/knetattach/screenshot2.png share/doc/HTML/en/knetattach/screenshot3.png share/doc/HTML/en/knetattach/screenshot4.png share/doc/HTML/en/plasma-desktop/add-widgets.png share/doc/HTML/en/plasma-desktop/application-launcher-settings.png share/doc/HTML/en/plasma-desktop/application-launcher.png share/doc/HTML/en/plasma-desktop/application-menu.png share/doc/HTML/en/plasma-desktop/desktop-settings.png share/doc/HTML/en/plasma-desktop/device_notifier_widget.png share/doc/HTML/en/plasma-desktop/device_notifier_widget_actions.png share/doc/HTML/en/plasma-desktop/folder-view.png share/doc/HTML/en/plasma-desktop/index.cache.bz2 share/doc/HTML/en/plasma-desktop/index.docbook share/doc/HTML/en/plasma-desktop/krunner-configure.png share/doc/HTML/en/plasma-desktop/krunner-desktop-actions.png share/doc/HTML/en/plasma-desktop/krunner.png share/doc/HTML/en/plasma-desktop/panel-settings.png share/doc/HTML/en/plasma-desktop/plasma-desktop-annotated.png share/doc/HTML/en/plasma-desktop/remove.png share/doc/HTML/en/plasma-desktop/system-tray-settings.png share/doc/HTML/en/plasma-desktop/system-tray-up-arrow.png share/doc/HTML/en/plasma-desktop/taskbar-settings.png share/doc/HTML/es/kcontrol/baloo/index.cache.bz2 share/doc/HTML/es/kcontrol/baloo/index.docbook share/doc/HTML/es/kcontrol/clock/index.cache.bz2 share/doc/HTML/es/kcontrol/clock/index.docbook share/doc/HTML/es/kcontrol/joystick/index.cache.bz2 share/doc/HTML/es/kcontrol/joystick/index.docbook share/doc/HTML/es/kcontrol/kcm_recentFiles/index.cache.bz2 share/doc/HTML/es/kcontrol/kcm_recentFiles/index.docbook share/doc/HTML/es/kcontrol/kcmaccess/index.cache.bz2 share/doc/HTML/es/kcontrol/kcmaccess/index.docbook share/doc/HTML/es/kcontrol/kcmactivities/index.cache.bz2 share/doc/HTML/es/kcontrol/kcmactivities/index.docbook -share/doc/HTML/es/kcontrol/kcmlaunchfeedback/index.cache.bz2 -share/doc/HTML/es/kcontrol/kcmlaunchfeedback/index.docbook share/doc/HTML/es/kcontrol/kcmsmserver/index.cache.bz2 share/doc/HTML/es/kcontrol/kcmsmserver/index.docbook share/doc/HTML/es/kcontrol/kded/index.cache.bz2 share/doc/HTML/es/kcontrol/kded/index.docbook share/doc/HTML/es/kcontrol/keyboard/index.cache.bz2 share/doc/HTML/es/kcontrol/keyboard/index.docbook share/doc/HTML/es/kcontrol/keys/index.cache.bz2 share/doc/HTML/es/kcontrol/keys/index.docbook share/doc/HTML/es/kcontrol/mouse/index.cache.bz2 share/doc/HTML/es/kcontrol/mouse/index.docbook share/doc/HTML/es/kcontrol/paths/index.cache.bz2 share/doc/HTML/es/kcontrol/paths/index.docbook share/doc/HTML/es/kcontrol/solid-actions/index.cache.bz2 share/doc/HTML/es/kcontrol/solid-actions/index.docbook share/doc/HTML/es/kcontrol/solid-device-automounter/index.cache.bz2 share/doc/HTML/es/kcontrol/solid-device-automounter/index.docbook share/doc/HTML/es/kcontrol/spellchecking/index.cache.bz2 share/doc/HTML/es/kcontrol/spellchecking/index.docbook share/doc/HTML/es/kcontrol/splashscreen/index.cache.bz2 share/doc/HTML/es/kcontrol/splashscreen/index.docbook share/doc/HTML/es/kcontrol/workspaceoptions/index.cache.bz2 share/doc/HTML/es/kcontrol/workspaceoptions/index.docbook share/doc/HTML/es/kfontview/index.cache.bz2 share/doc/HTML/es/kfontview/index.docbook share/doc/HTML/es/knetattach/index.cache.bz2 share/doc/HTML/es/knetattach/index.docbook share/doc/HTML/es/plasma-desktop/index.cache.bz2 share/doc/HTML/es/plasma-desktop/index.docbook share/doc/HTML/et/kcontrol/clock/index.cache.bz2 share/doc/HTML/et/kcontrol/clock/index.docbook share/doc/HTML/et/kcontrol/solid-actions/index.cache.bz2 share/doc/HTML/et/kcontrol/solid-actions/index.docbook share/doc/HTML/et/kcontrol/solid-device-automounter/index.cache.bz2 share/doc/HTML/et/kcontrol/solid-device-automounter/index.docbook share/doc/HTML/fr/kcontrol/clock/index.cache.bz2 share/doc/HTML/fr/kcontrol/clock/index.docbook share/doc/HTML/fr/kcontrol/kded/index.cache.bz2 share/doc/HTML/fr/kcontrol/kded/index.docbook share/doc/HTML/fr/kcontrol/paths/index.cache.bz2 share/doc/HTML/fr/kcontrol/paths/index.docbook share/doc/HTML/fr/kcontrol/solid-actions/index.cache.bz2 share/doc/HTML/fr/kcontrol/solid-actions/index.docbook share/doc/HTML/fr/kcontrol/solid-device-automounter/index.cache.bz2 share/doc/HTML/fr/kcontrol/solid-device-automounter/index.docbook share/doc/HTML/fr/kcontrol/spellchecking/index.cache.bz2 share/doc/HTML/fr/kcontrol/spellchecking/index.docbook share/doc/HTML/fr/kcontrol/splashscreen/index.cache.bz2 share/doc/HTML/fr/kcontrol/splashscreen/index.docbook share/doc/HTML/fr/knetattach/index.cache.bz2 share/doc/HTML/fr/knetattach/index.docbook share/doc/HTML/id/kcontrol/baloo/index.cache.bz2 share/doc/HTML/id/kcontrol/baloo/index.docbook share/doc/HTML/id/kcontrol/clock/index.cache.bz2 share/doc/HTML/id/kcontrol/clock/index.docbook share/doc/HTML/id/kcontrol/joystick/index.cache.bz2 share/doc/HTML/id/kcontrol/joystick/index.docbook share/doc/HTML/id/kcontrol/kcmaccess/index.cache.bz2 share/doc/HTML/id/kcontrol/kcmaccess/index.docbook -share/doc/HTML/id/kcontrol/kcmlaunchfeedback/index.cache.bz2 -share/doc/HTML/id/kcontrol/kcmlaunchfeedback/index.docbook share/doc/HTML/id/kcontrol/kcmsmserver/index.cache.bz2 share/doc/HTML/id/kcontrol/kcmsmserver/index.docbook share/doc/HTML/id/kcontrol/kded/index.cache.bz2 share/doc/HTML/id/kcontrol/kded/index.docbook share/doc/HTML/id/kcontrol/keyboard/index.cache.bz2 share/doc/HTML/id/kcontrol/keyboard/index.docbook share/doc/HTML/id/kcontrol/keys/index.cache.bz2 share/doc/HTML/id/kcontrol/keys/index.docbook share/doc/HTML/id/kcontrol/mouse/index.cache.bz2 share/doc/HTML/id/kcontrol/mouse/index.docbook share/doc/HTML/id/kcontrol/paths/index.cache.bz2 share/doc/HTML/id/kcontrol/paths/index.docbook share/doc/HTML/id/kcontrol/solid-actions/index.cache.bz2 share/doc/HTML/id/kcontrol/solid-actions/index.docbook share/doc/HTML/id/kcontrol/solid-device-automounter/index.cache.bz2 share/doc/HTML/id/kcontrol/solid-device-automounter/index.docbook share/doc/HTML/id/kcontrol/spellchecking/index.cache.bz2 share/doc/HTML/id/kcontrol/spellchecking/index.docbook share/doc/HTML/id/kcontrol/splashscreen/index.cache.bz2 share/doc/HTML/id/kcontrol/splashscreen/index.docbook share/doc/HTML/id/kcontrol/workspaceoptions/index.cache.bz2 share/doc/HTML/id/kcontrol/workspaceoptions/index.docbook share/doc/HTML/id/kfontview/index.cache.bz2 share/doc/HTML/id/kfontview/index.docbook share/doc/HTML/id/knetattach/index.cache.bz2 share/doc/HTML/id/knetattach/index.docbook share/doc/HTML/id/plasma-desktop/index.cache.bz2 share/doc/HTML/id/plasma-desktop/index.docbook share/doc/HTML/it/kcontrol/baloo/index.cache.bz2 share/doc/HTML/it/kcontrol/baloo/index.docbook share/doc/HTML/it/kcontrol/clock/index.cache.bz2 share/doc/HTML/it/kcontrol/clock/index.docbook share/doc/HTML/it/kcontrol/joystick/index.cache.bz2 share/doc/HTML/it/kcontrol/joystick/index.docbook share/doc/HTML/it/kcontrol/kcm_recentFiles/index.cache.bz2 share/doc/HTML/it/kcontrol/kcm_recentFiles/index.docbook share/doc/HTML/it/kcontrol/kcmaccess/index.cache.bz2 share/doc/HTML/it/kcontrol/kcmaccess/index.docbook share/doc/HTML/it/kcontrol/kcmactivities/index.cache.bz2 share/doc/HTML/it/kcontrol/kcmactivities/index.docbook -share/doc/HTML/it/kcontrol/kcmlaunchfeedback/index.cache.bz2 -share/doc/HTML/it/kcontrol/kcmlaunchfeedback/index.docbook share/doc/HTML/it/kcontrol/kcmsmserver/index.cache.bz2 share/doc/HTML/it/kcontrol/kcmsmserver/index.docbook share/doc/HTML/it/kcontrol/kded/index.cache.bz2 share/doc/HTML/it/kcontrol/kded/index.docbook share/doc/HTML/it/kcontrol/keyboard/index.cache.bz2 share/doc/HTML/it/kcontrol/keyboard/index.docbook share/doc/HTML/it/kcontrol/keys/index.cache.bz2 share/doc/HTML/it/kcontrol/keys/index.docbook share/doc/HTML/it/kcontrol/mouse/index.cache.bz2 share/doc/HTML/it/kcontrol/mouse/index.docbook share/doc/HTML/it/kcontrol/paths/index.cache.bz2 share/doc/HTML/it/kcontrol/paths/index.docbook share/doc/HTML/it/kcontrol/solid-actions/add-action.png share/doc/HTML/it/kcontrol/solid-actions/edit-action.png share/doc/HTML/it/kcontrol/solid-actions/index.cache.bz2 share/doc/HTML/it/kcontrol/solid-actions/index.docbook share/doc/HTML/it/kcontrol/solid-actions/main.png share/doc/HTML/it/kcontrol/solid-device-automounter/index.cache.bz2 share/doc/HTML/it/kcontrol/solid-device-automounter/index.docbook share/doc/HTML/it/kcontrol/spellchecking/index.cache.bz2 share/doc/HTML/it/kcontrol/spellchecking/index.docbook share/doc/HTML/it/kcontrol/splashscreen/index.cache.bz2 share/doc/HTML/it/kcontrol/splashscreen/index.docbook share/doc/HTML/it/kcontrol/workspaceoptions/index.cache.bz2 share/doc/HTML/it/kcontrol/workspaceoptions/index.docbook share/doc/HTML/it/kfontview/index.cache.bz2 share/doc/HTML/it/kfontview/index.docbook share/doc/HTML/it/knetattach/index.cache.bz2 share/doc/HTML/it/knetattach/index.docbook share/doc/HTML/it/plasma-desktop/index.cache.bz2 share/doc/HTML/it/plasma-desktop/index.docbook share/doc/HTML/nl/kcontrol/baloo/index.cache.bz2 share/doc/HTML/nl/kcontrol/baloo/index.docbook share/doc/HTML/nl/kcontrol/clock/index.cache.bz2 share/doc/HTML/nl/kcontrol/clock/index.docbook share/doc/HTML/nl/kcontrol/joystick/index.cache.bz2 share/doc/HTML/nl/kcontrol/joystick/index.docbook share/doc/HTML/nl/kcontrol/kcm_recentFiles/index.cache.bz2 share/doc/HTML/nl/kcontrol/kcm_recentFiles/index.docbook share/doc/HTML/nl/kcontrol/kcmaccess/index.cache.bz2 share/doc/HTML/nl/kcontrol/kcmaccess/index.docbook share/doc/HTML/nl/kcontrol/kcmactivities/index.cache.bz2 share/doc/HTML/nl/kcontrol/kcmactivities/index.docbook -share/doc/HTML/nl/kcontrol/kcmlaunchfeedback/index.cache.bz2 -share/doc/HTML/nl/kcontrol/kcmlaunchfeedback/index.docbook share/doc/HTML/nl/kcontrol/kcmsmserver/index.cache.bz2 share/doc/HTML/nl/kcontrol/kcmsmserver/index.docbook share/doc/HTML/nl/kcontrol/kded/index.cache.bz2 share/doc/HTML/nl/kcontrol/kded/index.docbook share/doc/HTML/nl/kcontrol/keyboard/index.cache.bz2 share/doc/HTML/nl/kcontrol/keyboard/index.docbook share/doc/HTML/nl/kcontrol/keys/index.cache.bz2 share/doc/HTML/nl/kcontrol/keys/index.docbook share/doc/HTML/nl/kcontrol/mouse/index.cache.bz2 share/doc/HTML/nl/kcontrol/mouse/index.docbook share/doc/HTML/nl/kcontrol/paths/index.cache.bz2 share/doc/HTML/nl/kcontrol/paths/index.docbook share/doc/HTML/nl/kcontrol/solid-actions/index.cache.bz2 share/doc/HTML/nl/kcontrol/solid-actions/index.docbook share/doc/HTML/nl/kcontrol/solid-device-automounter/index.cache.bz2 share/doc/HTML/nl/kcontrol/solid-device-automounter/index.docbook share/doc/HTML/nl/kcontrol/spellchecking/index.cache.bz2 share/doc/HTML/nl/kcontrol/spellchecking/index.docbook share/doc/HTML/nl/kcontrol/splashscreen/index.cache.bz2 share/doc/HTML/nl/kcontrol/splashscreen/index.docbook share/doc/HTML/nl/kcontrol/workspaceoptions/index.cache.bz2 share/doc/HTML/nl/kcontrol/workspaceoptions/index.docbook share/doc/HTML/nl/kfontview/index.cache.bz2 share/doc/HTML/nl/kfontview/index.docbook share/doc/HTML/nl/knetattach/index.cache.bz2 share/doc/HTML/nl/knetattach/index.docbook share/doc/HTML/nl/plasma-desktop/index.cache.bz2 share/doc/HTML/nl/plasma-desktop/index.docbook share/doc/HTML/pt/kcontrol/baloo/index.cache.bz2 share/doc/HTML/pt/kcontrol/baloo/index.docbook share/doc/HTML/pt/kcontrol/clock/index.cache.bz2 share/doc/HTML/pt/kcontrol/clock/index.docbook share/doc/HTML/pt/kcontrol/joystick/index.cache.bz2 share/doc/HTML/pt/kcontrol/joystick/index.docbook share/doc/HTML/pt/kcontrol/kcmaccess/index.cache.bz2 share/doc/HTML/pt/kcontrol/kcmaccess/index.docbook -share/doc/HTML/pt/kcontrol/kcmlaunchfeedback/index.cache.bz2 -share/doc/HTML/pt/kcontrol/kcmlaunchfeedback/index.docbook share/doc/HTML/pt/kcontrol/kded/index.cache.bz2 share/doc/HTML/pt/kcontrol/kded/index.docbook share/doc/HTML/pt/kcontrol/keyboard/index.cache.bz2 share/doc/HTML/pt/kcontrol/keyboard/index.docbook share/doc/HTML/pt/kcontrol/keys/index.cache.bz2 share/doc/HTML/pt/kcontrol/keys/index.docbook share/doc/HTML/pt/kcontrol/mouse/index.cache.bz2 share/doc/HTML/pt/kcontrol/mouse/index.docbook share/doc/HTML/pt/kcontrol/paths/index.cache.bz2 share/doc/HTML/pt/kcontrol/paths/index.docbook share/doc/HTML/pt/kcontrol/solid-actions/index.cache.bz2 share/doc/HTML/pt/kcontrol/solid-actions/index.docbook share/doc/HTML/pt/kcontrol/solid-device-automounter/index.cache.bz2 share/doc/HTML/pt/kcontrol/solid-device-automounter/index.docbook share/doc/HTML/pt/kcontrol/spellchecking/index.cache.bz2 share/doc/HTML/pt/kcontrol/spellchecking/index.docbook share/doc/HTML/pt/kcontrol/splashscreen/index.cache.bz2 share/doc/HTML/pt/kcontrol/splashscreen/index.docbook share/doc/HTML/pt/kfontview/index.cache.bz2 share/doc/HTML/pt/kfontview/index.docbook share/doc/HTML/pt/knetattach/index.cache.bz2 share/doc/HTML/pt/knetattach/index.docbook share/doc/HTML/pt/plasma-desktop/index.cache.bz2 share/doc/HTML/pt/plasma-desktop/index.docbook share/doc/HTML/pt_BR/kcontrol/baloo/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/baloo/index.docbook share/doc/HTML/pt_BR/kcontrol/clock/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/clock/index.docbook share/doc/HTML/pt_BR/kcontrol/joystick/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/joystick/index.docbook share/doc/HTML/pt_BR/kcontrol/kcm_recentFiles/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/kcm_recentFiles/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/kcmactivities/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/kcmactivities/index.docbook -share/doc/HTML/pt_BR/kcontrol/kcmlaunchfeedback/index.cache.bz2 -share/doc/HTML/pt_BR/kcontrol/kcmlaunchfeedback/index.docbook share/doc/HTML/pt_BR/kcontrol/kcmsmserver/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/kcmsmserver/index.docbook share/doc/HTML/pt_BR/kcontrol/kded/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/kded/index.docbook share/doc/HTML/pt_BR/kcontrol/keyboard/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/keyboard/index.docbook share/doc/HTML/pt_BR/kcontrol/keys/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/keys/index.docbook share/doc/HTML/pt_BR/kcontrol/mouse/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/mouse/index.docbook share/doc/HTML/pt_BR/kcontrol/paths/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/paths/index.docbook share/doc/HTML/pt_BR/kcontrol/solid-actions/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/solid-actions/index.docbook share/doc/HTML/pt_BR/kcontrol/solid-device-automounter/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/solid-device-automounter/index.docbook share/doc/HTML/pt_BR/kcontrol/spellchecking/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/spellchecking/index.docbook share/doc/HTML/pt_BR/kcontrol/splashscreen/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/splashscreen/index.docbook share/doc/HTML/pt_BR/kcontrol/splashscreen/splash-main.png share/doc/HTML/pt_BR/kcontrol/workspaceoptions/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/workspaceoptions/index.docbook 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/joystick/index.cache.bz2 share/doc/HTML/ru/kcontrol/joystick/index.docbook share/doc/HTML/ru/kcontrol/joystick/joystick-calibration.png share/doc/HTML/ru/kcontrol/joystick/joystick-main.png share/doc/HTML/ru/kcontrol/kcmaccess/index.cache.bz2 share/doc/HTML/ru/kcontrol/kcmaccess/index.docbook share/doc/HTML/ru/kcontrol/kcmactivities/index.cache.bz2 share/doc/HTML/ru/kcontrol/kcmactivities/index.docbook -share/doc/HTML/ru/kcontrol/kcmlaunchfeedback/index.cache.bz2 -share/doc/HTML/ru/kcontrol/kcmlaunchfeedback/index.docbook share/doc/HTML/ru/kcontrol/kcmsmserver/index.cache.bz2 share/doc/HTML/ru/kcontrol/kcmsmserver/index.docbook share/doc/HTML/ru/kcontrol/kded/index.cache.bz2 share/doc/HTML/ru/kcontrol/kded/index.docbook share/doc/HTML/ru/kcontrol/keyboard/index.cache.bz2 share/doc/HTML/ru/kcontrol/keyboard/index.docbook share/doc/HTML/ru/kcontrol/keys/index.cache.bz2 share/doc/HTML/ru/kcontrol/keys/index.docbook share/doc/HTML/ru/kcontrol/mouse/index.cache.bz2 share/doc/HTML/ru/kcontrol/mouse/index.docbook share/doc/HTML/ru/kcontrol/paths/index.cache.bz2 share/doc/HTML/ru/kcontrol/paths/index.docbook share/doc/HTML/ru/kcontrol/paths/paths.png share/doc/HTML/ru/kcontrol/solid-actions/add-action.png share/doc/HTML/ru/kcontrol/solid-actions/edit-action.png share/doc/HTML/ru/kcontrol/solid-actions/index.cache.bz2 share/doc/HTML/ru/kcontrol/solid-actions/index.docbook share/doc/HTML/ru/kcontrol/solid-actions/main.png share/doc/HTML/ru/kcontrol/solid-device-automounter/index.cache.bz2 share/doc/HTML/ru/kcontrol/solid-device-automounter/index.docbook share/doc/HTML/ru/kcontrol/spellchecking/index.cache.bz2 share/doc/HTML/ru/kcontrol/spellchecking/index.docbook share/doc/HTML/ru/kcontrol/splashscreen/get-new-theme.png share/doc/HTML/ru/kcontrol/splashscreen/index.cache.bz2 share/doc/HTML/ru/kcontrol/splashscreen/index.docbook share/doc/HTML/ru/kcontrol/splashscreen/splash-main.png share/doc/HTML/ru/kcontrol/workspaceoptions/index.cache.bz2 share/doc/HTML/ru/kcontrol/workspaceoptions/index.docbook share/doc/HTML/ru/kfontview/index.cache.bz2 share/doc/HTML/ru/kfontview/index.docbook share/doc/HTML/ru/knetattach/index.cache.bz2 share/doc/HTML/ru/knetattach/index.docbook share/doc/HTML/ru/plasma-desktop/index.cache.bz2 share/doc/HTML/ru/plasma-desktop/index.docbook share/doc/HTML/sl/kcontrol/baloo/index.cache.bz2 share/doc/HTML/sl/kcontrol/baloo/index.docbook share/doc/HTML/sl/kcontrol/clock/index.cache.bz2 share/doc/HTML/sl/kcontrol/clock/index.docbook share/doc/HTML/sl/kcontrol/joystick/index.cache.bz2 share/doc/HTML/sl/kcontrol/joystick/index.docbook share/doc/HTML/sl/kcontrol/kcm_recentFiles/index.cache.bz2 share/doc/HTML/sl/kcontrol/kcm_recentFiles/index.docbook share/doc/HTML/sl/kcontrol/kcmaccess/index.cache.bz2 share/doc/HTML/sl/kcontrol/kcmaccess/index.docbook share/doc/HTML/sl/kcontrol/kcmactivities/index.cache.bz2 share/doc/HTML/sl/kcontrol/kcmactivities/index.docbook share/doc/HTML/sl/kcontrol/kcmsmserver/index.cache.bz2 share/doc/HTML/sl/kcontrol/kcmsmserver/index.docbook share/doc/HTML/sl/kcontrol/kded/index.cache.bz2 share/doc/HTML/sl/kcontrol/kded/index.docbook share/doc/HTML/sl/kcontrol/keyboard/index.cache.bz2 share/doc/HTML/sl/kcontrol/keyboard/index.docbook share/doc/HTML/sl/kcontrol/keys/index.cache.bz2 share/doc/HTML/sl/kcontrol/keys/index.docbook share/doc/HTML/sl/kcontrol/mouse/index.cache.bz2 share/doc/HTML/sl/kcontrol/mouse/index.docbook share/doc/HTML/sl/kcontrol/paths/index.cache.bz2 share/doc/HTML/sl/kcontrol/paths/index.docbook share/doc/HTML/sl/kcontrol/solid-actions/index.cache.bz2 share/doc/HTML/sl/kcontrol/solid-actions/index.docbook share/doc/HTML/sl/kcontrol/solid-device-automounter/index.cache.bz2 share/doc/HTML/sl/kcontrol/solid-device-automounter/index.docbook share/doc/HTML/sl/kcontrol/spellchecking/index.cache.bz2 share/doc/HTML/sl/kcontrol/spellchecking/index.docbook share/doc/HTML/sl/kcontrol/splashscreen/index.cache.bz2 share/doc/HTML/sl/kcontrol/splashscreen/index.docbook share/doc/HTML/sl/kcontrol/workspaceoptions/index.cache.bz2 share/doc/HTML/sl/kcontrol/workspaceoptions/index.docbook share/doc/HTML/sl/kfontview/index.cache.bz2 share/doc/HTML/sl/kfontview/index.docbook share/doc/HTML/sl/plasma-desktop/index.cache.bz2 share/doc/HTML/sl/plasma-desktop/index.docbook share/doc/HTML/sr/kcontrol/clock/index.cache.bz2 share/doc/HTML/sr/kcontrol/clock/index.docbook -share/doc/HTML/sr/kcontrol/kcmlaunchfeedback/index.cache.bz2 -share/doc/HTML/sr/kcontrol/kcmlaunchfeedback/index.docbook share/doc/HTML/sr/kcontrol/paths/index.cache.bz2 share/doc/HTML/sr/kcontrol/paths/index.docbook share/doc/HTML/sr/kcontrol/spellchecking/index.cache.bz2 share/doc/HTML/sr/kcontrol/spellchecking/index.docbook share/doc/HTML/sr/knetattach/index.cache.bz2 share/doc/HTML/sr/knetattach/index.docbook share/doc/HTML/sr@latin/kcontrol/clock/index.cache.bz2 share/doc/HTML/sr@latin/kcontrol/clock/index.docbook -share/doc/HTML/sr@latin/kcontrol/kcmlaunchfeedback/index.cache.bz2 -share/doc/HTML/sr@latin/kcontrol/kcmlaunchfeedback/index.docbook share/doc/HTML/sr@latin/kcontrol/paths/index.cache.bz2 share/doc/HTML/sr@latin/kcontrol/paths/index.docbook share/doc/HTML/sr@latin/kcontrol/spellchecking/index.cache.bz2 share/doc/HTML/sr@latin/kcontrol/spellchecking/index.docbook share/doc/HTML/sr@latin/knetattach/index.cache.bz2 share/doc/HTML/sr@latin/knetattach/index.docbook share/doc/HTML/sv/kcontrol/baloo/index.cache.bz2 share/doc/HTML/sv/kcontrol/baloo/index.docbook share/doc/HTML/sv/kcontrol/clock/index.cache.bz2 share/doc/HTML/sv/kcontrol/clock/index.docbook share/doc/HTML/sv/kcontrol/joystick/index.cache.bz2 share/doc/HTML/sv/kcontrol/joystick/index.docbook share/doc/HTML/sv/kcontrol/kcmaccess/index.cache.bz2 share/doc/HTML/sv/kcontrol/kcmaccess/index.docbook share/doc/HTML/sv/kcontrol/kcmactivities/index.cache.bz2 share/doc/HTML/sv/kcontrol/kcmactivities/index.docbook -share/doc/HTML/sv/kcontrol/kcmlaunchfeedback/index.cache.bz2 -share/doc/HTML/sv/kcontrol/kcmlaunchfeedback/index.docbook share/doc/HTML/sv/kcontrol/kcmsmserver/index.cache.bz2 share/doc/HTML/sv/kcontrol/kcmsmserver/index.docbook share/doc/HTML/sv/kcontrol/kded/index.cache.bz2 share/doc/HTML/sv/kcontrol/kded/index.docbook share/doc/HTML/sv/kcontrol/keyboard/index.cache.bz2 share/doc/HTML/sv/kcontrol/keyboard/index.docbook share/doc/HTML/sv/kcontrol/keys/index.cache.bz2 share/doc/HTML/sv/kcontrol/keys/index.docbook share/doc/HTML/sv/kcontrol/mouse/index.cache.bz2 share/doc/HTML/sv/kcontrol/mouse/index.docbook share/doc/HTML/sv/kcontrol/paths/index.cache.bz2 share/doc/HTML/sv/kcontrol/paths/index.docbook share/doc/HTML/sv/kcontrol/solid-actions/index.cache.bz2 share/doc/HTML/sv/kcontrol/solid-actions/index.docbook share/doc/HTML/sv/kcontrol/solid-device-automounter/index.cache.bz2 share/doc/HTML/sv/kcontrol/solid-device-automounter/index.docbook share/doc/HTML/sv/kcontrol/spellchecking/index.cache.bz2 share/doc/HTML/sv/kcontrol/spellchecking/index.docbook share/doc/HTML/sv/kcontrol/splashscreen/index.cache.bz2 share/doc/HTML/sv/kcontrol/splashscreen/index.docbook share/doc/HTML/sv/kcontrol/workspaceoptions/index.cache.bz2 share/doc/HTML/sv/kcontrol/workspaceoptions/index.docbook share/doc/HTML/sv/kfontview/index.cache.bz2 share/doc/HTML/sv/kfontview/index.docbook share/doc/HTML/sv/knetattach/index.cache.bz2 share/doc/HTML/sv/knetattach/index.docbook share/doc/HTML/sv/plasma-desktop/index.cache.bz2 share/doc/HTML/sv/plasma-desktop/index.docbook share/doc/HTML/tr/kcontrol/baloo/index.cache.bz2 share/doc/HTML/tr/kcontrol/baloo/index.docbook share/doc/HTML/tr/kcontrol/clock/index.cache.bz2 share/doc/HTML/tr/kcontrol/clock/index.docbook share/doc/HTML/tr/kcontrol/joystick/index.cache.bz2 share/doc/HTML/tr/kcontrol/joystick/index.docbook share/doc/HTML/tr/kcontrol/kcm_recentFiles/index.cache.bz2 share/doc/HTML/tr/kcontrol/kcm_recentFiles/index.docbook share/doc/HTML/tr/kcontrol/kcmaccess/index.cache.bz2 share/doc/HTML/tr/kcontrol/kcmaccess/index.docbook share/doc/HTML/tr/kcontrol/kcmactivities/index.cache.bz2 share/doc/HTML/tr/kcontrol/kcmactivities/index.docbook share/doc/HTML/tr/kcontrol/kcmsmserver/index.cache.bz2 share/doc/HTML/tr/kcontrol/kcmsmserver/index.docbook share/doc/HTML/tr/kcontrol/kded/index.cache.bz2 share/doc/HTML/tr/kcontrol/kded/index.docbook share/doc/HTML/tr/kcontrol/keyboard/index.cache.bz2 share/doc/HTML/tr/kcontrol/keyboard/index.docbook share/doc/HTML/tr/kcontrol/keys/index.cache.bz2 share/doc/HTML/tr/kcontrol/keys/index.docbook share/doc/HTML/tr/kcontrol/mouse/index.cache.bz2 share/doc/HTML/tr/kcontrol/mouse/index.docbook share/doc/HTML/tr/kcontrol/paths/index.cache.bz2 share/doc/HTML/tr/kcontrol/paths/index.docbook share/doc/HTML/tr/kcontrol/solid-actions/index.cache.bz2 share/doc/HTML/tr/kcontrol/solid-actions/index.docbook share/doc/HTML/tr/kcontrol/solid-device-automounter/index.cache.bz2 share/doc/HTML/tr/kcontrol/solid-device-automounter/index.docbook share/doc/HTML/tr/kcontrol/spellchecking/index.cache.bz2 share/doc/HTML/tr/kcontrol/spellchecking/index.docbook share/doc/HTML/tr/kcontrol/splashscreen/index.cache.bz2 share/doc/HTML/tr/kcontrol/splashscreen/index.docbook share/doc/HTML/tr/kcontrol/workspaceoptions/index.cache.bz2 share/doc/HTML/tr/kcontrol/workspaceoptions/index.docbook share/doc/HTML/tr/kfontview/index.cache.bz2 share/doc/HTML/tr/kfontview/index.docbook share/doc/HTML/tr/knetattach/index.cache.bz2 share/doc/HTML/tr/knetattach/index.docbook share/doc/HTML/tr/plasma-desktop/index.cache.bz2 share/doc/HTML/tr/plasma-desktop/index.docbook share/doc/HTML/uk/kcontrol/baloo/index.cache.bz2 share/doc/HTML/uk/kcontrol/baloo/index.docbook share/doc/HTML/uk/kcontrol/clock/index.cache.bz2 share/doc/HTML/uk/kcontrol/clock/index.docbook share/doc/HTML/uk/kcontrol/joystick/index.cache.bz2 share/doc/HTML/uk/kcontrol/joystick/index.docbook share/doc/HTML/uk/kcontrol/kcm_recentFiles/index.cache.bz2 share/doc/HTML/uk/kcontrol/kcm_recentFiles/index.docbook share/doc/HTML/uk/kcontrol/kcmaccess/index.cache.bz2 share/doc/HTML/uk/kcontrol/kcmaccess/index.docbook share/doc/HTML/uk/kcontrol/kcmactivities/index.cache.bz2 share/doc/HTML/uk/kcontrol/kcmactivities/index.docbook -share/doc/HTML/uk/kcontrol/kcmlaunchfeedback/index.cache.bz2 -share/doc/HTML/uk/kcontrol/kcmlaunchfeedback/index.docbook share/doc/HTML/uk/kcontrol/kcmsmserver/index.cache.bz2 share/doc/HTML/uk/kcontrol/kcmsmserver/index.docbook share/doc/HTML/uk/kcontrol/kded/index.cache.bz2 share/doc/HTML/uk/kcontrol/kded/index.docbook share/doc/HTML/uk/kcontrol/keyboard/index.cache.bz2 share/doc/HTML/uk/kcontrol/keyboard/index.docbook share/doc/HTML/uk/kcontrol/keys/index.cache.bz2 share/doc/HTML/uk/kcontrol/keys/index.docbook share/doc/HTML/uk/kcontrol/mouse/index.cache.bz2 share/doc/HTML/uk/kcontrol/mouse/index.docbook share/doc/HTML/uk/kcontrol/paths/index.cache.bz2 share/doc/HTML/uk/kcontrol/paths/index.docbook share/doc/HTML/uk/kcontrol/paths/paths.png share/doc/HTML/uk/kcontrol/solid-actions/add-action.png share/doc/HTML/uk/kcontrol/solid-actions/edit-action.png share/doc/HTML/uk/kcontrol/solid-actions/index.cache.bz2 share/doc/HTML/uk/kcontrol/solid-actions/index.docbook share/doc/HTML/uk/kcontrol/solid-actions/main.png share/doc/HTML/uk/kcontrol/solid-device-automounter/index.cache.bz2 share/doc/HTML/uk/kcontrol/solid-device-automounter/index.docbook share/doc/HTML/uk/kcontrol/spellchecking/index.cache.bz2 share/doc/HTML/uk/kcontrol/spellchecking/index.docbook share/doc/HTML/uk/kcontrol/splashscreen/get-new-theme.png share/doc/HTML/uk/kcontrol/splashscreen/index.cache.bz2 share/doc/HTML/uk/kcontrol/splashscreen/index.docbook share/doc/HTML/uk/kcontrol/splashscreen/splash-main.png share/doc/HTML/uk/kcontrol/workspaceoptions/index.cache.bz2 share/doc/HTML/uk/kcontrol/workspaceoptions/index.docbook share/doc/HTML/uk/kfontview/index.cache.bz2 share/doc/HTML/uk/kfontview/index.docbook share/doc/HTML/uk/kfontview/kfontview.png share/doc/HTML/uk/knetattach/index.cache.bz2 share/doc/HTML/uk/knetattach/index.docbook share/doc/HTML/uk/plasma-desktop/application-launcher-settings.png share/doc/HTML/uk/plasma-desktop/index.cache.bz2 share/doc/HTML/uk/plasma-desktop/index.docbook share/icons/hicolor/128x128/devices/input-touchpad.png share/icons/hicolor/16x16/devices/input-touchpad.png share/icons/hicolor/22x22/devices/input-touchpad.png share/icons/hicolor/24x24/devices/input-touchpad.png share/icons/hicolor/256x256/devices/input-touchpad.png share/icons/hicolor/32x32/devices/input-touchpad.png share/icons/hicolor/48x48/devices/input-touchpad.png share/icons/hicolor/64x64/devices/input-touchpad.png share/icons/hicolor/96x96/devices/input-touchpad.png share/icons/hicolor/scalable/devices/input-touchpad.svgz share/kcm_recentFiles/workspace/settings/qml/recentFiles/ExcludedApplicationView.qml share/kcmkeys/kde3.kksrc share/kcmkeys/kde4.kksrc share/kcmkeys/mac4.kksrc share/kcmkeys/unix3.kksrc share/kcmkeys/win3.kksrc share/kcmkeys/win4.kksrc share/kcmkeys/wm3.kksrc share/kcmmouse/cursor_large_black.pcf.gz share/kcmmouse/cursor_large_white.pcf.gz share/kcmmouse/cursor_small_white.pcf.gz share/kcmmouse/pics/mouse_lh.png share/kcmmouse/pics/mouse_rh.png share/kcmsolidactions/solid-action-template.desktop share/kglobalaccel/org.kde.plasma.emojier.desktop share/kglobalaccel/org.kde.touchpadshortcuts.desktop share/knotifications6/kaccess.notifyrc share/knsrcfiles/krunner.knsrc share/knsrcfiles/ksplash.knsrc share/locale/af/LC_MESSAGES/kaccess.mo share/locale/af/LC_MESSAGES/kcm_access.mo share/locale/af/LC_MESSAGES/kcm_desktoppaths.mo share/locale/af/LC_MESSAGES/kcm_kded.mo share/locale/af/LC_MESSAGES/kcm_keyboard.mo share/locale/af/LC_MESSAGES/kcm_smserver.mo share/locale/af/LC_MESSAGES/kcmkclock.mo share/locale/af/LC_MESSAGES/kcmmouse.mo share/locale/af/LC_MESSAGES/knetattach.mo share/locale/af/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ar/LC_MESSAGES/kaccess.mo share/locale/ar/LC_MESSAGES/kcm_access.mo share/locale/ar/LC_MESSAGES/kcm_activities.mo share/locale/ar/LC_MESSAGES/kcm_baloofile.mo share/locale/ar/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ar/LC_MESSAGES/kcm_device_automounter.mo share/locale/ar/LC_MESSAGES/kcm_gamecontroller.mo share/locale/ar/LC_MESSAGES/kcm_kded.mo share/locale/ar/LC_MESSAGES/kcm_keyboard.mo share/locale/ar/LC_MESSAGES/kcm_keys.mo share/locale/ar/LC_MESSAGES/kcm_krunnersettings.mo share/locale/ar/LC_MESSAGES/kcm_landingpage.mo share/locale/ar/LC_MESSAGES/kcm_plasmasearch.mo share/locale/ar/LC_MESSAGES/kcm_recentFiles.mo share/locale/ar/LC_MESSAGES/kcm_smserver.mo share/locale/ar/LC_MESSAGES/kcm_solid_actions.mo share/locale/ar/LC_MESSAGES/kcm_splashscreen.mo share/locale/ar/LC_MESSAGES/kcm_tablet.mo share/locale/ar/LC_MESSAGES/kcm_touchpad.mo share/locale/ar/LC_MESSAGES/kcm_touchscreen.mo share/locale/ar/LC_MESSAGES/kcm_workspace.mo share/locale/ar/LC_MESSAGES/kcmkclock.mo share/locale/ar/LC_MESSAGES/kcmmouse.mo share/locale/ar/LC_MESSAGES/kcmqtquicksettings.mo share/locale/ar/LC_MESSAGES/knetattach.mo share/locale/ar/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/ar/LC_MESSAGES/plasma-desktop-sddm-theme.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/ar/LC_MESSAGES/plasma_runner_keys.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.paneltoolbox.mo share/locale/ar/LC_MESSAGES/plasmaactivitymanager.mo share/locale/as/LC_MESSAGES/kcm_access.mo share/locale/ast/LC_MESSAGES/kaccess.mo share/locale/ast/LC_MESSAGES/kcm_access.mo share/locale/ast/LC_MESSAGES/kcm_activities.mo share/locale/ast/LC_MESSAGES/kcm_baloofile.mo share/locale/ast/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ast/LC_MESSAGES/kcm_device_automounter.mo share/locale/ast/LC_MESSAGES/kcm_gamecontroller.mo share/locale/ast/LC_MESSAGES/kcm_kded.mo share/locale/ast/LC_MESSAGES/kcm_keyboard.mo share/locale/ast/LC_MESSAGES/kcm_keys.mo share/locale/ast/LC_MESSAGES/kcm_krunnersettings.mo share/locale/ast/LC_MESSAGES/kcm_landingpage.mo share/locale/ast/LC_MESSAGES/kcm_plasmasearch.mo share/locale/ast/LC_MESSAGES/kcm_recentFiles.mo share/locale/ast/LC_MESSAGES/kcm_smserver.mo share/locale/ast/LC_MESSAGES/kcm_solid_actions.mo share/locale/ast/LC_MESSAGES/kcm_splashscreen.mo share/locale/ast/LC_MESSAGES/kcm_tablet.mo share/locale/ast/LC_MESSAGES/kcm_touchpad.mo share/locale/ast/LC_MESSAGES/kcm_touchscreen.mo share/locale/ast/LC_MESSAGES/kcm_workspace.mo share/locale/ast/LC_MESSAGES/kcmkclock.mo share/locale/ast/LC_MESSAGES/kcmmouse.mo share/locale/ast/LC_MESSAGES/kcmqtquicksettings.mo share/locale/ast/LC_MESSAGES/knetattach.mo share/locale/ast/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/ast/LC_MESSAGES/plasma_runner_kwin.mo share/locale/ast/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/ast/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/ast/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/ast/LC_MESSAGES/plasmaactivitymanager.mo share/locale/az/LC_MESSAGES/kaccess.mo share/locale/az/LC_MESSAGES/kcm_access.mo share/locale/az/LC_MESSAGES/kcm_activities.mo share/locale/az/LC_MESSAGES/kcm_baloofile.mo share/locale/az/LC_MESSAGES/kcm_desktoppaths.mo share/locale/az/LC_MESSAGES/kcm_device_automounter.mo share/locale/az/LC_MESSAGES/kcm_kded.mo share/locale/az/LC_MESSAGES/kcm_keyboard.mo share/locale/az/LC_MESSAGES/kcm_keys.mo share/locale/az/LC_MESSAGES/kcm_krunnersettings.mo share/locale/az/LC_MESSAGES/kcm_landingpage.mo share/locale/az/LC_MESSAGES/kcm_plasmasearch.mo share/locale/az/LC_MESSAGES/kcm_recentFiles.mo share/locale/az/LC_MESSAGES/kcm_smserver.mo share/locale/az/LC_MESSAGES/kcm_solid_actions.mo share/locale/az/LC_MESSAGES/kcm_splashscreen.mo share/locale/az/LC_MESSAGES/kcm_tablet.mo share/locale/az/LC_MESSAGES/kcm_touchpad.mo share/locale/az/LC_MESSAGES/kcm_touchscreen.mo share/locale/az/LC_MESSAGES/kcm_workspace.mo share/locale/az/LC_MESSAGES/kcmkclock.mo share/locale/az/LC_MESSAGES/kcmmouse.mo share/locale/az/LC_MESSAGES/kcmqtquicksettings.mo share/locale/az/LC_MESSAGES/knetattach.mo share/locale/az/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/az/LC_MESSAGES/plasma_runner_kwin.mo share/locale/az/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/az/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/az/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/az/LC_MESSAGES/plasmaactivitymanager.mo share/locale/be/LC_MESSAGES/kaccess.mo share/locale/be/LC_MESSAGES/kcm_access.mo share/locale/be/LC_MESSAGES/kcm_activities.mo share/locale/be/LC_MESSAGES/kcm_baloofile.mo share/locale/be/LC_MESSAGES/kcm_desktoppaths.mo share/locale/be/LC_MESSAGES/kcm_device_automounter.mo share/locale/be/LC_MESSAGES/kcm_gamecontroller.mo share/locale/be/LC_MESSAGES/kcm_kded.mo share/locale/be/LC_MESSAGES/kcm_keyboard.mo share/locale/be/LC_MESSAGES/kcm_keys.mo share/locale/be/LC_MESSAGES/kcm_krunnersettings.mo share/locale/be/LC_MESSAGES/kcm_landingpage.mo share/locale/be/LC_MESSAGES/kcm_plasmasearch.mo share/locale/be/LC_MESSAGES/kcm_recentFiles.mo share/locale/be/LC_MESSAGES/kcm_smserver.mo share/locale/be/LC_MESSAGES/kcm_solid_actions.mo share/locale/be/LC_MESSAGES/kcm_splashscreen.mo share/locale/be/LC_MESSAGES/kcm_tablet.mo share/locale/be/LC_MESSAGES/kcm_touchpad.mo share/locale/be/LC_MESSAGES/kcm_touchscreen.mo share/locale/be/LC_MESSAGES/kcm_workspace.mo share/locale/be/LC_MESSAGES/kcmkclock.mo share/locale/be/LC_MESSAGES/kcmmouse.mo share/locale/be/LC_MESSAGES/kcmqtquicksettings.mo share/locale/be/LC_MESSAGES/knetattach.mo share/locale/be/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/be/LC_MESSAGES/plasma-desktop-sddm-theme.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/be/LC_MESSAGES/plasma_runner_kwin.mo share/locale/be/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/be/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/be/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/be/LC_MESSAGES/plasmaactivitymanager.mo share/locale/be@latin/LC_MESSAGES/kcm_desktoppaths.mo share/locale/be@latin/LC_MESSAGES/kcm_keyboard.mo share/locale/be@latin/LC_MESSAGES/kcmkclock.mo share/locale/be@latin/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/be@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/be@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/be@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/bg/LC_MESSAGES/kaccess.mo share/locale/bg/LC_MESSAGES/kcm_access.mo share/locale/bg/LC_MESSAGES/kcm_activities.mo share/locale/bg/LC_MESSAGES/kcm_baloofile.mo share/locale/bg/LC_MESSAGES/kcm_desktoppaths.mo share/locale/bg/LC_MESSAGES/kcm_device_automounter.mo share/locale/bg/LC_MESSAGES/kcm_gamecontroller.mo share/locale/bg/LC_MESSAGES/kcm_kded.mo share/locale/bg/LC_MESSAGES/kcm_keyboard.mo share/locale/bg/LC_MESSAGES/kcm_keys.mo share/locale/bg/LC_MESSAGES/kcm_krunnersettings.mo share/locale/bg/LC_MESSAGES/kcm_landingpage.mo share/locale/bg/LC_MESSAGES/kcm_plasmasearch.mo share/locale/bg/LC_MESSAGES/kcm_recentFiles.mo share/locale/bg/LC_MESSAGES/kcm_smserver.mo share/locale/bg/LC_MESSAGES/kcm_solid_actions.mo share/locale/bg/LC_MESSAGES/kcm_splashscreen.mo share/locale/bg/LC_MESSAGES/kcm_tablet.mo share/locale/bg/LC_MESSAGES/kcm_touchpad.mo share/locale/bg/LC_MESSAGES/kcm_touchscreen.mo share/locale/bg/LC_MESSAGES/kcm_workspace.mo share/locale/bg/LC_MESSAGES/kcmkclock.mo share/locale/bg/LC_MESSAGES/kcmmouse.mo share/locale/bg/LC_MESSAGES/kcmqtquicksettings.mo share/locale/bg/LC_MESSAGES/knetattach.mo share/locale/bg/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/bg/LC_MESSAGES/plasma-desktop-sddm-theme.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/bg/LC_MESSAGES/plasma_runner_keys.mo share/locale/bg/LC_MESSAGES/plasma_runner_kwin.mo share/locale/bg/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/bg/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/bg/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/bg/LC_MESSAGES/plasmaactivitymanager.mo share/locale/bn/LC_MESSAGES/kaccess.mo share/locale/bn/LC_MESSAGES/kcm_access.mo share/locale/bn/LC_MESSAGES/kcm_desktoppaths.mo share/locale/bn/LC_MESSAGES/kcm_kded.mo share/locale/bn/LC_MESSAGES/kcm_keyboard.mo share/locale/bn/LC_MESSAGES/kcm_smserver.mo share/locale/bn/LC_MESSAGES/kcmkclock.mo share/locale/bn/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/bn_IN/LC_MESSAGES/kaccess.mo share/locale/bn_IN/LC_MESSAGES/kcm_access.mo share/locale/bn_IN/LC_MESSAGES/kcm_desktoppaths.mo share/locale/bn_IN/LC_MESSAGES/kcm_kded.mo share/locale/bn_IN/LC_MESSAGES/kcm_keyboard.mo share/locale/bn_IN/LC_MESSAGES/kcm_smserver.mo share/locale/bn_IN/LC_MESSAGES/kcmkclock.mo share/locale/bn_IN/LC_MESSAGES/knetattach.mo share/locale/bn_IN/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/bn_IN/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/bn_IN/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/bn_IN/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/br/LC_MESSAGES/kaccess.mo share/locale/br/LC_MESSAGES/kcm_access.mo share/locale/br/LC_MESSAGES/kcm_desktoppaths.mo share/locale/br/LC_MESSAGES/kcm_kded.mo share/locale/br/LC_MESSAGES/kcm_keyboard.mo share/locale/br/LC_MESSAGES/kcm_smserver.mo share/locale/br/LC_MESSAGES/kcmkclock.mo share/locale/br/LC_MESSAGES/kcmmouse.mo share/locale/br/LC_MESSAGES/knetattach.mo share/locale/br/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/bs/LC_MESSAGES/kaccess.mo share/locale/bs/LC_MESSAGES/kcm_access.mo share/locale/bs/LC_MESSAGES/kcm_baloofile.mo share/locale/bs/LC_MESSAGES/kcm_desktoppaths.mo share/locale/bs/LC_MESSAGES/kcm_device_automounter.mo share/locale/bs/LC_MESSAGES/kcm_kded.mo share/locale/bs/LC_MESSAGES/kcm_keyboard.mo share/locale/bs/LC_MESSAGES/kcm_krunnersettings.mo share/locale/bs/LC_MESSAGES/kcm_plasmasearch.mo share/locale/bs/LC_MESSAGES/kcm_smserver.mo share/locale/bs/LC_MESSAGES/kcm_solid_actions.mo share/locale/bs/LC_MESSAGES/kcm_splashscreen.mo share/locale/bs/LC_MESSAGES/kcm_touchpad.mo share/locale/bs/LC_MESSAGES/kcm_workspace.mo share/locale/bs/LC_MESSAGES/kcmkclock.mo share/locale/bs/LC_MESSAGES/kcmmouse.mo share/locale/bs/LC_MESSAGES/knetattach.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/bs/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/bs/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/ca/LC_MESSAGES/kaccess.mo share/locale/ca/LC_MESSAGES/kcm_access.mo share/locale/ca/LC_MESSAGES/kcm_activities.mo share/locale/ca/LC_MESSAGES/kcm_baloofile.mo share/locale/ca/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ca/LC_MESSAGES/kcm_device_automounter.mo share/locale/ca/LC_MESSAGES/kcm_gamecontroller.mo share/locale/ca/LC_MESSAGES/kcm_kded.mo share/locale/ca/LC_MESSAGES/kcm_keyboard.mo share/locale/ca/LC_MESSAGES/kcm_keys.mo share/locale/ca/LC_MESSAGES/kcm_krunnersettings.mo share/locale/ca/LC_MESSAGES/kcm_landingpage.mo share/locale/ca/LC_MESSAGES/kcm_plasmasearch.mo share/locale/ca/LC_MESSAGES/kcm_recentFiles.mo share/locale/ca/LC_MESSAGES/kcm_smserver.mo share/locale/ca/LC_MESSAGES/kcm_solid_actions.mo share/locale/ca/LC_MESSAGES/kcm_splashscreen.mo share/locale/ca/LC_MESSAGES/kcm_tablet.mo share/locale/ca/LC_MESSAGES/kcm_touchpad.mo share/locale/ca/LC_MESSAGES/kcm_touchscreen.mo share/locale/ca/LC_MESSAGES/kcm_workspace.mo share/locale/ca/LC_MESSAGES/kcmkclock.mo share/locale/ca/LC_MESSAGES/kcmmouse.mo share/locale/ca/LC_MESSAGES/kcmqtquicksettings.mo share/locale/ca/LC_MESSAGES/knetattach.mo share/locale/ca/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/ca/LC_MESSAGES/plasma-desktop-sddm-theme.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/ca/LC_MESSAGES/plasma_runner_keys.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.paneltoolbox.mo share/locale/ca/LC_MESSAGES/plasmaactivitymanager.mo share/locale/ca@valencia/LC_MESSAGES/kaccess.mo share/locale/ca@valencia/LC_MESSAGES/kcm_access.mo share/locale/ca@valencia/LC_MESSAGES/kcm_activities.mo share/locale/ca@valencia/LC_MESSAGES/kcm_baloofile.mo share/locale/ca@valencia/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ca@valencia/LC_MESSAGES/kcm_device_automounter.mo share/locale/ca@valencia/LC_MESSAGES/kcm_gamecontroller.mo share/locale/ca@valencia/LC_MESSAGES/kcm_kded.mo share/locale/ca@valencia/LC_MESSAGES/kcm_keyboard.mo share/locale/ca@valencia/LC_MESSAGES/kcm_keys.mo share/locale/ca@valencia/LC_MESSAGES/kcm_krunnersettings.mo share/locale/ca@valencia/LC_MESSAGES/kcm_landingpage.mo share/locale/ca@valencia/LC_MESSAGES/kcm_plasmasearch.mo share/locale/ca@valencia/LC_MESSAGES/kcm_recentFiles.mo share/locale/ca@valencia/LC_MESSAGES/kcm_smserver.mo share/locale/ca@valencia/LC_MESSAGES/kcm_solid_actions.mo share/locale/ca@valencia/LC_MESSAGES/kcm_splashscreen.mo share/locale/ca@valencia/LC_MESSAGES/kcm_tablet.mo share/locale/ca@valencia/LC_MESSAGES/kcm_touchpad.mo share/locale/ca@valencia/LC_MESSAGES/kcm_touchscreen.mo share/locale/ca@valencia/LC_MESSAGES/kcm_workspace.mo share/locale/ca@valencia/LC_MESSAGES/kcmkclock.mo share/locale/ca@valencia/LC_MESSAGES/kcmmouse.mo share/locale/ca@valencia/LC_MESSAGES/kcmqtquicksettings.mo share/locale/ca@valencia/LC_MESSAGES/knetattach.mo share/locale/ca@valencia/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/ca@valencia/LC_MESSAGES/plasma-desktop-sddm-theme.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_keys.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.paneltoolbox.mo share/locale/ca@valencia/LC_MESSAGES/plasmaactivitymanager.mo share/locale/cs/LC_MESSAGES/kaccess.mo share/locale/cs/LC_MESSAGES/kcm_access.mo share/locale/cs/LC_MESSAGES/kcm_activities.mo share/locale/cs/LC_MESSAGES/kcm_baloofile.mo share/locale/cs/LC_MESSAGES/kcm_desktoppaths.mo share/locale/cs/LC_MESSAGES/kcm_device_automounter.mo share/locale/cs/LC_MESSAGES/kcm_gamecontroller.mo share/locale/cs/LC_MESSAGES/kcm_kded.mo share/locale/cs/LC_MESSAGES/kcm_keyboard.mo share/locale/cs/LC_MESSAGES/kcm_keys.mo share/locale/cs/LC_MESSAGES/kcm_krunnersettings.mo share/locale/cs/LC_MESSAGES/kcm_landingpage.mo share/locale/cs/LC_MESSAGES/kcm_plasmasearch.mo share/locale/cs/LC_MESSAGES/kcm_recentFiles.mo share/locale/cs/LC_MESSAGES/kcm_smserver.mo share/locale/cs/LC_MESSAGES/kcm_solid_actions.mo share/locale/cs/LC_MESSAGES/kcm_splashscreen.mo share/locale/cs/LC_MESSAGES/kcm_tablet.mo share/locale/cs/LC_MESSAGES/kcm_touchpad.mo share/locale/cs/LC_MESSAGES/kcm_touchscreen.mo share/locale/cs/LC_MESSAGES/kcm_workspace.mo share/locale/cs/LC_MESSAGES/kcmkclock.mo share/locale/cs/LC_MESSAGES/kcmmouse.mo share/locale/cs/LC_MESSAGES/kcmqtquicksettings.mo share/locale/cs/LC_MESSAGES/knetattach.mo share/locale/cs/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/cs/LC_MESSAGES/plasma-desktop-sddm-theme.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/cs/LC_MESSAGES/plasma_runner_keys.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.paneltoolbox.mo share/locale/cs/LC_MESSAGES/plasmaactivitymanager.mo share/locale/csb/LC_MESSAGES/kaccess.mo share/locale/csb/LC_MESSAGES/kcm_access.mo share/locale/csb/LC_MESSAGES/kcm_kded.mo share/locale/csb/LC_MESSAGES/kcm_keyboard.mo share/locale/csb/LC_MESSAGES/kcm_smserver.mo share/locale/csb/LC_MESSAGES/kcmkclock.mo share/locale/csb/LC_MESSAGES/knetattach.mo share/locale/csb/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/csb/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/csb/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/csb/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/csb/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/cy/LC_MESSAGES/kaccess.mo share/locale/cy/LC_MESSAGES/kcm_access.mo share/locale/cy/LC_MESSAGES/kcm_desktoppaths.mo share/locale/cy/LC_MESSAGES/kcm_kded.mo share/locale/cy/LC_MESSAGES/kcm_keyboard.mo share/locale/cy/LC_MESSAGES/kcm_smserver.mo share/locale/cy/LC_MESSAGES/kcmkclock.mo share/locale/cy/LC_MESSAGES/kcmmouse.mo share/locale/cy/LC_MESSAGES/knetattach.mo share/locale/cy/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/da/LC_MESSAGES/kaccess.mo share/locale/da/LC_MESSAGES/kcm_access.mo share/locale/da/LC_MESSAGES/kcm_activities.mo share/locale/da/LC_MESSAGES/kcm_baloofile.mo share/locale/da/LC_MESSAGES/kcm_desktoppaths.mo share/locale/da/LC_MESSAGES/kcm_device_automounter.mo share/locale/da/LC_MESSAGES/kcm_gamecontroller.mo share/locale/da/LC_MESSAGES/kcm_kded.mo share/locale/da/LC_MESSAGES/kcm_keyboard.mo share/locale/da/LC_MESSAGES/kcm_keys.mo share/locale/da/LC_MESSAGES/kcm_krunnersettings.mo share/locale/da/LC_MESSAGES/kcm_landingpage.mo share/locale/da/LC_MESSAGES/kcm_plasmasearch.mo share/locale/da/LC_MESSAGES/kcm_recentFiles.mo share/locale/da/LC_MESSAGES/kcm_smserver.mo share/locale/da/LC_MESSAGES/kcm_solid_actions.mo share/locale/da/LC_MESSAGES/kcm_splashscreen.mo share/locale/da/LC_MESSAGES/kcm_touchpad.mo share/locale/da/LC_MESSAGES/kcm_workspace.mo share/locale/da/LC_MESSAGES/kcmkclock.mo share/locale/da/LC_MESSAGES/kcmmouse.mo share/locale/da/LC_MESSAGES/kcmqtquicksettings.mo share/locale/da/LC_MESSAGES/knetattach.mo share/locale/da/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/da/LC_MESSAGES/plasma-desktop-sddm-theme.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/da/LC_MESSAGES/plasma_runner_kwin.mo share/locale/da/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/da/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/da/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/da/LC_MESSAGES/plasmaactivitymanager.mo share/locale/de/LC_MESSAGES/kaccess.mo share/locale/de/LC_MESSAGES/kcm_access.mo share/locale/de/LC_MESSAGES/kcm_activities.mo share/locale/de/LC_MESSAGES/kcm_baloofile.mo share/locale/de/LC_MESSAGES/kcm_desktoppaths.mo share/locale/de/LC_MESSAGES/kcm_device_automounter.mo share/locale/de/LC_MESSAGES/kcm_gamecontroller.mo share/locale/de/LC_MESSAGES/kcm_kded.mo share/locale/de/LC_MESSAGES/kcm_keyboard.mo share/locale/de/LC_MESSAGES/kcm_keys.mo share/locale/de/LC_MESSAGES/kcm_krunnersettings.mo share/locale/de/LC_MESSAGES/kcm_landingpage.mo share/locale/de/LC_MESSAGES/kcm_plasmasearch.mo share/locale/de/LC_MESSAGES/kcm_recentFiles.mo share/locale/de/LC_MESSAGES/kcm_smserver.mo share/locale/de/LC_MESSAGES/kcm_solid_actions.mo share/locale/de/LC_MESSAGES/kcm_splashscreen.mo share/locale/de/LC_MESSAGES/kcm_tablet.mo share/locale/de/LC_MESSAGES/kcm_touchpad.mo share/locale/de/LC_MESSAGES/kcm_touchscreen.mo share/locale/de/LC_MESSAGES/kcm_workspace.mo share/locale/de/LC_MESSAGES/kcmkclock.mo share/locale/de/LC_MESSAGES/kcmmouse.mo share/locale/de/LC_MESSAGES/kcmqtquicksettings.mo share/locale/de/LC_MESSAGES/knetattach.mo share/locale/de/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/de/LC_MESSAGES/plasma-desktop-sddm-theme.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/de/LC_MESSAGES/plasma_runner_keys.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.paneltoolbox.mo share/locale/de/LC_MESSAGES/plasmaactivitymanager.mo share/locale/el/LC_MESSAGES/kaccess.mo share/locale/el/LC_MESSAGES/kcm_access.mo share/locale/el/LC_MESSAGES/kcm_activities.mo share/locale/el/LC_MESSAGES/kcm_baloofile.mo share/locale/el/LC_MESSAGES/kcm_desktoppaths.mo share/locale/el/LC_MESSAGES/kcm_device_automounter.mo share/locale/el/LC_MESSAGES/kcm_gamecontroller.mo share/locale/el/LC_MESSAGES/kcm_kded.mo share/locale/el/LC_MESSAGES/kcm_keyboard.mo share/locale/el/LC_MESSAGES/kcm_keys.mo share/locale/el/LC_MESSAGES/kcm_krunnersettings.mo share/locale/el/LC_MESSAGES/kcm_landingpage.mo share/locale/el/LC_MESSAGES/kcm_plasmasearch.mo share/locale/el/LC_MESSAGES/kcm_recentFiles.mo share/locale/el/LC_MESSAGES/kcm_smserver.mo share/locale/el/LC_MESSAGES/kcm_solid_actions.mo share/locale/el/LC_MESSAGES/kcm_splashscreen.mo share/locale/el/LC_MESSAGES/kcm_tablet.mo share/locale/el/LC_MESSAGES/kcm_touchpad.mo share/locale/el/LC_MESSAGES/kcm_touchscreen.mo share/locale/el/LC_MESSAGES/kcm_workspace.mo share/locale/el/LC_MESSAGES/kcmkclock.mo share/locale/el/LC_MESSAGES/kcmmouse.mo share/locale/el/LC_MESSAGES/kcmqtquicksettings.mo share/locale/el/LC_MESSAGES/knetattach.mo share/locale/el/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/el/LC_MESSAGES/plasma-desktop-sddm-theme.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/el/LC_MESSAGES/plasma_runner_kwin.mo share/locale/el/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/el/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/el/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/el/LC_MESSAGES/plasmaactivitymanager.mo share/locale/en_GB/LC_MESSAGES/kaccess.mo share/locale/en_GB/LC_MESSAGES/kcm_access.mo share/locale/en_GB/LC_MESSAGES/kcm_activities.mo share/locale/en_GB/LC_MESSAGES/kcm_baloofile.mo share/locale/en_GB/LC_MESSAGES/kcm_desktoppaths.mo share/locale/en_GB/LC_MESSAGES/kcm_device_automounter.mo share/locale/en_GB/LC_MESSAGES/kcm_gamecontroller.mo share/locale/en_GB/LC_MESSAGES/kcm_kded.mo share/locale/en_GB/LC_MESSAGES/kcm_keyboard.mo share/locale/en_GB/LC_MESSAGES/kcm_keys.mo share/locale/en_GB/LC_MESSAGES/kcm_krunnersettings.mo share/locale/en_GB/LC_MESSAGES/kcm_landingpage.mo share/locale/en_GB/LC_MESSAGES/kcm_plasmasearch.mo share/locale/en_GB/LC_MESSAGES/kcm_recentFiles.mo share/locale/en_GB/LC_MESSAGES/kcm_smserver.mo share/locale/en_GB/LC_MESSAGES/kcm_solid_actions.mo share/locale/en_GB/LC_MESSAGES/kcm_splashscreen.mo share/locale/en_GB/LC_MESSAGES/kcm_tablet.mo share/locale/en_GB/LC_MESSAGES/kcm_touchpad.mo share/locale/en_GB/LC_MESSAGES/kcm_touchscreen.mo share/locale/en_GB/LC_MESSAGES/kcm_workspace.mo share/locale/en_GB/LC_MESSAGES/kcmkclock.mo share/locale/en_GB/LC_MESSAGES/kcmmouse.mo share/locale/en_GB/LC_MESSAGES/kcmqtquicksettings.mo share/locale/en_GB/LC_MESSAGES/knetattach.mo share/locale/en_GB/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/en_GB/LC_MESSAGES/plasma-desktop-sddm-theme.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_kwin.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/en_GB/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/en_GB/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/en_GB/LC_MESSAGES/plasmaactivitymanager.mo share/locale/eo/LC_MESSAGES/kaccess.mo share/locale/eo/LC_MESSAGES/kcm_access.mo share/locale/eo/LC_MESSAGES/kcm_activities.mo share/locale/eo/LC_MESSAGES/kcm_baloofile.mo share/locale/eo/LC_MESSAGES/kcm_desktoppaths.mo share/locale/eo/LC_MESSAGES/kcm_device_automounter.mo share/locale/eo/LC_MESSAGES/kcm_gamecontroller.mo share/locale/eo/LC_MESSAGES/kcm_kded.mo share/locale/eo/LC_MESSAGES/kcm_keyboard.mo share/locale/eo/LC_MESSAGES/kcm_keys.mo share/locale/eo/LC_MESSAGES/kcm_krunnersettings.mo share/locale/eo/LC_MESSAGES/kcm_landingpage.mo share/locale/eo/LC_MESSAGES/kcm_plasmasearch.mo share/locale/eo/LC_MESSAGES/kcm_recentFiles.mo share/locale/eo/LC_MESSAGES/kcm_smserver.mo share/locale/eo/LC_MESSAGES/kcm_solid_actions.mo share/locale/eo/LC_MESSAGES/kcm_splashscreen.mo share/locale/eo/LC_MESSAGES/kcm_tablet.mo share/locale/eo/LC_MESSAGES/kcm_touchpad.mo share/locale/eo/LC_MESSAGES/kcm_touchscreen.mo share/locale/eo/LC_MESSAGES/kcm_workspace.mo share/locale/eo/LC_MESSAGES/kcmkclock.mo share/locale/eo/LC_MESSAGES/kcmmouse.mo share/locale/eo/LC_MESSAGES/kcmqtquicksettings.mo share/locale/eo/LC_MESSAGES/knetattach.mo share/locale/eo/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/eo/LC_MESSAGES/plasma-desktop-sddm-theme.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/eo/LC_MESSAGES/plasma_runner_kwin.mo share/locale/eo/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/eo/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/eo/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/eo/LC_MESSAGES/plasmaactivitymanager.mo share/locale/es/LC_MESSAGES/kaccess.mo share/locale/es/LC_MESSAGES/kcm_access.mo share/locale/es/LC_MESSAGES/kcm_activities.mo share/locale/es/LC_MESSAGES/kcm_baloofile.mo share/locale/es/LC_MESSAGES/kcm_desktoppaths.mo share/locale/es/LC_MESSAGES/kcm_device_automounter.mo share/locale/es/LC_MESSAGES/kcm_gamecontroller.mo share/locale/es/LC_MESSAGES/kcm_kded.mo share/locale/es/LC_MESSAGES/kcm_keyboard.mo share/locale/es/LC_MESSAGES/kcm_keys.mo share/locale/es/LC_MESSAGES/kcm_krunnersettings.mo share/locale/es/LC_MESSAGES/kcm_landingpage.mo share/locale/es/LC_MESSAGES/kcm_plasmasearch.mo share/locale/es/LC_MESSAGES/kcm_recentFiles.mo share/locale/es/LC_MESSAGES/kcm_smserver.mo share/locale/es/LC_MESSAGES/kcm_solid_actions.mo share/locale/es/LC_MESSAGES/kcm_splashscreen.mo share/locale/es/LC_MESSAGES/kcm_tablet.mo share/locale/es/LC_MESSAGES/kcm_touchpad.mo share/locale/es/LC_MESSAGES/kcm_touchscreen.mo share/locale/es/LC_MESSAGES/kcm_workspace.mo share/locale/es/LC_MESSAGES/kcmkclock.mo share/locale/es/LC_MESSAGES/kcmmouse.mo share/locale/es/LC_MESSAGES/kcmqtquicksettings.mo share/locale/es/LC_MESSAGES/knetattach.mo share/locale/es/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/es/LC_MESSAGES/plasma-desktop-sddm-theme.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/es/LC_MESSAGES/plasma_runner_keys.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.paneltoolbox.mo share/locale/es/LC_MESSAGES/plasmaactivitymanager.mo share/locale/et/LC_MESSAGES/kaccess.mo share/locale/et/LC_MESSAGES/kcm_access.mo share/locale/et/LC_MESSAGES/kcm_activities.mo share/locale/et/LC_MESSAGES/kcm_baloofile.mo share/locale/et/LC_MESSAGES/kcm_desktoppaths.mo share/locale/et/LC_MESSAGES/kcm_device_automounter.mo share/locale/et/LC_MESSAGES/kcm_kded.mo share/locale/et/LC_MESSAGES/kcm_keyboard.mo share/locale/et/LC_MESSAGES/kcm_keys.mo share/locale/et/LC_MESSAGES/kcm_krunnersettings.mo share/locale/et/LC_MESSAGES/kcm_landingpage.mo share/locale/et/LC_MESSAGES/kcm_plasmasearch.mo share/locale/et/LC_MESSAGES/kcm_recentFiles.mo share/locale/et/LC_MESSAGES/kcm_smserver.mo share/locale/et/LC_MESSAGES/kcm_solid_actions.mo share/locale/et/LC_MESSAGES/kcm_splashscreen.mo share/locale/et/LC_MESSAGES/kcm_touchpad.mo share/locale/et/LC_MESSAGES/kcm_workspace.mo share/locale/et/LC_MESSAGES/kcmkclock.mo share/locale/et/LC_MESSAGES/kcmmouse.mo share/locale/et/LC_MESSAGES/kcmqtquicksettings.mo share/locale/et/LC_MESSAGES/knetattach.mo share/locale/et/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/et/LC_MESSAGES/plasma_runner_kwin.mo share/locale/et/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/et/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/et/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/et/LC_MESSAGES/plasmaactivitymanager.mo share/locale/eu/LC_MESSAGES/kaccess.mo share/locale/eu/LC_MESSAGES/kcm_access.mo share/locale/eu/LC_MESSAGES/kcm_activities.mo share/locale/eu/LC_MESSAGES/kcm_baloofile.mo share/locale/eu/LC_MESSAGES/kcm_desktoppaths.mo share/locale/eu/LC_MESSAGES/kcm_device_automounter.mo share/locale/eu/LC_MESSAGES/kcm_gamecontroller.mo share/locale/eu/LC_MESSAGES/kcm_kded.mo share/locale/eu/LC_MESSAGES/kcm_keyboard.mo share/locale/eu/LC_MESSAGES/kcm_keys.mo share/locale/eu/LC_MESSAGES/kcm_krunnersettings.mo share/locale/eu/LC_MESSAGES/kcm_landingpage.mo share/locale/eu/LC_MESSAGES/kcm_plasmasearch.mo share/locale/eu/LC_MESSAGES/kcm_recentFiles.mo share/locale/eu/LC_MESSAGES/kcm_smserver.mo share/locale/eu/LC_MESSAGES/kcm_solid_actions.mo share/locale/eu/LC_MESSAGES/kcm_splashscreen.mo share/locale/eu/LC_MESSAGES/kcm_tablet.mo share/locale/eu/LC_MESSAGES/kcm_touchpad.mo share/locale/eu/LC_MESSAGES/kcm_touchscreen.mo share/locale/eu/LC_MESSAGES/kcm_workspace.mo share/locale/eu/LC_MESSAGES/kcmkclock.mo share/locale/eu/LC_MESSAGES/kcmmouse.mo share/locale/eu/LC_MESSAGES/kcmqtquicksettings.mo share/locale/eu/LC_MESSAGES/knetattach.mo share/locale/eu/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/eu/LC_MESSAGES/plasma-desktop-sddm-theme.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/eu/LC_MESSAGES/plasma_runner_keys.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.paneltoolbox.mo share/locale/eu/LC_MESSAGES/plasmaactivitymanager.mo share/locale/fa/LC_MESSAGES/kaccess.mo share/locale/fa/LC_MESSAGES/kcm_access.mo share/locale/fa/LC_MESSAGES/kcm_desktoppaths.mo share/locale/fa/LC_MESSAGES/kcm_device_automounter.mo share/locale/fa/LC_MESSAGES/kcm_kded.mo share/locale/fa/LC_MESSAGES/kcm_keyboard.mo share/locale/fa/LC_MESSAGES/kcm_smserver.mo share/locale/fa/LC_MESSAGES/kcm_solid_actions.mo share/locale/fa/LC_MESSAGES/kcmkclock.mo share/locale/fa/LC_MESSAGES/kcmmouse.mo share/locale/fa/LC_MESSAGES/knetattach.mo share/locale/fa/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/fa/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/fa/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/fa/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/fi/LC_MESSAGES/kaccess.mo share/locale/fi/LC_MESSAGES/kcm_access.mo share/locale/fi/LC_MESSAGES/kcm_activities.mo share/locale/fi/LC_MESSAGES/kcm_baloofile.mo share/locale/fi/LC_MESSAGES/kcm_desktoppaths.mo share/locale/fi/LC_MESSAGES/kcm_device_automounter.mo share/locale/fi/LC_MESSAGES/kcm_gamecontroller.mo share/locale/fi/LC_MESSAGES/kcm_kded.mo share/locale/fi/LC_MESSAGES/kcm_keyboard.mo share/locale/fi/LC_MESSAGES/kcm_keys.mo share/locale/fi/LC_MESSAGES/kcm_krunnersettings.mo share/locale/fi/LC_MESSAGES/kcm_landingpage.mo share/locale/fi/LC_MESSAGES/kcm_plasmasearch.mo share/locale/fi/LC_MESSAGES/kcm_recentFiles.mo share/locale/fi/LC_MESSAGES/kcm_smserver.mo share/locale/fi/LC_MESSAGES/kcm_solid_actions.mo share/locale/fi/LC_MESSAGES/kcm_splashscreen.mo share/locale/fi/LC_MESSAGES/kcm_tablet.mo share/locale/fi/LC_MESSAGES/kcm_touchpad.mo share/locale/fi/LC_MESSAGES/kcm_touchscreen.mo share/locale/fi/LC_MESSAGES/kcm_workspace.mo share/locale/fi/LC_MESSAGES/kcmkclock.mo share/locale/fi/LC_MESSAGES/kcmmouse.mo share/locale/fi/LC_MESSAGES/kcmqtquicksettings.mo share/locale/fi/LC_MESSAGES/knetattach.mo share/locale/fi/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/fi/LC_MESSAGES/plasma-desktop-sddm-theme.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/fi/LC_MESSAGES/plasma_runner_keys.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.paneltoolbox.mo share/locale/fi/LC_MESSAGES/plasmaactivitymanager.mo share/locale/fr/LC_MESSAGES/kaccess.mo share/locale/fr/LC_MESSAGES/kcm_access.mo share/locale/fr/LC_MESSAGES/kcm_activities.mo share/locale/fr/LC_MESSAGES/kcm_baloofile.mo share/locale/fr/LC_MESSAGES/kcm_desktoppaths.mo share/locale/fr/LC_MESSAGES/kcm_device_automounter.mo share/locale/fr/LC_MESSAGES/kcm_gamecontroller.mo share/locale/fr/LC_MESSAGES/kcm_kded.mo share/locale/fr/LC_MESSAGES/kcm_keyboard.mo share/locale/fr/LC_MESSAGES/kcm_keys.mo share/locale/fr/LC_MESSAGES/kcm_krunnersettings.mo share/locale/fr/LC_MESSAGES/kcm_landingpage.mo share/locale/fr/LC_MESSAGES/kcm_plasmasearch.mo share/locale/fr/LC_MESSAGES/kcm_recentFiles.mo share/locale/fr/LC_MESSAGES/kcm_smserver.mo share/locale/fr/LC_MESSAGES/kcm_solid_actions.mo share/locale/fr/LC_MESSAGES/kcm_splashscreen.mo share/locale/fr/LC_MESSAGES/kcm_tablet.mo share/locale/fr/LC_MESSAGES/kcm_touchpad.mo share/locale/fr/LC_MESSAGES/kcm_touchscreen.mo share/locale/fr/LC_MESSAGES/kcm_workspace.mo share/locale/fr/LC_MESSAGES/kcmkclock.mo share/locale/fr/LC_MESSAGES/kcmmouse.mo share/locale/fr/LC_MESSAGES/kcmqtquicksettings.mo share/locale/fr/LC_MESSAGES/knetattach.mo share/locale/fr/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/fr/LC_MESSAGES/plasma-desktop-sddm-theme.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/fr/LC_MESSAGES/plasma_runner_keys.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.paneltoolbox.mo share/locale/fr/LC_MESSAGES/plasmaactivitymanager.mo share/locale/fy/LC_MESSAGES/kaccess.mo share/locale/fy/LC_MESSAGES/kcm_access.mo share/locale/fy/LC_MESSAGES/kcm_desktoppaths.mo share/locale/fy/LC_MESSAGES/kcm_kded.mo share/locale/fy/LC_MESSAGES/kcm_keyboard.mo share/locale/fy/LC_MESSAGES/kcm_smserver.mo share/locale/fy/LC_MESSAGES/kcm_solid_actions.mo share/locale/fy/LC_MESSAGES/kcmkclock.mo share/locale/fy/LC_MESSAGES/kcmmouse.mo share/locale/fy/LC_MESSAGES/knetattach.mo share/locale/fy/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/fy/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/fy/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/fy/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ga/LC_MESSAGES/kaccess.mo share/locale/ga/LC_MESSAGES/kcm_access.mo share/locale/ga/LC_MESSAGES/kcm_activities.mo share/locale/ga/LC_MESSAGES/kcm_baloofile.mo share/locale/ga/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ga/LC_MESSAGES/kcm_device_automounter.mo share/locale/ga/LC_MESSAGES/kcm_gamecontroller.mo share/locale/ga/LC_MESSAGES/kcm_kded.mo share/locale/ga/LC_MESSAGES/kcm_keyboard.mo share/locale/ga/LC_MESSAGES/kcm_keys.mo share/locale/ga/LC_MESSAGES/kcm_krunnersettings.mo share/locale/ga/LC_MESSAGES/kcm_landingpage.mo share/locale/ga/LC_MESSAGES/kcm_plasmasearch.mo share/locale/ga/LC_MESSAGES/kcm_recentFiles.mo share/locale/ga/LC_MESSAGES/kcm_smserver.mo share/locale/ga/LC_MESSAGES/kcm_solid_actions.mo share/locale/ga/LC_MESSAGES/kcm_splashscreen.mo share/locale/ga/LC_MESSAGES/kcm_tablet.mo share/locale/ga/LC_MESSAGES/kcm_touchpad.mo share/locale/ga/LC_MESSAGES/kcm_touchscreen.mo share/locale/ga/LC_MESSAGES/kcm_workspace.mo share/locale/ga/LC_MESSAGES/kcmkclock.mo share/locale/ga/LC_MESSAGES/kcmmouse.mo share/locale/ga/LC_MESSAGES/kcmqtquicksettings.mo share/locale/ga/LC_MESSAGES/knetattach.mo share/locale/ga/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/ga/LC_MESSAGES/plasma-desktop-sddm-theme.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/ga/LC_MESSAGES/plasma_runner_keys.mo share/locale/ga/LC_MESSAGES/plasma_runner_kwin.mo share/locale/ga/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/ga/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/ga/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/ga/LC_MESSAGES/plasmaactivitymanager.mo share/locale/gl/LC_MESSAGES/kaccess.mo share/locale/gl/LC_MESSAGES/kcm_access.mo share/locale/gl/LC_MESSAGES/kcm_activities.mo share/locale/gl/LC_MESSAGES/kcm_baloofile.mo share/locale/gl/LC_MESSAGES/kcm_desktoppaths.mo share/locale/gl/LC_MESSAGES/kcm_device_automounter.mo share/locale/gl/LC_MESSAGES/kcm_gamecontroller.mo share/locale/gl/LC_MESSAGES/kcm_kded.mo share/locale/gl/LC_MESSAGES/kcm_keyboard.mo share/locale/gl/LC_MESSAGES/kcm_keys.mo share/locale/gl/LC_MESSAGES/kcm_krunnersettings.mo share/locale/gl/LC_MESSAGES/kcm_landingpage.mo share/locale/gl/LC_MESSAGES/kcm_plasmasearch.mo share/locale/gl/LC_MESSAGES/kcm_recentFiles.mo share/locale/gl/LC_MESSAGES/kcm_smserver.mo share/locale/gl/LC_MESSAGES/kcm_solid_actions.mo share/locale/gl/LC_MESSAGES/kcm_splashscreen.mo share/locale/gl/LC_MESSAGES/kcm_tablet.mo share/locale/gl/LC_MESSAGES/kcm_touchpad.mo share/locale/gl/LC_MESSAGES/kcm_touchscreen.mo share/locale/gl/LC_MESSAGES/kcm_workspace.mo share/locale/gl/LC_MESSAGES/kcmkclock.mo share/locale/gl/LC_MESSAGES/kcmmouse.mo share/locale/gl/LC_MESSAGES/kcmqtquicksettings.mo share/locale/gl/LC_MESSAGES/knetattach.mo share/locale/gl/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/gl/LC_MESSAGES/plasma-desktop-sddm-theme.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/gl/LC_MESSAGES/plasma_runner_kwin.mo share/locale/gl/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/gl/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/gl/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/gl/LC_MESSAGES/plasmaactivitymanager.mo share/locale/gu/LC_MESSAGES/kaccess.mo share/locale/gu/LC_MESSAGES/kcm_access.mo share/locale/gu/LC_MESSAGES/kcm_desktoppaths.mo share/locale/gu/LC_MESSAGES/kcm_device_automounter.mo share/locale/gu/LC_MESSAGES/kcm_kded.mo share/locale/gu/LC_MESSAGES/kcm_keyboard.mo share/locale/gu/LC_MESSAGES/kcm_smserver.mo share/locale/gu/LC_MESSAGES/kcm_solid_actions.mo share/locale/gu/LC_MESSAGES/kcmkclock.mo share/locale/gu/LC_MESSAGES/kcmmouse.mo share/locale/gu/LC_MESSAGES/knetattach.mo share/locale/gu/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/gu/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/gu/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/gu/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/gu/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/gu/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/he/LC_MESSAGES/kaccess.mo share/locale/he/LC_MESSAGES/kcm_access.mo share/locale/he/LC_MESSAGES/kcm_activities.mo share/locale/he/LC_MESSAGES/kcm_baloofile.mo share/locale/he/LC_MESSAGES/kcm_desktoppaths.mo share/locale/he/LC_MESSAGES/kcm_device_automounter.mo share/locale/he/LC_MESSAGES/kcm_gamecontroller.mo share/locale/he/LC_MESSAGES/kcm_kded.mo share/locale/he/LC_MESSAGES/kcm_keyboard.mo share/locale/he/LC_MESSAGES/kcm_keys.mo share/locale/he/LC_MESSAGES/kcm_krunnersettings.mo share/locale/he/LC_MESSAGES/kcm_landingpage.mo share/locale/he/LC_MESSAGES/kcm_plasmasearch.mo share/locale/he/LC_MESSAGES/kcm_recentFiles.mo share/locale/he/LC_MESSAGES/kcm_smserver.mo share/locale/he/LC_MESSAGES/kcm_solid_actions.mo share/locale/he/LC_MESSAGES/kcm_splashscreen.mo share/locale/he/LC_MESSAGES/kcm_tablet.mo share/locale/he/LC_MESSAGES/kcm_touchpad.mo share/locale/he/LC_MESSAGES/kcm_touchscreen.mo share/locale/he/LC_MESSAGES/kcm_workspace.mo share/locale/he/LC_MESSAGES/kcmkclock.mo share/locale/he/LC_MESSAGES/kcmmouse.mo share/locale/he/LC_MESSAGES/kcmqtquicksettings.mo share/locale/he/LC_MESSAGES/knetattach.mo share/locale/he/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/he/LC_MESSAGES/plasma-desktop-sddm-theme.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/he/LC_MESSAGES/plasma_runner_keys.mo share/locale/he/LC_MESSAGES/plasma_runner_kwin.mo share/locale/he/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/he/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/he/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/he/LC_MESSAGES/plasmaactivitymanager.mo share/locale/hi/LC_MESSAGES/kaccess.mo share/locale/hi/LC_MESSAGES/kcm_access.mo share/locale/hi/LC_MESSAGES/kcm_activities.mo share/locale/hi/LC_MESSAGES/kcm_baloofile.mo share/locale/hi/LC_MESSAGES/kcm_desktoppaths.mo share/locale/hi/LC_MESSAGES/kcm_device_automounter.mo share/locale/hi/LC_MESSAGES/kcm_gamecontroller.mo share/locale/hi/LC_MESSAGES/kcm_kded.mo share/locale/hi/LC_MESSAGES/kcm_keyboard.mo share/locale/hi/LC_MESSAGES/kcm_keys.mo share/locale/hi/LC_MESSAGES/kcm_krunnersettings.mo share/locale/hi/LC_MESSAGES/kcm_landingpage.mo share/locale/hi/LC_MESSAGES/kcm_plasmasearch.mo share/locale/hi/LC_MESSAGES/kcm_recentFiles.mo share/locale/hi/LC_MESSAGES/kcm_smserver.mo share/locale/hi/LC_MESSAGES/kcm_solid_actions.mo share/locale/hi/LC_MESSAGES/kcm_splashscreen.mo share/locale/hi/LC_MESSAGES/kcm_tablet.mo share/locale/hi/LC_MESSAGES/kcm_touchpad.mo share/locale/hi/LC_MESSAGES/kcm_touchscreen.mo share/locale/hi/LC_MESSAGES/kcm_workspace.mo share/locale/hi/LC_MESSAGES/kcmkclock.mo share/locale/hi/LC_MESSAGES/kcmmouse.mo share/locale/hi/LC_MESSAGES/kcmqtquicksettings.mo share/locale/hi/LC_MESSAGES/knetattach.mo share/locale/hi/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/hi/LC_MESSAGES/plasma-desktop-sddm-theme.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/hi/LC_MESSAGES/plasma_runner_kwin.mo share/locale/hi/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/hi/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/hi/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/hi/LC_MESSAGES/plasmaactivitymanager.mo share/locale/hne/LC_MESSAGES/kaccess.mo share/locale/hne/LC_MESSAGES/kcm_access.mo share/locale/hne/LC_MESSAGES/kcm_desktoppaths.mo share/locale/hne/LC_MESSAGES/kcm_kded.mo share/locale/hne/LC_MESSAGES/kcm_keyboard.mo share/locale/hne/LC_MESSAGES/kcm_smserver.mo share/locale/hne/LC_MESSAGES/kcmkclock.mo share/locale/hne/LC_MESSAGES/kcmmouse.mo share/locale/hne/LC_MESSAGES/knetattach.mo share/locale/hne/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/hne/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/hne/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/hne/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/hr/LC_MESSAGES/kaccess.mo share/locale/hr/LC_MESSAGES/kcm_access.mo share/locale/hr/LC_MESSAGES/kcm_desktoppaths.mo share/locale/hr/LC_MESSAGES/kcm_device_automounter.mo share/locale/hr/LC_MESSAGES/kcm_kded.mo share/locale/hr/LC_MESSAGES/kcm_keyboard.mo share/locale/hr/LC_MESSAGES/kcm_smserver.mo share/locale/hr/LC_MESSAGES/kcm_solid_actions.mo share/locale/hr/LC_MESSAGES/kcmkclock.mo share/locale/hr/LC_MESSAGES/kcmmouse.mo share/locale/hr/LC_MESSAGES/knetattach.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/hr/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/hsb/LC_MESSAGES/kaccess.mo share/locale/hsb/LC_MESSAGES/kcm_access.mo share/locale/hsb/LC_MESSAGES/kcm_desktoppaths.mo share/locale/hsb/LC_MESSAGES/kcm_kded.mo share/locale/hsb/LC_MESSAGES/kcm_keyboard.mo share/locale/hsb/LC_MESSAGES/kcm_smserver.mo share/locale/hsb/LC_MESSAGES/kcmkclock.mo share/locale/hsb/LC_MESSAGES/kcmmouse.mo share/locale/hsb/LC_MESSAGES/knetattach.mo share/locale/hsb/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/hsb/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/hsb/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/hsb/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/hsb/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/hsb/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/hu/LC_MESSAGES/kaccess.mo share/locale/hu/LC_MESSAGES/kcm_access.mo share/locale/hu/LC_MESSAGES/kcm_activities.mo share/locale/hu/LC_MESSAGES/kcm_baloofile.mo share/locale/hu/LC_MESSAGES/kcm_desktoppaths.mo share/locale/hu/LC_MESSAGES/kcm_device_automounter.mo share/locale/hu/LC_MESSAGES/kcm_gamecontroller.mo share/locale/hu/LC_MESSAGES/kcm_kded.mo share/locale/hu/LC_MESSAGES/kcm_keyboard.mo share/locale/hu/LC_MESSAGES/kcm_keys.mo share/locale/hu/LC_MESSAGES/kcm_krunnersettings.mo share/locale/hu/LC_MESSAGES/kcm_landingpage.mo share/locale/hu/LC_MESSAGES/kcm_plasmasearch.mo share/locale/hu/LC_MESSAGES/kcm_recentFiles.mo share/locale/hu/LC_MESSAGES/kcm_smserver.mo share/locale/hu/LC_MESSAGES/kcm_solid_actions.mo share/locale/hu/LC_MESSAGES/kcm_splashscreen.mo share/locale/hu/LC_MESSAGES/kcm_tablet.mo share/locale/hu/LC_MESSAGES/kcm_touchpad.mo share/locale/hu/LC_MESSAGES/kcm_touchscreen.mo share/locale/hu/LC_MESSAGES/kcm_workspace.mo share/locale/hu/LC_MESSAGES/kcmkclock.mo share/locale/hu/LC_MESSAGES/kcmmouse.mo share/locale/hu/LC_MESSAGES/kcmqtquicksettings.mo share/locale/hu/LC_MESSAGES/knetattach.mo share/locale/hu/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/hu/LC_MESSAGES/plasma-desktop-sddm-theme.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/hu/LC_MESSAGES/plasma_runner_keys.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.paneltoolbox.mo share/locale/hu/LC_MESSAGES/plasmaactivitymanager.mo share/locale/ia/LC_MESSAGES/kaccess.mo share/locale/ia/LC_MESSAGES/kcm_access.mo share/locale/ia/LC_MESSAGES/kcm_activities.mo share/locale/ia/LC_MESSAGES/kcm_baloofile.mo share/locale/ia/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ia/LC_MESSAGES/kcm_device_automounter.mo share/locale/ia/LC_MESSAGES/kcm_gamecontroller.mo share/locale/ia/LC_MESSAGES/kcm_kded.mo share/locale/ia/LC_MESSAGES/kcm_keyboard.mo share/locale/ia/LC_MESSAGES/kcm_keys.mo share/locale/ia/LC_MESSAGES/kcm_krunnersettings.mo share/locale/ia/LC_MESSAGES/kcm_landingpage.mo share/locale/ia/LC_MESSAGES/kcm_plasmasearch.mo share/locale/ia/LC_MESSAGES/kcm_recentFiles.mo share/locale/ia/LC_MESSAGES/kcm_smserver.mo share/locale/ia/LC_MESSAGES/kcm_solid_actions.mo share/locale/ia/LC_MESSAGES/kcm_splashscreen.mo share/locale/ia/LC_MESSAGES/kcm_tablet.mo share/locale/ia/LC_MESSAGES/kcm_touchpad.mo share/locale/ia/LC_MESSAGES/kcm_touchscreen.mo share/locale/ia/LC_MESSAGES/kcm_workspace.mo share/locale/ia/LC_MESSAGES/kcmkclock.mo share/locale/ia/LC_MESSAGES/kcmmouse.mo share/locale/ia/LC_MESSAGES/kcmqtquicksettings.mo share/locale/ia/LC_MESSAGES/knetattach.mo share/locale/ia/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/ia/LC_MESSAGES/plasma-desktop-sddm-theme.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo +share/locale/ia/LC_MESSAGES/plasma_runner_keys.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.paneltoolbox.mo share/locale/ia/LC_MESSAGES/plasmaactivitymanager.mo share/locale/id/LC_MESSAGES/kaccess.mo share/locale/id/LC_MESSAGES/kcm_access.mo share/locale/id/LC_MESSAGES/kcm_activities.mo share/locale/id/LC_MESSAGES/kcm_baloofile.mo share/locale/id/LC_MESSAGES/kcm_desktoppaths.mo share/locale/id/LC_MESSAGES/kcm_device_automounter.mo share/locale/id/LC_MESSAGES/kcm_gamecontroller.mo share/locale/id/LC_MESSAGES/kcm_kded.mo share/locale/id/LC_MESSAGES/kcm_keyboard.mo share/locale/id/LC_MESSAGES/kcm_keys.mo share/locale/id/LC_MESSAGES/kcm_krunnersettings.mo share/locale/id/LC_MESSAGES/kcm_landingpage.mo share/locale/id/LC_MESSAGES/kcm_plasmasearch.mo share/locale/id/LC_MESSAGES/kcm_recentFiles.mo share/locale/id/LC_MESSAGES/kcm_smserver.mo share/locale/id/LC_MESSAGES/kcm_solid_actions.mo share/locale/id/LC_MESSAGES/kcm_splashscreen.mo share/locale/id/LC_MESSAGES/kcm_tablet.mo share/locale/id/LC_MESSAGES/kcm_touchpad.mo share/locale/id/LC_MESSAGES/kcm_touchscreen.mo share/locale/id/LC_MESSAGES/kcm_workspace.mo share/locale/id/LC_MESSAGES/kcmkclock.mo share/locale/id/LC_MESSAGES/kcmmouse.mo share/locale/id/LC_MESSAGES/kcmqtquicksettings.mo share/locale/id/LC_MESSAGES/knetattach.mo share/locale/id/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/id/LC_MESSAGES/plasma-desktop-sddm-theme.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/id/LC_MESSAGES/plasma_runner_kwin.mo share/locale/id/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/id/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/id/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/id/LC_MESSAGES/plasmaactivitymanager.mo share/locale/ie/LC_MESSAGES/kcm_keyboard.mo share/locale/ie/LC_MESSAGES/kcmkclock.mo share/locale/ie/LC_MESSAGES/kcmmouse.mo share/locale/ie/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/ie/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ie/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/ie/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/is/LC_MESSAGES/kaccess.mo share/locale/is/LC_MESSAGES/kcm_access.mo share/locale/is/LC_MESSAGES/kcm_activities.mo share/locale/is/LC_MESSAGES/kcm_baloofile.mo share/locale/is/LC_MESSAGES/kcm_desktoppaths.mo share/locale/is/LC_MESSAGES/kcm_device_automounter.mo share/locale/is/LC_MESSAGES/kcm_gamecontroller.mo share/locale/is/LC_MESSAGES/kcm_kded.mo share/locale/is/LC_MESSAGES/kcm_keyboard.mo share/locale/is/LC_MESSAGES/kcm_keys.mo share/locale/is/LC_MESSAGES/kcm_krunnersettings.mo share/locale/is/LC_MESSAGES/kcm_landingpage.mo share/locale/is/LC_MESSAGES/kcm_plasmasearch.mo share/locale/is/LC_MESSAGES/kcm_recentFiles.mo share/locale/is/LC_MESSAGES/kcm_smserver.mo share/locale/is/LC_MESSAGES/kcm_solid_actions.mo share/locale/is/LC_MESSAGES/kcm_splashscreen.mo share/locale/is/LC_MESSAGES/kcm_tablet.mo share/locale/is/LC_MESSAGES/kcm_touchpad.mo share/locale/is/LC_MESSAGES/kcm_touchscreen.mo share/locale/is/LC_MESSAGES/kcm_workspace.mo share/locale/is/LC_MESSAGES/kcmkclock.mo share/locale/is/LC_MESSAGES/kcmmouse.mo share/locale/is/LC_MESSAGES/kcmqtquicksettings.mo share/locale/is/LC_MESSAGES/knetattach.mo share/locale/is/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/is/LC_MESSAGES/plasma-desktop-sddm-theme.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/is/LC_MESSAGES/plasma_runner_keys.mo share/locale/is/LC_MESSAGES/plasma_runner_kwin.mo share/locale/is/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/is/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/is/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/is/LC_MESSAGES/plasmaactivitymanager.mo share/locale/it/LC_MESSAGES/kaccess.mo share/locale/it/LC_MESSAGES/kcm_access.mo share/locale/it/LC_MESSAGES/kcm_activities.mo share/locale/it/LC_MESSAGES/kcm_baloofile.mo share/locale/it/LC_MESSAGES/kcm_desktoppaths.mo share/locale/it/LC_MESSAGES/kcm_device_automounter.mo share/locale/it/LC_MESSAGES/kcm_gamecontroller.mo share/locale/it/LC_MESSAGES/kcm_kded.mo share/locale/it/LC_MESSAGES/kcm_keyboard.mo share/locale/it/LC_MESSAGES/kcm_keys.mo share/locale/it/LC_MESSAGES/kcm_krunnersettings.mo share/locale/it/LC_MESSAGES/kcm_landingpage.mo share/locale/it/LC_MESSAGES/kcm_plasmasearch.mo share/locale/it/LC_MESSAGES/kcm_recentFiles.mo share/locale/it/LC_MESSAGES/kcm_smserver.mo share/locale/it/LC_MESSAGES/kcm_solid_actions.mo share/locale/it/LC_MESSAGES/kcm_splashscreen.mo share/locale/it/LC_MESSAGES/kcm_tablet.mo share/locale/it/LC_MESSAGES/kcm_touchpad.mo share/locale/it/LC_MESSAGES/kcm_touchscreen.mo share/locale/it/LC_MESSAGES/kcm_workspace.mo share/locale/it/LC_MESSAGES/kcmkclock.mo share/locale/it/LC_MESSAGES/kcmmouse.mo share/locale/it/LC_MESSAGES/kcmqtquicksettings.mo share/locale/it/LC_MESSAGES/knetattach.mo share/locale/it/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/it/LC_MESSAGES/plasma-desktop-sddm-theme.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/it/LC_MESSAGES/plasma_runner_keys.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.paneltoolbox.mo share/locale/it/LC_MESSAGES/plasmaactivitymanager.mo share/locale/ja/LC_MESSAGES/kaccess.mo share/locale/ja/LC_MESSAGES/kcm_access.mo share/locale/ja/LC_MESSAGES/kcm_activities.mo share/locale/ja/LC_MESSAGES/kcm_baloofile.mo share/locale/ja/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ja/LC_MESSAGES/kcm_device_automounter.mo share/locale/ja/LC_MESSAGES/kcm_gamecontroller.mo share/locale/ja/LC_MESSAGES/kcm_kded.mo share/locale/ja/LC_MESSAGES/kcm_keyboard.mo share/locale/ja/LC_MESSAGES/kcm_keys.mo share/locale/ja/LC_MESSAGES/kcm_krunnersettings.mo share/locale/ja/LC_MESSAGES/kcm_landingpage.mo share/locale/ja/LC_MESSAGES/kcm_plasmasearch.mo share/locale/ja/LC_MESSAGES/kcm_recentFiles.mo share/locale/ja/LC_MESSAGES/kcm_smserver.mo share/locale/ja/LC_MESSAGES/kcm_solid_actions.mo share/locale/ja/LC_MESSAGES/kcm_splashscreen.mo share/locale/ja/LC_MESSAGES/kcm_tablet.mo share/locale/ja/LC_MESSAGES/kcm_touchpad.mo share/locale/ja/LC_MESSAGES/kcm_touchscreen.mo share/locale/ja/LC_MESSAGES/kcm_workspace.mo share/locale/ja/LC_MESSAGES/kcmkclock.mo share/locale/ja/LC_MESSAGES/kcmmouse.mo share/locale/ja/LC_MESSAGES/kcmqtquicksettings.mo share/locale/ja/LC_MESSAGES/knetattach.mo share/locale/ja/LC_MESSAGES/org.kde.plasma.emojier.mo +share/locale/ja/LC_MESSAGES/plasma-desktop-sddm-theme.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/ja/LC_MESSAGES/plasma_runner_kwin.mo share/locale/ja/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/ja/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/ja/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/ja/LC_MESSAGES/plasmaactivitymanager.mo share/locale/ka/LC_MESSAGES/kaccess.mo share/locale/ka/LC_MESSAGES/kcm_access.mo share/locale/ka/LC_MESSAGES/kcm_activities.mo share/locale/ka/LC_MESSAGES/kcm_baloofile.mo share/locale/ka/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ka/LC_MESSAGES/kcm_device_automounter.mo share/locale/ka/LC_MESSAGES/kcm_gamecontroller.mo share/locale/ka/LC_MESSAGES/kcm_kded.mo share/locale/ka/LC_MESSAGES/kcm_keyboard.mo share/locale/ka/LC_MESSAGES/kcm_keys.mo share/locale/ka/LC_MESSAGES/kcm_krunnersettings.mo share/locale/ka/LC_MESSAGES/kcm_landingpage.mo share/locale/ka/LC_MESSAGES/kcm_plasmasearch.mo share/locale/ka/LC_MESSAGES/kcm_recentFiles.mo share/locale/ka/LC_MESSAGES/kcm_smserver.mo share/locale/ka/LC_MESSAGES/kcm_solid_actions.mo share/locale/ka/LC_MESSAGES/kcm_splashscreen.mo share/locale/ka/LC_MESSAGES/kcm_tablet.mo share/locale/ka/LC_MESSAGES/kcm_touchpad.mo share/locale/ka/LC_MESSAGES/kcm_touchscreen.mo share/locale/ka/LC_MESSAGES/kcm_workspace.mo share/locale/ka/LC_MESSAGES/kcmkclock.mo share/locale/ka/LC_MESSAGES/kcmmouse.mo share/locale/ka/LC_MESSAGES/kcmqtquicksettings.mo share/locale/ka/LC_MESSAGES/knetattach.mo share/locale/ka/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/ka/LC_MESSAGES/plasma-desktop-sddm-theme.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/ka/LC_MESSAGES/plasma_runner_keys.mo share/locale/ka/LC_MESSAGES/plasma_runner_kwin.mo share/locale/ka/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/ka/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/ka/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/ka/LC_MESSAGES/plasmaactivitymanager.mo share/locale/kk/LC_MESSAGES/kaccess.mo share/locale/kk/LC_MESSAGES/kcm_access.mo share/locale/kk/LC_MESSAGES/kcm_desktoppaths.mo share/locale/kk/LC_MESSAGES/kcm_device_automounter.mo share/locale/kk/LC_MESSAGES/kcm_kded.mo share/locale/kk/LC_MESSAGES/kcm_keyboard.mo share/locale/kk/LC_MESSAGES/kcm_smserver.mo share/locale/kk/LC_MESSAGES/kcm_solid_actions.mo share/locale/kk/LC_MESSAGES/kcmkclock.mo share/locale/kk/LC_MESSAGES/kcmmouse.mo share/locale/kk/LC_MESSAGES/knetattach.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/kk/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/kk/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/km/LC_MESSAGES/kaccess.mo share/locale/km/LC_MESSAGES/kcm_access.mo share/locale/km/LC_MESSAGES/kcm_desktoppaths.mo share/locale/km/LC_MESSAGES/kcm_device_automounter.mo share/locale/km/LC_MESSAGES/kcm_kded.mo share/locale/km/LC_MESSAGES/kcm_keyboard.mo share/locale/km/LC_MESSAGES/kcm_smserver.mo share/locale/km/LC_MESSAGES/kcm_solid_actions.mo share/locale/km/LC_MESSAGES/kcmkclock.mo share/locale/km/LC_MESSAGES/kcmmouse.mo share/locale/km/LC_MESSAGES/knetattach.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/km/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/kn/LC_MESSAGES/kaccess.mo share/locale/kn/LC_MESSAGES/kcm_access.mo share/locale/kn/LC_MESSAGES/kcm_desktoppaths.mo share/locale/kn/LC_MESSAGES/kcm_device_automounter.mo share/locale/kn/LC_MESSAGES/kcm_kded.mo share/locale/kn/LC_MESSAGES/kcm_keyboard.mo share/locale/kn/LC_MESSAGES/kcm_smserver.mo share/locale/kn/LC_MESSAGES/kcmkclock.mo share/locale/kn/LC_MESSAGES/kcmmouse.mo share/locale/kn/LC_MESSAGES/knetattach.mo share/locale/kn/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/kn/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/kn/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/kn/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/kn/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/kn/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/ko/LC_MESSAGES/kaccess.mo share/locale/ko/LC_MESSAGES/kcm_access.mo share/locale/ko/LC_MESSAGES/kcm_activities.mo share/locale/ko/LC_MESSAGES/kcm_baloofile.mo share/locale/ko/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ko/LC_MESSAGES/kcm_device_automounter.mo share/locale/ko/LC_MESSAGES/kcm_gamecontroller.mo share/locale/ko/LC_MESSAGES/kcm_kded.mo share/locale/ko/LC_MESSAGES/kcm_keyboard.mo share/locale/ko/LC_MESSAGES/kcm_keys.mo share/locale/ko/LC_MESSAGES/kcm_krunnersettings.mo share/locale/ko/LC_MESSAGES/kcm_landingpage.mo share/locale/ko/LC_MESSAGES/kcm_plasmasearch.mo share/locale/ko/LC_MESSAGES/kcm_recentFiles.mo share/locale/ko/LC_MESSAGES/kcm_smserver.mo share/locale/ko/LC_MESSAGES/kcm_solid_actions.mo share/locale/ko/LC_MESSAGES/kcm_splashscreen.mo share/locale/ko/LC_MESSAGES/kcm_tablet.mo share/locale/ko/LC_MESSAGES/kcm_touchpad.mo share/locale/ko/LC_MESSAGES/kcm_touchscreen.mo share/locale/ko/LC_MESSAGES/kcm_workspace.mo share/locale/ko/LC_MESSAGES/kcmkclock.mo share/locale/ko/LC_MESSAGES/kcmmouse.mo share/locale/ko/LC_MESSAGES/kcmqtquicksettings.mo share/locale/ko/LC_MESSAGES/knetattach.mo share/locale/ko/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/ko/LC_MESSAGES/plasma-desktop-sddm-theme.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/ko/LC_MESSAGES/plasma_runner_keys.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.paneltoolbox.mo share/locale/ko/LC_MESSAGES/plasmaactivitymanager.mo share/locale/ku/LC_MESSAGES/kaccess.mo share/locale/ku/LC_MESSAGES/kcm_access.mo share/locale/ku/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ku/LC_MESSAGES/kcm_kded.mo share/locale/ku/LC_MESSAGES/kcm_keyboard.mo share/locale/ku/LC_MESSAGES/kcm_smserver.mo share/locale/ku/LC_MESSAGES/kcmkclock.mo share/locale/ku/LC_MESSAGES/kcmmouse.mo share/locale/ku/LC_MESSAGES/knetattach.mo share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/lt/LC_MESSAGES/kaccess.mo share/locale/lt/LC_MESSAGES/kcm_access.mo share/locale/lt/LC_MESSAGES/kcm_activities.mo share/locale/lt/LC_MESSAGES/kcm_baloofile.mo share/locale/lt/LC_MESSAGES/kcm_desktoppaths.mo share/locale/lt/LC_MESSAGES/kcm_device_automounter.mo share/locale/lt/LC_MESSAGES/kcm_gamecontroller.mo share/locale/lt/LC_MESSAGES/kcm_kded.mo share/locale/lt/LC_MESSAGES/kcm_keyboard.mo share/locale/lt/LC_MESSAGES/kcm_keys.mo share/locale/lt/LC_MESSAGES/kcm_krunnersettings.mo share/locale/lt/LC_MESSAGES/kcm_landingpage.mo share/locale/lt/LC_MESSAGES/kcm_plasmasearch.mo share/locale/lt/LC_MESSAGES/kcm_recentFiles.mo share/locale/lt/LC_MESSAGES/kcm_smserver.mo share/locale/lt/LC_MESSAGES/kcm_solid_actions.mo share/locale/lt/LC_MESSAGES/kcm_splashscreen.mo share/locale/lt/LC_MESSAGES/kcm_tablet.mo share/locale/lt/LC_MESSAGES/kcm_touchpad.mo share/locale/lt/LC_MESSAGES/kcm_touchscreen.mo share/locale/lt/LC_MESSAGES/kcm_workspace.mo share/locale/lt/LC_MESSAGES/kcmkclock.mo share/locale/lt/LC_MESSAGES/kcmmouse.mo share/locale/lt/LC_MESSAGES/kcmqtquicksettings.mo share/locale/lt/LC_MESSAGES/knetattach.mo share/locale/lt/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/lt/LC_MESSAGES/plasma-desktop-sddm-theme.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/lt/LC_MESSAGES/plasma_runner_keys.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.paneltoolbox.mo share/locale/lt/LC_MESSAGES/plasmaactivitymanager.mo share/locale/lv/LC_MESSAGES/kaccess.mo share/locale/lv/LC_MESSAGES/kcm_access.mo share/locale/lv/LC_MESSAGES/kcm_activities.mo share/locale/lv/LC_MESSAGES/kcm_baloofile.mo share/locale/lv/LC_MESSAGES/kcm_desktoppaths.mo share/locale/lv/LC_MESSAGES/kcm_device_automounter.mo share/locale/lv/LC_MESSAGES/kcm_gamecontroller.mo share/locale/lv/LC_MESSAGES/kcm_kded.mo share/locale/lv/LC_MESSAGES/kcm_keyboard.mo share/locale/lv/LC_MESSAGES/kcm_keys.mo share/locale/lv/LC_MESSAGES/kcm_krunnersettings.mo share/locale/lv/LC_MESSAGES/kcm_landingpage.mo share/locale/lv/LC_MESSAGES/kcm_plasmasearch.mo share/locale/lv/LC_MESSAGES/kcm_recentFiles.mo share/locale/lv/LC_MESSAGES/kcm_smserver.mo share/locale/lv/LC_MESSAGES/kcm_solid_actions.mo share/locale/lv/LC_MESSAGES/kcm_splashscreen.mo share/locale/lv/LC_MESSAGES/kcm_tablet.mo share/locale/lv/LC_MESSAGES/kcm_touchpad.mo share/locale/lv/LC_MESSAGES/kcm_touchscreen.mo share/locale/lv/LC_MESSAGES/kcm_workspace.mo share/locale/lv/LC_MESSAGES/kcmkclock.mo share/locale/lv/LC_MESSAGES/kcmmouse.mo share/locale/lv/LC_MESSAGES/kcmqtquicksettings.mo share/locale/lv/LC_MESSAGES/knetattach.mo share/locale/lv/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/lv/LC_MESSAGES/plasma-desktop-sddm-theme.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/lv/LC_MESSAGES/plasma_runner_kwin.mo share/locale/lv/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/lv/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/lv/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/lv/LC_MESSAGES/plasmaactivitymanager.mo share/locale/mai/LC_MESSAGES/kaccess.mo share/locale/mai/LC_MESSAGES/kcm_access.mo share/locale/mai/LC_MESSAGES/kcm_desktoppaths.mo share/locale/mai/LC_MESSAGES/kcm_device_automounter.mo share/locale/mai/LC_MESSAGES/kcm_kded.mo share/locale/mai/LC_MESSAGES/kcm_keyboard.mo share/locale/mai/LC_MESSAGES/kcm_smserver.mo share/locale/mai/LC_MESSAGES/kcm_solid_actions.mo share/locale/mai/LC_MESSAGES/kcmkclock.mo share/locale/mai/LC_MESSAGES/kcmmouse.mo share/locale/mai/LC_MESSAGES/knetattach.mo share/locale/mai/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/mai/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/mai/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/mai/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/mai/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/mai/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/mk/LC_MESSAGES/kaccess.mo share/locale/mk/LC_MESSAGES/kcm_access.mo share/locale/mk/LC_MESSAGES/kcm_desktoppaths.mo share/locale/mk/LC_MESSAGES/kcm_kded.mo share/locale/mk/LC_MESSAGES/kcm_keyboard.mo share/locale/mk/LC_MESSAGES/kcm_smserver.mo share/locale/mk/LC_MESSAGES/kcmkclock.mo share/locale/mk/LC_MESSAGES/kcmmouse.mo share/locale/mk/LC_MESSAGES/knetattach.mo share/locale/mk/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/mk/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/mk/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/mk/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ml/LC_MESSAGES/kaccess.mo share/locale/ml/LC_MESSAGES/kcm_access.mo share/locale/ml/LC_MESSAGES/kcm_activities.mo share/locale/ml/LC_MESSAGES/kcm_baloofile.mo share/locale/ml/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ml/LC_MESSAGES/kcm_device_automounter.mo share/locale/ml/LC_MESSAGES/kcm_kded.mo share/locale/ml/LC_MESSAGES/kcm_keyboard.mo share/locale/ml/LC_MESSAGES/kcm_krunnersettings.mo share/locale/ml/LC_MESSAGES/kcm_plasmasearch.mo share/locale/ml/LC_MESSAGES/kcm_smserver.mo share/locale/ml/LC_MESSAGES/kcm_solid_actions.mo share/locale/ml/LC_MESSAGES/kcm_splashscreen.mo share/locale/ml/LC_MESSAGES/kcm_touchpad.mo share/locale/ml/LC_MESSAGES/kcm_workspace.mo share/locale/ml/LC_MESSAGES/kcmkclock.mo share/locale/ml/LC_MESSAGES/kcmmouse.mo share/locale/ml/LC_MESSAGES/kcmqtquicksettings.mo share/locale/ml/LC_MESSAGES/knetattach.mo share/locale/ml/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/ml/LC_MESSAGES/plasma_runner_kwin.mo share/locale/ml/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/ml/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/ml/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/ml/LC_MESSAGES/plasmaactivitymanager.mo share/locale/mr/LC_MESSAGES/kaccess.mo share/locale/mr/LC_MESSAGES/kcm_access.mo share/locale/mr/LC_MESSAGES/kcm_desktoppaths.mo share/locale/mr/LC_MESSAGES/kcm_device_automounter.mo share/locale/mr/LC_MESSAGES/kcm_kded.mo share/locale/mr/LC_MESSAGES/kcm_keyboard.mo share/locale/mr/LC_MESSAGES/kcm_smserver.mo share/locale/mr/LC_MESSAGES/kcm_solid_actions.mo share/locale/mr/LC_MESSAGES/kcmkclock.mo share/locale/mr/LC_MESSAGES/kcmmouse.mo share/locale/mr/LC_MESSAGES/knetattach.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/mr/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/mr/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/ms/LC_MESSAGES/kaccess.mo share/locale/ms/LC_MESSAGES/kcm_access.mo share/locale/ms/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ms/LC_MESSAGES/kcm_device_automounter.mo share/locale/ms/LC_MESSAGES/kcm_kded.mo share/locale/ms/LC_MESSAGES/kcm_keyboard.mo share/locale/ms/LC_MESSAGES/kcm_smserver.mo share/locale/ms/LC_MESSAGES/kcm_solid_actions.mo share/locale/ms/LC_MESSAGES/kcmkclock.mo share/locale/ms/LC_MESSAGES/kcmmouse.mo share/locale/ms/LC_MESSAGES/knetattach.mo share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/ms/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/nb/LC_MESSAGES/kaccess.mo share/locale/nb/LC_MESSAGES/kcm_access.mo share/locale/nb/LC_MESSAGES/kcm_activities.mo share/locale/nb/LC_MESSAGES/kcm_baloofile.mo share/locale/nb/LC_MESSAGES/kcm_desktoppaths.mo share/locale/nb/LC_MESSAGES/kcm_device_automounter.mo share/locale/nb/LC_MESSAGES/kcm_gamecontroller.mo share/locale/nb/LC_MESSAGES/kcm_kded.mo share/locale/nb/LC_MESSAGES/kcm_keyboard.mo share/locale/nb/LC_MESSAGES/kcm_keys.mo share/locale/nb/LC_MESSAGES/kcm_krunnersettings.mo share/locale/nb/LC_MESSAGES/kcm_landingpage.mo share/locale/nb/LC_MESSAGES/kcm_plasmasearch.mo share/locale/nb/LC_MESSAGES/kcm_recentFiles.mo share/locale/nb/LC_MESSAGES/kcm_smserver.mo share/locale/nb/LC_MESSAGES/kcm_solid_actions.mo share/locale/nb/LC_MESSAGES/kcm_splashscreen.mo share/locale/nb/LC_MESSAGES/kcm_tablet.mo share/locale/nb/LC_MESSAGES/kcm_touchpad.mo share/locale/nb/LC_MESSAGES/kcm_touchscreen.mo share/locale/nb/LC_MESSAGES/kcm_workspace.mo share/locale/nb/LC_MESSAGES/kcmkclock.mo share/locale/nb/LC_MESSAGES/kcmmouse.mo share/locale/nb/LC_MESSAGES/kcmqtquicksettings.mo share/locale/nb/LC_MESSAGES/knetattach.mo share/locale/nb/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/nb/LC_MESSAGES/plasma-desktop-sddm-theme.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo +share/locale/nb/LC_MESSAGES/plasma_runner_keys.mo share/locale/nb/LC_MESSAGES/plasma_runner_kwin.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.paneltoolbox.mo share/locale/nb/LC_MESSAGES/plasmaactivitymanager.mo share/locale/nds/LC_MESSAGES/kaccess.mo share/locale/nds/LC_MESSAGES/kcm_access.mo share/locale/nds/LC_MESSAGES/kcm_baloofile.mo share/locale/nds/LC_MESSAGES/kcm_desktoppaths.mo share/locale/nds/LC_MESSAGES/kcm_device_automounter.mo share/locale/nds/LC_MESSAGES/kcm_kded.mo share/locale/nds/LC_MESSAGES/kcm_keyboard.mo share/locale/nds/LC_MESSAGES/kcm_krunnersettings.mo share/locale/nds/LC_MESSAGES/kcm_plasmasearch.mo share/locale/nds/LC_MESSAGES/kcm_smserver.mo share/locale/nds/LC_MESSAGES/kcm_solid_actions.mo share/locale/nds/LC_MESSAGES/kcm_splashscreen.mo share/locale/nds/LC_MESSAGES/kcm_workspace.mo share/locale/nds/LC_MESSAGES/kcmkclock.mo share/locale/nds/LC_MESSAGES/kcmmouse.mo share/locale/nds/LC_MESSAGES/knetattach.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/nds/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/nds/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/ne/LC_MESSAGES/kaccess.mo share/locale/ne/LC_MESSAGES/kcm_access.mo share/locale/ne/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ne/LC_MESSAGES/kcm_kded.mo share/locale/ne/LC_MESSAGES/kcm_keyboard.mo share/locale/ne/LC_MESSAGES/kcm_smserver.mo share/locale/ne/LC_MESSAGES/kcmkclock.mo share/locale/ne/LC_MESSAGES/kcmmouse.mo share/locale/ne/LC_MESSAGES/knetattach.mo share/locale/ne/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ne/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/nl/LC_MESSAGES/kaccess.mo share/locale/nl/LC_MESSAGES/kcm_access.mo share/locale/nl/LC_MESSAGES/kcm_activities.mo share/locale/nl/LC_MESSAGES/kcm_baloofile.mo share/locale/nl/LC_MESSAGES/kcm_desktoppaths.mo share/locale/nl/LC_MESSAGES/kcm_device_automounter.mo share/locale/nl/LC_MESSAGES/kcm_gamecontroller.mo share/locale/nl/LC_MESSAGES/kcm_kded.mo share/locale/nl/LC_MESSAGES/kcm_keyboard.mo share/locale/nl/LC_MESSAGES/kcm_keys.mo share/locale/nl/LC_MESSAGES/kcm_krunnersettings.mo share/locale/nl/LC_MESSAGES/kcm_landingpage.mo share/locale/nl/LC_MESSAGES/kcm_plasmasearch.mo share/locale/nl/LC_MESSAGES/kcm_recentFiles.mo share/locale/nl/LC_MESSAGES/kcm_smserver.mo share/locale/nl/LC_MESSAGES/kcm_solid_actions.mo share/locale/nl/LC_MESSAGES/kcm_splashscreen.mo share/locale/nl/LC_MESSAGES/kcm_tablet.mo share/locale/nl/LC_MESSAGES/kcm_touchpad.mo share/locale/nl/LC_MESSAGES/kcm_touchscreen.mo share/locale/nl/LC_MESSAGES/kcm_workspace.mo share/locale/nl/LC_MESSAGES/kcmkclock.mo share/locale/nl/LC_MESSAGES/kcmmouse.mo share/locale/nl/LC_MESSAGES/kcmqtquicksettings.mo share/locale/nl/LC_MESSAGES/knetattach.mo share/locale/nl/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/nl/LC_MESSAGES/plasma-desktop-sddm-theme.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/nl/LC_MESSAGES/plasma_runner_keys.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.paneltoolbox.mo share/locale/nl/LC_MESSAGES/plasmaactivitymanager.mo share/locale/nn/LC_MESSAGES/kaccess.mo share/locale/nn/LC_MESSAGES/kcm_access.mo share/locale/nn/LC_MESSAGES/kcm_activities.mo share/locale/nn/LC_MESSAGES/kcm_baloofile.mo share/locale/nn/LC_MESSAGES/kcm_desktoppaths.mo share/locale/nn/LC_MESSAGES/kcm_device_automounter.mo share/locale/nn/LC_MESSAGES/kcm_gamecontroller.mo share/locale/nn/LC_MESSAGES/kcm_kded.mo share/locale/nn/LC_MESSAGES/kcm_keyboard.mo share/locale/nn/LC_MESSAGES/kcm_keys.mo share/locale/nn/LC_MESSAGES/kcm_krunnersettings.mo share/locale/nn/LC_MESSAGES/kcm_landingpage.mo share/locale/nn/LC_MESSAGES/kcm_plasmasearch.mo share/locale/nn/LC_MESSAGES/kcm_recentFiles.mo share/locale/nn/LC_MESSAGES/kcm_smserver.mo share/locale/nn/LC_MESSAGES/kcm_solid_actions.mo share/locale/nn/LC_MESSAGES/kcm_splashscreen.mo share/locale/nn/LC_MESSAGES/kcm_tablet.mo share/locale/nn/LC_MESSAGES/kcm_touchpad.mo share/locale/nn/LC_MESSAGES/kcm_touchscreen.mo share/locale/nn/LC_MESSAGES/kcm_workspace.mo share/locale/nn/LC_MESSAGES/kcmkclock.mo share/locale/nn/LC_MESSAGES/kcmmouse.mo share/locale/nn/LC_MESSAGES/kcmqtquicksettings.mo share/locale/nn/LC_MESSAGES/knetattach.mo share/locale/nn/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/nn/LC_MESSAGES/plasma-desktop-sddm-theme.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/nn/LC_MESSAGES/plasma_runner_keys.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.paneltoolbox.mo share/locale/nn/LC_MESSAGES/plasmaactivitymanager.mo share/locale/oc/LC_MESSAGES/kaccess.mo share/locale/oc/LC_MESSAGES/kcm_access.mo share/locale/oc/LC_MESSAGES/kcm_desktoppaths.mo share/locale/oc/LC_MESSAGES/kcm_kded.mo share/locale/oc/LC_MESSAGES/kcm_keyboard.mo share/locale/oc/LC_MESSAGES/kcm_smserver.mo share/locale/oc/LC_MESSAGES/kcmkclock.mo share/locale/oc/LC_MESSAGES/kcmmouse.mo share/locale/oc/LC_MESSAGES/knetattach.mo share/locale/oc/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/or/LC_MESSAGES/kaccess.mo share/locale/or/LC_MESSAGES/kcm_access.mo share/locale/or/LC_MESSAGES/kcm_desktoppaths.mo share/locale/or/LC_MESSAGES/kcm_kded.mo share/locale/or/LC_MESSAGES/kcm_keyboard.mo share/locale/or/LC_MESSAGES/kcm_smserver.mo share/locale/or/LC_MESSAGES/kcmkclock.mo share/locale/or/LC_MESSAGES/kcmmouse.mo share/locale/or/LC_MESSAGES/knetattach.mo share/locale/or/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/or/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/or/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/or/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/pa/LC_MESSAGES/kaccess.mo share/locale/pa/LC_MESSAGES/kcm_access.mo share/locale/pa/LC_MESSAGES/kcm_activities.mo share/locale/pa/LC_MESSAGES/kcm_baloofile.mo share/locale/pa/LC_MESSAGES/kcm_desktoppaths.mo share/locale/pa/LC_MESSAGES/kcm_device_automounter.mo share/locale/pa/LC_MESSAGES/kcm_gamecontroller.mo share/locale/pa/LC_MESSAGES/kcm_kded.mo share/locale/pa/LC_MESSAGES/kcm_keyboard.mo share/locale/pa/LC_MESSAGES/kcm_keys.mo share/locale/pa/LC_MESSAGES/kcm_krunnersettings.mo share/locale/pa/LC_MESSAGES/kcm_landingpage.mo share/locale/pa/LC_MESSAGES/kcm_plasmasearch.mo share/locale/pa/LC_MESSAGES/kcm_recentFiles.mo share/locale/pa/LC_MESSAGES/kcm_smserver.mo share/locale/pa/LC_MESSAGES/kcm_solid_actions.mo share/locale/pa/LC_MESSAGES/kcm_splashscreen.mo share/locale/pa/LC_MESSAGES/kcm_tablet.mo share/locale/pa/LC_MESSAGES/kcm_touchpad.mo share/locale/pa/LC_MESSAGES/kcm_touchscreen.mo share/locale/pa/LC_MESSAGES/kcm_workspace.mo share/locale/pa/LC_MESSAGES/kcmkclock.mo share/locale/pa/LC_MESSAGES/kcmmouse.mo share/locale/pa/LC_MESSAGES/kcmqtquicksettings.mo share/locale/pa/LC_MESSAGES/knetattach.mo share/locale/pa/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/pa/LC_MESSAGES/plasma-desktop-sddm-theme.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/pa/LC_MESSAGES/plasma_runner_kwin.mo share/locale/pa/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/pa/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/pa/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/pa/LC_MESSAGES/plasmaactivitymanager.mo share/locale/pl/LC_MESSAGES/kaccess.mo share/locale/pl/LC_MESSAGES/kcm_access.mo share/locale/pl/LC_MESSAGES/kcm_activities.mo share/locale/pl/LC_MESSAGES/kcm_baloofile.mo share/locale/pl/LC_MESSAGES/kcm_desktoppaths.mo share/locale/pl/LC_MESSAGES/kcm_device_automounter.mo share/locale/pl/LC_MESSAGES/kcm_gamecontroller.mo share/locale/pl/LC_MESSAGES/kcm_kded.mo share/locale/pl/LC_MESSAGES/kcm_keyboard.mo share/locale/pl/LC_MESSAGES/kcm_keys.mo share/locale/pl/LC_MESSAGES/kcm_krunnersettings.mo share/locale/pl/LC_MESSAGES/kcm_landingpage.mo share/locale/pl/LC_MESSAGES/kcm_plasmasearch.mo share/locale/pl/LC_MESSAGES/kcm_recentFiles.mo share/locale/pl/LC_MESSAGES/kcm_smserver.mo share/locale/pl/LC_MESSAGES/kcm_solid_actions.mo share/locale/pl/LC_MESSAGES/kcm_splashscreen.mo share/locale/pl/LC_MESSAGES/kcm_tablet.mo share/locale/pl/LC_MESSAGES/kcm_touchpad.mo share/locale/pl/LC_MESSAGES/kcm_touchscreen.mo share/locale/pl/LC_MESSAGES/kcm_workspace.mo share/locale/pl/LC_MESSAGES/kcmkclock.mo share/locale/pl/LC_MESSAGES/kcmmouse.mo share/locale/pl/LC_MESSAGES/kcmqtquicksettings.mo share/locale/pl/LC_MESSAGES/knetattach.mo share/locale/pl/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/pl/LC_MESSAGES/plasma-desktop-sddm-theme.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/pl/LC_MESSAGES/plasma_runner_keys.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.paneltoolbox.mo share/locale/pl/LC_MESSAGES/plasmaactivitymanager.mo share/locale/pt/LC_MESSAGES/kaccess.mo share/locale/pt/LC_MESSAGES/kcm_access.mo share/locale/pt/LC_MESSAGES/kcm_activities.mo share/locale/pt/LC_MESSAGES/kcm_baloofile.mo share/locale/pt/LC_MESSAGES/kcm_desktoppaths.mo share/locale/pt/LC_MESSAGES/kcm_device_automounter.mo share/locale/pt/LC_MESSAGES/kcm_kded.mo share/locale/pt/LC_MESSAGES/kcm_keyboard.mo share/locale/pt/LC_MESSAGES/kcm_keys.mo share/locale/pt/LC_MESSAGES/kcm_krunnersettings.mo share/locale/pt/LC_MESSAGES/kcm_landingpage.mo share/locale/pt/LC_MESSAGES/kcm_plasmasearch.mo share/locale/pt/LC_MESSAGES/kcm_recentFiles.mo share/locale/pt/LC_MESSAGES/kcm_smserver.mo share/locale/pt/LC_MESSAGES/kcm_solid_actions.mo share/locale/pt/LC_MESSAGES/kcm_splashscreen.mo share/locale/pt/LC_MESSAGES/kcm_tablet.mo share/locale/pt/LC_MESSAGES/kcm_touchpad.mo share/locale/pt/LC_MESSAGES/kcm_touchscreen.mo share/locale/pt/LC_MESSAGES/kcm_workspace.mo share/locale/pt/LC_MESSAGES/kcmkclock.mo share/locale/pt/LC_MESSAGES/kcmmouse.mo share/locale/pt/LC_MESSAGES/kcmqtquicksettings.mo share/locale/pt/LC_MESSAGES/knetattach.mo share/locale/pt/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/pt/LC_MESSAGES/plasma_runner_kwin.mo share/locale/pt/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/pt/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/pt/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/pt/LC_MESSAGES/plasmaactivitymanager.mo share/locale/pt_BR/LC_MESSAGES/kaccess.mo share/locale/pt_BR/LC_MESSAGES/kcm_access.mo share/locale/pt_BR/LC_MESSAGES/kcm_activities.mo share/locale/pt_BR/LC_MESSAGES/kcm_baloofile.mo share/locale/pt_BR/LC_MESSAGES/kcm_desktoppaths.mo share/locale/pt_BR/LC_MESSAGES/kcm_device_automounter.mo share/locale/pt_BR/LC_MESSAGES/kcm_gamecontroller.mo share/locale/pt_BR/LC_MESSAGES/kcm_kded.mo share/locale/pt_BR/LC_MESSAGES/kcm_keyboard.mo share/locale/pt_BR/LC_MESSAGES/kcm_keys.mo share/locale/pt_BR/LC_MESSAGES/kcm_krunnersettings.mo share/locale/pt_BR/LC_MESSAGES/kcm_landingpage.mo share/locale/pt_BR/LC_MESSAGES/kcm_plasmasearch.mo share/locale/pt_BR/LC_MESSAGES/kcm_recentFiles.mo share/locale/pt_BR/LC_MESSAGES/kcm_smserver.mo share/locale/pt_BR/LC_MESSAGES/kcm_solid_actions.mo share/locale/pt_BR/LC_MESSAGES/kcm_splashscreen.mo share/locale/pt_BR/LC_MESSAGES/kcm_tablet.mo share/locale/pt_BR/LC_MESSAGES/kcm_touchpad.mo share/locale/pt_BR/LC_MESSAGES/kcm_touchscreen.mo share/locale/pt_BR/LC_MESSAGES/kcm_workspace.mo share/locale/pt_BR/LC_MESSAGES/kcmkclock.mo share/locale/pt_BR/LC_MESSAGES/kcmmouse.mo share/locale/pt_BR/LC_MESSAGES/kcmqtquicksettings.mo share/locale/pt_BR/LC_MESSAGES/knetattach.mo share/locale/pt_BR/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/pt_BR/LC_MESSAGES/plasma-desktop-sddm-theme.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_keys.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.paneltoolbox.mo share/locale/pt_BR/LC_MESSAGES/plasmaactivitymanager.mo share/locale/ro/LC_MESSAGES/kaccess.mo share/locale/ro/LC_MESSAGES/kcm_access.mo share/locale/ro/LC_MESSAGES/kcm_activities.mo share/locale/ro/LC_MESSAGES/kcm_baloofile.mo share/locale/ro/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ro/LC_MESSAGES/kcm_device_automounter.mo share/locale/ro/LC_MESSAGES/kcm_gamecontroller.mo share/locale/ro/LC_MESSAGES/kcm_kded.mo share/locale/ro/LC_MESSAGES/kcm_keyboard.mo share/locale/ro/LC_MESSAGES/kcm_keys.mo share/locale/ro/LC_MESSAGES/kcm_krunnersettings.mo share/locale/ro/LC_MESSAGES/kcm_landingpage.mo share/locale/ro/LC_MESSAGES/kcm_plasmasearch.mo share/locale/ro/LC_MESSAGES/kcm_recentFiles.mo share/locale/ro/LC_MESSAGES/kcm_smserver.mo share/locale/ro/LC_MESSAGES/kcm_solid_actions.mo share/locale/ro/LC_MESSAGES/kcm_splashscreen.mo share/locale/ro/LC_MESSAGES/kcm_tablet.mo share/locale/ro/LC_MESSAGES/kcm_touchpad.mo share/locale/ro/LC_MESSAGES/kcm_touchscreen.mo share/locale/ro/LC_MESSAGES/kcm_workspace.mo share/locale/ro/LC_MESSAGES/kcmkclock.mo share/locale/ro/LC_MESSAGES/kcmmouse.mo share/locale/ro/LC_MESSAGES/kcmqtquicksettings.mo share/locale/ro/LC_MESSAGES/knetattach.mo share/locale/ro/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/ro/LC_MESSAGES/plasma-desktop-sddm-theme.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/ro/LC_MESSAGES/plasma_runner_keys.mo share/locale/ro/LC_MESSAGES/plasma_runner_kwin.mo share/locale/ro/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/ro/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/ro/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/ro/LC_MESSAGES/plasmaactivitymanager.mo share/locale/ru/LC_MESSAGES/kaccess.mo share/locale/ru/LC_MESSAGES/kcm_access.mo share/locale/ru/LC_MESSAGES/kcm_activities.mo share/locale/ru/LC_MESSAGES/kcm_baloofile.mo share/locale/ru/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ru/LC_MESSAGES/kcm_device_automounter.mo share/locale/ru/LC_MESSAGES/kcm_gamecontroller.mo share/locale/ru/LC_MESSAGES/kcm_kded.mo share/locale/ru/LC_MESSAGES/kcm_keyboard.mo share/locale/ru/LC_MESSAGES/kcm_keys.mo share/locale/ru/LC_MESSAGES/kcm_krunnersettings.mo share/locale/ru/LC_MESSAGES/kcm_landingpage.mo share/locale/ru/LC_MESSAGES/kcm_plasmasearch.mo share/locale/ru/LC_MESSAGES/kcm_recentFiles.mo share/locale/ru/LC_MESSAGES/kcm_smserver.mo share/locale/ru/LC_MESSAGES/kcm_solid_actions.mo share/locale/ru/LC_MESSAGES/kcm_splashscreen.mo share/locale/ru/LC_MESSAGES/kcm_tablet.mo share/locale/ru/LC_MESSAGES/kcm_touchpad.mo share/locale/ru/LC_MESSAGES/kcm_touchscreen.mo share/locale/ru/LC_MESSAGES/kcm_workspace.mo share/locale/ru/LC_MESSAGES/kcmkclock.mo share/locale/ru/LC_MESSAGES/kcmmouse.mo share/locale/ru/LC_MESSAGES/kcmqtquicksettings.mo share/locale/ru/LC_MESSAGES/knetattach.mo share/locale/ru/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/ru/LC_MESSAGES/plasma-desktop-sddm-theme.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo -share/locale/ru/LC_MESSAGES/plasma_runner_keys.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.paneltoolbox.mo share/locale/ru/LC_MESSAGES/plasmaactivitymanager.mo share/locale/sa/LC_MESSAGES/kaccess.mo share/locale/sa/LC_MESSAGES/kcm_access.mo share/locale/sa/LC_MESSAGES/kcm_activities.mo share/locale/sa/LC_MESSAGES/kcm_baloofile.mo share/locale/sa/LC_MESSAGES/kcm_desktoppaths.mo share/locale/sa/LC_MESSAGES/kcm_device_automounter.mo share/locale/sa/LC_MESSAGES/kcm_gamecontroller.mo share/locale/sa/LC_MESSAGES/kcm_kded.mo share/locale/sa/LC_MESSAGES/kcm_keyboard.mo share/locale/sa/LC_MESSAGES/kcm_keys.mo share/locale/sa/LC_MESSAGES/kcm_krunnersettings.mo share/locale/sa/LC_MESSAGES/kcm_landingpage.mo share/locale/sa/LC_MESSAGES/kcm_plasmasearch.mo share/locale/sa/LC_MESSAGES/kcm_recentFiles.mo share/locale/sa/LC_MESSAGES/kcm_smserver.mo share/locale/sa/LC_MESSAGES/kcm_solid_actions.mo share/locale/sa/LC_MESSAGES/kcm_splashscreen.mo share/locale/sa/LC_MESSAGES/kcm_tablet.mo share/locale/sa/LC_MESSAGES/kcm_touchpad.mo share/locale/sa/LC_MESSAGES/kcm_touchscreen.mo share/locale/sa/LC_MESSAGES/kcm_workspace.mo share/locale/sa/LC_MESSAGES/kcmkclock.mo share/locale/sa/LC_MESSAGES/kcmmouse.mo share/locale/sa/LC_MESSAGES/kcmqtquicksettings.mo share/locale/sa/LC_MESSAGES/knetattach.mo share/locale/sa/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/sa/LC_MESSAGES/plasma-desktop-sddm-theme.mo share/locale/sa/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/sa/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/sa/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/sa/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/sa/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/sa/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/sa/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/sa/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/sa/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/sa/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/sa/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/sa/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/sa/LC_MESSAGES/plasma_runner_kwin.mo share/locale/sa/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/sa/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/sa/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/sa/LC_MESSAGES/plasmaactivitymanager.mo share/locale/se/LC_MESSAGES/kaccess.mo share/locale/se/LC_MESSAGES/kcm_access.mo share/locale/se/LC_MESSAGES/kcm_desktoppaths.mo share/locale/se/LC_MESSAGES/kcm_kded.mo share/locale/se/LC_MESSAGES/kcm_keyboard.mo share/locale/se/LC_MESSAGES/kcm_smserver.mo share/locale/se/LC_MESSAGES/kcmkclock.mo share/locale/se/LC_MESSAGES/kcmmouse.mo share/locale/se/LC_MESSAGES/knetattach.mo share/locale/se/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/se/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/si/LC_MESSAGES/kaccess.mo share/locale/si/LC_MESSAGES/kcm_access.mo share/locale/si/LC_MESSAGES/kcm_desktoppaths.mo share/locale/si/LC_MESSAGES/kcm_device_automounter.mo share/locale/si/LC_MESSAGES/kcm_kded.mo share/locale/si/LC_MESSAGES/kcm_keyboard.mo share/locale/si/LC_MESSAGES/kcm_smserver.mo share/locale/si/LC_MESSAGES/kcm_solid_actions.mo share/locale/si/LC_MESSAGES/kcmkclock.mo share/locale/si/LC_MESSAGES/kcmmouse.mo share/locale/si/LC_MESSAGES/knetattach.mo share/locale/si/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/si/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/si/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/si/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/si/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/sk/LC_MESSAGES/kaccess.mo share/locale/sk/LC_MESSAGES/kcm_access.mo share/locale/sk/LC_MESSAGES/kcm_activities.mo share/locale/sk/LC_MESSAGES/kcm_baloofile.mo share/locale/sk/LC_MESSAGES/kcm_desktoppaths.mo share/locale/sk/LC_MESSAGES/kcm_device_automounter.mo share/locale/sk/LC_MESSAGES/kcm_gamecontroller.mo share/locale/sk/LC_MESSAGES/kcm_kded.mo share/locale/sk/LC_MESSAGES/kcm_keyboard.mo share/locale/sk/LC_MESSAGES/kcm_keys.mo share/locale/sk/LC_MESSAGES/kcm_krunnersettings.mo share/locale/sk/LC_MESSAGES/kcm_landingpage.mo share/locale/sk/LC_MESSAGES/kcm_plasmasearch.mo share/locale/sk/LC_MESSAGES/kcm_recentFiles.mo share/locale/sk/LC_MESSAGES/kcm_smserver.mo share/locale/sk/LC_MESSAGES/kcm_solid_actions.mo share/locale/sk/LC_MESSAGES/kcm_splashscreen.mo share/locale/sk/LC_MESSAGES/kcm_tablet.mo share/locale/sk/LC_MESSAGES/kcm_touchpad.mo share/locale/sk/LC_MESSAGES/kcm_touchscreen.mo share/locale/sk/LC_MESSAGES/kcm_workspace.mo share/locale/sk/LC_MESSAGES/kcmkclock.mo share/locale/sk/LC_MESSAGES/kcmmouse.mo share/locale/sk/LC_MESSAGES/kcmqtquicksettings.mo share/locale/sk/LC_MESSAGES/knetattach.mo share/locale/sk/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/sk/LC_MESSAGES/plasma-desktop-sddm-theme.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/sk/LC_MESSAGES/plasma_runner_kwin.mo share/locale/sk/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/sk/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/sk/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/sk/LC_MESSAGES/plasmaactivitymanager.mo share/locale/sl/LC_MESSAGES/kaccess.mo share/locale/sl/LC_MESSAGES/kcm_access.mo share/locale/sl/LC_MESSAGES/kcm_activities.mo share/locale/sl/LC_MESSAGES/kcm_baloofile.mo share/locale/sl/LC_MESSAGES/kcm_desktoppaths.mo share/locale/sl/LC_MESSAGES/kcm_device_automounter.mo share/locale/sl/LC_MESSAGES/kcm_gamecontroller.mo share/locale/sl/LC_MESSAGES/kcm_kded.mo share/locale/sl/LC_MESSAGES/kcm_keyboard.mo share/locale/sl/LC_MESSAGES/kcm_keys.mo share/locale/sl/LC_MESSAGES/kcm_krunnersettings.mo share/locale/sl/LC_MESSAGES/kcm_landingpage.mo share/locale/sl/LC_MESSAGES/kcm_plasmasearch.mo share/locale/sl/LC_MESSAGES/kcm_recentFiles.mo share/locale/sl/LC_MESSAGES/kcm_smserver.mo share/locale/sl/LC_MESSAGES/kcm_solid_actions.mo share/locale/sl/LC_MESSAGES/kcm_splashscreen.mo share/locale/sl/LC_MESSAGES/kcm_tablet.mo share/locale/sl/LC_MESSAGES/kcm_touchpad.mo share/locale/sl/LC_MESSAGES/kcm_touchscreen.mo share/locale/sl/LC_MESSAGES/kcm_workspace.mo share/locale/sl/LC_MESSAGES/kcmkclock.mo share/locale/sl/LC_MESSAGES/kcmmouse.mo share/locale/sl/LC_MESSAGES/kcmqtquicksettings.mo share/locale/sl/LC_MESSAGES/knetattach.mo share/locale/sl/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/sl/LC_MESSAGES/plasma-desktop-sddm-theme.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/sl/LC_MESSAGES/plasma_runner_keys.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.paneltoolbox.mo share/locale/sl/LC_MESSAGES/plasmaactivitymanager.mo share/locale/sq/LC_MESSAGES/kaccess.mo share/locale/sq/LC_MESSAGES/kcm_access.mo share/locale/sq/LC_MESSAGES/kcm_kded.mo share/locale/sq/LC_MESSAGES/kcm_keyboard.mo share/locale/sq/LC_MESSAGES/kcm_smserver.mo share/locale/sq/LC_MESSAGES/kcm_solid_actions.mo +share/locale/sq/LC_MESSAGES/kcm_splashscreen.mo +share/locale/sq/LC_MESSAGES/kcm_tablet.mo share/locale/sq/LC_MESSAGES/kcmkclock.mo share/locale/sq/LC_MESSAGES/kcmmouse.mo share/locale/sq/LC_MESSAGES/knetattach.mo share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/sr/LC_MESSAGES/kaccess.mo share/locale/sr/LC_MESSAGES/kcm_access.mo share/locale/sr/LC_MESSAGES/kcm_activities.mo share/locale/sr/LC_MESSAGES/kcm_baloofile.mo share/locale/sr/LC_MESSAGES/kcm_desktoppaths.mo share/locale/sr/LC_MESSAGES/kcm_device_automounter.mo share/locale/sr/LC_MESSAGES/kcm_kded.mo share/locale/sr/LC_MESSAGES/kcm_keyboard.mo share/locale/sr/LC_MESSAGES/kcm_krunnersettings.mo share/locale/sr/LC_MESSAGES/kcm_plasmasearch.mo share/locale/sr/LC_MESSAGES/kcm_smserver.mo share/locale/sr/LC_MESSAGES/kcm_solid_actions.mo share/locale/sr/LC_MESSAGES/kcm_splashscreen.mo share/locale/sr/LC_MESSAGES/kcm_touchpad.mo share/locale/sr/LC_MESSAGES/kcm_workspace.mo share/locale/sr/LC_MESSAGES/kcmkclock.mo share/locale/sr/LC_MESSAGES/kcmmouse.mo share/locale/sr/LC_MESSAGES/knetattach.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/sr/LC_MESSAGES/plasma_runner_kwin.mo share/locale/sr/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/sr/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/sr/LC_MESSAGES/plasmaactivitymanager.mo share/locale/sr/LC_SCRIPTS/kfontinst/kfontinst.js share/locale/sr@ijekavian/LC_MESSAGES/kaccess.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_access.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_activities.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_baloofile.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_desktoppaths.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_device_automounter.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_kded.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_keyboard.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_krunnersettings.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_plasmasearch.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_smserver.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_solid_actions.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_splashscreen.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_touchpad.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_workspace.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmkclock.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmmouse.mo share/locale/sr@ijekavian/LC_MESSAGES/knetattach.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_kwin.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/sr@ijekavian/LC_MESSAGES/plasmaactivitymanager.mo share/locale/sr@ijekavian/LC_SCRIPTS/kfontinst/kfontinst.js share/locale/sr@ijekavianlatin/LC_MESSAGES/kaccess.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_access.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_activities.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_baloofile.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_desktoppaths.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_device_automounter.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_kded.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_keyboard.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_krunnersettings.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_plasmasearch.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_smserver.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_solid_actions.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_splashscreen.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_touchpad.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_workspace.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmkclock.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmmouse.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/knetattach.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_kwin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasmaactivitymanager.mo share/locale/sr@ijekavianlatin/LC_SCRIPTS/kfontinst/kfontinst.js share/locale/sr@latin/LC_MESSAGES/kaccess.mo share/locale/sr@latin/LC_MESSAGES/kcm_access.mo share/locale/sr@latin/LC_MESSAGES/kcm_activities.mo share/locale/sr@latin/LC_MESSAGES/kcm_baloofile.mo share/locale/sr@latin/LC_MESSAGES/kcm_desktoppaths.mo share/locale/sr@latin/LC_MESSAGES/kcm_device_automounter.mo share/locale/sr@latin/LC_MESSAGES/kcm_kded.mo share/locale/sr@latin/LC_MESSAGES/kcm_keyboard.mo share/locale/sr@latin/LC_MESSAGES/kcm_krunnersettings.mo share/locale/sr@latin/LC_MESSAGES/kcm_plasmasearch.mo share/locale/sr@latin/LC_MESSAGES/kcm_smserver.mo share/locale/sr@latin/LC_MESSAGES/kcm_solid_actions.mo share/locale/sr@latin/LC_MESSAGES/kcm_splashscreen.mo share/locale/sr@latin/LC_MESSAGES/kcm_touchpad.mo share/locale/sr@latin/LC_MESSAGES/kcm_workspace.mo share/locale/sr@latin/LC_MESSAGES/kcmkclock.mo share/locale/sr@latin/LC_MESSAGES/kcmmouse.mo share/locale/sr@latin/LC_MESSAGES/knetattach.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_kwin.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/sr@latin/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/sr@latin/LC_MESSAGES/plasmaactivitymanager.mo share/locale/sr@latin/LC_SCRIPTS/kfontinst/kfontinst.js share/locale/sv/LC_MESSAGES/kaccess.mo share/locale/sv/LC_MESSAGES/kcm_access.mo share/locale/sv/LC_MESSAGES/kcm_activities.mo share/locale/sv/LC_MESSAGES/kcm_baloofile.mo share/locale/sv/LC_MESSAGES/kcm_desktoppaths.mo share/locale/sv/LC_MESSAGES/kcm_device_automounter.mo share/locale/sv/LC_MESSAGES/kcm_gamecontroller.mo share/locale/sv/LC_MESSAGES/kcm_kded.mo share/locale/sv/LC_MESSAGES/kcm_keyboard.mo share/locale/sv/LC_MESSAGES/kcm_keys.mo share/locale/sv/LC_MESSAGES/kcm_krunnersettings.mo share/locale/sv/LC_MESSAGES/kcm_landingpage.mo share/locale/sv/LC_MESSAGES/kcm_plasmasearch.mo share/locale/sv/LC_MESSAGES/kcm_recentFiles.mo share/locale/sv/LC_MESSAGES/kcm_smserver.mo share/locale/sv/LC_MESSAGES/kcm_solid_actions.mo share/locale/sv/LC_MESSAGES/kcm_splashscreen.mo share/locale/sv/LC_MESSAGES/kcm_tablet.mo share/locale/sv/LC_MESSAGES/kcm_touchpad.mo share/locale/sv/LC_MESSAGES/kcm_touchscreen.mo share/locale/sv/LC_MESSAGES/kcm_workspace.mo share/locale/sv/LC_MESSAGES/kcmkclock.mo share/locale/sv/LC_MESSAGES/kcmmouse.mo share/locale/sv/LC_MESSAGES/kcmqtquicksettings.mo share/locale/sv/LC_MESSAGES/knetattach.mo share/locale/sv/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/sv/LC_MESSAGES/plasma-desktop-sddm-theme.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/sv/LC_MESSAGES/plasma_runner_keys.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.paneltoolbox.mo share/locale/sv/LC_MESSAGES/plasmaactivitymanager.mo share/locale/ta/LC_MESSAGES/kaccess.mo share/locale/ta/LC_MESSAGES/kcm_access.mo share/locale/ta/LC_MESSAGES/kcm_activities.mo share/locale/ta/LC_MESSAGES/kcm_baloofile.mo share/locale/ta/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ta/LC_MESSAGES/kcm_device_automounter.mo share/locale/ta/LC_MESSAGES/kcm_gamecontroller.mo share/locale/ta/LC_MESSAGES/kcm_kded.mo share/locale/ta/LC_MESSAGES/kcm_keyboard.mo share/locale/ta/LC_MESSAGES/kcm_keys.mo share/locale/ta/LC_MESSAGES/kcm_krunnersettings.mo share/locale/ta/LC_MESSAGES/kcm_landingpage.mo share/locale/ta/LC_MESSAGES/kcm_plasmasearch.mo share/locale/ta/LC_MESSAGES/kcm_recentFiles.mo share/locale/ta/LC_MESSAGES/kcm_smserver.mo share/locale/ta/LC_MESSAGES/kcm_solid_actions.mo share/locale/ta/LC_MESSAGES/kcm_splashscreen.mo share/locale/ta/LC_MESSAGES/kcm_tablet.mo share/locale/ta/LC_MESSAGES/kcm_touchpad.mo share/locale/ta/LC_MESSAGES/kcm_touchscreen.mo share/locale/ta/LC_MESSAGES/kcm_workspace.mo share/locale/ta/LC_MESSAGES/kcmkclock.mo share/locale/ta/LC_MESSAGES/kcmmouse.mo share/locale/ta/LC_MESSAGES/kcmqtquicksettings.mo share/locale/ta/LC_MESSAGES/knetattach.mo share/locale/ta/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/ta/LC_MESSAGES/plasma_runner_kwin.mo share/locale/ta/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/ta/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/ta/LC_MESSAGES/plasmaactivitymanager.mo share/locale/te/LC_MESSAGES/kaccess.mo share/locale/te/LC_MESSAGES/kcm_access.mo share/locale/te/LC_MESSAGES/kcm_desktoppaths.mo share/locale/te/LC_MESSAGES/kcm_kded.mo share/locale/te/LC_MESSAGES/kcm_keyboard.mo share/locale/te/LC_MESSAGES/kcm_smserver.mo share/locale/te/LC_MESSAGES/kcmkclock.mo share/locale/te/LC_MESSAGES/kcmmouse.mo share/locale/te/LC_MESSAGES/knetattach.mo share/locale/te/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/te/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/te/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/te/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/tg/LC_MESSAGES/kaccess.mo share/locale/tg/LC_MESSAGES/kcm_access.mo share/locale/tg/LC_MESSAGES/kcm_activities.mo share/locale/tg/LC_MESSAGES/kcm_baloofile.mo share/locale/tg/LC_MESSAGES/kcm_desktoppaths.mo share/locale/tg/LC_MESSAGES/kcm_kded.mo share/locale/tg/LC_MESSAGES/kcm_keyboard.mo share/locale/tg/LC_MESSAGES/kcm_krunnersettings.mo share/locale/tg/LC_MESSAGES/kcm_plasmasearch.mo share/locale/tg/LC_MESSAGES/kcm_smserver.mo share/locale/tg/LC_MESSAGES/kcm_splashscreen.mo share/locale/tg/LC_MESSAGES/kcmkclock.mo share/locale/tg/LC_MESSAGES/kcmmouse.mo share/locale/tg/LC_MESSAGES/knetattach.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/tg/LC_MESSAGES/plasma_runner_kwin.mo share/locale/tg/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/tg/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/th/LC_MESSAGES/kaccess.mo share/locale/th/LC_MESSAGES/kcm_access.mo share/locale/th/LC_MESSAGES/kcm_desktoppaths.mo share/locale/th/LC_MESSAGES/kcm_device_automounter.mo share/locale/th/LC_MESSAGES/kcm_kded.mo share/locale/th/LC_MESSAGES/kcm_keyboard.mo share/locale/th/LC_MESSAGES/kcm_smserver.mo share/locale/th/LC_MESSAGES/kcm_solid_actions.mo share/locale/th/LC_MESSAGES/kcmkclock.mo share/locale/th/LC_MESSAGES/kcmmouse.mo share/locale/th/LC_MESSAGES/knetattach.mo share/locale/th/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/th/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/tok/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/tok/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/tok/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/tr/LC_MESSAGES/kaccess.mo share/locale/tr/LC_MESSAGES/kcm_access.mo share/locale/tr/LC_MESSAGES/kcm_activities.mo share/locale/tr/LC_MESSAGES/kcm_baloofile.mo share/locale/tr/LC_MESSAGES/kcm_desktoppaths.mo share/locale/tr/LC_MESSAGES/kcm_device_automounter.mo share/locale/tr/LC_MESSAGES/kcm_gamecontroller.mo share/locale/tr/LC_MESSAGES/kcm_kded.mo share/locale/tr/LC_MESSAGES/kcm_keyboard.mo share/locale/tr/LC_MESSAGES/kcm_keys.mo share/locale/tr/LC_MESSAGES/kcm_krunnersettings.mo share/locale/tr/LC_MESSAGES/kcm_landingpage.mo share/locale/tr/LC_MESSAGES/kcm_plasmasearch.mo share/locale/tr/LC_MESSAGES/kcm_recentFiles.mo share/locale/tr/LC_MESSAGES/kcm_smserver.mo share/locale/tr/LC_MESSAGES/kcm_solid_actions.mo share/locale/tr/LC_MESSAGES/kcm_splashscreen.mo share/locale/tr/LC_MESSAGES/kcm_tablet.mo share/locale/tr/LC_MESSAGES/kcm_touchpad.mo share/locale/tr/LC_MESSAGES/kcm_touchscreen.mo share/locale/tr/LC_MESSAGES/kcm_workspace.mo share/locale/tr/LC_MESSAGES/kcmkclock.mo share/locale/tr/LC_MESSAGES/kcmmouse.mo share/locale/tr/LC_MESSAGES/kcmqtquicksettings.mo share/locale/tr/LC_MESSAGES/knetattach.mo share/locale/tr/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/tr/LC_MESSAGES/plasma-desktop-sddm-theme.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/tr/LC_MESSAGES/plasma_runner_keys.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.paneltoolbox.mo share/locale/tr/LC_MESSAGES/plasmaactivitymanager.mo share/locale/ug/LC_MESSAGES/kaccess.mo share/locale/ug/LC_MESSAGES/kcm_access.mo share/locale/ug/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ug/LC_MESSAGES/kcm_device_automounter.mo share/locale/ug/LC_MESSAGES/kcm_kded.mo share/locale/ug/LC_MESSAGES/kcm_keyboard.mo share/locale/ug/LC_MESSAGES/kcm_smserver.mo share/locale/ug/LC_MESSAGES/kcm_solid_actions.mo share/locale/ug/LC_MESSAGES/kcmkclock.mo share/locale/ug/LC_MESSAGES/kcmmouse.mo share/locale/ug/LC_MESSAGES/knetattach.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/ug/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/ug/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/uk/LC_MESSAGES/kaccess.mo share/locale/uk/LC_MESSAGES/kcm_access.mo share/locale/uk/LC_MESSAGES/kcm_activities.mo share/locale/uk/LC_MESSAGES/kcm_baloofile.mo share/locale/uk/LC_MESSAGES/kcm_desktoppaths.mo share/locale/uk/LC_MESSAGES/kcm_device_automounter.mo share/locale/uk/LC_MESSAGES/kcm_gamecontroller.mo share/locale/uk/LC_MESSAGES/kcm_kded.mo share/locale/uk/LC_MESSAGES/kcm_keyboard.mo share/locale/uk/LC_MESSAGES/kcm_keys.mo share/locale/uk/LC_MESSAGES/kcm_krunnersettings.mo share/locale/uk/LC_MESSAGES/kcm_landingpage.mo share/locale/uk/LC_MESSAGES/kcm_plasmasearch.mo share/locale/uk/LC_MESSAGES/kcm_recentFiles.mo share/locale/uk/LC_MESSAGES/kcm_smserver.mo share/locale/uk/LC_MESSAGES/kcm_solid_actions.mo share/locale/uk/LC_MESSAGES/kcm_splashscreen.mo share/locale/uk/LC_MESSAGES/kcm_tablet.mo share/locale/uk/LC_MESSAGES/kcm_touchpad.mo share/locale/uk/LC_MESSAGES/kcm_touchscreen.mo share/locale/uk/LC_MESSAGES/kcm_workspace.mo share/locale/uk/LC_MESSAGES/kcmkclock.mo share/locale/uk/LC_MESSAGES/kcmmouse.mo share/locale/uk/LC_MESSAGES/kcmqtquicksettings.mo share/locale/uk/LC_MESSAGES/knetattach.mo share/locale/uk/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/uk/LC_MESSAGES/plasma-desktop-sddm-theme.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/uk/LC_MESSAGES/plasma_runner_keys.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.paneltoolbox.mo share/locale/uk/LC_MESSAGES/plasmaactivitymanager.mo share/locale/uz/LC_MESSAGES/kaccess.mo share/locale/uz/LC_MESSAGES/kcm_access.mo share/locale/uz/LC_MESSAGES/kcm_desktoppaths.mo share/locale/uz/LC_MESSAGES/kcm_kded.mo share/locale/uz/LC_MESSAGES/kcm_keyboard.mo share/locale/uz/LC_MESSAGES/kcm_smserver.mo share/locale/uz/LC_MESSAGES/kcmkclock.mo share/locale/uz/LC_MESSAGES/kcmmouse.mo share/locale/uz/LC_MESSAGES/knetattach.mo share/locale/uz/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/uz@cyrillic/LC_MESSAGES/kaccess.mo share/locale/uz@cyrillic/LC_MESSAGES/kcm_access.mo share/locale/uz@cyrillic/LC_MESSAGES/kcm_desktoppaths.mo share/locale/uz@cyrillic/LC_MESSAGES/kcm_kded.mo share/locale/uz@cyrillic/LC_MESSAGES/kcm_keyboard.mo share/locale/uz@cyrillic/LC_MESSAGES/kcm_smserver.mo share/locale/uz@cyrillic/LC_MESSAGES/kcmkclock.mo share/locale/uz@cyrillic/LC_MESSAGES/kcmmouse.mo share/locale/uz@cyrillic/LC_MESSAGES/knetattach.mo share/locale/uz@cyrillic/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/vi/LC_MESSAGES/kaccess.mo share/locale/vi/LC_MESSAGES/kcm_access.mo share/locale/vi/LC_MESSAGES/kcm_activities.mo share/locale/vi/LC_MESSAGES/kcm_baloofile.mo share/locale/vi/LC_MESSAGES/kcm_desktoppaths.mo share/locale/vi/LC_MESSAGES/kcm_device_automounter.mo share/locale/vi/LC_MESSAGES/kcm_kded.mo share/locale/vi/LC_MESSAGES/kcm_keyboard.mo share/locale/vi/LC_MESSAGES/kcm_keys.mo share/locale/vi/LC_MESSAGES/kcm_krunnersettings.mo share/locale/vi/LC_MESSAGES/kcm_landingpage.mo share/locale/vi/LC_MESSAGES/kcm_plasmasearch.mo share/locale/vi/LC_MESSAGES/kcm_recentFiles.mo share/locale/vi/LC_MESSAGES/kcm_smserver.mo share/locale/vi/LC_MESSAGES/kcm_solid_actions.mo share/locale/vi/LC_MESSAGES/kcm_splashscreen.mo share/locale/vi/LC_MESSAGES/kcm_tablet.mo share/locale/vi/LC_MESSAGES/kcm_touchpad.mo share/locale/vi/LC_MESSAGES/kcm_touchscreen.mo share/locale/vi/LC_MESSAGES/kcm_workspace.mo share/locale/vi/LC_MESSAGES/kcmkclock.mo share/locale/vi/LC_MESSAGES/kcmmouse.mo share/locale/vi/LC_MESSAGES/kcmqtquicksettings.mo share/locale/vi/LC_MESSAGES/knetattach.mo share/locale/vi/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/vi/LC_MESSAGES/plasma_runner_kwin.mo share/locale/vi/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/vi/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/vi/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/vi/LC_MESSAGES/plasmaactivitymanager.mo share/locale/wa/LC_MESSAGES/kaccess.mo share/locale/wa/LC_MESSAGES/kcm_access.mo share/locale/wa/LC_MESSAGES/kcm_desktoppaths.mo share/locale/wa/LC_MESSAGES/kcm_device_automounter.mo share/locale/wa/LC_MESSAGES/kcm_kded.mo share/locale/wa/LC_MESSAGES/kcm_keyboard.mo share/locale/wa/LC_MESSAGES/kcm_smserver.mo share/locale/wa/LC_MESSAGES/kcm_solid_actions.mo share/locale/wa/LC_MESSAGES/kcmkclock.mo share/locale/wa/LC_MESSAGES/kcmmouse.mo share/locale/wa/LC_MESSAGES/knetattach.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/wa/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/xh/LC_MESSAGES/kaccess.mo share/locale/xh/LC_MESSAGES/kcm_access.mo share/locale/xh/LC_MESSAGES/kcm_desktoppaths.mo share/locale/xh/LC_MESSAGES/kcm_kded.mo share/locale/xh/LC_MESSAGES/kcm_keyboard.mo share/locale/xh/LC_MESSAGES/kcm_smserver.mo share/locale/xh/LC_MESSAGES/kcmkclock.mo share/locale/xh/LC_MESSAGES/kcmmouse.mo share/locale/xh/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/zh_CN/LC_MESSAGES/kaccess.mo share/locale/zh_CN/LC_MESSAGES/kcm_access.mo share/locale/zh_CN/LC_MESSAGES/kcm_activities.mo share/locale/zh_CN/LC_MESSAGES/kcm_baloofile.mo share/locale/zh_CN/LC_MESSAGES/kcm_desktoppaths.mo share/locale/zh_CN/LC_MESSAGES/kcm_device_automounter.mo share/locale/zh_CN/LC_MESSAGES/kcm_gamecontroller.mo share/locale/zh_CN/LC_MESSAGES/kcm_kded.mo share/locale/zh_CN/LC_MESSAGES/kcm_keyboard.mo share/locale/zh_CN/LC_MESSAGES/kcm_keys.mo share/locale/zh_CN/LC_MESSAGES/kcm_krunnersettings.mo share/locale/zh_CN/LC_MESSAGES/kcm_landingpage.mo share/locale/zh_CN/LC_MESSAGES/kcm_plasmasearch.mo share/locale/zh_CN/LC_MESSAGES/kcm_recentFiles.mo share/locale/zh_CN/LC_MESSAGES/kcm_smserver.mo share/locale/zh_CN/LC_MESSAGES/kcm_solid_actions.mo share/locale/zh_CN/LC_MESSAGES/kcm_splashscreen.mo share/locale/zh_CN/LC_MESSAGES/kcm_tablet.mo share/locale/zh_CN/LC_MESSAGES/kcm_touchpad.mo share/locale/zh_CN/LC_MESSAGES/kcm_touchscreen.mo share/locale/zh_CN/LC_MESSAGES/kcm_workspace.mo share/locale/zh_CN/LC_MESSAGES/kcmkclock.mo share/locale/zh_CN/LC_MESSAGES/kcmmouse.mo share/locale/zh_CN/LC_MESSAGES/kcmqtquicksettings.mo share/locale/zh_CN/LC_MESSAGES/knetattach.mo share/locale/zh_CN/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/zh_CN/LC_MESSAGES/plasma-desktop-sddm-theme.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_keys.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.paneltoolbox.mo share/locale/zh_CN/LC_MESSAGES/plasmaactivitymanager.mo share/locale/zh_TW/LC_MESSAGES/kaccess.mo share/locale/zh_TW/LC_MESSAGES/kcm_access.mo share/locale/zh_TW/LC_MESSAGES/kcm_activities.mo share/locale/zh_TW/LC_MESSAGES/kcm_baloofile.mo share/locale/zh_TW/LC_MESSAGES/kcm_desktoppaths.mo share/locale/zh_TW/LC_MESSAGES/kcm_device_automounter.mo share/locale/zh_TW/LC_MESSAGES/kcm_gamecontroller.mo share/locale/zh_TW/LC_MESSAGES/kcm_kded.mo share/locale/zh_TW/LC_MESSAGES/kcm_keyboard.mo share/locale/zh_TW/LC_MESSAGES/kcm_keys.mo share/locale/zh_TW/LC_MESSAGES/kcm_krunnersettings.mo share/locale/zh_TW/LC_MESSAGES/kcm_landingpage.mo share/locale/zh_TW/LC_MESSAGES/kcm_plasmasearch.mo share/locale/zh_TW/LC_MESSAGES/kcm_recentFiles.mo share/locale/zh_TW/LC_MESSAGES/kcm_smserver.mo share/locale/zh_TW/LC_MESSAGES/kcm_solid_actions.mo share/locale/zh_TW/LC_MESSAGES/kcm_splashscreen.mo share/locale/zh_TW/LC_MESSAGES/kcm_tablet.mo share/locale/zh_TW/LC_MESSAGES/kcm_touchpad.mo share/locale/zh_TW/LC_MESSAGES/kcm_touchscreen.mo share/locale/zh_TW/LC_MESSAGES/kcm_workspace.mo share/locale/zh_TW/LC_MESSAGES/kcmkclock.mo share/locale/zh_TW/LC_MESSAGES/kcmmouse.mo share/locale/zh_TW/LC_MESSAGES/kcmqtquicksettings.mo share/locale/zh_TW/LC_MESSAGES/knetattach.mo share/locale/zh_TW/LC_MESSAGES/org.kde.plasma.emojier.mo share/locale/zh_TW/LC_MESSAGES/plasma-desktop-sddm-theme.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardlayout.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.kimpanel.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_keys.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.paneltoolbox.mo share/locale/zh_TW/LC_MESSAGES/plasmaactivitymanager.mo share/metainfo/org.kde.plasmashell.metainfo.xml share/plasma/emoji/af.dict share/plasma/emoji/ak.dict share/plasma/emoji/am.dict share/plasma/emoji/ar.dict share/plasma/emoji/ar_SA.dict share/plasma/emoji/as.dict share/plasma/emoji/ast.dict share/plasma/emoji/az.dict share/plasma/emoji/be.dict share/plasma/emoji/bew.dict share/plasma/emoji/bg.dict share/plasma/emoji/bgn.dict share/plasma/emoji/blo.dict share/plasma/emoji/bn.dict share/plasma/emoji/br.dict share/plasma/emoji/bs.dict share/plasma/emoji/ca.dict share/plasma/emoji/ca_ES_VALENCIA.dict share/plasma/emoji/ccp.dict share/plasma/emoji/ceb.dict share/plasma/emoji/chr.dict share/plasma/emoji/ckb.dict share/plasma/emoji/cs.dict share/plasma/emoji/cv.dict share/plasma/emoji/cy.dict share/plasma/emoji/da.dict share/plasma/emoji/de.dict share/plasma/emoji/de_CH.dict share/plasma/emoji/dsb.dict share/plasma/emoji/el.dict share/plasma/emoji/en.dict share/plasma/emoji/en_001.dict share/plasma/emoji/en_AU.dict share/plasma/emoji/en_CA.dict share/plasma/emoji/en_IN.dict share/plasma/emoji/es.dict share/plasma/emoji/es_419.dict share/plasma/emoji/es_MX.dict share/plasma/emoji/es_US.dict share/plasma/emoji/et.dict share/plasma/emoji/eu.dict share/plasma/emoji/fa.dict share/plasma/emoji/ff_Adlm.dict share/plasma/emoji/fi.dict share/plasma/emoji/fil.dict share/plasma/emoji/fo.dict share/plasma/emoji/fr.dict share/plasma/emoji/fr_CA.dict share/plasma/emoji/frr.dict share/plasma/emoji/ga.dict share/plasma/emoji/gd.dict share/plasma/emoji/gl.dict share/plasma/emoji/gu.dict share/plasma/emoji/ha.dict share/plasma/emoji/ha_NE.dict share/plasma/emoji/he.dict share/plasma/emoji/hi.dict share/plasma/emoji/hi_Latn.dict share/plasma/emoji/hr.dict share/plasma/emoji/hsb.dict share/plasma/emoji/hu.dict share/plasma/emoji/hy.dict share/plasma/emoji/ia.dict share/plasma/emoji/id.dict share/plasma/emoji/ig.dict share/plasma/emoji/is.dict share/plasma/emoji/it.dict share/plasma/emoji/ja.dict share/plasma/emoji/jv.dict share/plasma/emoji/ka.dict share/plasma/emoji/kab.dict share/plasma/emoji/kk.dict share/plasma/emoji/kk_Arab.dict share/plasma/emoji/kl.dict share/plasma/emoji/km.dict share/plasma/emoji/kn.dict share/plasma/emoji/ko.dict share/plasma/emoji/kok.dict share/plasma/emoji/ku.dict share/plasma/emoji/ky.dict share/plasma/emoji/lb.dict share/plasma/emoji/lij.dict share/plasma/emoji/lo.dict share/plasma/emoji/lt.dict share/plasma/emoji/lv.dict share/plasma/emoji/mi.dict share/plasma/emoji/mk.dict share/plasma/emoji/ml.dict share/plasma/emoji/mn.dict share/plasma/emoji/mni.dict share/plasma/emoji/mr.dict share/plasma/emoji/ms.dict share/plasma/emoji/mt.dict share/plasma/emoji/my.dict share/plasma/emoji/ne.dict share/plasma/emoji/nl.dict share/plasma/emoji/nn.dict share/plasma/emoji/no.dict share/plasma/emoji/nso.dict share/plasma/emoji/oc.dict share/plasma/emoji/or.dict share/plasma/emoji/pa.dict share/plasma/emoji/pa_Arab.dict share/plasma/emoji/pap.dict share/plasma/emoji/pcm.dict share/plasma/emoji/pl.dict share/plasma/emoji/ps.dict share/plasma/emoji/pt.dict share/plasma/emoji/pt_PT.dict share/plasma/emoji/qu.dict share/plasma/emoji/quc.dict share/plasma/emoji/rhg.dict share/plasma/emoji/rm.dict share/plasma/emoji/ro.dict share/plasma/emoji/ru.dict share/plasma/emoji/rw.dict share/plasma/emoji/sat.dict share/plasma/emoji/sc.dict share/plasma/emoji/sd.dict share/plasma/emoji/si.dict share/plasma/emoji/sk.dict share/plasma/emoji/sl.dict share/plasma/emoji/so.dict share/plasma/emoji/sq.dict share/plasma/emoji/sr.dict share/plasma/emoji/sr_Cyrl_BA.dict share/plasma/emoji/sr_Latn.dict share/plasma/emoji/sr_Latn_BA.dict share/plasma/emoji/sv.dict share/plasma/emoji/sw.dict share/plasma/emoji/sw_KE.dict share/plasma/emoji/ta.dict share/plasma/emoji/te.dict share/plasma/emoji/tg.dict share/plasma/emoji/th.dict share/plasma/emoji/ti.dict share/plasma/emoji/tk.dict share/plasma/emoji/tn.dict share/plasma/emoji/to.dict share/plasma/emoji/tr.dict share/plasma/emoji/ug.dict share/plasma/emoji/uk.dict share/plasma/emoji/ur.dict share/plasma/emoji/uz.dict share/plasma/emoji/vec.dict share/plasma/emoji/vi.dict share/plasma/emoji/wo.dict share/plasma/emoji/xh.dict share/plasma/emoji/yo.dict share/plasma/emoji/yo_BJ.dict share/plasma/emoji/yue.dict share/plasma/emoji/yue_Hans.dict share/plasma/emoji/zh.dict share/plasma/emoji/zh_Hant.dict share/plasma/emoji/zh_Hant_HK.dict share/plasma/emoji/zu.dict share/plasma/layout-templates/org.kde.plasma.desktop.appmenubar/contents/layout.js share/plasma/layout-templates/org.kde.plasma.desktop.appmenubar/metadata.json share/plasma/layout-templates/org.kde.plasma.desktop.defaultPanel/contents/layout.js share/plasma/layout-templates/org.kde.plasma.desktop.defaultPanel/metadata.json share/plasma/layout-templates/org.kde.plasma.desktop.emptyPanel/contents/layout.js share/plasma/layout-templates/org.kde.plasma.desktop.emptyPanel/metadata.json share/plasma/packages/org.kde.paneltoolbox/contents/ui/main.qml share/plasma/packages/org.kde.paneltoolbox/metadata.json share/plasma/plasmoids/org.kde.desktopcontainment/contents/config/config.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/config/main.xml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/ActionButton.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/BackButtonItem.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/CompactRepresentation.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/ConfigFilter.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/ConfigIcons.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/ConfigLocation.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/ConfigOverlay.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/FolderItemActionButton.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/FolderItemDelegate.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/FolderItemPreviewPluginsDialog.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/FolderView.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/FolderViewDialog.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/FolderViewDropArea.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/FolderViewLayer.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/RenameEditor.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/code/FolderTools.js share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/main.qml share/plasma/plasmoids/org.kde.desktopcontainment/metadata.json share/plasma/plasmoids/org.kde.plasma.activitypager/metadata.json share/plasma/plasmoids/org.kde.plasma.folder/metadata.json share/plasma/plasmoids/org.kde.plasma.icontasks/metadata.json -share/plasma/plasmoids/org.kde.plasma.keyboardlayout/contents/config/config.qml -share/plasma/plasmoids/org.kde.plasma.keyboardlayout/contents/config/main.xml -share/plasma/plasmoids/org.kde.plasma.keyboardlayout/contents/ui/configGeneral.qml -share/plasma/plasmoids/org.kde.plasma.keyboardlayout/contents/ui/main.qml -share/plasma/plasmoids/org.kde.plasma.keyboardlayout/metadata.json -share/plasma/plasmoids/org.kde.plasma.kimpanel/contents/config/config.qml -share/plasma/plasmoids/org.kde.plasma.kimpanel/contents/config/main.xml -share/plasma/plasmoids/org.kde.plasma.kimpanel/contents/ui/ActionMenu.qml -share/plasma/plasmoids/org.kde.plasma.kimpanel/contents/ui/CandidateHighlight.qml -share/plasma/plasmoids/org.kde.plasma.kimpanel/contents/ui/ConfigAppearance.qml -share/plasma/plasmoids/org.kde.plasma.kimpanel/contents/ui/ContextMenu.qml -share/plasma/plasmoids/org.kde.plasma.kimpanel/contents/ui/InputPanel.qml -share/plasma/plasmoids/org.kde.plasma.kimpanel/contents/ui/StatusIcon.qml -share/plasma/plasmoids/org.kde.plasma.kimpanel/contents/ui/main.qml -share/plasma/plasmoids/org.kde.plasma.kimpanel/metadata.json -share/plasma/plasmoids/org.kde.plasma.marginsseparator/contents/config/main.xml -share/plasma/plasmoids/org.kde.plasma.marginsseparator/contents/ui/main.qml -share/plasma/plasmoids/org.kde.plasma.marginsseparator/metadata.json share/plasma/plasmoids/org.kde.plasma.minimizeall/metadata.json -share/plasma/plasmoids/org.kde.plasma.pager/contents/config/config.qml -share/plasma/plasmoids/org.kde.plasma.pager/contents/config/main.xml -share/plasma/plasmoids/org.kde.plasma.pager/contents/ui/configGeneral.qml -share/plasma/plasmoids/org.kde.plasma.pager/contents/ui/main.qml -share/plasma/plasmoids/org.kde.plasma.pager/metadata.json -share/plasma/plasmoids/org.kde.plasma.showActivityManager/contents/config/config.qml -share/plasma/plasmoids/org.kde.plasma.showActivityManager/contents/config/main.xml -share/plasma/plasmoids/org.kde.plasma.showActivityManager/contents/ui/ConfigAppearance.qml -share/plasma/plasmoids/org.kde.plasma.showActivityManager/contents/ui/main.qml -share/plasma/plasmoids/org.kde.plasma.showActivityManager/metadata.json -share/plasma/plasmoids/org.kde.plasma.showdesktop/contents/config/main.xml -share/plasma/plasmoids/org.kde.plasma.showdesktop/contents/ui/Controller.qml -share/plasma/plasmoids/org.kde.plasma.showdesktop/contents/ui/MinimizeAllController.qml -share/plasma/plasmoids/org.kde.plasma.showdesktop/contents/ui/PeekController.qml -share/plasma/plasmoids/org.kde.plasma.showdesktop/contents/ui/main.qml -share/plasma/plasmoids/org.kde.plasma.showdesktop/metadata.json -share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/config/config.qml -share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/config/main.xml -share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/AudioStream.qml -share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/Badge.qml -share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/ConfigAppearance.qml -share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/ConfigBehavior.qml -share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/ContextMenu.qml -share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/GroupDialog.qml -share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/GroupExpanderOverlay.qml -share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/MouseHandler.qml -share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/PipeWireThumbnail.qml -share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/PlayerController.qml -share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/PulseAudio.qml -share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/ScrollableTextWrapper.qml -share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/Task.qml -share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/TaskBadgeOverlay.qml -share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/TaskList.qml -share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/TaskProgressOverlay.qml -share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/ToolTipDelegate.qml -share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/ToolTipInstance.qml -share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/ToolTipWindowMouseArea.qml -share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/code/layoutmetrics.js -share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/code/tools.js -share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/main.qml -share/plasma/plasmoids/org.kde.plasma.taskmanager/metadata.json share/plasma/shells/org.kde.plasma.desktop/contents/InteractiveConsole.qml share/plasma/shells/org.kde.plasma.desktop/contents/activitymanager/ActivityItem.qml share/plasma/shells/org.kde.plasma.desktop/contents/activitymanager/ActivityList.qml share/plasma/shells/org.kde.plasma.desktop/contents/activitymanager/ActivityManager.qml share/plasma/shells/org.kde.plasma.desktop/contents/activitymanager/Heading.qml -share/plasma/shells/org.kde.plasma.desktop/contents/activitymanager/StoppedActivityItem.qml share/plasma/shells/org.kde.plasma.desktop/contents/activitymanager/TaskDropArea.qml share/plasma/shells/org.kde.plasma.desktop/contents/activitymanager/WindowPreview.qml share/plasma/shells/org.kde.plasma.desktop/contents/activitymanager/static.js share/plasma/shells/org.kde.plasma.desktop/contents/applet/AppletError.qml share/plasma/shells/org.kde.plasma.desktop/contents/applet/CompactApplet.qml share/plasma/shells/org.kde.plasma.desktop/contents/applet/DefaultCompactRepresentation.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/AboutPlugin.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/AppletConfiguration.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/ConfigCategoryDelegate.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/ConfigurationContainmentActions.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/ConfigurationContainmentAppearance.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/ConfigurationShortcuts.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/ContainmentConfiguration.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/MouseEventInputButton.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/PanelConfiguration.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/ShellContainmentConfiguration.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/panelconfiguration/PanelRepresentation.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/panelconfiguration/Ruler.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/panelconfiguration/SliderHandle.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/shellcontainmentconfiguration/Delegate.qml share/plasma/shells/org.kde.plasma.desktop/contents/defaults share/plasma/shells/org.kde.plasma.desktop/contents/explorer/AppletAlternatives.qml share/plasma/shells/org.kde.plasma.desktop/contents/explorer/AppletDelegate.qml share/plasma/shells/org.kde.plasma.desktop/contents/explorer/WidgetExplorer.qml share/plasma/shells/org.kde.plasma.desktop/contents/lockscreen/LockOsd.qml share/plasma/shells/org.kde.plasma.desktop/contents/lockscreen/LockScreen.qml share/plasma/shells/org.kde.plasma.desktop/contents/lockscreen/LockScreenUi.qml share/plasma/shells/org.kde.plasma.desktop/contents/lockscreen/MainBlock.qml share/plasma/shells/org.kde.plasma.desktop/contents/lockscreen/MediaControls.qml share/plasma/shells/org.kde.plasma.desktop/contents/lockscreen/NoPasswordUnlock.qml share/plasma/shells/org.kde.plasma.desktop/contents/lockscreen/PasswordSync.qml share/plasma/shells/org.kde.plasma.desktop/contents/lockscreen/config.qml share/plasma/shells/org.kde.plasma.desktop/contents/lockscreen/config.xml share/plasma/shells/org.kde.plasma.desktop/contents/lockscreen/qmldir share/plasma/shells/org.kde.plasma.desktop/contents/main.js share/plasma/shells/org.kde.plasma.desktop/contents/updates/containmentactions_middlebutton.js share/plasma/shells/org.kde.plasma.desktop/contents/updates/digitalclock_migrate_font_settings.js share/plasma/shells/org.kde.plasma.desktop/contents/updates/digitalclock_migrate_showseconds_setting.js share/plasma/shells/org.kde.plasma.desktop/contents/updates/digitalclock_rename_timezonedisplay_key.js share/plasma/shells/org.kde.plasma.desktop/contents/updates/folderview_fix_recursive_screenmapping.js share/plasma/shells/org.kde.plasma.desktop/contents/updates/keyboardlayout_migrateiconsetting.js share/plasma/shells/org.kde.plasma.desktop/contents/updates/keyboardlayout_remove_shortcut.js share/plasma/shells/org.kde.plasma.desktop/contents/updates/klipper_clear_config.js share/plasma/shells/org.kde.plasma.desktop/contents/updates/maintain_existing_desktop_icon_sizes.js share/plasma/shells/org.kde.plasma.desktop/contents/updates/mediaframe_migrate_useBackground_setting.js share/plasma/shells/org.kde.plasma.desktop/contents/updates/migrate_font_weights.js share/plasma/shells/org.kde.plasma.desktop/contents/updates/move_desktop_layout_config.js share/plasma/shells/org.kde.plasma.desktop/contents/updates/no_middle_click_paste_on_panels.js share/plasma/shells/org.kde.plasma.desktop/contents/updates/systemloadviewer_systemmonitor.js share/plasma/shells/org.kde.plasma.desktop/contents/updates/taskmanager_configUpdate_wheelEnabled.js share/plasma/shells/org.kde.plasma.desktop/contents/updates/unlock_widgets.js share/plasma/shells/org.kde.plasma.desktop/contents/views/Desktop.qml share/plasma/shells/org.kde.plasma.desktop/contents/views/DesktopEditMode.qml share/plasma/shells/org.kde.plasma.desktop/contents/views/Panel.qml share/plasma/shells/org.kde.plasma.desktop/contents/views/PreviewBanner.qml share/plasma/shells/org.kde.plasma.desktop/metadata.json share/polkit-1/actions/org.kde.kcontrol.kcmclock.policy %%SDL%%share/qlogging-categories6/kcm_gamecontroller.categories share/qlogging-categories6/kcm_kded.categories share/qlogging-categories6/kcm_keyboard.categories share/qlogging-categories6/kcm_mouse.categories share/qlogging-categories6/kcm_tablet.categories share/qlogging-categories6/kcm_touchscreen.categories share/qlogging-categories6/kcmkeys.categories share/sddm/themes/breeze/Background.qml share/sddm/themes/breeze/KeyboardButton.qml share/sddm/themes/breeze/Login.qml share/sddm/themes/breeze/Main.qml share/sddm/themes/breeze/Messages.sh share/sddm/themes/breeze/SessionButton.qml share/sddm/themes/breeze/default-logo.svg share/sddm/themes/breeze/faces/.face.icon share/sddm/themes/breeze/metadata.desktop share/sddm/themes/breeze/preview.png share/sddm/themes/breeze/theme.conf share/solid/devices/solid-device-Battery.desktop share/solid/devices/solid-device-Block.desktop share/solid/devices/solid-device-Camera.desktop share/solid/devices/solid-device-OpticalDisc.desktop share/solid/devices/solid-device-OpticalDrive.desktop share/solid/devices/solid-device-PortableMediaPlayer.desktop share/solid/devices/solid-device-Processor.desktop share/solid/devices/solid-device-StorageAccess.desktop share/solid/devices/solid-device-StorageDrive.desktop share/solid/devices/solid-device-StorageVolume.desktop diff --git a/x11/plasma6-plasma-integration/Makefile b/x11/plasma6-plasma-integration/Makefile index b3d8716911be..f93550160d33 100644 --- a/x11/plasma6-plasma-integration/Makefile +++ b/x11/plasma6-plasma-integration/Makefile @@ -1,57 +1,56 @@ PORTNAME= plasma-integration DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= x11 kde kde-plasma PKGNAMESUFFIX= -${FLAVOR} COMMENT= Plasma 6 theme integration plugins for Qt${FLAVOR:S/qt//} MAINTAINER= kde@FreeBSD.org FLAVORS= qt6 qt5 FLAVOR?= qt6 LIB_DEPENDS= libwayland-client.so:graphics/wayland \ libxkbcommon.so:x11/libxkbcommon RUN_DEPENDS= hack-font>0:x11-fonts/hack-font \ noto-basic>0:x11-fonts/noto-basic \ noto-emoji>0:x11-fonts/noto-emoji USES= cmake gettext gl tar:xz xorg USES+= ${${FLAVOR}_USES} USE_KDE= ${${FLAVOR}_USE_KDE} USE_GL= gl opengl USE_XORG= x11 xcb xcursor USE_QT= ${${FLAVOR}_USE_QT} CMAKE_ON= ${${FLAVOR}_CMAKE_ON} CMAKE_OFF= ${${FLAVOR}_CMAKE_OFF} PLIST= ${.CURDIR}/pkg-plist.${FLAVOR} # Sync Qt5 flavor with Qt6 KDE_PLASMA_VERSION= ${KDE_PLASMA6_VERSION} PKGNAMEPREFIX?= plasma6- DESCR= ${.CURDIR:H:H}/x11/plasma6-plasma/pkg-descr # Qt6 flavor qt6_USES= kde:6 qt:6 qt6_USE_KDE= bookmarks breeze colorscheme completion config configwidgets \ coreaddons guiaddons i18n iconthemes itemviews jobwidgets kio \ notifications service solid statusnotifieritem widgetsaddons \ windowsystem xdg-desktop-portal-kde xmlgui \ ecm:build plasma-wayland-protocols:build qt6_USE_QT= base declarative wayland qt6_CMAKE_ON= BUILD_QT6 qt6_CMAKE_OFF= BUILD_QT5 # Qt5 flavor qt5_USES= kde:5 pkgconfig qt:5 qt5_USE_KDE= config configwidgets guiaddons i18n iconthemes kio \ notifications wayland windowsystem xmlgui \ ecm:build plasma-wayland-protocols:build qt5_USE_QT= core gui quickcontrols2 wayland x11extras \ buildtools:build qmake:build qt5_CMAKE_ON= BUILD_QT5 qt5_CMAKE_OFF= BUILD_QT6 .include diff --git a/x11/plasma6-plasma-integration/distinfo b/x11/plasma6-plasma-integration/distinfo index 56609b83d2b4..28e85c059c81 100644 --- a/x11/plasma6-plasma-integration/distinfo +++ b/x11/plasma6-plasma-integration/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1768328330 -SHA256 (KDE/plasma/6.5.5/plasma-integration-6.5.5.tar.xz) = ad5af85adc0772a1f9bcdcca51b1cbdda2ef2891b51c2b1b0a388a28521de3c5 -SIZE (KDE/plasma/6.5.5/plasma-integration-6.5.5.tar.xz) = 98388 +TIMESTAMP = 1771162226 +SHA256 (KDE/plasma/6.6.0/plasma-integration-6.6.0.tar.xz) = 5a69d012da2cbfc6d4d9177531f1a68c60cb023fbde114d5d5e95637b6189dfb +SIZE (KDE/plasma/6.6.0/plasma-integration-6.6.0.tar.xz) = 99560 diff --git a/x11/plasma6-plasma-workspace/Makefile b/x11/plasma6-plasma-workspace/Makefile index 3ae9eeee627c..dcccf982f683 100644 --- a/x11/plasma6-plasma-workspace/Makefile +++ b/x11/plasma6-plasma-workspace/Makefile @@ -1,64 +1,62 @@ PORTNAME= plasma-workspace DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= x11 kde kde-plasma COMMENT= KDE Plasma Workspace MAINTAINER= kde@FreeBSD.org BUILD_DEPENDS= wayland-protocols>=0:graphics/wayland-protocols LIB_DEPENDS= libcanberra.so:audio/libcanberra \ libfontconfig.so:x11-fonts/fontconfig \ libfreetype.so:print/freetype2 \ libicui18n.so:devel/icu \ libpipewire-0.3.so:multimedia/pipewire \ libqalculate.so:math/libqalculate \ libudev.so:devel/libudev-devd \ libwayland-client.so:graphics/wayland \ libxcb-image.so:x11/xcb-util-image \ libxcb-util.so:x11/xcb-util \ libxkbcommon.so:x11/libxkbcommon \ libQCoro6Core.so:devel/qcoro RUN_DEPENDS= kio-extras>=24.12.3:devel/kio-extras \ kio-fuse>=5.1.0_1:filesystems/kio-fuse \ mkfontscale:x11-fonts/mkfontscale \ oxygen-icons>=0:x11-themes/oxygen-icons \ xmessage:x11/xmessage \ xrdb:x11/xrdb \ xset:x11/xset USES= cmake desktop-file-utils gettext gl kde:6 pkgconfig python \ qt:6 shebangfix tar:xz xorg USE_GL= gl opengl USE_KDE= activities activities-stats archive attica auth baloo \ bookmarks colorscheme completion config configwidgets \ coreaddons crash dbusaddons doctools filemetadata globalaccel \ guiaddons holidays i18n iconthemes idletime itemmodels \ itemviews jobwidgets kcmutils kdeclarative kio kirigami-addons \ kirigami2 kpipewire kquickcharts kscreenlocker kwin \ layer-shell-qt libkexiv2 libkscreen libksysguard libplasma \ - newstuff notifications notifyconfig package parts phonon \ - plasma5support prison runner service solid sonnet \ + newstuff notifications package parts \ + prison runner service solid sonnet \ statusnotifieritem svg syntaxhighlighting texteditor \ textwidgets userfeedback wallet wayland \ widgetsaddons windowsystem xmlgui \ ecm:build plasma-wayland-protocols:build \ kwin-x11:run USE_QT= 5compat base declarative location svg wayland USE_XORG= ice sm x11 xau xcb xcursor xext xfixes xft xi xrender xtst SHEBANG_FILES= components/calendar/kconf_update/migrate-calendar-to-plugin-id.py.in -CMAKE_ON= PLASMA_X11_DEFAULT_SESSION \ - CMAKE_DISABLE_FIND_PACKAGE_KF6NetworkManagerQt +CMAKE_ON= CMAKE_DISABLE_FIND_PACKAGE_KF6NetworkManagerQt OPTIONS_DEFINE= GTK GTK_DESC= Global menu bar support for GTK applications GTK_RUN_DEPENDS= appmenu-gtk-module>0:x11/gtk-app-menu post-patch: @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \ ${PATCH_WRKSRC}/startkde/startplasma.cpp \ ${PATCH_WRKSRC}/login-sessions/plasmawayland.desktop.cmake .include diff --git a/x11/plasma6-plasma-workspace/distinfo b/x11/plasma6-plasma-workspace/distinfo index 4a3fafd1db8f..33946a082f0d 100644 --- a/x11/plasma6-plasma-workspace/distinfo +++ b/x11/plasma6-plasma-workspace/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1768328331 -SHA256 (KDE/plasma/6.5.5/plasma-workspace-6.5.5.tar.xz) = 29b0763bbbdd9e27416dce1fd939242d2588feef36c4cbae941c31964d531fd4 -SIZE (KDE/plasma/6.5.5/plasma-workspace-6.5.5.tar.xz) = 20280856 +TIMESTAMP = 1771162226 +SHA256 (KDE/plasma/6.6.0/plasma-workspace-6.6.0.tar.xz) = 098e1fddb30600855248bea36e012c0f5ff12d1ba3381a1ce42005e4d2304d6e +SIZE (KDE/plasma/6.6.0/plasma-workspace-6.6.0.tar.xz) = 19354332 diff --git a/x11/plasma6-plasma-workspace/pkg-plist b/x11/plasma6-plasma-workspace/pkg-plist index 4624ab3f7248..4a94c8cb16be 100644 --- a/x11/plasma6-plasma-workspace/pkg-plist +++ b/x11/plasma6-plasma-workspace/pkg-plist @@ -1,6464 +1,6129 @@ bin/gmenudbusmenuproxy bin/kcminit bin/kcminit_startup bin/kcolorschemeeditor bin/kfontinst bin/kfontview bin/krunner bin/ksmserver bin/ksplashqml bin/lookandfeeltool bin/plasma-apply-colorscheme bin/plasma-apply-cursortheme bin/plasma-apply-desktoptheme bin/plasma-apply-lookandfeel bin/plasma-apply-wallpaperimage bin/plasma-interactiveconsole bin/plasma-shutdown bin/plasma_session bin/plasma_waitforname bin/plasmashell bin/plasmawindowed bin/startplasma-wayland bin/startplasma-x11 bin/xembedsniproxy etc/xdg/autostart/gmenudbusmenuproxy.desktop etc/xdg/autostart/org.kde.plasma-fallback-session-restore.desktop etc/xdg/autostart/org.kde.plasmashell.desktop etc/xdg/autostart/xembedsniproxy.desktop etc/xdg/menus/plasma-applications.menu etc/xdg/plasmanotifyrc -etc/xdg/taskmanagerrulesrc include/klookandfeel/klookandfeel.h include/klookandfeel/klookandfeel_export.h include/klookandfeel/klookandfeelmanager.h +include/klookandfeel/klookandfeelmanifest.h include/krdb/krdb.h include/krdb/krdb_export.h include/kworkspace6/autostartscriptdesktopfile.h include/kworkspace6/config-libkworkspace.h include/kworkspace6/kdisplaymanager.h include/kworkspace6/kworkspace.h include/kworkspace6/kworkspace_export.h include/kworkspace6/outputorderwatcher.h include/kworkspace6/sessionmanagement.h include/notificationmanager/badgesettings.h include/notificationmanager/behaviorsettings.h include/notificationmanager/donotdisturbsettings.h include/notificationmanager/job.h include/notificationmanager/jobsettings.h include/notificationmanager/jobsmodel.h include/notificationmanager/notification.h include/notificationmanager/notificationmanager_export.h include/notificationmanager/notifications.h include/notificationmanager/notificationsettings.h include/notificationmanager/server.h include/notificationmanager/settings.h include/taskmanager/abstracttasksmodel.h include/taskmanager/abstracttasksmodeliface.h include/taskmanager/abstracttasksproxymodeliface.h include/taskmanager/abstractwindowtasksmodel.h include/taskmanager/activityinfo.h include/taskmanager/concatenatetasksproxymodel.h include/taskmanager/flattentaskgroupsproxymodel.h include/taskmanager/launchertasksmodel.h include/taskmanager/regionfiltermode.h include/taskmanager/startuptasksmodel.h include/taskmanager/taskfilterproxymodel.h include/taskmanager/taskgroupingproxymodel.h include/taskmanager/taskmanager_export.h include/taskmanager/tasksmodel.h include/taskmanager/tasktools.h include/taskmanager/virtualdesktopinfo.h include/taskmanager/waylandstartuptasksmodel.h include/taskmanager/waylandtasksmodel.h include/taskmanager/windowtasksmodel.h include/taskmanager/xstartuptasksmodel.h include/taskmanager/xwindowtasksmodel.h lib/cmake/KRunnerAppDBusInterface/KRunnerAppDBusInterfaceConfig.cmake lib/cmake/KSMServerDBusInterface/KSMServerDBusInterfaceConfig.cmake lib/cmake/Krdb/KrdbConfig.cmake lib/cmake/Krdb/KrdbConfigVersion.cmake lib/cmake/Krdb/krdbLibraryTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/Krdb/krdbLibraryTargets.cmake lib/cmake/LibKLookAndFeel/LibKLookAndFeelConfig.cmake lib/cmake/LibKLookAndFeel/LibKLookAndFeelConfigVersion.cmake lib/cmake/LibKLookAndFeel/LibKLookAndFeelLibraryTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/LibKLookAndFeel/LibKLookAndFeelLibraryTargets.cmake lib/cmake/LibKWorkspace/LibKWorkspaceConfig.cmake lib/cmake/LibKWorkspace/LibKWorkspaceConfigVersion.cmake lib/cmake/LibKWorkspace/LibKWorkspaceLibraryTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/LibKWorkspace/LibKWorkspaceLibraryTargets.cmake lib/cmake/LibNotificationManager/LibNotificationManagerConfig.cmake lib/cmake/LibNotificationManager/LibNotificationManagerConfigVersion.cmake lib/cmake/LibNotificationManager/LibNotificationManagerLibraryTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/LibNotificationManager/LibNotificationManagerLibraryTargets.cmake lib/cmake/LibTaskManager/LibTaskManagerConfig.cmake lib/cmake/LibTaskManager/LibTaskManagerConfigVersion.cmake lib/cmake/LibTaskManager/LibTaskManagerLibraryTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/LibTaskManager/LibTaskManagerLibraryTargets.cmake lib/kconf_update_bin/plasma6.0-remove-dpi-settings lib/kconf_update_bin/plasma6.0-remove-old-shortcuts lib/kconf_update_bin/plasma6.3-update-clipboard-database-2-to-3 lib/kconf_update_bin/plasma6.4-migrate-fullscreen-notifications-to-dnd lib/kconf_update_bin/plasmashell-6.0-keep-custom-position-of-panels lib/kconf_update_bin/plasmashell-6.0-keep-default-floating-setting-for-plasma-5-panels lib/kconf_update_bin/plasmashell-6.5-remove-stop-activity-shortcut lib/libbatterycontrol.so lib/libbatterycontrol.so.6 lib/libbatterycontrol.so.%%KDE_PLASMA_VERSION%% lib/libexec/baloorunner lib/libexec/kf6/kauth/fontinst lib/libexec/kf6/kauth/fontinst_helper lib/libexec/kf6/kauth/fontinst_x11 lib/libexec/kfontprint +lib/libexec/ksecretprompter lib/libexec/ksmserver-logout-greeter lib/libexec/plasma-changeicons lib/libexec/plasma-dbus-run-session-if-needed lib/libexec/plasma-fallback-session-restore lib/libexec/plasma-fallback-session-save lib/libexec/plasma-sourceenv.sh lib/libkfontinst.so lib/libkfontinst.so.6 lib/libkfontinst.so.%%KDE_PLASMA_VERSION%% lib/libkfontinstui.so lib/libkfontinstui.so.6 lib/libkfontinstui.so.%%KDE_PLASMA_VERSION%% lib/libklipper.so lib/libklipper.so.6 lib/libklipper.so.%%KDE_PLASMA_VERSION%% lib/libklookandfeel.so lib/libklookandfeel.so.6 lib/libklookandfeel.so.%%KDE_PLASMA_VERSION%% lib/libkmpris.so.6 lib/libkmpris.so.%%KDE_PLASMA_VERSION%% lib/libkrdb.so lib/libkworkspace6.so lib/libkworkspace6.so.6 lib/libkworkspace6.so.%%KDE_PLASMA_VERSION%% lib/libnotificationmanager.so lib/libnotificationmanager.so.1 lib/libnotificationmanager.so.%%KDE_PLASMA_VERSION%% lib/libtaskmanager.so lib/libtaskmanager.so.6 lib/libtaskmanager.so.%%KDE_PLASMA_VERSION%% %%QT_PLUGINDIR%%/kf6/kded/appmenu.so %%QT_PLUGINDIR%%/kf6/kded/desktopnotifier.so %%QT_PLUGINDIR%%/kf6/kded/devicenotifications.so %%QT_PLUGINDIR%%/kf6/kded/donationmessage.so %%QT_PLUGINDIR%%/kf6/kded/freespacenotifier.so %%QT_PLUGINDIR%%/kf6/kded/ktimezoned.so %%QT_PLUGINDIR%%/kf6/kded/lookandfeelautoswitcher.so %%QT_PLUGINDIR%%/kf6/kded/mprisservice.so %%QT_PLUGINDIR%%/kf6/kded/oom-notifier.so %%QT_PLUGINDIR%%/kf6/kded/plasma-session-shortcuts.so %%QT_PLUGINDIR%%/kf6/kded/plasma_accentcolor_service.so %%QT_PLUGINDIR%%/kf6/kded/solidautoeject.so %%QT_PLUGINDIR%%/kf6/kded/soliduiserver.so %%QT_PLUGINDIR%%/kf6/kded/statusnotifierwatcher.so %%QT_PLUGINDIR%%/kf6/kfileitemaction/wallpaperfileitemaction.so %%QT_PLUGINDIR%%/kf6/kio/applications.so %%QT_PLUGINDIR%%/kf6/kio/desktop.so %%QT_PLUGINDIR%%/kf6/kio/kio_fonts.so %%QT_PLUGINDIR%%/kf6/krunner/calculator.so %%QT_PLUGINDIR%%/kf6/krunner/helprunner.so %%QT_PLUGINDIR%%/kf6/krunner/kcms/kcm_krunner_kill.so %%QT_PLUGINDIR%%/kf6/krunner/krunner_appstream.so %%QT_PLUGINDIR%%/kf6/krunner/krunner_bookmarksrunner.so %%QT_PLUGINDIR%%/kf6/krunner/krunner_kill.so %%QT_PLUGINDIR%%/kf6/krunner/krunner_placesrunner.so %%QT_PLUGINDIR%%/kf6/krunner/krunner_recentdocuments.so %%QT_PLUGINDIR%%/kf6/krunner/krunner_services.so %%QT_PLUGINDIR%%/kf6/krunner/krunner_sessions.so %%QT_PLUGINDIR%%/kf6/krunner/krunner_shell.so %%QT_PLUGINDIR%%/kf6/krunner/krunner_webshortcuts.so %%QT_PLUGINDIR%%/kf6/krunner/locations.so %%QT_PLUGINDIR%%/kf6/packagestructure/plasma_layouttemplate.so %%QT_PLUGINDIR%%/kf6/packagestructure/plasma_lookandfeel.so %%QT_PLUGINDIR%%/kf6/packagestructure/wallpaper_images.so %%QT_PLUGINDIR%%/kf6/parts/kfontviewpart.so %%QT_PLUGINDIR%%/kf6/thumbcreator/fontthumbnail.so -%%QT_PLUGINDIR%%/phonon_platform/kde.so +%%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.activitybar.so +%%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.analogclock.so %%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.appmenu.so %%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.calendar.so +%%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.cameraindicator.so +%%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.clipboard.so %%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.devicenotifier.so %%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.digitalclock.so %%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.icon.so %%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.lock_logout.so +%%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.manage-inputmethod.so %%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.mediacontroller.so %%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.notifications.so %%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.panelspacer.so %%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.systemmonitor.so %%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.systemtray.so %%QT_PLUGINDIR%%/plasma/containmentactions/org.kde.applauncher.so %%QT_PLUGINDIR%%/plasma/containmentactions/org.kde.contextmenu.so %%QT_PLUGINDIR%%/plasma/containmentactions/org.kde.paste.so %%QT_PLUGINDIR%%/plasma/containmentactions/org.kde.switchdesktop.so %%QT_PLUGINDIR%%/plasma/containmentactions/switchactivity.so %%QT_PLUGINDIR%%/plasma/containmentactions/switchwindow.so %%QT_PLUGINDIR%%/plasma/kcminit/kcm_fonts_init.so %%QT_PLUGINDIR%%/plasma/kcminit/kcm_style_init.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_autostart.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_colors.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_componentchooser.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_cursortheme.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_desktoptheme.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_feedback.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_fonts.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_icons.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_lookandfeel.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_nightlight.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_nighttime.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_notifications.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_regionandlang.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_soundtheme.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_style.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_users.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_wallpaper.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_fontinst.so -%%QT_PLUGINDIR%%/plasma5support/dataengine/plasma_engine_applicationjobs.so -%%QT_PLUGINDIR%%/plasma5support/dataengine/plasma_engine_clipboard.so -%%QT_PLUGINDIR%%/plasma5support/dataengine/plasma_engine_executable.so -%%QT_PLUGINDIR%%/plasma5support/dataengine/plasma_engine_notifications.so -%%QT_PLUGINDIR%%/plasma5support/dataengine/plasma_engine_time.so %%QT_PLUGINDIR%%/plasmacalendarplugins/holidays/HolidaysConfig.qml %%QT_PLUGINDIR%%/plasmacalendarplugins/holidaysevents.so %%QT_QMLDIR%%/org/kde/breeze/components/ActionButton.qml %%QT_QMLDIR%%/org/kde/breeze/components/Battery.qml %%QT_QMLDIR%%/org/kde/breeze/components/Clock.qml %%QT_QMLDIR%%/org/kde/breeze/components/RejectPasswordAnimation.qml %%QT_QMLDIR%%/org/kde/breeze/components/RejectPasswordPathAnimation.qml %%QT_QMLDIR%%/org/kde/breeze/components/SessionManagementScreen.qml %%QT_QMLDIR%%/org/kde/breeze/components/UserDelegate.qml %%QT_QMLDIR%%/org/kde/breeze/components/UserList.qml %%QT_QMLDIR%%/org/kde/breeze/components/VirtualKeyboard.qml %%QT_QMLDIR%%/org/kde/breeze/components/VirtualKeyboardLoader.qml %%QT_QMLDIR%%/org/kde/breeze/components/VirtualKeyboard_wayland.qml %%QT_QMLDIR%%/org/kde/breeze/components/WallpaperFader.qml %%QT_QMLDIR%%/org/kde/breeze/components/components.qmltypes %%QT_QMLDIR%%/org/kde/breeze/components/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/breeze/components/libcomponents.so %%QT_QMLDIR%%/org/kde/breeze/components/qmldir %%QT_QMLDIR%%/org/kde/notificationmanager/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/notificationmanager/libnotificationmanagerplugin.so %%QT_QMLDIR%%/org/kde/notificationmanager/notificationmanager.qmltypes %%QT_QMLDIR%%/org/kde/notificationmanager/qmldir +%%QT_QMLDIR%%/org/kde/plasma/clock/clockplugin.qmltypes +%%QT_QMLDIR%%/org/kde/plasma/clock/kde-qmlmodule.version +%%QT_QMLDIR%%/org/kde/plasma/clock/libclockplugin.so +%%QT_QMLDIR%%/org/kde/plasma/clock/qmldir %%QT_QMLDIR%%/org/kde/plasma/lookandfeel/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/plasma/lookandfeel/liblookandfeelqmlplugin.so %%QT_QMLDIR%%/org/kde/plasma/lookandfeel/lookandfeelqmlplugin.qmltypes %%QT_QMLDIR%%/org/kde/plasma/lookandfeel/qmldir -%%QT_QMLDIR%%/org/kde/plasma/private/appmenu/appmenuplugin.qmltypes -%%QT_QMLDIR%%/org/kde/plasma/private/appmenu/kde-qmlmodule.version -%%QT_QMLDIR%%/org/kde/plasma/private/appmenu/libappmenuplugin.so -%%QT_QMLDIR%%/org/kde/plasma/private/appmenu/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/battery/batterycontrol.qmltypes %%QT_QMLDIR%%/org/kde/plasma/private/battery/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/plasma/private/battery/libbatterycontrolplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/battery/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/clipboard/BarcodePage.qml %%QT_QMLDIR%%/org/kde/plasma/private/clipboard/ClipboardItemDelegate.qml %%QT_QMLDIR%%/org/kde/plasma/private/clipboard/ClipboardMenu.qml %%QT_QMLDIR%%/org/kde/plasma/private/clipboard/DelegateToolButtons.qml %%QT_QMLDIR%%/org/kde/plasma/private/clipboard/EditPage.qml %%QT_QMLDIR%%/org/kde/plasma/private/clipboard/ImageItemDelegate.qml %%QT_QMLDIR%%/org/kde/plasma/private/clipboard/KlipperPopup.qml %%QT_QMLDIR%%/org/kde/plasma/private/clipboard/TextItemDelegate.qml %%QT_QMLDIR%%/org/kde/plasma/private/clipboard/UrlItemDelegate.qml %%QT_QMLDIR%%/org/kde/plasma/private/clipboard/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/plasma/private/clipboard/klipperplugin.qmltypes %%QT_QMLDIR%%/org/kde/plasma/private/clipboard/libklipperplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/clipboard/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/containmentlayoutmanager/BasicAppletContainer.qml %%QT_QMLDIR%%/org/kde/plasma/private/containmentlayoutmanager/BasicResizeHandle.qml %%QT_QMLDIR%%/org/kde/plasma/private/containmentlayoutmanager/ConfigOverlayWithHandles.qml %%QT_QMLDIR%%/org/kde/plasma/private/containmentlayoutmanager/PlaceHolder.qml %%QT_QMLDIR%%/org/kde/plasma/private/containmentlayoutmanager/containmentlayoutmanagerplugin.qmltypes %%QT_QMLDIR%%/org/kde/plasma/private/containmentlayoutmanager/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/plasma/private/containmentlayoutmanager/libcontainmentlayoutmanagerplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/containmentlayoutmanager/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/digitalclock/digitalclockplugin.qmltypes %%QT_QMLDIR%%/org/kde/plasma/private/digitalclock/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/plasma/private/digitalclock/libdigitalclockplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/digitalclock/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/holidayevents/holidayevents.qmltypes %%QT_QMLDIR%%/org/kde/plasma/private/holidayevents/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/plasma/private/holidayevents/libholidayevents.so %%QT_QMLDIR%%/org/kde/plasma/private/holidayevents/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/keyboardindicator/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/plasma/private/keyboardindicator/keyboardindicatorplugin.qmltypes %%QT_QMLDIR%%/org/kde/plasma/private/keyboardindicator/libkeyboardindicatorplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/keyboardindicator/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/kicker/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/plasma/private/kicker/kickerplugin.qmltypes %%QT_QMLDIR%%/org/kde/plasma/private/kicker/libkickerplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/kicker/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/mpris/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/plasma/private/mpris/kmpris.qmltypes %%QT_QMLDIR%%/org/kde/plasma/private/mpris/libkmprisplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/mpris/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/sessions/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/plasma/private/sessions/libsessionsprivateplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/sessions/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/sessions/sessionsprivateplugin.qmltypes %%QT_QMLDIR%%/org/kde/plasma/private/shell/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/plasma/private/shell/libplasmashellprivateplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/shell/plasmashellprivateplugin.qmltypes %%QT_QMLDIR%%/org/kde/plasma/private/shell/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/systemtray/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/plasma/private/systemtray/libsystemtrayplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/systemtray/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/systemtray/systemtrayplugin.qmltypes %%QT_QMLDIR%%/org/kde/plasma/wallpapers/image/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/plasma/wallpapers/image/libplasma_wallpaper_image.so %%QT_QMLDIR%%/org/kde/plasma/wallpapers/image/plasma_wallpaper_image.qmltypes %%QT_QMLDIR%%/org/kde/plasma/wallpapers/image/qmldir %%QT_QMLDIR%%/org/kde/plasma/workspace/calendar/DayDelegate.qml %%QT_QMLDIR%%/org/kde/plasma/workspace/calendar/DaysCalendar.qml %%QT_QMLDIR%%/org/kde/plasma/workspace/calendar/InfiniteList.qml %%QT_QMLDIR%%/org/kde/plasma/workspace/calendar/MonthView.qml %%QT_QMLDIR%%/org/kde/plasma/workspace/calendar/MonthViewHeader.qml %%QT_QMLDIR%%/org/kde/plasma/workspace/calendar/calendarplugin.qmltypes %%QT_QMLDIR%%/org/kde/plasma/workspace/calendar/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/plasma/workspace/calendar/libcalendarplugin.so %%QT_QMLDIR%%/org/kde/plasma/workspace/calendar/qmldir %%QT_QMLDIR%%/org/kde/plasma/workspace/components/BadgeOverlay.qml %%QT_QMLDIR%%/org/kde/plasma/workspace/components/BatteryIcon.qml %%QT_QMLDIR%%/org/kde/plasma/workspace/components/KeyboardLayoutSwitcher.qml %%QT_QMLDIR%%/org/kde/plasma/workspace/components/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/plasma/workspace/components/libworkspacecomponents.so %%QT_QMLDIR%%/org/kde/plasma/workspace/components/qmldir %%QT_QMLDIR%%/org/kde/plasma/workspace/components/workspacecomponents.qmltypes %%QT_QMLDIR%%/org/kde/plasma/workspace/dbus/dbusplugin.qmltypes %%QT_QMLDIR%%/org/kde/plasma/workspace/dbus/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/plasma/workspace/dbus/libdbusplugin.so %%QT_QMLDIR%%/org/kde/plasma/workspace/dbus/qmldir %%QT_QMLDIR%%/org/kde/plasma/workspace/dialogs/SystemDialog.qml %%QT_QMLDIR%%/org/kde/plasma/workspace/dialogs/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/plasma/workspace/dialogs/libsystemdialogs.so %%QT_QMLDIR%%/org/kde/plasma/workspace/dialogs/qmldir %%QT_QMLDIR%%/org/kde/plasma/workspace/dialogs/systemdialogs.qmltypes %%QT_QMLDIR%%/org/kde/plasma/workspace/keyboardlayout/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/plasma/workspace/keyboardlayout/keyboardlayoutplugin.qmltypes %%QT_QMLDIR%%/org/kde/plasma/workspace/keyboardlayout/libkeyboardlayoutplugin.so %%QT_QMLDIR%%/org/kde/plasma/workspace/keyboardlayout/qmldir %%QT_QMLDIR%%/org/kde/plasma/workspace/osd/Osd.qml %%QT_QMLDIR%%/org/kde/plasma/workspace/osd/OsdItem.qml %%QT_QMLDIR%%/org/kde/plasma/workspace/osd/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/plasma/workspace/osd/libplasmashell_osd.so %%QT_QMLDIR%%/org/kde/plasma/workspace/osd/plasmashell_osd.qmltypes %%QT_QMLDIR%%/org/kde/plasma/workspace/osd/qmldir %%QT_QMLDIR%%/org/kde/plasma/workspace/timezoneselector/GeoJsonDelegate.qml %%QT_QMLDIR%%/org/kde/plasma/workspace/timezoneselector/TimezoneSelector.qml %%QT_QMLDIR%%/org/kde/plasma/workspace/timezoneselector/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/plasma/workspace/timezoneselector/libtimezoneplugin.so %%QT_QMLDIR%%/org/kde/plasma/workspace/timezoneselector/qmldir %%QT_QMLDIR%%/org/kde/plasma/workspace/timezoneselector/timezoneplugin.qmltypes %%QT_QMLDIR%%/org/kde/plasma/workspace/trianglemousefilter/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/plasma/workspace/trianglemousefilter/libtrianglemousefilterplugin.so %%QT_QMLDIR%%/org/kde/plasma/workspace/trianglemousefilter/qmldir %%QT_QMLDIR%%/org/kde/plasma/workspace/trianglemousefilter/trianglemousefilterplugin.qmltypes %%QT_QMLDIR%%/org/kde/taskmanager/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/taskmanager/libtaskmanagerplugin.so %%QT_QMLDIR%%/org/kde/taskmanager/qmldir %%QT_QMLDIR%%/org/kde/taskmanager/taskmanager.qmltypes @comment lib/systemd/user/plasma-baloorunner.service @comment lib/systemd/user/plasma-gmenudbusmenuproxy.service @comment lib/systemd/user/plasma-kcminit-phase1.service @comment lib/systemd/user/plasma-kcminit.service @comment lib/systemd/user/plasma-krunner.service @comment lib/systemd/user/plasma-ksmserver.service @comment lib/systemd/user/plasma-ksplash.service @comment lib/systemd/user/plasma-plasmashell.service @comment lib/systemd/user/plasma-restoresession.service @comment lib/systemd/user/plasma-xembedsniproxy.service share/applications/kcm_autostart.desktop share/applications/kcm_colors.desktop share/applications/kcm_componentchooser.desktop share/applications/kcm_cursortheme.desktop share/applications/kcm_desktoptheme.desktop share/applications/kcm_feedback.desktop share/applications/kcm_fontinst.desktop share/applications/kcm_fonts.desktop share/applications/kcm_icons.desktop share/applications/kcm_lookandfeel.desktop share/applications/kcm_nightlight.desktop share/applications/kcm_nighttime.desktop share/applications/kcm_notifications.desktop share/applications/kcm_regionandlang.desktop share/applications/kcm_soundtheme.desktop share/applications/kcm_style.desktop share/applications/kcm_users.desktop share/applications/kcm_wallpaper.desktop +share/applications/org.kde.baloorunner.desktop share/applications/org.kde.kcolorschemeeditor.desktop share/applications/org.kde.kfontinst.desktop share/applications/org.kde.kfontview.desktop share/applications/org.kde.klipper.desktop share/applications/org.kde.plasma-fallback-session-save.desktop share/applications/org.kde.plasma-interactiveconsole.desktop share/applications/org.kde.plasmashell.desktop share/applications/org.kde.plasmawindowed.desktop +share/applications/org.kde.secretprompter.desktop share/config.kcfg/colorssettings.kcfg share/config.kcfg/cursorthemesettings.kcfg share/config.kcfg/feedbacksettings.kcfg share/config.kcfg/fontssettings.kcfg share/config.kcfg/freespacenotifier.kcfg share/config.kcfg/iconssettingsbase.kcfg share/config.kcfg/launchfeedbacksettings.kcfg share/config.kcfg/lookandfeelsettings.kcfg share/config.kcfg/stylesettings.kcfg share/dbus-1/interfaces/com.canonical.AppMenu.Registrar.xml share/dbus-1/interfaces/org.kde.KSMServerInterface.xml share/dbus-1/interfaces/org.kde.KSplash.xml share/dbus-1/interfaces/org.kde.PlasmaShell.xml share/dbus-1/interfaces/org.kde.kappmenu.xml share/dbus-1/interfaces/org.kde.krunner.App.xml share/dbus-1/services/org.kde.KSplash.service share/dbus-1/services/org.kde.LogoutPrompt.service share/dbus-1/services/org.kde.Shutdown.service share/dbus-1/services/org.kde.fontinst.service share/dbus-1/services/org.kde.krunner.service share/dbus-1/services/org.kde.plasma.Notifications.service share/dbus-1/services/org.kde.runners.baloo.service +share/dbus-1/services/org.kde.secretprompter.service share/dbus-1/system-services/org.kde.fontinst.service share/dbus-1/system.d/org.kde.fontinst.conf share/desktop-directories/kf5-development-translation.directory share/desktop-directories/kf5-development-webdevelopment.directory share/desktop-directories/kf5-development.directory share/desktop-directories/kf5-editors.directory share/desktop-directories/kf5-edu-languages.directory share/desktop-directories/kf5-edu-mathematics.directory share/desktop-directories/kf5-edu-miscellaneous.directory share/desktop-directories/kf5-edu-science.directory share/desktop-directories/kf5-edu-tools.directory share/desktop-directories/kf5-education.directory share/desktop-directories/kf5-games-arcade.directory share/desktop-directories/kf5-games-board.directory share/desktop-directories/kf5-games-card.directory share/desktop-directories/kf5-games-kids.directory share/desktop-directories/kf5-games-logic.directory share/desktop-directories/kf5-games-roguelikes.directory share/desktop-directories/kf5-games-strategy.directory share/desktop-directories/kf5-games.directory share/desktop-directories/kf5-graphics.directory share/desktop-directories/kf5-help.directory share/desktop-directories/kf5-internet-terminal.directory share/desktop-directories/kf5-internet.directory share/desktop-directories/kf5-main.directory share/desktop-directories/kf5-more.directory share/desktop-directories/kf5-multimedia.directory share/desktop-directories/kf5-network.directory share/desktop-directories/kf5-office.directory share/desktop-directories/kf5-science.directory share/desktop-directories/kf5-settingsmenu.directory share/desktop-directories/kf5-system-terminal.directory share/desktop-directories/kf5-system.directory share/desktop-directories/kf5-toys.directory share/desktop-directories/kf5-unknown.directory share/desktop-directories/kf5-utilities-accessibility.directory share/desktop-directories/kf5-utilities-desktop.directory share/desktop-directories/kf5-utilities-file.directory share/desktop-directories/kf5-utilities-peripherals.directory share/desktop-directories/kf5-utilities-pim.directory share/desktop-directories/kf5-utilities-xutils.directory share/desktop-directories/kf5-utilities.directory share/doc/HTML/ca/kcontrol/autostart/index.cache.bz2 share/doc/HTML/ca/kcontrol/autostart/index.docbook share/doc/HTML/ca/kcontrol/colors/index.cache.bz2 share/doc/HTML/ca/kcontrol/colors/index.docbook share/doc/HTML/ca/kcontrol/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/get-new-theme.png share/doc/HTML/ca/kcontrol/desktopthemedetails/index.cache.bz2 share/doc/HTML/ca/kcontrol/desktopthemedetails/index.docbook share/doc/HTML/ca/kcontrol/desktopthemedetails/main.png share/doc/HTML/ca/kcontrol/fontinst/index.cache.bz2 share/doc/HTML/ca/kcontrol/fontinst/index.docbook share/doc/HTML/ca/kcontrol/fonts/adjust-all.png share/doc/HTML/ca/kcontrol/fonts/index.cache.bz2 share/doc/HTML/ca/kcontrol/fonts/index.docbook share/doc/HTML/ca/kcontrol/fonts/main.png -share/doc/HTML/ca/kcontrol/formats/index.cache.bz2 -share/doc/HTML/ca/kcontrol/formats/index.docbook share/doc/HTML/ca/kcontrol/icons/get-new-theme.png share/doc/HTML/ca/kcontrol/icons/index.cache.bz2 share/doc/HTML/ca/kcontrol/icons/index.docbook share/doc/HTML/ca/kcontrol/icons/main.png share/doc/HTML/ca/kcontrol/icons/use-of-icons.png share/doc/HTML/ca/kcontrol/kcmstyle/index.cache.bz2 share/doc/HTML/ca/kcontrol/kcmstyle/index.docbook share/doc/HTML/ca/kcontrol/lookandfeel/index.cache.bz2 share/doc/HTML/ca/kcontrol/lookandfeel/index.docbook share/doc/HTML/ca/kcontrol/notifications/index.cache.bz2 share/doc/HTML/ca/kcontrol/notifications/index.docbook share/doc/HTML/ca/kcontrol/region_language/index.cache.bz2 share/doc/HTML/ca/kcontrol/region_language/index.docbook share/doc/HTML/ca/kcontrol/screenlocker/index.cache.bz2 share/doc/HTML/ca/kcontrol/screenlocker/index.docbook share/doc/HTML/ca/klipper/index.cache.bz2 share/doc/HTML/ca/klipper/index.docbook share/doc/HTML/ca/klipper/klipper-widget.png share/doc/HTML/ca/klipper/screenshot.png share/doc/HTML/de/kcontrol/autostart/index.cache.bz2 share/doc/HTML/de/kcontrol/autostart/index.docbook share/doc/HTML/de/kcontrol/colors/index.cache.bz2 share/doc/HTML/de/kcontrol/colors/index.docbook share/doc/HTML/de/kcontrol/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/fontinst/index.cache.bz2 share/doc/HTML/de/kcontrol/fontinst/index.docbook share/doc/HTML/de/kcontrol/fonts/index.cache.bz2 share/doc/HTML/de/kcontrol/fonts/index.docbook -share/doc/HTML/de/kcontrol/formats/index.cache.bz2 -share/doc/HTML/de/kcontrol/formats/index.docbook share/doc/HTML/de/kcontrol/icons/index.cache.bz2 share/doc/HTML/de/kcontrol/icons/index.docbook share/doc/HTML/de/kcontrol/kcmstyle/index.cache.bz2 share/doc/HTML/de/kcontrol/kcmstyle/index.docbook share/doc/HTML/de/kcontrol/notifications/index.cache.bz2 share/doc/HTML/de/kcontrol/notifications/index.docbook share/doc/HTML/de/kcontrol/region_language/index.cache.bz2 share/doc/HTML/de/kcontrol/region_language/index.docbook share/doc/HTML/de/kcontrol/screenlocker/index.cache.bz2 share/doc/HTML/de/kcontrol/screenlocker/index.docbook share/doc/HTML/de/klipper/index.cache.bz2 share/doc/HTML/de/klipper/index.docbook share/doc/HTML/en/PolicyKit-kde/authdialog_1.png share/doc/HTML/en/PolicyKit-kde/authdialog_2.png share/doc/HTML/en/PolicyKit-kde/authdialog_3.png share/doc/HTML/en/PolicyKit-kde/authdialog_4.png share/doc/HTML/en/PolicyKit-kde/authdialog_5.png share/doc/HTML/en/PolicyKit-kde/authdialog_6.png share/doc/HTML/en/PolicyKit-kde/authorization.docbook share/doc/HTML/en/PolicyKit-kde/authorization_1.png share/doc/HTML/en/PolicyKit-kde/authorization_2.png share/doc/HTML/en/PolicyKit-kde/authorizationagent.docbook share/doc/HTML/en/PolicyKit-kde/howitworks.docbook share/doc/HTML/en/PolicyKit-kde/index.cache.bz2 share/doc/HTML/en/PolicyKit-kde/index.docbook share/doc/HTML/en/PolicyKit-kde/introduction.docbook share/doc/HTML/en/kcontrol/autostart/index.cache.bz2 share/doc/HTML/en/kcontrol/autostart/index.docbook share/doc/HTML/en/kcontrol/colors/index.cache.bz2 share/doc/HTML/en/kcontrol/colors/index.docbook share/doc/HTML/en/kcontrol/componentchooser/index.cache.bz2 share/doc/HTML/en/kcontrol/componentchooser/index.docbook share/doc/HTML/en/kcontrol/cursortheme/cursor-size.png share/doc/HTML/en/kcontrol/cursortheme/get-new-stuff.png share/doc/HTML/en/kcontrol/cursortheme/index.cache.bz2 share/doc/HTML/en/kcontrol/cursortheme/index.docbook share/doc/HTML/en/kcontrol/cursortheme/launch-feedback.png share/doc/HTML/en/kcontrol/cursortheme/main.png share/doc/HTML/en/kcontrol/desktopthemedetails/edit-delete.png share/doc/HTML/en/kcontrol/desktopthemedetails/edit-undo.png share/doc/HTML/en/kcontrol/desktopthemedetails/get-new-theme.png share/doc/HTML/en/kcontrol/desktopthemedetails/index.cache.bz2 share/doc/HTML/en/kcontrol/desktopthemedetails/index.docbook share/doc/HTML/en/kcontrol/desktopthemedetails/main.png share/doc/HTML/en/kcontrol/fontinst/edit-delete.png share/doc/HTML/en/kcontrol/fontinst/index.cache.bz2 share/doc/HTML/en/kcontrol/fontinst/index.docbook share/doc/HTML/en/kcontrol/fonts/adjust-all.png share/doc/HTML/en/kcontrol/fonts/index.cache.bz2 share/doc/HTML/en/kcontrol/fonts/index.docbook share/doc/HTML/en/kcontrol/fonts/main.png share/doc/HTML/en/kcontrol/icons/edit-delete.png share/doc/HTML/en/kcontrol/icons/edit-undo.png share/doc/HTML/en/kcontrol/icons/get-new-theme.png share/doc/HTML/en/kcontrol/icons/index.cache.bz2 share/doc/HTML/en/kcontrol/icons/index.docbook share/doc/HTML/en/kcontrol/icons/main.png share/doc/HTML/en/kcontrol/icons/use-of-icons.png share/doc/HTML/en/kcontrol/kcmstyle/index.cache.bz2 share/doc/HTML/en/kcontrol/kcmstyle/index.docbook share/doc/HTML/en/kcontrol/lookandfeel/component-chooser_1.png share/doc/HTML/en/kcontrol/lookandfeel/component-chooser_2.png share/doc/HTML/en/kcontrol/lookandfeel/get-new-stuff.png share/doc/HTML/en/kcontrol/lookandfeel/index.cache.bz2 share/doc/HTML/en/kcontrol/lookandfeel/index.docbook share/doc/HTML/en/kcontrol/lookandfeel/main.png share/doc/HTML/en/kcontrol/notifications/index.cache.bz2 share/doc/HTML/en/kcontrol/notifications/index.docbook +share/doc/HTML/en/kcontrol/region_language/go-top.png +share/doc/HTML/en/kcontrol/region_language/index.cache.bz2 +share/doc/HTML/en/kcontrol/region_language/index.docbook +share/doc/HTML/en/kcontrol/region_language/list-remove.png share/doc/HTML/en/kcontrol/screenlocker/index.cache.bz2 share/doc/HTML/en/kcontrol/screenlocker/index.docbook share/doc/HTML/en/klipper/index.cache.bz2 share/doc/HTML/en/klipper/index.docbook share/doc/HTML/en/klipper/klipper-widget.png share/doc/HTML/en/klipper/screenshot.png share/doc/HTML/es/kcontrol/autostart/index.cache.bz2 share/doc/HTML/es/kcontrol/autostart/index.docbook share/doc/HTML/es/kcontrol/colors/index.cache.bz2 share/doc/HTML/es/kcontrol/colors/index.docbook share/doc/HTML/es/kcontrol/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/fontinst/index.cache.bz2 share/doc/HTML/es/kcontrol/fontinst/index.docbook share/doc/HTML/es/kcontrol/fonts/index.cache.bz2 share/doc/HTML/es/kcontrol/fonts/index.docbook share/doc/HTML/es/kcontrol/icons/index.cache.bz2 share/doc/HTML/es/kcontrol/icons/index.docbook share/doc/HTML/es/kcontrol/kcmstyle/index.cache.bz2 share/doc/HTML/es/kcontrol/kcmstyle/index.docbook share/doc/HTML/es/kcontrol/lookandfeel/index.cache.bz2 share/doc/HTML/es/kcontrol/lookandfeel/index.docbook share/doc/HTML/es/kcontrol/notifications/index.cache.bz2 share/doc/HTML/es/kcontrol/notifications/index.docbook share/doc/HTML/es/kcontrol/region_language/index.cache.bz2 share/doc/HTML/es/kcontrol/region_language/index.docbook share/doc/HTML/es/kcontrol/screenlocker/index.cache.bz2 share/doc/HTML/es/kcontrol/screenlocker/index.docbook share/doc/HTML/es/klipper/index.cache.bz2 share/doc/HTML/es/klipper/index.docbook share/doc/HTML/fr/kcontrol/componentchooser/index.cache.bz2 share/doc/HTML/fr/kcontrol/componentchooser/index.docbook share/doc/HTML/fr/kcontrol/desktopthemedetails/index.cache.bz2 share/doc/HTML/fr/kcontrol/desktopthemedetails/index.docbook share/doc/HTML/fr/kcontrol/fontinst/index.cache.bz2 share/doc/HTML/fr/kcontrol/fontinst/index.docbook share/doc/HTML/id/kcontrol/autostart/index.cache.bz2 share/doc/HTML/id/kcontrol/autostart/index.docbook share/doc/HTML/id/kcontrol/colors/index.cache.bz2 share/doc/HTML/id/kcontrol/colors/index.docbook share/doc/HTML/id/kcontrol/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/fontinst/index.cache.bz2 share/doc/HTML/id/kcontrol/fontinst/index.docbook share/doc/HTML/id/kcontrol/fonts/index.cache.bz2 share/doc/HTML/id/kcontrol/fonts/index.docbook -share/doc/HTML/id/kcontrol/formats/index.cache.bz2 -share/doc/HTML/id/kcontrol/formats/index.docbook share/doc/HTML/id/kcontrol/icons/index.cache.bz2 share/doc/HTML/id/kcontrol/icons/index.docbook share/doc/HTML/id/kcontrol/kcmstyle/index.cache.bz2 share/doc/HTML/id/kcontrol/kcmstyle/index.docbook share/doc/HTML/id/kcontrol/region_language/index.cache.bz2 share/doc/HTML/id/kcontrol/region_language/index.docbook share/doc/HTML/id/kcontrol/screenlocker/index.cache.bz2 share/doc/HTML/id/kcontrol/screenlocker/index.docbook share/doc/HTML/id/klipper/index.cache.bz2 share/doc/HTML/id/klipper/index.docbook share/doc/HTML/it/kcontrol/autostart/index.cache.bz2 share/doc/HTML/it/kcontrol/autostart/index.docbook share/doc/HTML/it/kcontrol/colors/index.cache.bz2 share/doc/HTML/it/kcontrol/colors/index.docbook share/doc/HTML/it/kcontrol/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/fontinst/index.cache.bz2 share/doc/HTML/it/kcontrol/fontinst/index.docbook share/doc/HTML/it/kcontrol/fonts/index.cache.bz2 share/doc/HTML/it/kcontrol/fonts/index.docbook -share/doc/HTML/it/kcontrol/formats/index.cache.bz2 -share/doc/HTML/it/kcontrol/formats/index.docbook share/doc/HTML/it/kcontrol/icons/index.cache.bz2 share/doc/HTML/it/kcontrol/icons/index.docbook share/doc/HTML/it/kcontrol/kcmstyle/index.cache.bz2 share/doc/HTML/it/kcontrol/kcmstyle/index.docbook share/doc/HTML/it/kcontrol/lookandfeel/index.cache.bz2 share/doc/HTML/it/kcontrol/lookandfeel/index.docbook share/doc/HTML/it/kcontrol/notifications/index.cache.bz2 share/doc/HTML/it/kcontrol/notifications/index.docbook share/doc/HTML/it/kcontrol/region_language/index.cache.bz2 share/doc/HTML/it/kcontrol/region_language/index.docbook share/doc/HTML/it/kcontrol/screenlocker/index.cache.bz2 share/doc/HTML/it/kcontrol/screenlocker/index.docbook share/doc/HTML/it/klipper/index.cache.bz2 share/doc/HTML/it/klipper/index.docbook share/doc/HTML/it/klipper/klipper-widget.png share/doc/HTML/it/klipper/screenshot.png share/doc/HTML/ko/kcontrol/fonts/index.cache.bz2 share/doc/HTML/ko/kcontrol/fonts/index.docbook share/doc/HTML/ko/kcontrol/screenlocker/index.cache.bz2 share/doc/HTML/ko/kcontrol/screenlocker/index.docbook share/doc/HTML/nl/kcontrol/autostart/index.cache.bz2 share/doc/HTML/nl/kcontrol/autostart/index.docbook share/doc/HTML/nl/kcontrol/colors/index.cache.bz2 share/doc/HTML/nl/kcontrol/colors/index.docbook share/doc/HTML/nl/kcontrol/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/fontinst/index.cache.bz2 share/doc/HTML/nl/kcontrol/fontinst/index.docbook share/doc/HTML/nl/kcontrol/fonts/index.cache.bz2 share/doc/HTML/nl/kcontrol/fonts/index.docbook -share/doc/HTML/nl/kcontrol/formats/index.cache.bz2 -share/doc/HTML/nl/kcontrol/formats/index.docbook share/doc/HTML/nl/kcontrol/icons/index.cache.bz2 share/doc/HTML/nl/kcontrol/icons/index.docbook share/doc/HTML/nl/kcontrol/kcmstyle/index.cache.bz2 share/doc/HTML/nl/kcontrol/kcmstyle/index.docbook share/doc/HTML/nl/kcontrol/lookandfeel/index.cache.bz2 share/doc/HTML/nl/kcontrol/lookandfeel/index.docbook share/doc/HTML/nl/kcontrol/notifications/index.cache.bz2 share/doc/HTML/nl/kcontrol/notifications/index.docbook share/doc/HTML/nl/kcontrol/region_language/index.cache.bz2 share/doc/HTML/nl/kcontrol/region_language/index.docbook share/doc/HTML/nl/kcontrol/screenlocker/index.cache.bz2 share/doc/HTML/nl/kcontrol/screenlocker/index.docbook share/doc/HTML/nl/klipper/index.cache.bz2 share/doc/HTML/nl/klipper/index.docbook share/doc/HTML/pt/kcontrol/autostart/index.cache.bz2 share/doc/HTML/pt/kcontrol/autostart/index.docbook share/doc/HTML/pt/kcontrol/colors/index.cache.bz2 share/doc/HTML/pt/kcontrol/colors/index.docbook share/doc/HTML/pt/kcontrol/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/fontinst/index.cache.bz2 share/doc/HTML/pt/kcontrol/fontinst/index.docbook share/doc/HTML/pt/kcontrol/fonts/index.cache.bz2 share/doc/HTML/pt/kcontrol/fonts/index.docbook -share/doc/HTML/pt/kcontrol/formats/index.cache.bz2 -share/doc/HTML/pt/kcontrol/formats/index.docbook share/doc/HTML/pt/kcontrol/kcmstyle/index.cache.bz2 share/doc/HTML/pt/kcontrol/kcmstyle/index.docbook share/doc/HTML/pt/kcontrol/region_language/index.cache.bz2 share/doc/HTML/pt/kcontrol/region_language/index.docbook share/doc/HTML/pt/kcontrol/screenlocker/index.cache.bz2 share/doc/HTML/pt/kcontrol/screenlocker/index.docbook share/doc/HTML/pt/klipper/index.cache.bz2 share/doc/HTML/pt/klipper/index.docbook share/doc/HTML/pt_BR/kcontrol/autostart/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/autostart/index.docbook share/doc/HTML/pt_BR/kcontrol/colors/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/colors/index.docbook share/doc/HTML/pt_BR/kcontrol/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/fontinst/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/fontinst/index.docbook share/doc/HTML/pt_BR/kcontrol/fonts/adjust-all.png share/doc/HTML/pt_BR/kcontrol/fonts/anti-aliasing.png share/doc/HTML/pt_BR/kcontrol/fonts/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/fonts/index.docbook share/doc/HTML/pt_BR/kcontrol/fonts/main.png -share/doc/HTML/pt_BR/kcontrol/formats/index.cache.bz2 -share/doc/HTML/pt_BR/kcontrol/formats/index.docbook share/doc/HTML/pt_BR/kcontrol/icons/effects.png share/doc/HTML/pt_BR/kcontrol/icons/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/icons/index.docbook share/doc/HTML/pt_BR/kcontrol/icons/install-theme.png share/doc/HTML/pt_BR/kcontrol/icons/main.png share/doc/HTML/pt_BR/kcontrol/icons/use-of-icons.png share/doc/HTML/pt_BR/kcontrol/kcmstyle/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/kcmstyle/index.docbook share/doc/HTML/pt_BR/kcontrol/lookandfeel/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/lookandfeel/index.docbook share/doc/HTML/pt_BR/kcontrol/notifications/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/notifications/index.docbook share/doc/HTML/pt_BR/kcontrol/region_language/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/region_language/index.docbook share/doc/HTML/pt_BR/kcontrol/screenlocker/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/screenlocker/index.docbook share/doc/HTML/pt_BR/klipper/index.cache.bz2 share/doc/HTML/pt_BR/klipper/index.docbook share/doc/HTML/pt_BR/klipper/klipper-application.png share/doc/HTML/pt_BR/klipper/klipper-widget.png share/doc/HTML/pt_BR/klipper/screenshot.png share/doc/HTML/ru/kcontrol/autostart/index.cache.bz2 share/doc/HTML/ru/kcontrol/autostart/index.docbook share/doc/HTML/ru/kcontrol/colors/index.cache.bz2 share/doc/HTML/ru/kcontrol/colors/index.docbook share/doc/HTML/ru/kcontrol/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/fontinst/index.cache.bz2 share/doc/HTML/ru/kcontrol/fontinst/index.docbook share/doc/HTML/ru/kcontrol/fonts/adjust-all.png share/doc/HTML/ru/kcontrol/fonts/anti-aliasing.png share/doc/HTML/ru/kcontrol/fonts/index.cache.bz2 share/doc/HTML/ru/kcontrol/fonts/index.docbook share/doc/HTML/ru/kcontrol/fonts/main.png -share/doc/HTML/ru/kcontrol/formats/index.cache.bz2 -share/doc/HTML/ru/kcontrol/formats/index.docbook share/doc/HTML/ru/kcontrol/icons/delete-theme.png share/doc/HTML/ru/kcontrol/icons/effects.png share/doc/HTML/ru/kcontrol/icons/get-new-theme.png share/doc/HTML/ru/kcontrol/icons/index.cache.bz2 share/doc/HTML/ru/kcontrol/icons/index.docbook share/doc/HTML/ru/kcontrol/icons/install-theme.png share/doc/HTML/ru/kcontrol/icons/main.png share/doc/HTML/ru/kcontrol/icons/size.png share/doc/HTML/ru/kcontrol/icons/use-of-icons.png share/doc/HTML/ru/kcontrol/kcmstyle/index.cache.bz2 share/doc/HTML/ru/kcontrol/kcmstyle/index.docbook share/doc/HTML/ru/kcontrol/lookandfeel/index.cache.bz2 share/doc/HTML/ru/kcontrol/lookandfeel/index.docbook share/doc/HTML/ru/kcontrol/notifications/index.cache.bz2 share/doc/HTML/ru/kcontrol/notifications/index.docbook share/doc/HTML/ru/kcontrol/region_language/index.cache.bz2 share/doc/HTML/ru/kcontrol/region_language/index.docbook share/doc/HTML/ru/kcontrol/screenlocker/index.cache.bz2 share/doc/HTML/ru/kcontrol/screenlocker/index.docbook share/doc/HTML/ru/klipper/index.cache.bz2 share/doc/HTML/ru/klipper/index.docbook share/doc/HTML/sl/kcontrol/autostart/index.cache.bz2 share/doc/HTML/sl/kcontrol/autostart/index.docbook share/doc/HTML/sl/kcontrol/colors/index.cache.bz2 share/doc/HTML/sl/kcontrol/colors/index.docbook share/doc/HTML/sl/kcontrol/componentchooser/index.cache.bz2 share/doc/HTML/sl/kcontrol/componentchooser/index.docbook share/doc/HTML/sl/kcontrol/cursortheme/index.cache.bz2 share/doc/HTML/sl/kcontrol/cursortheme/index.docbook share/doc/HTML/sl/kcontrol/desktopthemedetails/index.cache.bz2 share/doc/HTML/sl/kcontrol/desktopthemedetails/index.docbook share/doc/HTML/sl/kcontrol/fontinst/index.cache.bz2 share/doc/HTML/sl/kcontrol/fontinst/index.docbook share/doc/HTML/sl/kcontrol/fonts/index.cache.bz2 share/doc/HTML/sl/kcontrol/fonts/index.docbook share/doc/HTML/sl/kcontrol/icons/index.cache.bz2 share/doc/HTML/sl/kcontrol/icons/index.docbook share/doc/HTML/sl/kcontrol/kcmstyle/index.cache.bz2 share/doc/HTML/sl/kcontrol/kcmstyle/index.docbook share/doc/HTML/sl/kcontrol/lookandfeel/index.cache.bz2 share/doc/HTML/sl/kcontrol/lookandfeel/index.docbook share/doc/HTML/sl/kcontrol/notifications/index.cache.bz2 share/doc/HTML/sl/kcontrol/notifications/index.docbook share/doc/HTML/sl/kcontrol/region_language/index.cache.bz2 share/doc/HTML/sl/kcontrol/region_language/index.docbook share/doc/HTML/sl/kcontrol/screenlocker/index.cache.bz2 share/doc/HTML/sl/kcontrol/screenlocker/index.docbook share/doc/HTML/sl/klipper/index.cache.bz2 share/doc/HTML/sl/klipper/index.docbook share/doc/HTML/sr/kcontrol/autostart/index.cache.bz2 share/doc/HTML/sr/kcontrol/autostart/index.docbook share/doc/HTML/sr/kcontrol/icons/index.cache.bz2 share/doc/HTML/sr/kcontrol/icons/index.docbook share/doc/HTML/sr@latin/kcontrol/autostart/index.cache.bz2 share/doc/HTML/sr@latin/kcontrol/autostart/index.docbook share/doc/HTML/sr@latin/kcontrol/icons/index.cache.bz2 share/doc/HTML/sr@latin/kcontrol/icons/index.docbook share/doc/HTML/sv/kcontrol/autostart/index.cache.bz2 share/doc/HTML/sv/kcontrol/autostart/index.docbook share/doc/HTML/sv/kcontrol/colors/index.cache.bz2 share/doc/HTML/sv/kcontrol/colors/index.docbook share/doc/HTML/sv/kcontrol/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/fontinst/index.cache.bz2 share/doc/HTML/sv/kcontrol/fontinst/index.docbook share/doc/HTML/sv/kcontrol/fonts/index.cache.bz2 share/doc/HTML/sv/kcontrol/fonts/index.docbook -share/doc/HTML/sv/kcontrol/formats/index.cache.bz2 -share/doc/HTML/sv/kcontrol/formats/index.docbook share/doc/HTML/sv/kcontrol/icons/index.cache.bz2 share/doc/HTML/sv/kcontrol/icons/index.docbook share/doc/HTML/sv/kcontrol/kcmstyle/index.cache.bz2 share/doc/HTML/sv/kcontrol/kcmstyle/index.docbook share/doc/HTML/sv/kcontrol/notifications/index.cache.bz2 share/doc/HTML/sv/kcontrol/notifications/index.docbook share/doc/HTML/sv/kcontrol/region_language/index.cache.bz2 share/doc/HTML/sv/kcontrol/region_language/index.docbook share/doc/HTML/sv/kcontrol/screenlocker/index.cache.bz2 share/doc/HTML/sv/kcontrol/screenlocker/index.docbook share/doc/HTML/sv/klipper/index.cache.bz2 share/doc/HTML/sv/klipper/index.docbook share/doc/HTML/tr/kcontrol/autostart/index.cache.bz2 share/doc/HTML/tr/kcontrol/autostart/index.docbook share/doc/HTML/tr/kcontrol/colors/index.cache.bz2 share/doc/HTML/tr/kcontrol/colors/index.docbook share/doc/HTML/tr/kcontrol/componentchooser/index.cache.bz2 share/doc/HTML/tr/kcontrol/componentchooser/index.docbook share/doc/HTML/tr/kcontrol/cursortheme/index.cache.bz2 share/doc/HTML/tr/kcontrol/cursortheme/index.docbook share/doc/HTML/tr/kcontrol/desktopthemedetails/index.cache.bz2 share/doc/HTML/tr/kcontrol/desktopthemedetails/index.docbook share/doc/HTML/tr/kcontrol/fontinst/index.cache.bz2 share/doc/HTML/tr/kcontrol/fontinst/index.docbook share/doc/HTML/tr/kcontrol/fonts/index.cache.bz2 share/doc/HTML/tr/kcontrol/fonts/index.docbook share/doc/HTML/tr/kcontrol/icons/index.cache.bz2 share/doc/HTML/tr/kcontrol/icons/index.docbook share/doc/HTML/tr/kcontrol/kcmstyle/index.cache.bz2 share/doc/HTML/tr/kcontrol/kcmstyle/index.docbook share/doc/HTML/tr/kcontrol/lookandfeel/index.cache.bz2 share/doc/HTML/tr/kcontrol/lookandfeel/index.docbook share/doc/HTML/tr/kcontrol/notifications/index.cache.bz2 share/doc/HTML/tr/kcontrol/notifications/index.docbook share/doc/HTML/tr/kcontrol/region_language/index.cache.bz2 share/doc/HTML/tr/kcontrol/region_language/index.docbook share/doc/HTML/tr/kcontrol/screenlocker/index.cache.bz2 share/doc/HTML/tr/kcontrol/screenlocker/index.docbook share/doc/HTML/tr/klipper/index.cache.bz2 share/doc/HTML/tr/klipper/index.docbook share/doc/HTML/uk/kcontrol/autostart/index.cache.bz2 share/doc/HTML/uk/kcontrol/autostart/index.docbook share/doc/HTML/uk/kcontrol/colors/index.cache.bz2 share/doc/HTML/uk/kcontrol/colors/index.docbook share/doc/HTML/uk/kcontrol/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/fontinst/index.cache.bz2 share/doc/HTML/uk/kcontrol/fontinst/index.docbook share/doc/HTML/uk/kcontrol/fonts/adjust-all.png share/doc/HTML/uk/kcontrol/fonts/index.cache.bz2 share/doc/HTML/uk/kcontrol/fonts/index.docbook -share/doc/HTML/uk/kcontrol/formats/index.cache.bz2 -share/doc/HTML/uk/kcontrol/formats/index.docbook share/doc/HTML/uk/kcontrol/icons/get-new-theme.png share/doc/HTML/uk/kcontrol/icons/index.cache.bz2 share/doc/HTML/uk/kcontrol/icons/index.docbook share/doc/HTML/uk/kcontrol/icons/main.png share/doc/HTML/uk/kcontrol/icons/use-of-icons.png share/doc/HTML/uk/kcontrol/kcmstyle/index.cache.bz2 share/doc/HTML/uk/kcontrol/kcmstyle/index.docbook share/doc/HTML/uk/kcontrol/lookandfeel/index.cache.bz2 share/doc/HTML/uk/kcontrol/lookandfeel/index.docbook share/doc/HTML/uk/kcontrol/notifications/index.cache.bz2 share/doc/HTML/uk/kcontrol/notifications/index.docbook share/doc/HTML/uk/kcontrol/region_language/index.cache.bz2 share/doc/HTML/uk/kcontrol/region_language/index.docbook share/doc/HTML/uk/kcontrol/screenlocker/index.cache.bz2 share/doc/HTML/uk/kcontrol/screenlocker/index.docbook share/doc/HTML/uk/klipper/index.cache.bz2 share/doc/HTML/uk/klipper/index.docbook share/doc/HTML/uk/klipper/klipper-widget.png share/doc/HTML/uk/klipper/screenshot.png share/icons/hicolor/128x128/mimetypes/fonts-package.png share/icons/hicolor/16x16/apps/kfontview.png share/icons/hicolor/16x16/mimetypes/fonts-package.png share/icons/hicolor/22x22/apps/kfontview.png share/icons/hicolor/22x22/mimetypes/fonts-package.png share/icons/hicolor/32x32/apps/kfontview.png share/icons/hicolor/32x32/mimetypes/fonts-package.png share/icons/hicolor/48x48/apps/kfontview.png share/icons/hicolor/48x48/mimetypes/fonts-package.png share/icons/hicolor/64x64/apps/kfontview.png share/icons/hicolor/64x64/mimetypes/fonts-package.png share/icons/hicolor/scalable/apps/preferences-desktop-font-installer.svgz share/kconf_update/migrate-calendar-to-plugin-id.py share/kconf_update/migrate-calendar-to-plugin-id.upd share/kconf_update/plasma6.0-remove-dpi-settings.upd share/kconf_update/plasma6.0-remove-old-shortcuts.upd share/kconf_update/plasma6.3-update-clipboard-database-2-to-3.upd share/kconf_update/plasma6.4-migrate-fullscreen-notifications-to-dnd.upd share/kconf_update/plasmashell-6.0-keep-custom-position-of-panels.upd share/kconf_update/plasmashell-6.0-keep-default-floating-setting-for-plasma-5-panels.upd share/kconf_update/plasmashell-6.5-remove-stop-activity-shortcut.upd share/kfontinst/icons/hicolor/16x16/actions/addfont.png share/kfontinst/icons/hicolor/16x16/actions/font-disable.png share/kfontinst/icons/hicolor/16x16/actions/font-enable.png share/kfontinst/icons/hicolor/16x16/actions/fontstatus.png share/kfontinst/icons/hicolor/22x22/actions/addfont.png share/kfontinst/icons/hicolor/22x22/actions/font-disable.png share/kfontinst/icons/hicolor/22x22/actions/font-enable.png share/kfontinst/icons/hicolor/22x22/actions/fontstatus.png share/kglobalaccel/org.kde.krunner.desktop share/kio/servicemenus/installfont.desktop share/kio_desktop/directory.desktop share/kio_desktop/directory.trash share/knotifications6/devicenotifications.notifyrc share/knotifications6/donationmessage.notifyrc share/knotifications6/freespacenotifier.notifyrc share/knotifications6/libnotificationmanager.notifyrc share/knotifications6/oom-notifier.notifyrc -share/knotifications6/phonon.notifyrc share/knsrcfiles/colorschemes.knsrc share/knsrcfiles/gtk_themes.knsrc share/knsrcfiles/icons.knsrc share/knsrcfiles/kfontinst.knsrc share/knsrcfiles/lookandfeel.knsrc share/knsrcfiles/plasma-themes.knsrc share/knsrcfiles/plasmoids.knsrc share/knsrcfiles/wallpaper-mobile.knsrc share/knsrcfiles/wallpaper.knsrc share/knsrcfiles/wallpaperplugin.knsrc share/knsrcfiles/xcursor.knsrc share/konqsidebartng/virtual_folders/services/fonts.desktop share/krunner/dbusplugins/plasma-runner-baloosearch.desktop share/kstyle/themes/qtcde.themerc share/kstyle/themes/qtcleanlooks.themerc share/kstyle/themes/qtgtk.themerc share/kstyle/themes/qtmotif.themerc share/kstyle/themes/qtplastique.themerc share/kstyle/themes/qtwindows.themerc share/kxmlgui5/kfontview/kfontviewui.rc share/kxmlgui5/kfontviewpart/kfontviewpart.rc share/locale/af/LC_MESSAGES/kcm_colors.mo share/locale/af/LC_MESSAGES/kcm_componentchooser.mo share/locale/af/LC_MESSAGES/kcm_cursortheme.mo share/locale/af/LC_MESSAGES/kcm_fonts.mo share/locale/af/LC_MESSAGES/kcm_icons.mo share/locale/af/LC_MESSAGES/kcm_style.mo share/locale/af/LC_MESSAGES/kfontinst.mo share/locale/af/LC_MESSAGES/kio_applications.mo share/locale/af/LC_MESSAGES/klipper.mo share/locale/af/LC_MESSAGES/krdb.mo share/locale/af/LC_MESSAGES/ksmserver.mo share/locale/ar/LC_MESSAGES/freespacenotifier.mo share/locale/ar/LC_MESSAGES/kcm_autostart.mo share/locale/ar/LC_MESSAGES/kcm_colors.mo share/locale/ar/LC_MESSAGES/kcm_componentchooser.mo share/locale/ar/LC_MESSAGES/kcm_cursortheme.mo share/locale/ar/LC_MESSAGES/kcm_desktoptheme.mo share/locale/ar/LC_MESSAGES/kcm_feedback.mo share/locale/ar/LC_MESSAGES/kcm_fonts.mo share/locale/ar/LC_MESSAGES/kcm_icons.mo share/locale/ar/LC_MESSAGES/kcm_lookandfeel.mo share/locale/ar/LC_MESSAGES/kcm_nightlight.mo share/locale/ar/LC_MESSAGES/kcm_nighttime.mo share/locale/ar/LC_MESSAGES/kcm_notifications.mo share/locale/ar/LC_MESSAGES/kcm_regionandlang.mo share/locale/ar/LC_MESSAGES/kcm_soundtheme.mo share/locale/ar/LC_MESSAGES/kcm_style.mo share/locale/ar/LC_MESSAGES/kcm_users.mo share/locale/ar/LC_MESSAGES/kcm_wallpaper.mo share/locale/ar/LC_MESSAGES/kcminit.mo share/locale/ar/LC_MESSAGES/kded_devicenotifications.mo share/locale/ar/LC_MESSAGES/kded_donationmessage.mo share/locale/ar/LC_MESSAGES/kded_geotimezoned.mo share/locale/ar/LC_MESSAGES/kfontinst.mo share/locale/ar/LC_MESSAGES/kio_applications.mo share/locale/ar/LC_MESSAGES/kio_desktop.mo share/locale/ar/LC_MESSAGES/klipper.mo share/locale/ar/LC_MESSAGES/krdb.mo share/locale/ar/LC_MESSAGES/krunner.mo +share/locale/ar/LC_MESSAGES/ksecretprompter.mo share/locale/ar/LC_MESSAGES/ksmserver.mo share/locale/ar/LC_MESSAGES/libkicker.mo share/locale/ar/LC_MESSAGES/libkmpris.mo share/locale/ar/LC_MESSAGES/libkworkspace.mo share/locale/ar/LC_MESSAGES/libnotificationmanager.mo share/locale/ar/LC_MESSAGES/oom-notifier.mo -share/locale/ar/LC_MESSAGES/phonon_kde_plugin.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.systemtray.mo share/locale/ar/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/ar/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/ar/LC_MESSAGES/plasma_containmentactions_switchwindow.mo -share/locale/ar/LC_MESSAGES/plasma_engine_applicationjobs.mo -share/locale/ar/LC_MESSAGES/plasma_engine_notifications.mo -share/locale/ar/LC_MESSAGES/plasma_engine_time.mo share/locale/ar/LC_MESSAGES/plasma_interactiveconsole.mo share/locale/ar/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/ar/LC_MESSAGES/plasma_runner_appstream.mo share/locale/ar/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/ar/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/ar/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/ar/LC_MESSAGES/plasma_runner_kill.mo share/locale/ar/LC_MESSAGES/plasma_runner_locations.mo share/locale/ar/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/ar/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/ar/LC_MESSAGES/plasma_runner_services.mo share/locale/ar/LC_MESSAGES/plasma_runner_sessions.mo share/locale/ar/LC_MESSAGES/plasma_runner_shell.mo share/locale/ar/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/ar/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/ar/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/ar/LC_MESSAGES/plasmashell.mo share/locale/ar/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/ar/LC_MESSAGES/plasmawindowed.mo share/locale/ar/LC_MESSAGES/session-shortcuts-kded.mo share/locale/ar/LC_MESSAGES/soliduiserver.mo share/locale/ast/LC_MESSAGES/freespacenotifier.mo share/locale/ast/LC_MESSAGES/kcm_autostart.mo share/locale/ast/LC_MESSAGES/kcm_colors.mo share/locale/ast/LC_MESSAGES/kcm_componentchooser.mo share/locale/ast/LC_MESSAGES/kcm_cursortheme.mo share/locale/ast/LC_MESSAGES/kcm_desktoptheme.mo share/locale/ast/LC_MESSAGES/kcm_feedback.mo share/locale/ast/LC_MESSAGES/kcm_fonts.mo share/locale/ast/LC_MESSAGES/kcm_icons.mo share/locale/ast/LC_MESSAGES/kcm_lookandfeel.mo share/locale/ast/LC_MESSAGES/kcm_nightlight.mo share/locale/ast/LC_MESSAGES/kcm_notifications.mo share/locale/ast/LC_MESSAGES/kcm_regionandlang.mo share/locale/ast/LC_MESSAGES/kcm_soundtheme.mo share/locale/ast/LC_MESSAGES/kcm_style.mo share/locale/ast/LC_MESSAGES/kcm_users.mo share/locale/ast/LC_MESSAGES/kcminit.mo share/locale/ast/LC_MESSAGES/kded_devicenotifications.mo share/locale/ast/LC_MESSAGES/kfontinst.mo share/locale/ast/LC_MESSAGES/kio_applications.mo share/locale/ast/LC_MESSAGES/kio_desktop.mo share/locale/ast/LC_MESSAGES/klipper.mo share/locale/ast/LC_MESSAGES/krdb.mo share/locale/ast/LC_MESSAGES/krunner.mo share/locale/ast/LC_MESSAGES/ksmserver.mo share/locale/ast/LC_MESSAGES/libkicker.mo share/locale/ast/LC_MESSAGES/libkmpris.mo share/locale/ast/LC_MESSAGES/libkworkspace.mo share/locale/ast/LC_MESSAGES/libnotificationmanager.mo -share/locale/ast/LC_MESSAGES/phonon_kde_plugin.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.systemtray.mo share/locale/ast/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/ast/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/ast/LC_MESSAGES/plasma_containmentactions_switchwindow.mo -share/locale/ast/LC_MESSAGES/plasma_engine_applicationjobs.mo -share/locale/ast/LC_MESSAGES/plasma_engine_notifications.mo -share/locale/ast/LC_MESSAGES/plasma_engine_time.mo share/locale/ast/LC_MESSAGES/plasma_interactiveconsole.mo share/locale/ast/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/ast/LC_MESSAGES/plasma_runner_appstream.mo share/locale/ast/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/ast/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/ast/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/ast/LC_MESSAGES/plasma_runner_kill.mo share/locale/ast/LC_MESSAGES/plasma_runner_locations.mo share/locale/ast/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/ast/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/ast/LC_MESSAGES/plasma_runner_services.mo share/locale/ast/LC_MESSAGES/plasma_runner_sessions.mo share/locale/ast/LC_MESSAGES/plasma_runner_shell.mo share/locale/ast/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/ast/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/ast/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/ast/LC_MESSAGES/plasmashell.mo share/locale/ast/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/ast/LC_MESSAGES/plasmawindowed.mo share/locale/ast/LC_MESSAGES/session-shortcuts-kded.mo share/locale/ast/LC_MESSAGES/soliduiserver.mo share/locale/az/LC_MESSAGES/freespacenotifier.mo share/locale/az/LC_MESSAGES/kcm_autostart.mo share/locale/az/LC_MESSAGES/kcm_colors.mo share/locale/az/LC_MESSAGES/kcm_componentchooser.mo share/locale/az/LC_MESSAGES/kcm_cursortheme.mo share/locale/az/LC_MESSAGES/kcm_desktoptheme.mo share/locale/az/LC_MESSAGES/kcm_feedback.mo share/locale/az/LC_MESSAGES/kcm_fonts.mo share/locale/az/LC_MESSAGES/kcm_icons.mo share/locale/az/LC_MESSAGES/kcm_lookandfeel.mo share/locale/az/LC_MESSAGES/kcm_nightlight.mo +share/locale/az/LC_MESSAGES/kcm_nighttime.mo share/locale/az/LC_MESSAGES/kcm_notifications.mo share/locale/az/LC_MESSAGES/kcm_regionandlang.mo share/locale/az/LC_MESSAGES/kcm_soundtheme.mo share/locale/az/LC_MESSAGES/kcm_style.mo share/locale/az/LC_MESSAGES/kcm_users.mo +share/locale/az/LC_MESSAGES/kcm_wallpaper.mo share/locale/az/LC_MESSAGES/kcminit.mo share/locale/az/LC_MESSAGES/kded_devicenotifications.mo share/locale/az/LC_MESSAGES/kded_donationmessage.mo share/locale/az/LC_MESSAGES/kded_geotimezoned.mo share/locale/az/LC_MESSAGES/kfontinst.mo share/locale/az/LC_MESSAGES/kio_applications.mo share/locale/az/LC_MESSAGES/kio_desktop.mo share/locale/az/LC_MESSAGES/klipper.mo share/locale/az/LC_MESSAGES/krdb.mo share/locale/az/LC_MESSAGES/krunner.mo share/locale/az/LC_MESSAGES/ksmserver.mo share/locale/az/LC_MESSAGES/libkicker.mo share/locale/az/LC_MESSAGES/libkmpris.mo share/locale/az/LC_MESSAGES/libkworkspace.mo share/locale/az/LC_MESSAGES/libnotificationmanager.mo share/locale/az/LC_MESSAGES/oom-notifier.mo -share/locale/az/LC_MESSAGES/phonon_kde_plugin.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.systemtray.mo share/locale/az/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/az/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/az/LC_MESSAGES/plasma_containmentactions_switchwindow.mo -share/locale/az/LC_MESSAGES/plasma_engine_applicationjobs.mo -share/locale/az/LC_MESSAGES/plasma_engine_notifications.mo -share/locale/az/LC_MESSAGES/plasma_engine_time.mo share/locale/az/LC_MESSAGES/plasma_interactiveconsole.mo share/locale/az/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/az/LC_MESSAGES/plasma_runner_appstream.mo share/locale/az/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/az/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/az/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/az/LC_MESSAGES/plasma_runner_kill.mo share/locale/az/LC_MESSAGES/plasma_runner_locations.mo share/locale/az/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/az/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/az/LC_MESSAGES/plasma_runner_services.mo share/locale/az/LC_MESSAGES/plasma_runner_sessions.mo share/locale/az/LC_MESSAGES/plasma_runner_shell.mo share/locale/az/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/az/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/az/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/az/LC_MESSAGES/plasmashell.mo share/locale/az/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/az/LC_MESSAGES/plasmawindowed.mo share/locale/az/LC_MESSAGES/session-shortcuts-kded.mo share/locale/az/LC_MESSAGES/soliduiserver.mo share/locale/be/LC_MESSAGES/freespacenotifier.mo share/locale/be/LC_MESSAGES/kcm_autostart.mo share/locale/be/LC_MESSAGES/kcm_colors.mo share/locale/be/LC_MESSAGES/kcm_componentchooser.mo share/locale/be/LC_MESSAGES/kcm_cursortheme.mo share/locale/be/LC_MESSAGES/kcm_desktoptheme.mo share/locale/be/LC_MESSAGES/kcm_feedback.mo share/locale/be/LC_MESSAGES/kcm_fonts.mo share/locale/be/LC_MESSAGES/kcm_icons.mo share/locale/be/LC_MESSAGES/kcm_lookandfeel.mo share/locale/be/LC_MESSAGES/kcm_nightlight.mo share/locale/be/LC_MESSAGES/kcm_notifications.mo share/locale/be/LC_MESSAGES/kcm_regionandlang.mo share/locale/be/LC_MESSAGES/kcm_soundtheme.mo share/locale/be/LC_MESSAGES/kcm_style.mo share/locale/be/LC_MESSAGES/kcm_users.mo share/locale/be/LC_MESSAGES/kcminit.mo share/locale/be/LC_MESSAGES/kded_devicenotifications.mo share/locale/be/LC_MESSAGES/kded_donationmessage.mo share/locale/be/LC_MESSAGES/kfontinst.mo share/locale/be/LC_MESSAGES/kio_applications.mo share/locale/be/LC_MESSAGES/kio_desktop.mo share/locale/be/LC_MESSAGES/klipper.mo share/locale/be/LC_MESSAGES/krdb.mo share/locale/be/LC_MESSAGES/krunner.mo share/locale/be/LC_MESSAGES/ksmserver.mo share/locale/be/LC_MESSAGES/libkicker.mo share/locale/be/LC_MESSAGES/libkmpris.mo share/locale/be/LC_MESSAGES/libkworkspace.mo share/locale/be/LC_MESSAGES/libnotificationmanager.mo share/locale/be/LC_MESSAGES/oom-notifier.mo -share/locale/be/LC_MESSAGES/phonon_kde_plugin.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.systemtray.mo share/locale/be/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/be/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/be/LC_MESSAGES/plasma_containmentactions_switchwindow.mo -share/locale/be/LC_MESSAGES/plasma_engine_applicationjobs.mo -share/locale/be/LC_MESSAGES/plasma_engine_notifications.mo -share/locale/be/LC_MESSAGES/plasma_engine_time.mo share/locale/be/LC_MESSAGES/plasma_interactiveconsole.mo share/locale/be/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/be/LC_MESSAGES/plasma_runner_appstream.mo share/locale/be/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/be/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/be/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/be/LC_MESSAGES/plasma_runner_kill.mo share/locale/be/LC_MESSAGES/plasma_runner_locations.mo share/locale/be/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/be/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/be/LC_MESSAGES/plasma_runner_services.mo share/locale/be/LC_MESSAGES/plasma_runner_sessions.mo share/locale/be/LC_MESSAGES/plasma_runner_shell.mo share/locale/be/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/be/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/be/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/be/LC_MESSAGES/plasmashell.mo share/locale/be/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/be/LC_MESSAGES/plasmawindowed.mo share/locale/be/LC_MESSAGES/session-shortcuts-kded.mo share/locale/be/LC_MESSAGES/soliduiserver.mo share/locale/be@latin/LC_MESSAGES/kcm_autostart.mo share/locale/be@latin/LC_MESSAGES/kcm_colors.mo share/locale/be@latin/LC_MESSAGES/kcm_icons.mo share/locale/be@latin/LC_MESSAGES/kcminit.mo share/locale/be@latin/LC_MESSAGES/kio_applications.mo share/locale/be@latin/LC_MESSAGES/klipper.mo share/locale/be@latin/LC_MESSAGES/krdb.mo share/locale/be@latin/LC_MESSAGES/libkworkspace.mo -share/locale/be@latin/LC_MESSAGES/phonon_kde_plugin.mo share/locale/be@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/be@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo -share/locale/be@latin/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/be@latin/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/be@latin/LC_MESSAGES/soliduiserver.mo share/locale/bg/LC_MESSAGES/freespacenotifier.mo share/locale/bg/LC_MESSAGES/kcm_autostart.mo share/locale/bg/LC_MESSAGES/kcm_colors.mo share/locale/bg/LC_MESSAGES/kcm_componentchooser.mo share/locale/bg/LC_MESSAGES/kcm_cursortheme.mo share/locale/bg/LC_MESSAGES/kcm_desktoptheme.mo share/locale/bg/LC_MESSAGES/kcm_feedback.mo share/locale/bg/LC_MESSAGES/kcm_fonts.mo share/locale/bg/LC_MESSAGES/kcm_icons.mo share/locale/bg/LC_MESSAGES/kcm_lookandfeel.mo share/locale/bg/LC_MESSAGES/kcm_nightlight.mo share/locale/bg/LC_MESSAGES/kcm_nighttime.mo share/locale/bg/LC_MESSAGES/kcm_notifications.mo share/locale/bg/LC_MESSAGES/kcm_regionandlang.mo share/locale/bg/LC_MESSAGES/kcm_soundtheme.mo share/locale/bg/LC_MESSAGES/kcm_style.mo share/locale/bg/LC_MESSAGES/kcm_users.mo share/locale/bg/LC_MESSAGES/kcm_wallpaper.mo share/locale/bg/LC_MESSAGES/kcminit.mo share/locale/bg/LC_MESSAGES/kded_devicenotifications.mo share/locale/bg/LC_MESSAGES/kded_donationmessage.mo share/locale/bg/LC_MESSAGES/kded_geotimezoned.mo share/locale/bg/LC_MESSAGES/kfontinst.mo share/locale/bg/LC_MESSAGES/kio_applications.mo share/locale/bg/LC_MESSAGES/kio_desktop.mo share/locale/bg/LC_MESSAGES/klipper.mo share/locale/bg/LC_MESSAGES/krdb.mo share/locale/bg/LC_MESSAGES/krunner.mo +share/locale/bg/LC_MESSAGES/ksecretprompter.mo share/locale/bg/LC_MESSAGES/ksmserver.mo share/locale/bg/LC_MESSAGES/libkicker.mo share/locale/bg/LC_MESSAGES/libkmpris.mo share/locale/bg/LC_MESSAGES/libkworkspace.mo share/locale/bg/LC_MESSAGES/libnotificationmanager.mo share/locale/bg/LC_MESSAGES/oom-notifier.mo -share/locale/bg/LC_MESSAGES/phonon_kde_plugin.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.systemtray.mo share/locale/bg/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/bg/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/bg/LC_MESSAGES/plasma_containmentactions_switchwindow.mo -share/locale/bg/LC_MESSAGES/plasma_engine_applicationjobs.mo -share/locale/bg/LC_MESSAGES/plasma_engine_notifications.mo -share/locale/bg/LC_MESSAGES/plasma_engine_time.mo share/locale/bg/LC_MESSAGES/plasma_interactiveconsole.mo share/locale/bg/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/bg/LC_MESSAGES/plasma_runner_appstream.mo share/locale/bg/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/bg/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/bg/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/bg/LC_MESSAGES/plasma_runner_kill.mo share/locale/bg/LC_MESSAGES/plasma_runner_locations.mo share/locale/bg/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/bg/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/bg/LC_MESSAGES/plasma_runner_services.mo share/locale/bg/LC_MESSAGES/plasma_runner_sessions.mo share/locale/bg/LC_MESSAGES/plasma_runner_shell.mo share/locale/bg/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/bg/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/bg/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/bg/LC_MESSAGES/plasmashell.mo share/locale/bg/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/bg/LC_MESSAGES/plasmawindowed.mo share/locale/bg/LC_MESSAGES/session-shortcuts-kded.mo share/locale/bg/LC_MESSAGES/soliduiserver.mo share/locale/bn/LC_MESSAGES/kcm_componentchooser.mo share/locale/bn/LC_MESSAGES/kcm_fonts.mo share/locale/bn/LC_MESSAGES/kcm_icons.mo share/locale/bn/LC_MESSAGES/kcm_style.mo share/locale/bn/LC_MESSAGES/kfontinst.mo share/locale/bn/LC_MESSAGES/klipper.mo share/locale/bn/LC_MESSAGES/ksmserver.mo share/locale/bn_IN/LC_MESSAGES/kcm_autostart.mo share/locale/bn_IN/LC_MESSAGES/kcm_colors.mo share/locale/bn_IN/LC_MESSAGES/kcm_desktoptheme.mo share/locale/bn_IN/LC_MESSAGES/kcm_icons.mo share/locale/bn_IN/LC_MESSAGES/kcm_style.mo share/locale/bn_IN/LC_MESSAGES/kcminit.mo share/locale/bn_IN/LC_MESSAGES/kfontinst.mo share/locale/bn_IN/LC_MESSAGES/kio_applications.mo share/locale/bn_IN/LC_MESSAGES/klipper.mo share/locale/bn_IN/LC_MESSAGES/krdb.mo share/locale/bn_IN/LC_MESSAGES/ksmserver.mo share/locale/bn_IN/LC_MESSAGES/libkworkspace.mo -share/locale/bn_IN/LC_MESSAGES/phonon_kde_plugin.mo share/locale/bn_IN/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/bn_IN/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo -share/locale/bn_IN/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/bn_IN/LC_MESSAGES/plasma_runner_locations.mo share/locale/bn_IN/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/bn_IN/LC_MESSAGES/plasma_runner_sessions.mo share/locale/bn_IN/LC_MESSAGES/plasma_runner_shell.mo share/locale/bn_IN/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/bn_IN/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/bn_IN/LC_MESSAGES/soliduiserver.mo share/locale/br/LC_MESSAGES/kcm_colors.mo share/locale/br/LC_MESSAGES/kcm_componentchooser.mo share/locale/br/LC_MESSAGES/kcm_cursortheme.mo share/locale/br/LC_MESSAGES/kcm_fonts.mo share/locale/br/LC_MESSAGES/kcm_icons.mo share/locale/br/LC_MESSAGES/kcm_style.mo share/locale/br/LC_MESSAGES/kfontinst.mo share/locale/br/LC_MESSAGES/kio_applications.mo share/locale/br/LC_MESSAGES/klipper.mo share/locale/br/LC_MESSAGES/ksmserver.mo share/locale/bs/LC_MESSAGES/freespacenotifier.mo share/locale/bs/LC_MESSAGES/kcm_autostart.mo share/locale/bs/LC_MESSAGES/kcm_colors.mo share/locale/bs/LC_MESSAGES/kcm_componentchooser.mo share/locale/bs/LC_MESSAGES/kcm_cursortheme.mo share/locale/bs/LC_MESSAGES/kcm_desktoptheme.mo share/locale/bs/LC_MESSAGES/kcm_fonts.mo share/locale/bs/LC_MESSAGES/kcm_icons.mo share/locale/bs/LC_MESSAGES/kcm_lookandfeel.mo share/locale/bs/LC_MESSAGES/kcm_style.mo share/locale/bs/LC_MESSAGES/kcminit.mo share/locale/bs/LC_MESSAGES/kfontinst.mo share/locale/bs/LC_MESSAGES/kio_applications.mo share/locale/bs/LC_MESSAGES/klipper.mo share/locale/bs/LC_MESSAGES/krdb.mo share/locale/bs/LC_MESSAGES/krunner.mo share/locale/bs/LC_MESSAGES/ksmserver.mo share/locale/bs/LC_MESSAGES/libkicker.mo share/locale/bs/LC_MESSAGES/libkworkspace.mo -share/locale/bs/LC_MESSAGES/phonon_kde_plugin.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.systemtray.mo share/locale/bs/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/bs/LC_MESSAGES/plasma_containmentactions_switchwindow.mo -share/locale/bs/LC_MESSAGES/plasma_engine_applicationjobs.mo -share/locale/bs/LC_MESSAGES/plasma_engine_notifications.mo -share/locale/bs/LC_MESSAGES/plasma_engine_time.mo share/locale/bs/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/bs/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/bs/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/bs/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/bs/LC_MESSAGES/plasma_runner_kill.mo share/locale/bs/LC_MESSAGES/plasma_runner_locations.mo share/locale/bs/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/bs/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/bs/LC_MESSAGES/plasma_runner_services.mo share/locale/bs/LC_MESSAGES/plasma_runner_sessions.mo share/locale/bs/LC_MESSAGES/plasma_runner_shell.mo share/locale/bs/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/bs/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/bs/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/bs/LC_MESSAGES/plasmashell.mo share/locale/bs/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/bs/LC_MESSAGES/soliduiserver.mo share/locale/ca/LC_MESSAGES/freespacenotifier.mo share/locale/ca/LC_MESSAGES/kcm_autostart.mo share/locale/ca/LC_MESSAGES/kcm_colors.mo share/locale/ca/LC_MESSAGES/kcm_componentchooser.mo share/locale/ca/LC_MESSAGES/kcm_cursortheme.mo share/locale/ca/LC_MESSAGES/kcm_desktoptheme.mo share/locale/ca/LC_MESSAGES/kcm_feedback.mo share/locale/ca/LC_MESSAGES/kcm_fonts.mo share/locale/ca/LC_MESSAGES/kcm_icons.mo share/locale/ca/LC_MESSAGES/kcm_lookandfeel.mo share/locale/ca/LC_MESSAGES/kcm_nightlight.mo share/locale/ca/LC_MESSAGES/kcm_nighttime.mo share/locale/ca/LC_MESSAGES/kcm_notifications.mo share/locale/ca/LC_MESSAGES/kcm_regionandlang.mo share/locale/ca/LC_MESSAGES/kcm_soundtheme.mo share/locale/ca/LC_MESSAGES/kcm_style.mo share/locale/ca/LC_MESSAGES/kcm_users.mo share/locale/ca/LC_MESSAGES/kcm_wallpaper.mo share/locale/ca/LC_MESSAGES/kcminit.mo share/locale/ca/LC_MESSAGES/kded_devicenotifications.mo share/locale/ca/LC_MESSAGES/kded_donationmessage.mo share/locale/ca/LC_MESSAGES/kded_geotimezoned.mo share/locale/ca/LC_MESSAGES/kfontinst.mo share/locale/ca/LC_MESSAGES/kio_applications.mo share/locale/ca/LC_MESSAGES/kio_desktop.mo share/locale/ca/LC_MESSAGES/klipper.mo share/locale/ca/LC_MESSAGES/krdb.mo share/locale/ca/LC_MESSAGES/krunner.mo +share/locale/ca/LC_MESSAGES/ksecretprompter.mo share/locale/ca/LC_MESSAGES/ksmserver.mo share/locale/ca/LC_MESSAGES/libkicker.mo share/locale/ca/LC_MESSAGES/libkmpris.mo share/locale/ca/LC_MESSAGES/libkworkspace.mo share/locale/ca/LC_MESSAGES/libnotificationmanager.mo share/locale/ca/LC_MESSAGES/oom-notifier.mo -share/locale/ca/LC_MESSAGES/phonon_kde_plugin.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.systemtray.mo share/locale/ca/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/ca/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/ca/LC_MESSAGES/plasma_containmentactions_switchwindow.mo -share/locale/ca/LC_MESSAGES/plasma_engine_applicationjobs.mo -share/locale/ca/LC_MESSAGES/plasma_engine_notifications.mo -share/locale/ca/LC_MESSAGES/plasma_engine_time.mo share/locale/ca/LC_MESSAGES/plasma_interactiveconsole.mo share/locale/ca/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/ca/LC_MESSAGES/plasma_runner_appstream.mo share/locale/ca/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/ca/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/ca/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/ca/LC_MESSAGES/plasma_runner_kill.mo share/locale/ca/LC_MESSAGES/plasma_runner_locations.mo share/locale/ca/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/ca/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/ca/LC_MESSAGES/plasma_runner_services.mo share/locale/ca/LC_MESSAGES/plasma_runner_sessions.mo share/locale/ca/LC_MESSAGES/plasma_runner_shell.mo share/locale/ca/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/ca/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/ca/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/ca/LC_MESSAGES/plasmashell.mo share/locale/ca/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/ca/LC_MESSAGES/plasmawindowed.mo share/locale/ca/LC_MESSAGES/session-shortcuts-kded.mo share/locale/ca/LC_MESSAGES/soliduiserver.mo share/locale/ca@valencia/LC_MESSAGES/freespacenotifier.mo share/locale/ca@valencia/LC_MESSAGES/kcm_autostart.mo share/locale/ca@valencia/LC_MESSAGES/kcm_colors.mo share/locale/ca@valencia/LC_MESSAGES/kcm_componentchooser.mo share/locale/ca@valencia/LC_MESSAGES/kcm_cursortheme.mo share/locale/ca@valencia/LC_MESSAGES/kcm_desktoptheme.mo share/locale/ca@valencia/LC_MESSAGES/kcm_feedback.mo share/locale/ca@valencia/LC_MESSAGES/kcm_fonts.mo share/locale/ca@valencia/LC_MESSAGES/kcm_icons.mo share/locale/ca@valencia/LC_MESSAGES/kcm_lookandfeel.mo share/locale/ca@valencia/LC_MESSAGES/kcm_nightlight.mo share/locale/ca@valencia/LC_MESSAGES/kcm_nighttime.mo share/locale/ca@valencia/LC_MESSAGES/kcm_notifications.mo share/locale/ca@valencia/LC_MESSAGES/kcm_regionandlang.mo share/locale/ca@valencia/LC_MESSAGES/kcm_soundtheme.mo share/locale/ca@valencia/LC_MESSAGES/kcm_style.mo share/locale/ca@valencia/LC_MESSAGES/kcm_users.mo share/locale/ca@valencia/LC_MESSAGES/kcm_wallpaper.mo share/locale/ca@valencia/LC_MESSAGES/kcminit.mo share/locale/ca@valencia/LC_MESSAGES/kded_devicenotifications.mo share/locale/ca@valencia/LC_MESSAGES/kded_donationmessage.mo share/locale/ca@valencia/LC_MESSAGES/kded_geotimezoned.mo share/locale/ca@valencia/LC_MESSAGES/kfontinst.mo share/locale/ca@valencia/LC_MESSAGES/kio_applications.mo share/locale/ca@valencia/LC_MESSAGES/kio_desktop.mo share/locale/ca@valencia/LC_MESSAGES/klipper.mo share/locale/ca@valencia/LC_MESSAGES/krdb.mo share/locale/ca@valencia/LC_MESSAGES/krunner.mo +share/locale/ca@valencia/LC_MESSAGES/ksecretprompter.mo share/locale/ca@valencia/LC_MESSAGES/ksmserver.mo share/locale/ca@valencia/LC_MESSAGES/libkicker.mo share/locale/ca@valencia/LC_MESSAGES/libkmpris.mo share/locale/ca@valencia/LC_MESSAGES/libkworkspace.mo share/locale/ca@valencia/LC_MESSAGES/libnotificationmanager.mo share/locale/ca@valencia/LC_MESSAGES/oom-notifier.mo -share/locale/ca@valencia/LC_MESSAGES/phonon_kde_plugin.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.systemtray.mo share/locale/ca@valencia/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/ca@valencia/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/ca@valencia/LC_MESSAGES/plasma_containmentactions_switchwindow.mo -share/locale/ca@valencia/LC_MESSAGES/plasma_engine_applicationjobs.mo -share/locale/ca@valencia/LC_MESSAGES/plasma_engine_notifications.mo -share/locale/ca@valencia/LC_MESSAGES/plasma_engine_time.mo share/locale/ca@valencia/LC_MESSAGES/plasma_interactiveconsole.mo share/locale/ca@valencia/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_appstream.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_kill.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_locations.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_services.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_sessions.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_shell.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/ca@valencia/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/ca@valencia/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/ca@valencia/LC_MESSAGES/plasmashell.mo share/locale/ca@valencia/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/ca@valencia/LC_MESSAGES/plasmawindowed.mo share/locale/ca@valencia/LC_MESSAGES/session-shortcuts-kded.mo share/locale/ca@valencia/LC_MESSAGES/soliduiserver.mo share/locale/cs/LC_MESSAGES/freespacenotifier.mo share/locale/cs/LC_MESSAGES/kcm_autostart.mo share/locale/cs/LC_MESSAGES/kcm_colors.mo share/locale/cs/LC_MESSAGES/kcm_componentchooser.mo share/locale/cs/LC_MESSAGES/kcm_cursortheme.mo share/locale/cs/LC_MESSAGES/kcm_desktoptheme.mo share/locale/cs/LC_MESSAGES/kcm_feedback.mo share/locale/cs/LC_MESSAGES/kcm_fonts.mo share/locale/cs/LC_MESSAGES/kcm_icons.mo share/locale/cs/LC_MESSAGES/kcm_lookandfeel.mo share/locale/cs/LC_MESSAGES/kcm_nightlight.mo share/locale/cs/LC_MESSAGES/kcm_nighttime.mo share/locale/cs/LC_MESSAGES/kcm_notifications.mo share/locale/cs/LC_MESSAGES/kcm_regionandlang.mo share/locale/cs/LC_MESSAGES/kcm_soundtheme.mo share/locale/cs/LC_MESSAGES/kcm_style.mo share/locale/cs/LC_MESSAGES/kcm_users.mo share/locale/cs/LC_MESSAGES/kcm_wallpaper.mo share/locale/cs/LC_MESSAGES/kcminit.mo share/locale/cs/LC_MESSAGES/kded_devicenotifications.mo share/locale/cs/LC_MESSAGES/kded_donationmessage.mo share/locale/cs/LC_MESSAGES/kded_geotimezoned.mo share/locale/cs/LC_MESSAGES/kfontinst.mo share/locale/cs/LC_MESSAGES/kio_applications.mo share/locale/cs/LC_MESSAGES/kio_desktop.mo share/locale/cs/LC_MESSAGES/klipper.mo share/locale/cs/LC_MESSAGES/krdb.mo share/locale/cs/LC_MESSAGES/krunner.mo share/locale/cs/LC_MESSAGES/ksmserver.mo share/locale/cs/LC_MESSAGES/libkicker.mo share/locale/cs/LC_MESSAGES/libkmpris.mo share/locale/cs/LC_MESSAGES/libkworkspace.mo share/locale/cs/LC_MESSAGES/libnotificationmanager.mo share/locale/cs/LC_MESSAGES/oom-notifier.mo -share/locale/cs/LC_MESSAGES/phonon_kde_plugin.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.systemtray.mo share/locale/cs/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/cs/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/cs/LC_MESSAGES/plasma_containmentactions_switchwindow.mo -share/locale/cs/LC_MESSAGES/plasma_engine_applicationjobs.mo -share/locale/cs/LC_MESSAGES/plasma_engine_notifications.mo -share/locale/cs/LC_MESSAGES/plasma_engine_time.mo share/locale/cs/LC_MESSAGES/plasma_interactiveconsole.mo share/locale/cs/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/cs/LC_MESSAGES/plasma_runner_appstream.mo share/locale/cs/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/cs/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/cs/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/cs/LC_MESSAGES/plasma_runner_kill.mo share/locale/cs/LC_MESSAGES/plasma_runner_locations.mo share/locale/cs/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/cs/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/cs/LC_MESSAGES/plasma_runner_services.mo share/locale/cs/LC_MESSAGES/plasma_runner_sessions.mo share/locale/cs/LC_MESSAGES/plasma_runner_shell.mo share/locale/cs/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/cs/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/cs/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/cs/LC_MESSAGES/plasmashell.mo share/locale/cs/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/cs/LC_MESSAGES/plasmawindowed.mo share/locale/cs/LC_MESSAGES/session-shortcuts-kded.mo share/locale/cs/LC_MESSAGES/soliduiserver.mo share/locale/csb/LC_MESSAGES/kcm_colors.mo share/locale/csb/LC_MESSAGES/kcm_componentchooser.mo share/locale/csb/LC_MESSAGES/kcm_fonts.mo share/locale/csb/LC_MESSAGES/kcm_icons.mo share/locale/csb/LC_MESSAGES/kcm_style.mo share/locale/csb/LC_MESSAGES/kcminit.mo share/locale/csb/LC_MESSAGES/kfontinst.mo share/locale/csb/LC_MESSAGES/kio_applications.mo share/locale/csb/LC_MESSAGES/klipper.mo share/locale/csb/LC_MESSAGES/krdb.mo share/locale/csb/LC_MESSAGES/ksmserver.mo share/locale/csb/LC_MESSAGES/libkworkspace.mo -share/locale/csb/LC_MESSAGES/phonon_kde_plugin.mo share/locale/csb/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/csb/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo -share/locale/csb/LC_MESSAGES/plasma_engine_applicationjobs.mo -share/locale/csb/LC_MESSAGES/plasma_engine_notifications.mo share/locale/csb/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/csb/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/csb/LC_MESSAGES/plasma_runner_locations.mo share/locale/csb/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/csb/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/csb/LC_MESSAGES/plasma_runner_services.mo share/locale/csb/LC_MESSAGES/plasma_runner_sessions.mo share/locale/csb/LC_MESSAGES/plasma_runner_shell.mo share/locale/csb/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/csb/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/csb/LC_MESSAGES/soliduiserver.mo share/locale/cy/LC_MESSAGES/kcm_colors.mo share/locale/cy/LC_MESSAGES/kcm_componentchooser.mo share/locale/cy/LC_MESSAGES/kcm_cursortheme.mo share/locale/cy/LC_MESSAGES/kcm_fonts.mo share/locale/cy/LC_MESSAGES/kcm_icons.mo share/locale/cy/LC_MESSAGES/kcm_style.mo share/locale/cy/LC_MESSAGES/kfontinst.mo share/locale/cy/LC_MESSAGES/kio_applications.mo share/locale/cy/LC_MESSAGES/klipper.mo share/locale/cy/LC_MESSAGES/krdb.mo share/locale/cy/LC_MESSAGES/ksmserver.mo share/locale/da/LC_MESSAGES/freespacenotifier.mo share/locale/da/LC_MESSAGES/kcm_autostart.mo share/locale/da/LC_MESSAGES/kcm_colors.mo share/locale/da/LC_MESSAGES/kcm_componentchooser.mo share/locale/da/LC_MESSAGES/kcm_cursortheme.mo share/locale/da/LC_MESSAGES/kcm_desktoptheme.mo share/locale/da/LC_MESSAGES/kcm_feedback.mo share/locale/da/LC_MESSAGES/kcm_fonts.mo share/locale/da/LC_MESSAGES/kcm_icons.mo share/locale/da/LC_MESSAGES/kcm_lookandfeel.mo share/locale/da/LC_MESSAGES/kcm_nightlight.mo share/locale/da/LC_MESSAGES/kcm_nighttime.mo share/locale/da/LC_MESSAGES/kcm_notifications.mo share/locale/da/LC_MESSAGES/kcm_regionandlang.mo share/locale/da/LC_MESSAGES/kcm_soundtheme.mo share/locale/da/LC_MESSAGES/kcm_style.mo share/locale/da/LC_MESSAGES/kcm_users.mo share/locale/da/LC_MESSAGES/kcminit.mo share/locale/da/LC_MESSAGES/kded_devicenotifications.mo share/locale/da/LC_MESSAGES/kded_donationmessage.mo share/locale/da/LC_MESSAGES/kded_geotimezoned.mo share/locale/da/LC_MESSAGES/kfontinst.mo share/locale/da/LC_MESSAGES/kio_applications.mo share/locale/da/LC_MESSAGES/kio_desktop.mo share/locale/da/LC_MESSAGES/klipper.mo share/locale/da/LC_MESSAGES/krdb.mo share/locale/da/LC_MESSAGES/krunner.mo share/locale/da/LC_MESSAGES/ksmserver.mo share/locale/da/LC_MESSAGES/libkicker.mo share/locale/da/LC_MESSAGES/libkmpris.mo share/locale/da/LC_MESSAGES/libkworkspace.mo share/locale/da/LC_MESSAGES/libnotificationmanager.mo share/locale/da/LC_MESSAGES/oom-notifier.mo -share/locale/da/LC_MESSAGES/phonon_kde_plugin.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.systemtray.mo share/locale/da/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/da/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/da/LC_MESSAGES/plasma_containmentactions_switchwindow.mo -share/locale/da/LC_MESSAGES/plasma_engine_applicationjobs.mo -share/locale/da/LC_MESSAGES/plasma_engine_notifications.mo -share/locale/da/LC_MESSAGES/plasma_engine_time.mo share/locale/da/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/da/LC_MESSAGES/plasma_runner_appstream.mo share/locale/da/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/da/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/da/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/da/LC_MESSAGES/plasma_runner_kill.mo share/locale/da/LC_MESSAGES/plasma_runner_locations.mo share/locale/da/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/da/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/da/LC_MESSAGES/plasma_runner_services.mo share/locale/da/LC_MESSAGES/plasma_runner_sessions.mo share/locale/da/LC_MESSAGES/plasma_runner_shell.mo share/locale/da/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/da/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/da/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/da/LC_MESSAGES/plasmashell.mo share/locale/da/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/da/LC_MESSAGES/plasmawindowed.mo share/locale/da/LC_MESSAGES/session-shortcuts-kded.mo share/locale/da/LC_MESSAGES/soliduiserver.mo share/locale/de/LC_MESSAGES/freespacenotifier.mo share/locale/de/LC_MESSAGES/kcm_autostart.mo share/locale/de/LC_MESSAGES/kcm_colors.mo share/locale/de/LC_MESSAGES/kcm_componentchooser.mo share/locale/de/LC_MESSAGES/kcm_cursortheme.mo share/locale/de/LC_MESSAGES/kcm_desktoptheme.mo share/locale/de/LC_MESSAGES/kcm_feedback.mo share/locale/de/LC_MESSAGES/kcm_fonts.mo share/locale/de/LC_MESSAGES/kcm_icons.mo share/locale/de/LC_MESSAGES/kcm_lookandfeel.mo share/locale/de/LC_MESSAGES/kcm_nightlight.mo share/locale/de/LC_MESSAGES/kcm_nighttime.mo share/locale/de/LC_MESSAGES/kcm_notifications.mo share/locale/de/LC_MESSAGES/kcm_regionandlang.mo share/locale/de/LC_MESSAGES/kcm_soundtheme.mo share/locale/de/LC_MESSAGES/kcm_style.mo share/locale/de/LC_MESSAGES/kcm_users.mo share/locale/de/LC_MESSAGES/kcm_wallpaper.mo share/locale/de/LC_MESSAGES/kcminit.mo share/locale/de/LC_MESSAGES/kded_devicenotifications.mo share/locale/de/LC_MESSAGES/kded_donationmessage.mo share/locale/de/LC_MESSAGES/kded_geotimezoned.mo share/locale/de/LC_MESSAGES/kfontinst.mo share/locale/de/LC_MESSAGES/kio_applications.mo share/locale/de/LC_MESSAGES/kio_desktop.mo share/locale/de/LC_MESSAGES/klipper.mo share/locale/de/LC_MESSAGES/krdb.mo share/locale/de/LC_MESSAGES/krunner.mo +share/locale/de/LC_MESSAGES/ksecretprompter.mo share/locale/de/LC_MESSAGES/ksmserver.mo share/locale/de/LC_MESSAGES/libkicker.mo share/locale/de/LC_MESSAGES/libkmpris.mo share/locale/de/LC_MESSAGES/libkworkspace.mo share/locale/de/LC_MESSAGES/libnotificationmanager.mo share/locale/de/LC_MESSAGES/oom-notifier.mo -share/locale/de/LC_MESSAGES/phonon_kde_plugin.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.systemtray.mo share/locale/de/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/de/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/de/LC_MESSAGES/plasma_containmentactions_switchwindow.mo -share/locale/de/LC_MESSAGES/plasma_engine_applicationjobs.mo -share/locale/de/LC_MESSAGES/plasma_engine_notifications.mo -share/locale/de/LC_MESSAGES/plasma_engine_time.mo share/locale/de/LC_MESSAGES/plasma_interactiveconsole.mo share/locale/de/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/de/LC_MESSAGES/plasma_runner_appstream.mo share/locale/de/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/de/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/de/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/de/LC_MESSAGES/plasma_runner_kill.mo share/locale/de/LC_MESSAGES/plasma_runner_locations.mo share/locale/de/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/de/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/de/LC_MESSAGES/plasma_runner_services.mo share/locale/de/LC_MESSAGES/plasma_runner_sessions.mo share/locale/de/LC_MESSAGES/plasma_runner_shell.mo share/locale/de/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/de/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/de/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/de/LC_MESSAGES/plasmashell.mo share/locale/de/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/de/LC_MESSAGES/plasmawindowed.mo share/locale/de/LC_MESSAGES/session-shortcuts-kded.mo share/locale/de/LC_MESSAGES/soliduiserver.mo share/locale/el/LC_MESSAGES/freespacenotifier.mo share/locale/el/LC_MESSAGES/kcm_autostart.mo share/locale/el/LC_MESSAGES/kcm_colors.mo share/locale/el/LC_MESSAGES/kcm_componentchooser.mo share/locale/el/LC_MESSAGES/kcm_cursortheme.mo share/locale/el/LC_MESSAGES/kcm_desktoptheme.mo share/locale/el/LC_MESSAGES/kcm_feedback.mo share/locale/el/LC_MESSAGES/kcm_fonts.mo share/locale/el/LC_MESSAGES/kcm_icons.mo share/locale/el/LC_MESSAGES/kcm_lookandfeel.mo share/locale/el/LC_MESSAGES/kcm_nightlight.mo share/locale/el/LC_MESSAGES/kcm_notifications.mo share/locale/el/LC_MESSAGES/kcm_regionandlang.mo share/locale/el/LC_MESSAGES/kcm_soundtheme.mo share/locale/el/LC_MESSAGES/kcm_style.mo share/locale/el/LC_MESSAGES/kcm_users.mo share/locale/el/LC_MESSAGES/kcminit.mo share/locale/el/LC_MESSAGES/kded_devicenotifications.mo share/locale/el/LC_MESSAGES/kded_donationmessage.mo share/locale/el/LC_MESSAGES/kfontinst.mo share/locale/el/LC_MESSAGES/kio_applications.mo share/locale/el/LC_MESSAGES/kio_desktop.mo share/locale/el/LC_MESSAGES/klipper.mo share/locale/el/LC_MESSAGES/krdb.mo share/locale/el/LC_MESSAGES/krunner.mo share/locale/el/LC_MESSAGES/ksmserver.mo share/locale/el/LC_MESSAGES/libkicker.mo share/locale/el/LC_MESSAGES/libkmpris.mo share/locale/el/LC_MESSAGES/libkworkspace.mo share/locale/el/LC_MESSAGES/libnotificationmanager.mo -share/locale/el/LC_MESSAGES/phonon_kde_plugin.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.systemtray.mo share/locale/el/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/el/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/el/LC_MESSAGES/plasma_containmentactions_switchwindow.mo -share/locale/el/LC_MESSAGES/plasma_engine_applicationjobs.mo -share/locale/el/LC_MESSAGES/plasma_engine_notifications.mo -share/locale/el/LC_MESSAGES/plasma_engine_time.mo share/locale/el/LC_MESSAGES/plasma_interactiveconsole.mo share/locale/el/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/el/LC_MESSAGES/plasma_runner_appstream.mo share/locale/el/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/el/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/el/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/el/LC_MESSAGES/plasma_runner_kill.mo share/locale/el/LC_MESSAGES/plasma_runner_locations.mo share/locale/el/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/el/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/el/LC_MESSAGES/plasma_runner_services.mo share/locale/el/LC_MESSAGES/plasma_runner_sessions.mo share/locale/el/LC_MESSAGES/plasma_runner_shell.mo share/locale/el/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/el/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/el/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/el/LC_MESSAGES/plasmashell.mo share/locale/el/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/el/LC_MESSAGES/plasmawindowed.mo share/locale/el/LC_MESSAGES/session-shortcuts-kded.mo share/locale/el/LC_MESSAGES/soliduiserver.mo share/locale/en_GB/LC_MESSAGES/freespacenotifier.mo share/locale/en_GB/LC_MESSAGES/kcm_autostart.mo share/locale/en_GB/LC_MESSAGES/kcm_colors.mo share/locale/en_GB/LC_MESSAGES/kcm_componentchooser.mo share/locale/en_GB/LC_MESSAGES/kcm_cursortheme.mo share/locale/en_GB/LC_MESSAGES/kcm_desktoptheme.mo share/locale/en_GB/LC_MESSAGES/kcm_feedback.mo share/locale/en_GB/LC_MESSAGES/kcm_fonts.mo share/locale/en_GB/LC_MESSAGES/kcm_icons.mo share/locale/en_GB/LC_MESSAGES/kcm_lookandfeel.mo share/locale/en_GB/LC_MESSAGES/kcm_nightlight.mo share/locale/en_GB/LC_MESSAGES/kcm_notifications.mo share/locale/en_GB/LC_MESSAGES/kcm_regionandlang.mo share/locale/en_GB/LC_MESSAGES/kcm_soundtheme.mo share/locale/en_GB/LC_MESSAGES/kcm_style.mo share/locale/en_GB/LC_MESSAGES/kcm_users.mo share/locale/en_GB/LC_MESSAGES/kcminit.mo share/locale/en_GB/LC_MESSAGES/kded_devicenotifications.mo share/locale/en_GB/LC_MESSAGES/kded_donationmessage.mo share/locale/en_GB/LC_MESSAGES/kfontinst.mo share/locale/en_GB/LC_MESSAGES/kio_applications.mo share/locale/en_GB/LC_MESSAGES/kio_desktop.mo share/locale/en_GB/LC_MESSAGES/klipper.mo share/locale/en_GB/LC_MESSAGES/krdb.mo share/locale/en_GB/LC_MESSAGES/krunner.mo share/locale/en_GB/LC_MESSAGES/ksmserver.mo share/locale/en_GB/LC_MESSAGES/libkicker.mo share/locale/en_GB/LC_MESSAGES/libkmpris.mo share/locale/en_GB/LC_MESSAGES/libkworkspace.mo share/locale/en_GB/LC_MESSAGES/libnotificationmanager.mo share/locale/en_GB/LC_MESSAGES/oom-notifier.mo -share/locale/en_GB/LC_MESSAGES/phonon_kde_plugin.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.systemtray.mo share/locale/en_GB/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/en_GB/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/en_GB/LC_MESSAGES/plasma_containmentactions_switchwindow.mo -share/locale/en_GB/LC_MESSAGES/plasma_engine_applicationjobs.mo -share/locale/en_GB/LC_MESSAGES/plasma_engine_notifications.mo -share/locale/en_GB/LC_MESSAGES/plasma_engine_time.mo share/locale/en_GB/LC_MESSAGES/plasma_interactiveconsole.mo share/locale/en_GB/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_appstream.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_kill.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_locations.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_services.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_sessions.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_shell.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/en_GB/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/en_GB/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/en_GB/LC_MESSAGES/plasmashell.mo share/locale/en_GB/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/en_GB/LC_MESSAGES/plasmawindowed.mo share/locale/en_GB/LC_MESSAGES/session-shortcuts-kded.mo share/locale/en_GB/LC_MESSAGES/soliduiserver.mo share/locale/eo/LC_MESSAGES/freespacenotifier.mo share/locale/eo/LC_MESSAGES/kcm_autostart.mo share/locale/eo/LC_MESSAGES/kcm_colors.mo share/locale/eo/LC_MESSAGES/kcm_componentchooser.mo share/locale/eo/LC_MESSAGES/kcm_cursortheme.mo share/locale/eo/LC_MESSAGES/kcm_desktoptheme.mo share/locale/eo/LC_MESSAGES/kcm_feedback.mo share/locale/eo/LC_MESSAGES/kcm_fonts.mo share/locale/eo/LC_MESSAGES/kcm_icons.mo share/locale/eo/LC_MESSAGES/kcm_lookandfeel.mo share/locale/eo/LC_MESSAGES/kcm_nightlight.mo share/locale/eo/LC_MESSAGES/kcm_notifications.mo share/locale/eo/LC_MESSAGES/kcm_regionandlang.mo share/locale/eo/LC_MESSAGES/kcm_soundtheme.mo share/locale/eo/LC_MESSAGES/kcm_style.mo share/locale/eo/LC_MESSAGES/kcm_users.mo share/locale/eo/LC_MESSAGES/kcminit.mo share/locale/eo/LC_MESSAGES/kded_devicenotifications.mo share/locale/eo/LC_MESSAGES/kfontinst.mo share/locale/eo/LC_MESSAGES/kio_applications.mo share/locale/eo/LC_MESSAGES/kio_desktop.mo share/locale/eo/LC_MESSAGES/klipper.mo share/locale/eo/LC_MESSAGES/krdb.mo share/locale/eo/LC_MESSAGES/krunner.mo share/locale/eo/LC_MESSAGES/ksmserver.mo share/locale/eo/LC_MESSAGES/libkicker.mo share/locale/eo/LC_MESSAGES/libkmpris.mo share/locale/eo/LC_MESSAGES/libkworkspace.mo share/locale/eo/LC_MESSAGES/libnotificationmanager.mo -share/locale/eo/LC_MESSAGES/phonon_kde_plugin.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.systemtray.mo share/locale/eo/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/eo/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/eo/LC_MESSAGES/plasma_containmentactions_switchwindow.mo -share/locale/eo/LC_MESSAGES/plasma_engine_applicationjobs.mo -share/locale/eo/LC_MESSAGES/plasma_engine_notifications.mo -share/locale/eo/LC_MESSAGES/plasma_engine_time.mo share/locale/eo/LC_MESSAGES/plasma_interactiveconsole.mo share/locale/eo/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/eo/LC_MESSAGES/plasma_runner_appstream.mo share/locale/eo/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/eo/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/eo/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/eo/LC_MESSAGES/plasma_runner_kill.mo share/locale/eo/LC_MESSAGES/plasma_runner_locations.mo share/locale/eo/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/eo/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/eo/LC_MESSAGES/plasma_runner_services.mo share/locale/eo/LC_MESSAGES/plasma_runner_sessions.mo share/locale/eo/LC_MESSAGES/plasma_runner_shell.mo share/locale/eo/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/eo/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/eo/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/eo/LC_MESSAGES/plasmashell.mo share/locale/eo/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/eo/LC_MESSAGES/plasmawindowed.mo share/locale/eo/LC_MESSAGES/session-shortcuts-kded.mo share/locale/eo/LC_MESSAGES/soliduiserver.mo share/locale/es/LC_MESSAGES/freespacenotifier.mo share/locale/es/LC_MESSAGES/kcm_autostart.mo share/locale/es/LC_MESSAGES/kcm_colors.mo share/locale/es/LC_MESSAGES/kcm_componentchooser.mo share/locale/es/LC_MESSAGES/kcm_cursortheme.mo share/locale/es/LC_MESSAGES/kcm_desktoptheme.mo share/locale/es/LC_MESSAGES/kcm_feedback.mo share/locale/es/LC_MESSAGES/kcm_fonts.mo share/locale/es/LC_MESSAGES/kcm_icons.mo share/locale/es/LC_MESSAGES/kcm_lookandfeel.mo share/locale/es/LC_MESSAGES/kcm_nightlight.mo share/locale/es/LC_MESSAGES/kcm_nighttime.mo share/locale/es/LC_MESSAGES/kcm_notifications.mo share/locale/es/LC_MESSAGES/kcm_regionandlang.mo share/locale/es/LC_MESSAGES/kcm_soundtheme.mo share/locale/es/LC_MESSAGES/kcm_style.mo share/locale/es/LC_MESSAGES/kcm_users.mo share/locale/es/LC_MESSAGES/kcm_wallpaper.mo share/locale/es/LC_MESSAGES/kcminit.mo share/locale/es/LC_MESSAGES/kded_devicenotifications.mo share/locale/es/LC_MESSAGES/kded_donationmessage.mo share/locale/es/LC_MESSAGES/kded_geotimezoned.mo share/locale/es/LC_MESSAGES/kfontinst.mo share/locale/es/LC_MESSAGES/kio_applications.mo share/locale/es/LC_MESSAGES/kio_desktop.mo share/locale/es/LC_MESSAGES/klipper.mo share/locale/es/LC_MESSAGES/krdb.mo share/locale/es/LC_MESSAGES/krunner.mo +share/locale/es/LC_MESSAGES/ksecretprompter.mo share/locale/es/LC_MESSAGES/ksmserver.mo share/locale/es/LC_MESSAGES/libkicker.mo share/locale/es/LC_MESSAGES/libkmpris.mo share/locale/es/LC_MESSAGES/libkworkspace.mo share/locale/es/LC_MESSAGES/libnotificationmanager.mo share/locale/es/LC_MESSAGES/oom-notifier.mo -share/locale/es/LC_MESSAGES/phonon_kde_plugin.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.systemtray.mo share/locale/es/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/es/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/es/LC_MESSAGES/plasma_containmentactions_switchwindow.mo -share/locale/es/LC_MESSAGES/plasma_engine_applicationjobs.mo -share/locale/es/LC_MESSAGES/plasma_engine_notifications.mo -share/locale/es/LC_MESSAGES/plasma_engine_time.mo share/locale/es/LC_MESSAGES/plasma_interactiveconsole.mo share/locale/es/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/es/LC_MESSAGES/plasma_runner_appstream.mo share/locale/es/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/es/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/es/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/es/LC_MESSAGES/plasma_runner_kill.mo share/locale/es/LC_MESSAGES/plasma_runner_locations.mo share/locale/es/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/es/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/es/LC_MESSAGES/plasma_runner_services.mo share/locale/es/LC_MESSAGES/plasma_runner_sessions.mo share/locale/es/LC_MESSAGES/plasma_runner_shell.mo share/locale/es/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/es/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/es/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/es/LC_MESSAGES/plasmashell.mo share/locale/es/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/es/LC_MESSAGES/plasmawindowed.mo share/locale/es/LC_MESSAGES/session-shortcuts-kded.mo share/locale/es/LC_MESSAGES/soliduiserver.mo share/locale/et/LC_MESSAGES/freespacenotifier.mo share/locale/et/LC_MESSAGES/kcm_autostart.mo share/locale/et/LC_MESSAGES/kcm_colors.mo share/locale/et/LC_MESSAGES/kcm_componentchooser.mo share/locale/et/LC_MESSAGES/kcm_cursortheme.mo share/locale/et/LC_MESSAGES/kcm_desktoptheme.mo share/locale/et/LC_MESSAGES/kcm_feedback.mo share/locale/et/LC_MESSAGES/kcm_fonts.mo share/locale/et/LC_MESSAGES/kcm_icons.mo share/locale/et/LC_MESSAGES/kcm_lookandfeel.mo share/locale/et/LC_MESSAGES/kcm_nightlight.mo share/locale/et/LC_MESSAGES/kcm_notifications.mo share/locale/et/LC_MESSAGES/kcm_regionandlang.mo share/locale/et/LC_MESSAGES/kcm_style.mo share/locale/et/LC_MESSAGES/kcm_users.mo share/locale/et/LC_MESSAGES/kcminit.mo share/locale/et/LC_MESSAGES/kfontinst.mo share/locale/et/LC_MESSAGES/kio_applications.mo share/locale/et/LC_MESSAGES/kio_desktop.mo share/locale/et/LC_MESSAGES/klipper.mo share/locale/et/LC_MESSAGES/krdb.mo share/locale/et/LC_MESSAGES/krunner.mo share/locale/et/LC_MESSAGES/ksmserver.mo share/locale/et/LC_MESSAGES/libkicker.mo share/locale/et/LC_MESSAGES/libkworkspace.mo share/locale/et/LC_MESSAGES/libnotificationmanager.mo -share/locale/et/LC_MESSAGES/phonon_kde_plugin.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.systemtray.mo share/locale/et/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/et/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/et/LC_MESSAGES/plasma_containmentactions_switchwindow.mo -share/locale/et/LC_MESSAGES/plasma_engine_applicationjobs.mo -share/locale/et/LC_MESSAGES/plasma_engine_notifications.mo -share/locale/et/LC_MESSAGES/plasma_engine_time.mo share/locale/et/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/et/LC_MESSAGES/plasma_runner_appstream.mo share/locale/et/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/et/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/et/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/et/LC_MESSAGES/plasma_runner_kill.mo share/locale/et/LC_MESSAGES/plasma_runner_locations.mo share/locale/et/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/et/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/et/LC_MESSAGES/plasma_runner_services.mo share/locale/et/LC_MESSAGES/plasma_runner_sessions.mo share/locale/et/LC_MESSAGES/plasma_runner_shell.mo share/locale/et/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/et/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/et/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/et/LC_MESSAGES/plasmashell.mo share/locale/et/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/et/LC_MESSAGES/soliduiserver.mo share/locale/eu/LC_MESSAGES/freespacenotifier.mo share/locale/eu/LC_MESSAGES/kcm_autostart.mo share/locale/eu/LC_MESSAGES/kcm_colors.mo share/locale/eu/LC_MESSAGES/kcm_componentchooser.mo share/locale/eu/LC_MESSAGES/kcm_cursortheme.mo share/locale/eu/LC_MESSAGES/kcm_desktoptheme.mo share/locale/eu/LC_MESSAGES/kcm_feedback.mo share/locale/eu/LC_MESSAGES/kcm_fonts.mo share/locale/eu/LC_MESSAGES/kcm_icons.mo share/locale/eu/LC_MESSAGES/kcm_lookandfeel.mo share/locale/eu/LC_MESSAGES/kcm_nightlight.mo share/locale/eu/LC_MESSAGES/kcm_nighttime.mo share/locale/eu/LC_MESSAGES/kcm_notifications.mo share/locale/eu/LC_MESSAGES/kcm_regionandlang.mo share/locale/eu/LC_MESSAGES/kcm_soundtheme.mo share/locale/eu/LC_MESSAGES/kcm_style.mo share/locale/eu/LC_MESSAGES/kcm_users.mo share/locale/eu/LC_MESSAGES/kcm_wallpaper.mo share/locale/eu/LC_MESSAGES/kcminit.mo share/locale/eu/LC_MESSAGES/kded_devicenotifications.mo share/locale/eu/LC_MESSAGES/kded_donationmessage.mo share/locale/eu/LC_MESSAGES/kded_geotimezoned.mo share/locale/eu/LC_MESSAGES/kfontinst.mo share/locale/eu/LC_MESSAGES/kio_applications.mo share/locale/eu/LC_MESSAGES/kio_desktop.mo share/locale/eu/LC_MESSAGES/klipper.mo share/locale/eu/LC_MESSAGES/krdb.mo share/locale/eu/LC_MESSAGES/krunner.mo +share/locale/eu/LC_MESSAGES/ksecretprompter.mo share/locale/eu/LC_MESSAGES/ksmserver.mo share/locale/eu/LC_MESSAGES/libkicker.mo share/locale/eu/LC_MESSAGES/libkmpris.mo share/locale/eu/LC_MESSAGES/libkworkspace.mo share/locale/eu/LC_MESSAGES/libnotificationmanager.mo share/locale/eu/LC_MESSAGES/oom-notifier.mo -share/locale/eu/LC_MESSAGES/phonon_kde_plugin.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.systemtray.mo share/locale/eu/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/eu/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/eu/LC_MESSAGES/plasma_containmentactions_switchwindow.mo -share/locale/eu/LC_MESSAGES/plasma_engine_applicationjobs.mo -share/locale/eu/LC_MESSAGES/plasma_engine_notifications.mo -share/locale/eu/LC_MESSAGES/plasma_engine_time.mo share/locale/eu/LC_MESSAGES/plasma_interactiveconsole.mo share/locale/eu/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/eu/LC_MESSAGES/plasma_runner_appstream.mo share/locale/eu/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/eu/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/eu/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/eu/LC_MESSAGES/plasma_runner_kill.mo share/locale/eu/LC_MESSAGES/plasma_runner_locations.mo share/locale/eu/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/eu/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/eu/LC_MESSAGES/plasma_runner_services.mo share/locale/eu/LC_MESSAGES/plasma_runner_sessions.mo share/locale/eu/LC_MESSAGES/plasma_runner_shell.mo share/locale/eu/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/eu/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/eu/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/eu/LC_MESSAGES/plasmashell.mo share/locale/eu/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/eu/LC_MESSAGES/plasmawindowed.mo share/locale/eu/LC_MESSAGES/session-shortcuts-kded.mo share/locale/eu/LC_MESSAGES/soliduiserver.mo share/locale/fa/LC_MESSAGES/freespacenotifier.mo share/locale/fa/LC_MESSAGES/kcm_autostart.mo share/locale/fa/LC_MESSAGES/kcm_colors.mo share/locale/fa/LC_MESSAGES/kcm_componentchooser.mo share/locale/fa/LC_MESSAGES/kcm_cursortheme.mo share/locale/fa/LC_MESSAGES/kcm_desktoptheme.mo share/locale/fa/LC_MESSAGES/kcm_fonts.mo share/locale/fa/LC_MESSAGES/kcm_icons.mo share/locale/fa/LC_MESSAGES/kcm_style.mo share/locale/fa/LC_MESSAGES/kcminit.mo share/locale/fa/LC_MESSAGES/kfontinst.mo share/locale/fa/LC_MESSAGES/kio_applications.mo share/locale/fa/LC_MESSAGES/klipper.mo share/locale/fa/LC_MESSAGES/krdb.mo share/locale/fa/LC_MESSAGES/ksmserver.mo share/locale/fa/LC_MESSAGES/libkworkspace.mo -share/locale/fa/LC_MESSAGES/phonon_kde_plugin.mo share/locale/fa/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/fa/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/fa/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/fa/LC_MESSAGES/plasma_runner_locations.mo share/locale/fa/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/fa/LC_MESSAGES/plasmashell.mo share/locale/fa/LC_MESSAGES/soliduiserver.mo share/locale/fi/LC_MESSAGES/freespacenotifier.mo share/locale/fi/LC_MESSAGES/kcm_autostart.mo share/locale/fi/LC_MESSAGES/kcm_colors.mo share/locale/fi/LC_MESSAGES/kcm_componentchooser.mo share/locale/fi/LC_MESSAGES/kcm_cursortheme.mo share/locale/fi/LC_MESSAGES/kcm_desktoptheme.mo share/locale/fi/LC_MESSAGES/kcm_feedback.mo share/locale/fi/LC_MESSAGES/kcm_fonts.mo share/locale/fi/LC_MESSAGES/kcm_icons.mo share/locale/fi/LC_MESSAGES/kcm_lookandfeel.mo share/locale/fi/LC_MESSAGES/kcm_nightlight.mo share/locale/fi/LC_MESSAGES/kcm_nighttime.mo share/locale/fi/LC_MESSAGES/kcm_notifications.mo share/locale/fi/LC_MESSAGES/kcm_regionandlang.mo share/locale/fi/LC_MESSAGES/kcm_soundtheme.mo share/locale/fi/LC_MESSAGES/kcm_style.mo share/locale/fi/LC_MESSAGES/kcm_users.mo share/locale/fi/LC_MESSAGES/kcm_wallpaper.mo share/locale/fi/LC_MESSAGES/kcminit.mo share/locale/fi/LC_MESSAGES/kded_devicenotifications.mo share/locale/fi/LC_MESSAGES/kded_donationmessage.mo share/locale/fi/LC_MESSAGES/kded_geotimezoned.mo share/locale/fi/LC_MESSAGES/kfontinst.mo share/locale/fi/LC_MESSAGES/kio_applications.mo share/locale/fi/LC_MESSAGES/kio_desktop.mo share/locale/fi/LC_MESSAGES/klipper.mo share/locale/fi/LC_MESSAGES/krdb.mo share/locale/fi/LC_MESSAGES/krunner.mo share/locale/fi/LC_MESSAGES/ksmserver.mo share/locale/fi/LC_MESSAGES/libkicker.mo share/locale/fi/LC_MESSAGES/libkmpris.mo share/locale/fi/LC_MESSAGES/libkworkspace.mo share/locale/fi/LC_MESSAGES/libnotificationmanager.mo share/locale/fi/LC_MESSAGES/oom-notifier.mo -share/locale/fi/LC_MESSAGES/phonon_kde_plugin.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.systemtray.mo share/locale/fi/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/fi/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/fi/LC_MESSAGES/plasma_containmentactions_switchwindow.mo -share/locale/fi/LC_MESSAGES/plasma_engine_applicationjobs.mo -share/locale/fi/LC_MESSAGES/plasma_engine_notifications.mo -share/locale/fi/LC_MESSAGES/plasma_engine_time.mo share/locale/fi/LC_MESSAGES/plasma_interactiveconsole.mo share/locale/fi/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/fi/LC_MESSAGES/plasma_runner_appstream.mo share/locale/fi/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/fi/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/fi/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/fi/LC_MESSAGES/plasma_runner_kill.mo share/locale/fi/LC_MESSAGES/plasma_runner_locations.mo share/locale/fi/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/fi/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/fi/LC_MESSAGES/plasma_runner_services.mo share/locale/fi/LC_MESSAGES/plasma_runner_sessions.mo share/locale/fi/LC_MESSAGES/plasma_runner_shell.mo share/locale/fi/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/fi/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/fi/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/fi/LC_MESSAGES/plasmashell.mo share/locale/fi/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/fi/LC_MESSAGES/plasmawindowed.mo share/locale/fi/LC_MESSAGES/session-shortcuts-kded.mo share/locale/fi/LC_MESSAGES/soliduiserver.mo share/locale/fr/LC_MESSAGES/freespacenotifier.mo share/locale/fr/LC_MESSAGES/kcm_autostart.mo share/locale/fr/LC_MESSAGES/kcm_colors.mo share/locale/fr/LC_MESSAGES/kcm_componentchooser.mo share/locale/fr/LC_MESSAGES/kcm_cursortheme.mo share/locale/fr/LC_MESSAGES/kcm_desktoptheme.mo share/locale/fr/LC_MESSAGES/kcm_feedback.mo share/locale/fr/LC_MESSAGES/kcm_fonts.mo share/locale/fr/LC_MESSAGES/kcm_icons.mo share/locale/fr/LC_MESSAGES/kcm_lookandfeel.mo share/locale/fr/LC_MESSAGES/kcm_nightlight.mo share/locale/fr/LC_MESSAGES/kcm_nighttime.mo share/locale/fr/LC_MESSAGES/kcm_notifications.mo share/locale/fr/LC_MESSAGES/kcm_regionandlang.mo share/locale/fr/LC_MESSAGES/kcm_soundtheme.mo share/locale/fr/LC_MESSAGES/kcm_style.mo share/locale/fr/LC_MESSAGES/kcm_users.mo share/locale/fr/LC_MESSAGES/kcm_wallpaper.mo share/locale/fr/LC_MESSAGES/kcminit.mo share/locale/fr/LC_MESSAGES/kded_devicenotifications.mo share/locale/fr/LC_MESSAGES/kded_donationmessage.mo share/locale/fr/LC_MESSAGES/kded_geotimezoned.mo share/locale/fr/LC_MESSAGES/kfontinst.mo share/locale/fr/LC_MESSAGES/kio_applications.mo share/locale/fr/LC_MESSAGES/kio_desktop.mo share/locale/fr/LC_MESSAGES/klipper.mo share/locale/fr/LC_MESSAGES/krdb.mo share/locale/fr/LC_MESSAGES/krunner.mo +share/locale/fr/LC_MESSAGES/ksecretprompter.mo share/locale/fr/LC_MESSAGES/ksmserver.mo share/locale/fr/LC_MESSAGES/libkicker.mo share/locale/fr/LC_MESSAGES/libkmpris.mo share/locale/fr/LC_MESSAGES/libkworkspace.mo share/locale/fr/LC_MESSAGES/libnotificationmanager.mo share/locale/fr/LC_MESSAGES/oom-notifier.mo -share/locale/fr/LC_MESSAGES/phonon_kde_plugin.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.systemtray.mo share/locale/fr/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/fr/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/fr/LC_MESSAGES/plasma_containmentactions_switchwindow.mo -share/locale/fr/LC_MESSAGES/plasma_engine_applicationjobs.mo -share/locale/fr/LC_MESSAGES/plasma_engine_notifications.mo -share/locale/fr/LC_MESSAGES/plasma_engine_time.mo share/locale/fr/LC_MESSAGES/plasma_interactiveconsole.mo share/locale/fr/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/fr/LC_MESSAGES/plasma_runner_appstream.mo share/locale/fr/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/fr/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/fr/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/fr/LC_MESSAGES/plasma_runner_kill.mo share/locale/fr/LC_MESSAGES/plasma_runner_locations.mo share/locale/fr/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/fr/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/fr/LC_MESSAGES/plasma_runner_services.mo share/locale/fr/LC_MESSAGES/plasma_runner_sessions.mo share/locale/fr/LC_MESSAGES/plasma_runner_shell.mo share/locale/fr/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/fr/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/fr/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/fr/LC_MESSAGES/plasmashell.mo share/locale/fr/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/fr/LC_MESSAGES/plasmawindowed.mo share/locale/fr/LC_MESSAGES/session-shortcuts-kded.mo share/locale/fr/LC_MESSAGES/soliduiserver.mo share/locale/fy/LC_MESSAGES/kcm_autostart.mo share/locale/fy/LC_MESSAGES/kcm_colors.mo share/locale/fy/LC_MESSAGES/kcm_componentchooser.mo share/locale/fy/LC_MESSAGES/kcm_cursortheme.mo share/locale/fy/LC_MESSAGES/kcm_desktoptheme.mo share/locale/fy/LC_MESSAGES/kcm_fonts.mo share/locale/fy/LC_MESSAGES/kcm_icons.mo share/locale/fy/LC_MESSAGES/kcm_style.mo share/locale/fy/LC_MESSAGES/kcminit.mo share/locale/fy/LC_MESSAGES/kfontinst.mo share/locale/fy/LC_MESSAGES/kio_applications.mo share/locale/fy/LC_MESSAGES/klipper.mo share/locale/fy/LC_MESSAGES/krdb.mo share/locale/fy/LC_MESSAGES/ksmserver.mo share/locale/fy/LC_MESSAGES/libkworkspace.mo -share/locale/fy/LC_MESSAGES/phonon_kde_plugin.mo share/locale/fy/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/fy/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/fy/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo -share/locale/fy/LC_MESSAGES/plasma_engine_applicationjobs.mo -share/locale/fy/LC_MESSAGES/plasma_engine_notifications.mo share/locale/fy/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/fy/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/fy/LC_MESSAGES/plasma_runner_locations.mo share/locale/fy/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/fy/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/fy/LC_MESSAGES/plasma_runner_services.mo share/locale/fy/LC_MESSAGES/plasma_runner_sessions.mo share/locale/fy/LC_MESSAGES/plasma_runner_shell.mo share/locale/fy/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/fy/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/fy/LC_MESSAGES/soliduiserver.mo share/locale/ga/LC_MESSAGES/freespacenotifier.mo share/locale/ga/LC_MESSAGES/kcm_autostart.mo share/locale/ga/LC_MESSAGES/kcm_colors.mo share/locale/ga/LC_MESSAGES/kcm_componentchooser.mo share/locale/ga/LC_MESSAGES/kcm_cursortheme.mo share/locale/ga/LC_MESSAGES/kcm_desktoptheme.mo share/locale/ga/LC_MESSAGES/kcm_feedback.mo share/locale/ga/LC_MESSAGES/kcm_fonts.mo share/locale/ga/LC_MESSAGES/kcm_icons.mo share/locale/ga/LC_MESSAGES/kcm_lookandfeel.mo share/locale/ga/LC_MESSAGES/kcm_nightlight.mo share/locale/ga/LC_MESSAGES/kcm_nighttime.mo share/locale/ga/LC_MESSAGES/kcm_notifications.mo share/locale/ga/LC_MESSAGES/kcm_regionandlang.mo share/locale/ga/LC_MESSAGES/kcm_soundtheme.mo share/locale/ga/LC_MESSAGES/kcm_style.mo share/locale/ga/LC_MESSAGES/kcm_users.mo share/locale/ga/LC_MESSAGES/kcm_wallpaper.mo share/locale/ga/LC_MESSAGES/kcminit.mo share/locale/ga/LC_MESSAGES/kded_devicenotifications.mo share/locale/ga/LC_MESSAGES/kded_donationmessage.mo share/locale/ga/LC_MESSAGES/kded_geotimezoned.mo share/locale/ga/LC_MESSAGES/kfontinst.mo share/locale/ga/LC_MESSAGES/kio_applications.mo share/locale/ga/LC_MESSAGES/kio_desktop.mo share/locale/ga/LC_MESSAGES/klipper.mo share/locale/ga/LC_MESSAGES/krdb.mo share/locale/ga/LC_MESSAGES/krunner.mo +share/locale/ga/LC_MESSAGES/ksecretprompter.mo share/locale/ga/LC_MESSAGES/ksmserver.mo share/locale/ga/LC_MESSAGES/libkicker.mo share/locale/ga/LC_MESSAGES/libkmpris.mo share/locale/ga/LC_MESSAGES/libkworkspace.mo share/locale/ga/LC_MESSAGES/libnotificationmanager.mo share/locale/ga/LC_MESSAGES/oom-notifier.mo -share/locale/ga/LC_MESSAGES/phonon_kde_plugin.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.systemtray.mo share/locale/ga/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/ga/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/ga/LC_MESSAGES/plasma_containmentactions_switchwindow.mo -share/locale/ga/LC_MESSAGES/plasma_engine_applicationjobs.mo -share/locale/ga/LC_MESSAGES/plasma_engine_notifications.mo -share/locale/ga/LC_MESSAGES/plasma_engine_time.mo share/locale/ga/LC_MESSAGES/plasma_interactiveconsole.mo share/locale/ga/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/ga/LC_MESSAGES/plasma_runner_appstream.mo share/locale/ga/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/ga/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/ga/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/ga/LC_MESSAGES/plasma_runner_kill.mo share/locale/ga/LC_MESSAGES/plasma_runner_locations.mo share/locale/ga/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/ga/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/ga/LC_MESSAGES/plasma_runner_services.mo share/locale/ga/LC_MESSAGES/plasma_runner_sessions.mo share/locale/ga/LC_MESSAGES/plasma_runner_shell.mo share/locale/ga/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/ga/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/ga/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/ga/LC_MESSAGES/plasmashell.mo share/locale/ga/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/ga/LC_MESSAGES/plasmawindowed.mo share/locale/ga/LC_MESSAGES/session-shortcuts-kded.mo share/locale/ga/LC_MESSAGES/soliduiserver.mo share/locale/gl/LC_MESSAGES/freespacenotifier.mo share/locale/gl/LC_MESSAGES/kcm_autostart.mo share/locale/gl/LC_MESSAGES/kcm_colors.mo share/locale/gl/LC_MESSAGES/kcm_componentchooser.mo share/locale/gl/LC_MESSAGES/kcm_cursortheme.mo share/locale/gl/LC_MESSAGES/kcm_desktoptheme.mo share/locale/gl/LC_MESSAGES/kcm_feedback.mo share/locale/gl/LC_MESSAGES/kcm_fonts.mo share/locale/gl/LC_MESSAGES/kcm_icons.mo share/locale/gl/LC_MESSAGES/kcm_lookandfeel.mo share/locale/gl/LC_MESSAGES/kcm_nightlight.mo share/locale/gl/LC_MESSAGES/kcm_notifications.mo share/locale/gl/LC_MESSAGES/kcm_regionandlang.mo share/locale/gl/LC_MESSAGES/kcm_soundtheme.mo share/locale/gl/LC_MESSAGES/kcm_style.mo share/locale/gl/LC_MESSAGES/kcm_users.mo share/locale/gl/LC_MESSAGES/kcminit.mo share/locale/gl/LC_MESSAGES/kded_devicenotifications.mo share/locale/gl/LC_MESSAGES/kded_donationmessage.mo share/locale/gl/LC_MESSAGES/kded_geotimezoned.mo share/locale/gl/LC_MESSAGES/kfontinst.mo share/locale/gl/LC_MESSAGES/kio_applications.mo share/locale/gl/LC_MESSAGES/kio_desktop.mo share/locale/gl/LC_MESSAGES/klipper.mo share/locale/gl/LC_MESSAGES/krdb.mo share/locale/gl/LC_MESSAGES/krunner.mo share/locale/gl/LC_MESSAGES/ksmserver.mo share/locale/gl/LC_MESSAGES/libkicker.mo share/locale/gl/LC_MESSAGES/libkmpris.mo share/locale/gl/LC_MESSAGES/libkworkspace.mo share/locale/gl/LC_MESSAGES/libnotificationmanager.mo share/locale/gl/LC_MESSAGES/oom-notifier.mo -share/locale/gl/LC_MESSAGES/phonon_kde_plugin.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.systemtray.mo share/locale/gl/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/gl/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/gl/LC_MESSAGES/plasma_containmentactions_switchwindow.mo -share/locale/gl/LC_MESSAGES/plasma_engine_applicationjobs.mo -share/locale/gl/LC_MESSAGES/plasma_engine_notifications.mo -share/locale/gl/LC_MESSAGES/plasma_engine_time.mo share/locale/gl/LC_MESSAGES/plasma_interactiveconsole.mo share/locale/gl/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/gl/LC_MESSAGES/plasma_runner_appstream.mo share/locale/gl/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/gl/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/gl/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/gl/LC_MESSAGES/plasma_runner_kill.mo share/locale/gl/LC_MESSAGES/plasma_runner_locations.mo share/locale/gl/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/gl/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/gl/LC_MESSAGES/plasma_runner_services.mo share/locale/gl/LC_MESSAGES/plasma_runner_sessions.mo share/locale/gl/LC_MESSAGES/plasma_runner_shell.mo share/locale/gl/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/gl/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/gl/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/gl/LC_MESSAGES/plasmashell.mo share/locale/gl/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/gl/LC_MESSAGES/plasmawindowed.mo share/locale/gl/LC_MESSAGES/session-shortcuts-kded.mo share/locale/gl/LC_MESSAGES/soliduiserver.mo share/locale/gu/LC_MESSAGES/freespacenotifier.mo share/locale/gu/LC_MESSAGES/kcm_autostart.mo share/locale/gu/LC_MESSAGES/kcm_colors.mo share/locale/gu/LC_MESSAGES/kcm_componentchooser.mo share/locale/gu/LC_MESSAGES/kcm_cursortheme.mo share/locale/gu/LC_MESSAGES/kcm_desktoptheme.mo share/locale/gu/LC_MESSAGES/kcm_fonts.mo share/locale/gu/LC_MESSAGES/kcm_icons.mo share/locale/gu/LC_MESSAGES/kcm_style.mo share/locale/gu/LC_MESSAGES/kcminit.mo share/locale/gu/LC_MESSAGES/kfontinst.mo share/locale/gu/LC_MESSAGES/kio_applications.mo share/locale/gu/LC_MESSAGES/klipper.mo share/locale/gu/LC_MESSAGES/krdb.mo share/locale/gu/LC_MESSAGES/ksmserver.mo share/locale/gu/LC_MESSAGES/libkworkspace.mo -share/locale/gu/LC_MESSAGES/phonon_kde_plugin.mo share/locale/gu/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/gu/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/gu/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/gu/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/gu/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/gu/LC_MESSAGES/plasma_containmentactions_switchwindow.mo -share/locale/gu/LC_MESSAGES/plasma_engine_applicationjobs.mo -share/locale/gu/LC_MESSAGES/plasma_engine_notifications.mo share/locale/gu/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/gu/LC_MESSAGES/plasma_runner_kill.mo share/locale/gu/LC_MESSAGES/plasma_runner_locations.mo share/locale/gu/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/gu/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/gu/LC_MESSAGES/plasma_runner_services.mo share/locale/gu/LC_MESSAGES/plasma_runner_sessions.mo share/locale/gu/LC_MESSAGES/plasma_runner_shell.mo share/locale/gu/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/gu/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/gu/LC_MESSAGES/soliduiserver.mo share/locale/he/LC_MESSAGES/freespacenotifier.mo share/locale/he/LC_MESSAGES/kcm_autostart.mo share/locale/he/LC_MESSAGES/kcm_colors.mo share/locale/he/LC_MESSAGES/kcm_componentchooser.mo share/locale/he/LC_MESSAGES/kcm_cursortheme.mo share/locale/he/LC_MESSAGES/kcm_desktoptheme.mo share/locale/he/LC_MESSAGES/kcm_feedback.mo share/locale/he/LC_MESSAGES/kcm_fonts.mo share/locale/he/LC_MESSAGES/kcm_icons.mo share/locale/he/LC_MESSAGES/kcm_lookandfeel.mo share/locale/he/LC_MESSAGES/kcm_nightlight.mo share/locale/he/LC_MESSAGES/kcm_nighttime.mo share/locale/he/LC_MESSAGES/kcm_notifications.mo share/locale/he/LC_MESSAGES/kcm_regionandlang.mo share/locale/he/LC_MESSAGES/kcm_soundtheme.mo share/locale/he/LC_MESSAGES/kcm_style.mo share/locale/he/LC_MESSAGES/kcm_users.mo share/locale/he/LC_MESSAGES/kcm_wallpaper.mo share/locale/he/LC_MESSAGES/kcminit.mo share/locale/he/LC_MESSAGES/kded_devicenotifications.mo share/locale/he/LC_MESSAGES/kded_donationmessage.mo share/locale/he/LC_MESSAGES/kded_geotimezoned.mo share/locale/he/LC_MESSAGES/kfontinst.mo share/locale/he/LC_MESSAGES/kio_applications.mo share/locale/he/LC_MESSAGES/kio_desktop.mo share/locale/he/LC_MESSAGES/klipper.mo share/locale/he/LC_MESSAGES/krdb.mo share/locale/he/LC_MESSAGES/krunner.mo +share/locale/he/LC_MESSAGES/ksecretprompter.mo share/locale/he/LC_MESSAGES/ksmserver.mo share/locale/he/LC_MESSAGES/libkicker.mo share/locale/he/LC_MESSAGES/libkmpris.mo share/locale/he/LC_MESSAGES/libkworkspace.mo share/locale/he/LC_MESSAGES/libnotificationmanager.mo share/locale/he/LC_MESSAGES/oom-notifier.mo -share/locale/he/LC_MESSAGES/phonon_kde_plugin.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.systemtray.mo share/locale/he/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/he/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/he/LC_MESSAGES/plasma_containmentactions_switchwindow.mo -share/locale/he/LC_MESSAGES/plasma_engine_applicationjobs.mo -share/locale/he/LC_MESSAGES/plasma_engine_notifications.mo -share/locale/he/LC_MESSAGES/plasma_engine_time.mo share/locale/he/LC_MESSAGES/plasma_interactiveconsole.mo share/locale/he/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/he/LC_MESSAGES/plasma_runner_appstream.mo share/locale/he/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/he/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/he/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/he/LC_MESSAGES/plasma_runner_kill.mo share/locale/he/LC_MESSAGES/plasma_runner_locations.mo share/locale/he/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/he/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/he/LC_MESSAGES/plasma_runner_services.mo share/locale/he/LC_MESSAGES/plasma_runner_sessions.mo share/locale/he/LC_MESSAGES/plasma_runner_shell.mo share/locale/he/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/he/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/he/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/he/LC_MESSAGES/plasmashell.mo share/locale/he/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/he/LC_MESSAGES/plasmawindowed.mo share/locale/he/LC_MESSAGES/session-shortcuts-kded.mo share/locale/he/LC_MESSAGES/soliduiserver.mo share/locale/hi/LC_MESSAGES/freespacenotifier.mo share/locale/hi/LC_MESSAGES/kcm_autostart.mo share/locale/hi/LC_MESSAGES/kcm_colors.mo share/locale/hi/LC_MESSAGES/kcm_componentchooser.mo share/locale/hi/LC_MESSAGES/kcm_cursortheme.mo share/locale/hi/LC_MESSAGES/kcm_desktoptheme.mo share/locale/hi/LC_MESSAGES/kcm_feedback.mo share/locale/hi/LC_MESSAGES/kcm_fonts.mo share/locale/hi/LC_MESSAGES/kcm_icons.mo share/locale/hi/LC_MESSAGES/kcm_lookandfeel.mo share/locale/hi/LC_MESSAGES/kcm_nightlight.mo share/locale/hi/LC_MESSAGES/kcm_notifications.mo share/locale/hi/LC_MESSAGES/kcm_regionandlang.mo share/locale/hi/LC_MESSAGES/kcm_soundtheme.mo share/locale/hi/LC_MESSAGES/kcm_style.mo share/locale/hi/LC_MESSAGES/kcm_users.mo share/locale/hi/LC_MESSAGES/kcminit.mo share/locale/hi/LC_MESSAGES/kded_devicenotifications.mo share/locale/hi/LC_MESSAGES/kded_donationmessage.mo share/locale/hi/LC_MESSAGES/kfontinst.mo share/locale/hi/LC_MESSAGES/kio_applications.mo share/locale/hi/LC_MESSAGES/kio_desktop.mo share/locale/hi/LC_MESSAGES/klipper.mo share/locale/hi/LC_MESSAGES/krdb.mo share/locale/hi/LC_MESSAGES/krunner.mo share/locale/hi/LC_MESSAGES/ksmserver.mo share/locale/hi/LC_MESSAGES/libkicker.mo share/locale/hi/LC_MESSAGES/libkmpris.mo share/locale/hi/LC_MESSAGES/libkworkspace.mo share/locale/hi/LC_MESSAGES/libnotificationmanager.mo share/locale/hi/LC_MESSAGES/oom-notifier.mo -share/locale/hi/LC_MESSAGES/phonon_kde_plugin.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.systemtray.mo share/locale/hi/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/hi/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/hi/LC_MESSAGES/plasma_containmentactions_switchwindow.mo -share/locale/hi/LC_MESSAGES/plasma_engine_applicationjobs.mo -share/locale/hi/LC_MESSAGES/plasma_engine_notifications.mo -share/locale/hi/LC_MESSAGES/plasma_engine_time.mo share/locale/hi/LC_MESSAGES/plasma_interactiveconsole.mo share/locale/hi/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/hi/LC_MESSAGES/plasma_runner_appstream.mo share/locale/hi/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/hi/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/hi/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/hi/LC_MESSAGES/plasma_runner_kill.mo share/locale/hi/LC_MESSAGES/plasma_runner_locations.mo share/locale/hi/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/hi/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/hi/LC_MESSAGES/plasma_runner_services.mo share/locale/hi/LC_MESSAGES/plasma_runner_sessions.mo share/locale/hi/LC_MESSAGES/plasma_runner_shell.mo share/locale/hi/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/hi/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/hi/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/hi/LC_MESSAGES/plasmashell.mo share/locale/hi/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/hi/LC_MESSAGES/plasmawindowed.mo share/locale/hi/LC_MESSAGES/session-shortcuts-kded.mo share/locale/hi/LC_MESSAGES/soliduiserver.mo share/locale/hne/LC_MESSAGES/kcm_autostart.mo share/locale/hne/LC_MESSAGES/kcm_colors.mo share/locale/hne/LC_MESSAGES/kcm_componentchooser.mo share/locale/hne/LC_MESSAGES/kcm_cursortheme.mo share/locale/hne/LC_MESSAGES/kcm_fonts.mo share/locale/hne/LC_MESSAGES/kcm_icons.mo share/locale/hne/LC_MESSAGES/kcm_style.mo share/locale/hne/LC_MESSAGES/kcminit.mo share/locale/hne/LC_MESSAGES/kfontinst.mo share/locale/hne/LC_MESSAGES/kio_applications.mo share/locale/hne/LC_MESSAGES/krdb.mo share/locale/hne/LC_MESSAGES/ksmserver.mo share/locale/hne/LC_MESSAGES/libkworkspace.mo -share/locale/hne/LC_MESSAGES/phonon_kde_plugin.mo share/locale/hne/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/hne/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/hne/LC_MESSAGES/plasma_runner_locations.mo share/locale/hne/LC_MESSAGES/plasma_runner_sessions.mo share/locale/hne/LC_MESSAGES/plasma_runner_shell.mo share/locale/hne/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/hne/LC_MESSAGES/soliduiserver.mo share/locale/hr/LC_MESSAGES/freespacenotifier.mo share/locale/hr/LC_MESSAGES/kcm_autostart.mo share/locale/hr/LC_MESSAGES/kcm_colors.mo share/locale/hr/LC_MESSAGES/kcm_componentchooser.mo share/locale/hr/LC_MESSAGES/kcm_cursortheme.mo share/locale/hr/LC_MESSAGES/kcm_desktoptheme.mo share/locale/hr/LC_MESSAGES/kcm_fonts.mo share/locale/hr/LC_MESSAGES/kcm_icons.mo share/locale/hr/LC_MESSAGES/kcm_style.mo share/locale/hr/LC_MESSAGES/kcminit.mo share/locale/hr/LC_MESSAGES/kfontinst.mo share/locale/hr/LC_MESSAGES/kio_applications.mo share/locale/hr/LC_MESSAGES/klipper.mo share/locale/hr/LC_MESSAGES/krdb.mo share/locale/hr/LC_MESSAGES/ksmserver.mo share/locale/hr/LC_MESSAGES/libkworkspace.mo -share/locale/hr/LC_MESSAGES/phonon_kde_plugin.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/hr/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/hr/LC_MESSAGES/plasma_containmentactions_switchwindow.mo -share/locale/hr/LC_MESSAGES/plasma_engine_applicationjobs.mo -share/locale/hr/LC_MESSAGES/plasma_engine_notifications.mo share/locale/hr/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/hr/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/hr/LC_MESSAGES/plasma_runner_kill.mo share/locale/hr/LC_MESSAGES/plasma_runner_locations.mo share/locale/hr/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/hr/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/hr/LC_MESSAGES/plasma_runner_services.mo share/locale/hr/LC_MESSAGES/plasma_runner_sessions.mo share/locale/hr/LC_MESSAGES/plasma_runner_shell.mo share/locale/hr/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/hr/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/hr/LC_MESSAGES/soliduiserver.mo share/locale/hsb/LC_MESSAGES/freespacenotifier.mo share/locale/hsb/LC_MESSAGES/kcm_autostart.mo share/locale/hsb/LC_MESSAGES/kcm_colors.mo share/locale/hsb/LC_MESSAGES/kcm_componentchooser.mo share/locale/hsb/LC_MESSAGES/kcm_cursortheme.mo share/locale/hsb/LC_MESSAGES/kcm_desktoptheme.mo share/locale/hsb/LC_MESSAGES/kcm_fonts.mo share/locale/hsb/LC_MESSAGES/kcm_icons.mo share/locale/hsb/LC_MESSAGES/kcm_style.mo share/locale/hsb/LC_MESSAGES/kcminit.mo share/locale/hsb/LC_MESSAGES/kfontinst.mo share/locale/hsb/LC_MESSAGES/kio_applications.mo share/locale/hsb/LC_MESSAGES/klipper.mo share/locale/hsb/LC_MESSAGES/krdb.mo share/locale/hsb/LC_MESSAGES/ksmserver.mo share/locale/hsb/LC_MESSAGES/libkicker.mo share/locale/hsb/LC_MESSAGES/libkworkspace.mo -share/locale/hsb/LC_MESSAGES/phonon_kde_plugin.mo share/locale/hsb/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/hsb/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/hsb/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/hsb/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/hsb/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/hsb/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/hsb/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/hsb/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/hsb/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/hsb/LC_MESSAGES/plasma_runner_locations.mo share/locale/hsb/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/hsb/LC_MESSAGES/plasma_runner_sessions.mo share/locale/hsb/LC_MESSAGES/plasma_runner_shell.mo share/locale/hsb/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/hsb/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/hsb/LC_MESSAGES/soliduiserver.mo share/locale/hu/LC_MESSAGES/freespacenotifier.mo share/locale/hu/LC_MESSAGES/kcm_autostart.mo share/locale/hu/LC_MESSAGES/kcm_colors.mo share/locale/hu/LC_MESSAGES/kcm_componentchooser.mo share/locale/hu/LC_MESSAGES/kcm_cursortheme.mo share/locale/hu/LC_MESSAGES/kcm_desktoptheme.mo share/locale/hu/LC_MESSAGES/kcm_feedback.mo share/locale/hu/LC_MESSAGES/kcm_fonts.mo share/locale/hu/LC_MESSAGES/kcm_icons.mo share/locale/hu/LC_MESSAGES/kcm_lookandfeel.mo share/locale/hu/LC_MESSAGES/kcm_nightlight.mo share/locale/hu/LC_MESSAGES/kcm_nighttime.mo share/locale/hu/LC_MESSAGES/kcm_notifications.mo share/locale/hu/LC_MESSAGES/kcm_regionandlang.mo share/locale/hu/LC_MESSAGES/kcm_soundtheme.mo share/locale/hu/LC_MESSAGES/kcm_style.mo share/locale/hu/LC_MESSAGES/kcm_users.mo share/locale/hu/LC_MESSAGES/kcm_wallpaper.mo share/locale/hu/LC_MESSAGES/kcminit.mo share/locale/hu/LC_MESSAGES/kded_devicenotifications.mo share/locale/hu/LC_MESSAGES/kded_donationmessage.mo share/locale/hu/LC_MESSAGES/kded_geotimezoned.mo share/locale/hu/LC_MESSAGES/kfontinst.mo share/locale/hu/LC_MESSAGES/kio_applications.mo share/locale/hu/LC_MESSAGES/kio_desktop.mo share/locale/hu/LC_MESSAGES/klipper.mo share/locale/hu/LC_MESSAGES/krdb.mo share/locale/hu/LC_MESSAGES/krunner.mo share/locale/hu/LC_MESSAGES/ksmserver.mo share/locale/hu/LC_MESSAGES/libkicker.mo share/locale/hu/LC_MESSAGES/libkmpris.mo share/locale/hu/LC_MESSAGES/libkworkspace.mo share/locale/hu/LC_MESSAGES/libnotificationmanager.mo share/locale/hu/LC_MESSAGES/oom-notifier.mo -share/locale/hu/LC_MESSAGES/phonon_kde_plugin.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.systemtray.mo share/locale/hu/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/hu/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/hu/LC_MESSAGES/plasma_containmentactions_switchwindow.mo -share/locale/hu/LC_MESSAGES/plasma_engine_applicationjobs.mo -share/locale/hu/LC_MESSAGES/plasma_engine_notifications.mo -share/locale/hu/LC_MESSAGES/plasma_engine_time.mo share/locale/hu/LC_MESSAGES/plasma_interactiveconsole.mo share/locale/hu/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/hu/LC_MESSAGES/plasma_runner_appstream.mo share/locale/hu/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/hu/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/hu/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/hu/LC_MESSAGES/plasma_runner_kill.mo share/locale/hu/LC_MESSAGES/plasma_runner_locations.mo share/locale/hu/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/hu/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/hu/LC_MESSAGES/plasma_runner_services.mo share/locale/hu/LC_MESSAGES/plasma_runner_sessions.mo share/locale/hu/LC_MESSAGES/plasma_runner_shell.mo share/locale/hu/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/hu/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/hu/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/hu/LC_MESSAGES/plasmashell.mo share/locale/hu/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/hu/LC_MESSAGES/plasmawindowed.mo share/locale/hu/LC_MESSAGES/session-shortcuts-kded.mo share/locale/hu/LC_MESSAGES/soliduiserver.mo share/locale/hy/LC_MESSAGES/kcminit.mo share/locale/hy/LC_MESSAGES/kfontinst.mo -share/locale/hy/LC_MESSAGES/phonon_kde_plugin.mo share/locale/hy/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/hy/LC_MESSAGES/plasma_runner_locations.mo share/locale/ia/LC_MESSAGES/freespacenotifier.mo share/locale/ia/LC_MESSAGES/kcm_autostart.mo share/locale/ia/LC_MESSAGES/kcm_colors.mo share/locale/ia/LC_MESSAGES/kcm_componentchooser.mo share/locale/ia/LC_MESSAGES/kcm_cursortheme.mo share/locale/ia/LC_MESSAGES/kcm_desktoptheme.mo share/locale/ia/LC_MESSAGES/kcm_feedback.mo share/locale/ia/LC_MESSAGES/kcm_fonts.mo share/locale/ia/LC_MESSAGES/kcm_icons.mo share/locale/ia/LC_MESSAGES/kcm_lookandfeel.mo share/locale/ia/LC_MESSAGES/kcm_nightlight.mo +share/locale/ia/LC_MESSAGES/kcm_nighttime.mo share/locale/ia/LC_MESSAGES/kcm_notifications.mo share/locale/ia/LC_MESSAGES/kcm_regionandlang.mo share/locale/ia/LC_MESSAGES/kcm_soundtheme.mo share/locale/ia/LC_MESSAGES/kcm_style.mo share/locale/ia/LC_MESSAGES/kcm_users.mo +share/locale/ia/LC_MESSAGES/kcm_wallpaper.mo share/locale/ia/LC_MESSAGES/kcminit.mo share/locale/ia/LC_MESSAGES/kded_devicenotifications.mo share/locale/ia/LC_MESSAGES/kded_donationmessage.mo share/locale/ia/LC_MESSAGES/kded_geotimezoned.mo share/locale/ia/LC_MESSAGES/kfontinst.mo share/locale/ia/LC_MESSAGES/kio_applications.mo share/locale/ia/LC_MESSAGES/kio_desktop.mo share/locale/ia/LC_MESSAGES/klipper.mo share/locale/ia/LC_MESSAGES/krdb.mo share/locale/ia/LC_MESSAGES/krunner.mo +share/locale/ia/LC_MESSAGES/ksecretprompter.mo share/locale/ia/LC_MESSAGES/ksmserver.mo share/locale/ia/LC_MESSAGES/libkicker.mo share/locale/ia/LC_MESSAGES/libkmpris.mo share/locale/ia/LC_MESSAGES/libkworkspace.mo share/locale/ia/LC_MESSAGES/libnotificationmanager.mo share/locale/ia/LC_MESSAGES/oom-notifier.mo -share/locale/ia/LC_MESSAGES/phonon_kde_plugin.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.systemtray.mo share/locale/ia/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/ia/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/ia/LC_MESSAGES/plasma_containmentactions_switchwindow.mo -share/locale/ia/LC_MESSAGES/plasma_engine_applicationjobs.mo -share/locale/ia/LC_MESSAGES/plasma_engine_notifications.mo -share/locale/ia/LC_MESSAGES/plasma_engine_time.mo share/locale/ia/LC_MESSAGES/plasma_interactiveconsole.mo share/locale/ia/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/ia/LC_MESSAGES/plasma_runner_appstream.mo share/locale/ia/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/ia/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/ia/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/ia/LC_MESSAGES/plasma_runner_kill.mo share/locale/ia/LC_MESSAGES/plasma_runner_locations.mo share/locale/ia/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/ia/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/ia/LC_MESSAGES/plasma_runner_services.mo share/locale/ia/LC_MESSAGES/plasma_runner_sessions.mo share/locale/ia/LC_MESSAGES/plasma_runner_shell.mo share/locale/ia/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/ia/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/ia/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/ia/LC_MESSAGES/plasmashell.mo share/locale/ia/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/ia/LC_MESSAGES/plasmawindowed.mo share/locale/ia/LC_MESSAGES/session-shortcuts-kded.mo share/locale/ia/LC_MESSAGES/soliduiserver.mo share/locale/id/LC_MESSAGES/freespacenotifier.mo share/locale/id/LC_MESSAGES/kcm_autostart.mo share/locale/id/LC_MESSAGES/kcm_colors.mo share/locale/id/LC_MESSAGES/kcm_componentchooser.mo share/locale/id/LC_MESSAGES/kcm_cursortheme.mo share/locale/id/LC_MESSAGES/kcm_desktoptheme.mo share/locale/id/LC_MESSAGES/kcm_feedback.mo share/locale/id/LC_MESSAGES/kcm_fonts.mo share/locale/id/LC_MESSAGES/kcm_icons.mo share/locale/id/LC_MESSAGES/kcm_lookandfeel.mo share/locale/id/LC_MESSAGES/kcm_nightlight.mo share/locale/id/LC_MESSAGES/kcm_notifications.mo share/locale/id/LC_MESSAGES/kcm_regionandlang.mo share/locale/id/LC_MESSAGES/kcm_soundtheme.mo share/locale/id/LC_MESSAGES/kcm_style.mo share/locale/id/LC_MESSAGES/kcm_users.mo share/locale/id/LC_MESSAGES/kcminit.mo share/locale/id/LC_MESSAGES/kded_devicenotifications.mo share/locale/id/LC_MESSAGES/kded_donationmessage.mo share/locale/id/LC_MESSAGES/kded_geotimezoned.mo share/locale/id/LC_MESSAGES/kfontinst.mo share/locale/id/LC_MESSAGES/kio_applications.mo share/locale/id/LC_MESSAGES/kio_desktop.mo share/locale/id/LC_MESSAGES/klipper.mo share/locale/id/LC_MESSAGES/krdb.mo share/locale/id/LC_MESSAGES/krunner.mo share/locale/id/LC_MESSAGES/ksmserver.mo share/locale/id/LC_MESSAGES/libkicker.mo share/locale/id/LC_MESSAGES/libkmpris.mo share/locale/id/LC_MESSAGES/libkworkspace.mo share/locale/id/LC_MESSAGES/libnotificationmanager.mo share/locale/id/LC_MESSAGES/oom-notifier.mo -share/locale/id/LC_MESSAGES/phonon_kde_plugin.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.systemtray.mo share/locale/id/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/id/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/id/LC_MESSAGES/plasma_containmentactions_switchwindow.mo -share/locale/id/LC_MESSAGES/plasma_engine_applicationjobs.mo -share/locale/id/LC_MESSAGES/plasma_engine_notifications.mo -share/locale/id/LC_MESSAGES/plasma_engine_time.mo share/locale/id/LC_MESSAGES/plasma_interactiveconsole.mo share/locale/id/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/id/LC_MESSAGES/plasma_runner_appstream.mo share/locale/id/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/id/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/id/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/id/LC_MESSAGES/plasma_runner_kill.mo share/locale/id/LC_MESSAGES/plasma_runner_locations.mo share/locale/id/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/id/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/id/LC_MESSAGES/plasma_runner_services.mo share/locale/id/LC_MESSAGES/plasma_runner_sessions.mo share/locale/id/LC_MESSAGES/plasma_runner_shell.mo share/locale/id/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/id/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/id/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/id/LC_MESSAGES/plasmashell.mo share/locale/id/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/id/LC_MESSAGES/plasmawindowed.mo share/locale/id/LC_MESSAGES/session-shortcuts-kded.mo share/locale/id/LC_MESSAGES/soliduiserver.mo share/locale/ie/LC_MESSAGES/kcm_regionandlang.mo share/locale/ie/LC_MESSAGES/kded_devicenotifications.mo share/locale/ie/LC_MESSAGES/kio_desktop.mo share/locale/ie/LC_MESSAGES/krdb.mo share/locale/ie/LC_MESSAGES/libkicker.mo share/locale/ie/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/ie/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/ie/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/ie/LC_MESSAGES/plasma_runner_locations.mo share/locale/ie/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/ie/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/ie/LC_MESSAGES/plasma_runner_services.mo share/locale/ie/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/ie/LC_MESSAGES/plasmashell.mo share/locale/is/LC_MESSAGES/freespacenotifier.mo share/locale/is/LC_MESSAGES/kcm_autostart.mo share/locale/is/LC_MESSAGES/kcm_colors.mo share/locale/is/LC_MESSAGES/kcm_componentchooser.mo share/locale/is/LC_MESSAGES/kcm_cursortheme.mo share/locale/is/LC_MESSAGES/kcm_desktoptheme.mo share/locale/is/LC_MESSAGES/kcm_feedback.mo share/locale/is/LC_MESSAGES/kcm_fonts.mo share/locale/is/LC_MESSAGES/kcm_icons.mo share/locale/is/LC_MESSAGES/kcm_lookandfeel.mo share/locale/is/LC_MESSAGES/kcm_nightlight.mo share/locale/is/LC_MESSAGES/kcm_nighttime.mo share/locale/is/LC_MESSAGES/kcm_notifications.mo share/locale/is/LC_MESSAGES/kcm_regionandlang.mo share/locale/is/LC_MESSAGES/kcm_soundtheme.mo share/locale/is/LC_MESSAGES/kcm_style.mo share/locale/is/LC_MESSAGES/kcm_users.mo share/locale/is/LC_MESSAGES/kcm_wallpaper.mo share/locale/is/LC_MESSAGES/kcminit.mo share/locale/is/LC_MESSAGES/kded_devicenotifications.mo share/locale/is/LC_MESSAGES/kded_donationmessage.mo share/locale/is/LC_MESSAGES/kded_geotimezoned.mo share/locale/is/LC_MESSAGES/kfontinst.mo share/locale/is/LC_MESSAGES/kio_applications.mo share/locale/is/LC_MESSAGES/kio_desktop.mo share/locale/is/LC_MESSAGES/klipper.mo share/locale/is/LC_MESSAGES/krdb.mo share/locale/is/LC_MESSAGES/krunner.mo +share/locale/is/LC_MESSAGES/ksecretprompter.mo share/locale/is/LC_MESSAGES/ksmserver.mo share/locale/is/LC_MESSAGES/libkicker.mo share/locale/is/LC_MESSAGES/libkmpris.mo share/locale/is/LC_MESSAGES/libkworkspace.mo share/locale/is/LC_MESSAGES/libnotificationmanager.mo share/locale/is/LC_MESSAGES/oom-notifier.mo -share/locale/is/LC_MESSAGES/phonon_kde_plugin.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.systemtray.mo share/locale/is/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/is/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/is/LC_MESSAGES/plasma_containmentactions_switchwindow.mo -share/locale/is/LC_MESSAGES/plasma_engine_applicationjobs.mo -share/locale/is/LC_MESSAGES/plasma_engine_notifications.mo -share/locale/is/LC_MESSAGES/plasma_engine_time.mo share/locale/is/LC_MESSAGES/plasma_interactiveconsole.mo share/locale/is/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/is/LC_MESSAGES/plasma_runner_appstream.mo share/locale/is/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/is/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/is/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/is/LC_MESSAGES/plasma_runner_kill.mo share/locale/is/LC_MESSAGES/plasma_runner_locations.mo share/locale/is/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/is/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/is/LC_MESSAGES/plasma_runner_services.mo share/locale/is/LC_MESSAGES/plasma_runner_sessions.mo share/locale/is/LC_MESSAGES/plasma_runner_shell.mo share/locale/is/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/is/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/is/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/is/LC_MESSAGES/plasmashell.mo share/locale/is/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/is/LC_MESSAGES/plasmawindowed.mo share/locale/is/LC_MESSAGES/session-shortcuts-kded.mo share/locale/is/LC_MESSAGES/soliduiserver.mo share/locale/it/LC_MESSAGES/freespacenotifier.mo share/locale/it/LC_MESSAGES/kcm_autostart.mo share/locale/it/LC_MESSAGES/kcm_colors.mo share/locale/it/LC_MESSAGES/kcm_componentchooser.mo share/locale/it/LC_MESSAGES/kcm_cursortheme.mo share/locale/it/LC_MESSAGES/kcm_desktoptheme.mo share/locale/it/LC_MESSAGES/kcm_feedback.mo share/locale/it/LC_MESSAGES/kcm_fonts.mo share/locale/it/LC_MESSAGES/kcm_icons.mo share/locale/it/LC_MESSAGES/kcm_lookandfeel.mo share/locale/it/LC_MESSAGES/kcm_nightlight.mo share/locale/it/LC_MESSAGES/kcm_nighttime.mo share/locale/it/LC_MESSAGES/kcm_notifications.mo share/locale/it/LC_MESSAGES/kcm_regionandlang.mo share/locale/it/LC_MESSAGES/kcm_soundtheme.mo share/locale/it/LC_MESSAGES/kcm_style.mo share/locale/it/LC_MESSAGES/kcm_users.mo share/locale/it/LC_MESSAGES/kcm_wallpaper.mo share/locale/it/LC_MESSAGES/kcminit.mo share/locale/it/LC_MESSAGES/kded_devicenotifications.mo share/locale/it/LC_MESSAGES/kded_donationmessage.mo share/locale/it/LC_MESSAGES/kded_geotimezoned.mo share/locale/it/LC_MESSAGES/kfontinst.mo share/locale/it/LC_MESSAGES/kio_applications.mo share/locale/it/LC_MESSAGES/kio_desktop.mo share/locale/it/LC_MESSAGES/klipper.mo share/locale/it/LC_MESSAGES/krdb.mo share/locale/it/LC_MESSAGES/krunner.mo +share/locale/it/LC_MESSAGES/ksecretprompter.mo share/locale/it/LC_MESSAGES/ksmserver.mo share/locale/it/LC_MESSAGES/libkicker.mo share/locale/it/LC_MESSAGES/libkmpris.mo share/locale/it/LC_MESSAGES/libkworkspace.mo share/locale/it/LC_MESSAGES/libnotificationmanager.mo share/locale/it/LC_MESSAGES/oom-notifier.mo -share/locale/it/LC_MESSAGES/phonon_kde_plugin.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.systemtray.mo share/locale/it/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/it/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/it/LC_MESSAGES/plasma_containmentactions_switchwindow.mo -share/locale/it/LC_MESSAGES/plasma_engine_applicationjobs.mo -share/locale/it/LC_MESSAGES/plasma_engine_notifications.mo -share/locale/it/LC_MESSAGES/plasma_engine_time.mo share/locale/it/LC_MESSAGES/plasma_interactiveconsole.mo share/locale/it/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/it/LC_MESSAGES/plasma_runner_appstream.mo share/locale/it/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/it/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/it/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/it/LC_MESSAGES/plasma_runner_kill.mo share/locale/it/LC_MESSAGES/plasma_runner_locations.mo share/locale/it/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/it/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/it/LC_MESSAGES/plasma_runner_services.mo share/locale/it/LC_MESSAGES/plasma_runner_sessions.mo share/locale/it/LC_MESSAGES/plasma_runner_shell.mo share/locale/it/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/it/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/it/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/it/LC_MESSAGES/plasmashell.mo share/locale/it/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/it/LC_MESSAGES/plasmawindowed.mo share/locale/it/LC_MESSAGES/session-shortcuts-kded.mo share/locale/it/LC_MESSAGES/soliduiserver.mo share/locale/ja/LC_MESSAGES/freespacenotifier.mo share/locale/ja/LC_MESSAGES/kcm_autostart.mo share/locale/ja/LC_MESSAGES/kcm_colors.mo share/locale/ja/LC_MESSAGES/kcm_componentchooser.mo share/locale/ja/LC_MESSAGES/kcm_cursortheme.mo share/locale/ja/LC_MESSAGES/kcm_desktoptheme.mo share/locale/ja/LC_MESSAGES/kcm_feedback.mo share/locale/ja/LC_MESSAGES/kcm_fonts.mo share/locale/ja/LC_MESSAGES/kcm_icons.mo share/locale/ja/LC_MESSAGES/kcm_lookandfeel.mo share/locale/ja/LC_MESSAGES/kcm_nightlight.mo share/locale/ja/LC_MESSAGES/kcm_notifications.mo share/locale/ja/LC_MESSAGES/kcm_regionandlang.mo share/locale/ja/LC_MESSAGES/kcm_soundtheme.mo share/locale/ja/LC_MESSAGES/kcm_style.mo share/locale/ja/LC_MESSAGES/kcm_users.mo share/locale/ja/LC_MESSAGES/kcminit.mo share/locale/ja/LC_MESSAGES/kded_devicenotifications.mo share/locale/ja/LC_MESSAGES/kded_donationmessage.mo share/locale/ja/LC_MESSAGES/kfontinst.mo share/locale/ja/LC_MESSAGES/kio_applications.mo share/locale/ja/LC_MESSAGES/kio_desktop.mo share/locale/ja/LC_MESSAGES/klipper.mo share/locale/ja/LC_MESSAGES/krdb.mo share/locale/ja/LC_MESSAGES/krunner.mo share/locale/ja/LC_MESSAGES/ksmserver.mo share/locale/ja/LC_MESSAGES/libkicker.mo share/locale/ja/LC_MESSAGES/libkmpris.mo share/locale/ja/LC_MESSAGES/libkworkspace.mo share/locale/ja/LC_MESSAGES/libnotificationmanager.mo -share/locale/ja/LC_MESSAGES/phonon_kde_plugin.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.systemtray.mo share/locale/ja/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/ja/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/ja/LC_MESSAGES/plasma_containmentactions_switchwindow.mo -share/locale/ja/LC_MESSAGES/plasma_engine_applicationjobs.mo -share/locale/ja/LC_MESSAGES/plasma_engine_notifications.mo -share/locale/ja/LC_MESSAGES/plasma_engine_time.mo share/locale/ja/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/ja/LC_MESSAGES/plasma_runner_appstream.mo share/locale/ja/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/ja/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/ja/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/ja/LC_MESSAGES/plasma_runner_kill.mo share/locale/ja/LC_MESSAGES/plasma_runner_locations.mo share/locale/ja/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/ja/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/ja/LC_MESSAGES/plasma_runner_services.mo share/locale/ja/LC_MESSAGES/plasma_runner_sessions.mo share/locale/ja/LC_MESSAGES/plasma_runner_shell.mo share/locale/ja/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/ja/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/ja/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/ja/LC_MESSAGES/plasmashell.mo share/locale/ja/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/ja/LC_MESSAGES/plasmawindowed.mo share/locale/ja/LC_MESSAGES/session-shortcuts-kded.mo share/locale/ja/LC_MESSAGES/soliduiserver.mo share/locale/ka/LC_MESSAGES/freespacenotifier.mo share/locale/ka/LC_MESSAGES/kcm_autostart.mo share/locale/ka/LC_MESSAGES/kcm_colors.mo share/locale/ka/LC_MESSAGES/kcm_componentchooser.mo share/locale/ka/LC_MESSAGES/kcm_cursortheme.mo share/locale/ka/LC_MESSAGES/kcm_desktoptheme.mo share/locale/ka/LC_MESSAGES/kcm_feedback.mo share/locale/ka/LC_MESSAGES/kcm_fonts.mo share/locale/ka/LC_MESSAGES/kcm_icons.mo share/locale/ka/LC_MESSAGES/kcm_lookandfeel.mo share/locale/ka/LC_MESSAGES/kcm_nightlight.mo share/locale/ka/LC_MESSAGES/kcm_nighttime.mo share/locale/ka/LC_MESSAGES/kcm_notifications.mo share/locale/ka/LC_MESSAGES/kcm_regionandlang.mo share/locale/ka/LC_MESSAGES/kcm_soundtheme.mo share/locale/ka/LC_MESSAGES/kcm_style.mo share/locale/ka/LC_MESSAGES/kcm_users.mo share/locale/ka/LC_MESSAGES/kcm_wallpaper.mo share/locale/ka/LC_MESSAGES/kcminit.mo share/locale/ka/LC_MESSAGES/kded_devicenotifications.mo share/locale/ka/LC_MESSAGES/kded_donationmessage.mo share/locale/ka/LC_MESSAGES/kded_geotimezoned.mo share/locale/ka/LC_MESSAGES/kfontinst.mo share/locale/ka/LC_MESSAGES/kio_applications.mo share/locale/ka/LC_MESSAGES/kio_desktop.mo share/locale/ka/LC_MESSAGES/klipper.mo share/locale/ka/LC_MESSAGES/krdb.mo share/locale/ka/LC_MESSAGES/krunner.mo +share/locale/ka/LC_MESSAGES/ksecretprompter.mo share/locale/ka/LC_MESSAGES/ksmserver.mo share/locale/ka/LC_MESSAGES/libkicker.mo share/locale/ka/LC_MESSAGES/libkmpris.mo share/locale/ka/LC_MESSAGES/libkworkspace.mo share/locale/ka/LC_MESSAGES/libnotificationmanager.mo share/locale/ka/LC_MESSAGES/oom-notifier.mo -share/locale/ka/LC_MESSAGES/phonon_kde_plugin.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.systemtray.mo share/locale/ka/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/ka/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/ka/LC_MESSAGES/plasma_containmentactions_switchwindow.mo -share/locale/ka/LC_MESSAGES/plasma_engine_applicationjobs.mo -share/locale/ka/LC_MESSAGES/plasma_engine_notifications.mo -share/locale/ka/LC_MESSAGES/plasma_engine_time.mo share/locale/ka/LC_MESSAGES/plasma_interactiveconsole.mo share/locale/ka/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/ka/LC_MESSAGES/plasma_runner_appstream.mo share/locale/ka/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/ka/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/ka/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/ka/LC_MESSAGES/plasma_runner_kill.mo share/locale/ka/LC_MESSAGES/plasma_runner_locations.mo share/locale/ka/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/ka/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/ka/LC_MESSAGES/plasma_runner_services.mo share/locale/ka/LC_MESSAGES/plasma_runner_sessions.mo share/locale/ka/LC_MESSAGES/plasma_runner_shell.mo share/locale/ka/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/ka/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/ka/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/ka/LC_MESSAGES/plasmashell.mo share/locale/ka/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/ka/LC_MESSAGES/plasmawindowed.mo share/locale/ka/LC_MESSAGES/session-shortcuts-kded.mo share/locale/ka/LC_MESSAGES/soliduiserver.mo share/locale/kk/LC_MESSAGES/freespacenotifier.mo share/locale/kk/LC_MESSAGES/kcm_autostart.mo share/locale/kk/LC_MESSAGES/kcm_colors.mo share/locale/kk/LC_MESSAGES/kcm_componentchooser.mo share/locale/kk/LC_MESSAGES/kcm_cursortheme.mo share/locale/kk/LC_MESSAGES/kcm_desktoptheme.mo share/locale/kk/LC_MESSAGES/kcm_fonts.mo share/locale/kk/LC_MESSAGES/kcm_icons.mo share/locale/kk/LC_MESSAGES/kcm_style.mo share/locale/kk/LC_MESSAGES/kcminit.mo share/locale/kk/LC_MESSAGES/kfontinst.mo share/locale/kk/LC_MESSAGES/kio_applications.mo share/locale/kk/LC_MESSAGES/klipper.mo share/locale/kk/LC_MESSAGES/krdb.mo share/locale/kk/LC_MESSAGES/ksmserver.mo share/locale/kk/LC_MESSAGES/libkworkspace.mo -share/locale/kk/LC_MESSAGES/phonon_kde_plugin.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.systemtray.mo share/locale/kk/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/kk/LC_MESSAGES/plasma_containmentactions_switchwindow.mo -share/locale/kk/LC_MESSAGES/plasma_engine_applicationjobs.mo -share/locale/kk/LC_MESSAGES/plasma_engine_notifications.mo share/locale/kk/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/kk/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/kk/LC_MESSAGES/plasma_runner_kill.mo share/locale/kk/LC_MESSAGES/plasma_runner_locations.mo share/locale/kk/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/kk/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/kk/LC_MESSAGES/plasma_runner_services.mo share/locale/kk/LC_MESSAGES/plasma_runner_sessions.mo share/locale/kk/LC_MESSAGES/plasma_runner_shell.mo share/locale/kk/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/kk/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/kk/LC_MESSAGES/soliduiserver.mo share/locale/km/LC_MESSAGES/freespacenotifier.mo share/locale/km/LC_MESSAGES/kcm_autostart.mo share/locale/km/LC_MESSAGES/kcm_colors.mo share/locale/km/LC_MESSAGES/kcm_componentchooser.mo share/locale/km/LC_MESSAGES/kcm_cursortheme.mo share/locale/km/LC_MESSAGES/kcm_desktoptheme.mo share/locale/km/LC_MESSAGES/kcm_fonts.mo share/locale/km/LC_MESSAGES/kcm_icons.mo share/locale/km/LC_MESSAGES/kcm_style.mo share/locale/km/LC_MESSAGES/kcminit.mo share/locale/km/LC_MESSAGES/kfontinst.mo share/locale/km/LC_MESSAGES/kio_applications.mo share/locale/km/LC_MESSAGES/klipper.mo share/locale/km/LC_MESSAGES/krdb.mo share/locale/km/LC_MESSAGES/ksmserver.mo share/locale/km/LC_MESSAGES/libkworkspace.mo -share/locale/km/LC_MESSAGES/phonon_kde_plugin.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/km/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/km/LC_MESSAGES/plasma_containmentactions_switchwindow.mo -share/locale/km/LC_MESSAGES/plasma_engine_applicationjobs.mo -share/locale/km/LC_MESSAGES/plasma_engine_notifications.mo share/locale/km/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/km/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/km/LC_MESSAGES/plasma_runner_kill.mo share/locale/km/LC_MESSAGES/plasma_runner_locations.mo share/locale/km/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/km/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/km/LC_MESSAGES/plasma_runner_services.mo share/locale/km/LC_MESSAGES/plasma_runner_sessions.mo share/locale/km/LC_MESSAGES/plasma_runner_shell.mo share/locale/km/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/km/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/km/LC_MESSAGES/soliduiserver.mo share/locale/kn/LC_MESSAGES/freespacenotifier.mo share/locale/kn/LC_MESSAGES/kcm_autostart.mo share/locale/kn/LC_MESSAGES/kcm_colors.mo share/locale/kn/LC_MESSAGES/kcm_componentchooser.mo share/locale/kn/LC_MESSAGES/kcm_cursortheme.mo share/locale/kn/LC_MESSAGES/kcm_desktoptheme.mo share/locale/kn/LC_MESSAGES/kcm_fonts.mo share/locale/kn/LC_MESSAGES/kcm_icons.mo share/locale/kn/LC_MESSAGES/kcm_style.mo share/locale/kn/LC_MESSAGES/kcminit.mo share/locale/kn/LC_MESSAGES/kfontinst.mo share/locale/kn/LC_MESSAGES/kio_applications.mo share/locale/kn/LC_MESSAGES/klipper.mo share/locale/kn/LC_MESSAGES/krdb.mo share/locale/kn/LC_MESSAGES/ksmserver.mo share/locale/kn/LC_MESSAGES/libkworkspace.mo -share/locale/kn/LC_MESSAGES/phonon_kde_plugin.mo share/locale/kn/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/kn/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/kn/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/kn/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/kn/LC_MESSAGES/plasma_containmentactions_switchwindow.mo -share/locale/kn/LC_MESSAGES/plasma_engine_applicationjobs.mo -share/locale/kn/LC_MESSAGES/plasma_engine_notifications.mo share/locale/kn/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/kn/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/kn/LC_MESSAGES/plasma_runner_kill.mo share/locale/kn/LC_MESSAGES/plasma_runner_locations.mo share/locale/kn/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/kn/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/kn/LC_MESSAGES/plasma_runner_services.mo share/locale/kn/LC_MESSAGES/plasma_runner_sessions.mo share/locale/kn/LC_MESSAGES/plasma_runner_shell.mo share/locale/kn/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/kn/LC_MESSAGES/soliduiserver.mo share/locale/ko/LC_MESSAGES/freespacenotifier.mo share/locale/ko/LC_MESSAGES/kcm_autostart.mo share/locale/ko/LC_MESSAGES/kcm_colors.mo share/locale/ko/LC_MESSAGES/kcm_componentchooser.mo share/locale/ko/LC_MESSAGES/kcm_cursortheme.mo share/locale/ko/LC_MESSAGES/kcm_desktoptheme.mo share/locale/ko/LC_MESSAGES/kcm_feedback.mo share/locale/ko/LC_MESSAGES/kcm_fonts.mo share/locale/ko/LC_MESSAGES/kcm_icons.mo share/locale/ko/LC_MESSAGES/kcm_lookandfeel.mo share/locale/ko/LC_MESSAGES/kcm_nightlight.mo share/locale/ko/LC_MESSAGES/kcm_nighttime.mo share/locale/ko/LC_MESSAGES/kcm_notifications.mo share/locale/ko/LC_MESSAGES/kcm_regionandlang.mo share/locale/ko/LC_MESSAGES/kcm_soundtheme.mo share/locale/ko/LC_MESSAGES/kcm_style.mo share/locale/ko/LC_MESSAGES/kcm_users.mo share/locale/ko/LC_MESSAGES/kcm_wallpaper.mo share/locale/ko/LC_MESSAGES/kcminit.mo share/locale/ko/LC_MESSAGES/kded_devicenotifications.mo share/locale/ko/LC_MESSAGES/kded_donationmessage.mo share/locale/ko/LC_MESSAGES/kded_geotimezoned.mo share/locale/ko/LC_MESSAGES/kfontinst.mo share/locale/ko/LC_MESSAGES/kio_applications.mo share/locale/ko/LC_MESSAGES/kio_desktop.mo share/locale/ko/LC_MESSAGES/klipper.mo share/locale/ko/LC_MESSAGES/krdb.mo share/locale/ko/LC_MESSAGES/krunner.mo share/locale/ko/LC_MESSAGES/ksmserver.mo share/locale/ko/LC_MESSAGES/libkicker.mo share/locale/ko/LC_MESSAGES/libkmpris.mo share/locale/ko/LC_MESSAGES/libkworkspace.mo share/locale/ko/LC_MESSAGES/libnotificationmanager.mo share/locale/ko/LC_MESSAGES/oom-notifier.mo -share/locale/ko/LC_MESSAGES/phonon_kde_plugin.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.systemtray.mo share/locale/ko/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/ko/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/ko/LC_MESSAGES/plasma_containmentactions_switchwindow.mo -share/locale/ko/LC_MESSAGES/plasma_engine_applicationjobs.mo -share/locale/ko/LC_MESSAGES/plasma_engine_notifications.mo -share/locale/ko/LC_MESSAGES/plasma_engine_time.mo share/locale/ko/LC_MESSAGES/plasma_interactiveconsole.mo share/locale/ko/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/ko/LC_MESSAGES/plasma_runner_appstream.mo share/locale/ko/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/ko/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/ko/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/ko/LC_MESSAGES/plasma_runner_kill.mo share/locale/ko/LC_MESSAGES/plasma_runner_locations.mo share/locale/ko/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/ko/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/ko/LC_MESSAGES/plasma_runner_services.mo share/locale/ko/LC_MESSAGES/plasma_runner_sessions.mo share/locale/ko/LC_MESSAGES/plasma_runner_shell.mo share/locale/ko/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/ko/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/ko/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/ko/LC_MESSAGES/plasmashell.mo share/locale/ko/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/ko/LC_MESSAGES/plasmawindowed.mo share/locale/ko/LC_MESSAGES/session-shortcuts-kded.mo share/locale/ko/LC_MESSAGES/soliduiserver.mo share/locale/ku/LC_MESSAGES/kcm_autostart.mo share/locale/ku/LC_MESSAGES/kcm_colors.mo share/locale/ku/LC_MESSAGES/kcm_componentchooser.mo share/locale/ku/LC_MESSAGES/kcm_cursortheme.mo share/locale/ku/LC_MESSAGES/kcm_desktoptheme.mo share/locale/ku/LC_MESSAGES/kcm_fonts.mo share/locale/ku/LC_MESSAGES/kcm_icons.mo share/locale/ku/LC_MESSAGES/kcm_style.mo share/locale/ku/LC_MESSAGES/kcminit.mo share/locale/ku/LC_MESSAGES/kfontinst.mo share/locale/ku/LC_MESSAGES/kio_applications.mo share/locale/ku/LC_MESSAGES/klipper.mo share/locale/ku/LC_MESSAGES/krdb.mo share/locale/ku/LC_MESSAGES/ksmserver.mo share/locale/ku/LC_MESSAGES/libkworkspace.mo -share/locale/ku/LC_MESSAGES/phonon_kde_plugin.mo share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo -share/locale/ku/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/ku/LC_MESSAGES/plasma_runner_locations.mo share/locale/ku/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/ku/LC_MESSAGES/plasma_runner_sessions.mo share/locale/ku/LC_MESSAGES/plasma_runner_shell.mo share/locale/ku/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/ku/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/ku/LC_MESSAGES/soliduiserver.mo share/locale/lb/LC_MESSAGES/kio_applications.mo share/locale/lt/LC_MESSAGES/freespacenotifier.mo share/locale/lt/LC_MESSAGES/kcm_autostart.mo share/locale/lt/LC_MESSAGES/kcm_colors.mo share/locale/lt/LC_MESSAGES/kcm_componentchooser.mo share/locale/lt/LC_MESSAGES/kcm_cursortheme.mo share/locale/lt/LC_MESSAGES/kcm_desktoptheme.mo share/locale/lt/LC_MESSAGES/kcm_feedback.mo share/locale/lt/LC_MESSAGES/kcm_fonts.mo share/locale/lt/LC_MESSAGES/kcm_icons.mo share/locale/lt/LC_MESSAGES/kcm_lookandfeel.mo share/locale/lt/LC_MESSAGES/kcm_nightlight.mo share/locale/lt/LC_MESSAGES/kcm_nighttime.mo share/locale/lt/LC_MESSAGES/kcm_notifications.mo share/locale/lt/LC_MESSAGES/kcm_regionandlang.mo share/locale/lt/LC_MESSAGES/kcm_soundtheme.mo share/locale/lt/LC_MESSAGES/kcm_style.mo share/locale/lt/LC_MESSAGES/kcm_users.mo +share/locale/lt/LC_MESSAGES/kcm_wallpaper.mo share/locale/lt/LC_MESSAGES/kcminit.mo share/locale/lt/LC_MESSAGES/kded_devicenotifications.mo share/locale/lt/LC_MESSAGES/kded_donationmessage.mo share/locale/lt/LC_MESSAGES/kded_geotimezoned.mo share/locale/lt/LC_MESSAGES/kfontinst.mo share/locale/lt/LC_MESSAGES/kio_applications.mo share/locale/lt/LC_MESSAGES/kio_desktop.mo share/locale/lt/LC_MESSAGES/klipper.mo share/locale/lt/LC_MESSAGES/krdb.mo share/locale/lt/LC_MESSAGES/krunner.mo share/locale/lt/LC_MESSAGES/ksmserver.mo share/locale/lt/LC_MESSAGES/libkicker.mo share/locale/lt/LC_MESSAGES/libkmpris.mo share/locale/lt/LC_MESSAGES/libkworkspace.mo share/locale/lt/LC_MESSAGES/libnotificationmanager.mo share/locale/lt/LC_MESSAGES/oom-notifier.mo -share/locale/lt/LC_MESSAGES/phonon_kde_plugin.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.systemtray.mo share/locale/lt/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/lt/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/lt/LC_MESSAGES/plasma_containmentactions_switchwindow.mo -share/locale/lt/LC_MESSAGES/plasma_engine_applicationjobs.mo -share/locale/lt/LC_MESSAGES/plasma_engine_notifications.mo -share/locale/lt/LC_MESSAGES/plasma_engine_time.mo share/locale/lt/LC_MESSAGES/plasma_interactiveconsole.mo share/locale/lt/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/lt/LC_MESSAGES/plasma_runner_appstream.mo share/locale/lt/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/lt/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/lt/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/lt/LC_MESSAGES/plasma_runner_kill.mo share/locale/lt/LC_MESSAGES/plasma_runner_locations.mo share/locale/lt/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/lt/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/lt/LC_MESSAGES/plasma_runner_services.mo share/locale/lt/LC_MESSAGES/plasma_runner_sessions.mo share/locale/lt/LC_MESSAGES/plasma_runner_shell.mo share/locale/lt/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/lt/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/lt/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/lt/LC_MESSAGES/plasmashell.mo share/locale/lt/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/lt/LC_MESSAGES/plasmawindowed.mo share/locale/lt/LC_MESSAGES/session-shortcuts-kded.mo share/locale/lt/LC_MESSAGES/soliduiserver.mo share/locale/lv/LC_MESSAGES/freespacenotifier.mo share/locale/lv/LC_MESSAGES/kcm_autostart.mo share/locale/lv/LC_MESSAGES/kcm_colors.mo share/locale/lv/LC_MESSAGES/kcm_componentchooser.mo share/locale/lv/LC_MESSAGES/kcm_cursortheme.mo share/locale/lv/LC_MESSAGES/kcm_desktoptheme.mo share/locale/lv/LC_MESSAGES/kcm_feedback.mo share/locale/lv/LC_MESSAGES/kcm_fonts.mo share/locale/lv/LC_MESSAGES/kcm_icons.mo share/locale/lv/LC_MESSAGES/kcm_lookandfeel.mo share/locale/lv/LC_MESSAGES/kcm_nightlight.mo share/locale/lv/LC_MESSAGES/kcm_nighttime.mo share/locale/lv/LC_MESSAGES/kcm_notifications.mo share/locale/lv/LC_MESSAGES/kcm_regionandlang.mo share/locale/lv/LC_MESSAGES/kcm_soundtheme.mo share/locale/lv/LC_MESSAGES/kcm_style.mo share/locale/lv/LC_MESSAGES/kcm_users.mo share/locale/lv/LC_MESSAGES/kcminit.mo share/locale/lv/LC_MESSAGES/kded_devicenotifications.mo share/locale/lv/LC_MESSAGES/kded_donationmessage.mo share/locale/lv/LC_MESSAGES/kded_geotimezoned.mo share/locale/lv/LC_MESSAGES/kfontinst.mo share/locale/lv/LC_MESSAGES/kio_applications.mo share/locale/lv/LC_MESSAGES/kio_desktop.mo share/locale/lv/LC_MESSAGES/klipper.mo share/locale/lv/LC_MESSAGES/krdb.mo share/locale/lv/LC_MESSAGES/krunner.mo share/locale/lv/LC_MESSAGES/ksmserver.mo share/locale/lv/LC_MESSAGES/libkicker.mo share/locale/lv/LC_MESSAGES/libkmpris.mo share/locale/lv/LC_MESSAGES/libkworkspace.mo share/locale/lv/LC_MESSAGES/libnotificationmanager.mo share/locale/lv/LC_MESSAGES/oom-notifier.mo -share/locale/lv/LC_MESSAGES/phonon_kde_plugin.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.systemtray.mo share/locale/lv/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/lv/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/lv/LC_MESSAGES/plasma_containmentactions_switchwindow.mo -share/locale/lv/LC_MESSAGES/plasma_engine_applicationjobs.mo -share/locale/lv/LC_MESSAGES/plasma_engine_notifications.mo -share/locale/lv/LC_MESSAGES/plasma_engine_time.mo share/locale/lv/LC_MESSAGES/plasma_interactiveconsole.mo share/locale/lv/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/lv/LC_MESSAGES/plasma_runner_appstream.mo share/locale/lv/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/lv/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/lv/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/lv/LC_MESSAGES/plasma_runner_kill.mo share/locale/lv/LC_MESSAGES/plasma_runner_locations.mo share/locale/lv/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/lv/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/lv/LC_MESSAGES/plasma_runner_services.mo share/locale/lv/LC_MESSAGES/plasma_runner_sessions.mo share/locale/lv/LC_MESSAGES/plasma_runner_shell.mo share/locale/lv/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/lv/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/lv/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/lv/LC_MESSAGES/plasmashell.mo share/locale/lv/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/lv/LC_MESSAGES/plasmawindowed.mo share/locale/lv/LC_MESSAGES/session-shortcuts-kded.mo share/locale/lv/LC_MESSAGES/soliduiserver.mo share/locale/mai/LC_MESSAGES/freespacenotifier.mo share/locale/mai/LC_MESSAGES/kcm_autostart.mo share/locale/mai/LC_MESSAGES/kcm_colors.mo share/locale/mai/LC_MESSAGES/kcm_componentchooser.mo share/locale/mai/LC_MESSAGES/kcm_cursortheme.mo share/locale/mai/LC_MESSAGES/kcm_desktoptheme.mo share/locale/mai/LC_MESSAGES/kcm_fonts.mo share/locale/mai/LC_MESSAGES/kcm_icons.mo share/locale/mai/LC_MESSAGES/kcm_style.mo share/locale/mai/LC_MESSAGES/kcminit.mo share/locale/mai/LC_MESSAGES/kfontinst.mo share/locale/mai/LC_MESSAGES/kio_applications.mo share/locale/mai/LC_MESSAGES/klipper.mo share/locale/mai/LC_MESSAGES/krdb.mo share/locale/mai/LC_MESSAGES/ksmserver.mo share/locale/mai/LC_MESSAGES/libkworkspace.mo -share/locale/mai/LC_MESSAGES/phonon_kde_plugin.mo share/locale/mai/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/mai/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/mai/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/mai/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/mai/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/mai/LC_MESSAGES/plasma_containmentactions_switchwindow.mo -share/locale/mai/LC_MESSAGES/plasma_engine_applicationjobs.mo -share/locale/mai/LC_MESSAGES/plasma_engine_notifications.mo share/locale/mai/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/mai/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/mai/LC_MESSAGES/plasma_runner_kill.mo share/locale/mai/LC_MESSAGES/plasma_runner_locations.mo share/locale/mai/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/mai/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/mai/LC_MESSAGES/plasma_runner_services.mo share/locale/mai/LC_MESSAGES/plasma_runner_sessions.mo share/locale/mai/LC_MESSAGES/plasma_runner_shell.mo share/locale/mai/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/mai/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/mai/LC_MESSAGES/soliduiserver.mo share/locale/mk/LC_MESSAGES/kcm_autostart.mo share/locale/mk/LC_MESSAGES/kcm_colors.mo share/locale/mk/LC_MESSAGES/kcm_componentchooser.mo share/locale/mk/LC_MESSAGES/kcm_cursortheme.mo share/locale/mk/LC_MESSAGES/kcm_desktoptheme.mo share/locale/mk/LC_MESSAGES/kcm_fonts.mo share/locale/mk/LC_MESSAGES/kcm_icons.mo share/locale/mk/LC_MESSAGES/kcm_style.mo share/locale/mk/LC_MESSAGES/kcminit.mo share/locale/mk/LC_MESSAGES/kfontinst.mo share/locale/mk/LC_MESSAGES/kio_applications.mo share/locale/mk/LC_MESSAGES/klipper.mo share/locale/mk/LC_MESSAGES/krdb.mo share/locale/mk/LC_MESSAGES/ksmserver.mo share/locale/mk/LC_MESSAGES/libkworkspace.mo -share/locale/mk/LC_MESSAGES/phonon_kde_plugin.mo share/locale/mk/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/mk/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/mk/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/mk/LC_MESSAGES/plasma_runner_locations.mo share/locale/mk/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/mk/LC_MESSAGES/plasma_runner_sessions.mo share/locale/mk/LC_MESSAGES/plasma_runner_shell.mo share/locale/mk/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/mk/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/mk/LC_MESSAGES/soliduiserver.mo share/locale/ml/LC_MESSAGES/freespacenotifier.mo share/locale/ml/LC_MESSAGES/kcm_autostart.mo share/locale/ml/LC_MESSAGES/kcm_colors.mo share/locale/ml/LC_MESSAGES/kcm_componentchooser.mo share/locale/ml/LC_MESSAGES/kcm_cursortheme.mo share/locale/ml/LC_MESSAGES/kcm_desktoptheme.mo share/locale/ml/LC_MESSAGES/kcm_feedback.mo share/locale/ml/LC_MESSAGES/kcm_fonts.mo share/locale/ml/LC_MESSAGES/kcm_icons.mo share/locale/ml/LC_MESSAGES/kcm_lookandfeel.mo share/locale/ml/LC_MESSAGES/kcm_nightlight.mo share/locale/ml/LC_MESSAGES/kcm_notifications.mo share/locale/ml/LC_MESSAGES/kcm_style.mo share/locale/ml/LC_MESSAGES/kcminit.mo share/locale/ml/LC_MESSAGES/kfontinst.mo share/locale/ml/LC_MESSAGES/kio_applications.mo share/locale/ml/LC_MESSAGES/kio_desktop.mo share/locale/ml/LC_MESSAGES/klipper.mo share/locale/ml/LC_MESSAGES/krdb.mo share/locale/ml/LC_MESSAGES/krunner.mo share/locale/ml/LC_MESSAGES/ksmserver.mo share/locale/ml/LC_MESSAGES/libkicker.mo share/locale/ml/LC_MESSAGES/libkworkspace.mo share/locale/ml/LC_MESSAGES/libnotificationmanager.mo -share/locale/ml/LC_MESSAGES/phonon_kde_plugin.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.systemtray.mo share/locale/ml/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/ml/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/ml/LC_MESSAGES/plasma_containmentactions_switchwindow.mo -share/locale/ml/LC_MESSAGES/plasma_engine_applicationjobs.mo -share/locale/ml/LC_MESSAGES/plasma_engine_notifications.mo -share/locale/ml/LC_MESSAGES/plasma_engine_time.mo share/locale/ml/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/ml/LC_MESSAGES/plasma_runner_appstream.mo share/locale/ml/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/ml/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/ml/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/ml/LC_MESSAGES/plasma_runner_kill.mo share/locale/ml/LC_MESSAGES/plasma_runner_locations.mo share/locale/ml/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/ml/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/ml/LC_MESSAGES/plasma_runner_services.mo share/locale/ml/LC_MESSAGES/plasma_runner_sessions.mo share/locale/ml/LC_MESSAGES/plasma_runner_shell.mo share/locale/ml/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/ml/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/ml/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/ml/LC_MESSAGES/plasmashell.mo share/locale/ml/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/ml/LC_MESSAGES/soliduiserver.mo share/locale/mr/LC_MESSAGES/freespacenotifier.mo share/locale/mr/LC_MESSAGES/kcm_autostart.mo share/locale/mr/LC_MESSAGES/kcm_colors.mo share/locale/mr/LC_MESSAGES/kcm_componentchooser.mo share/locale/mr/LC_MESSAGES/kcm_cursortheme.mo share/locale/mr/LC_MESSAGES/kcm_desktoptheme.mo share/locale/mr/LC_MESSAGES/kcm_fonts.mo share/locale/mr/LC_MESSAGES/kcm_icons.mo share/locale/mr/LC_MESSAGES/kcm_style.mo share/locale/mr/LC_MESSAGES/kcminit.mo share/locale/mr/LC_MESSAGES/kfontinst.mo share/locale/mr/LC_MESSAGES/kio_applications.mo share/locale/mr/LC_MESSAGES/klipper.mo share/locale/mr/LC_MESSAGES/krdb.mo share/locale/mr/LC_MESSAGES/ksmserver.mo share/locale/mr/LC_MESSAGES/libkicker.mo share/locale/mr/LC_MESSAGES/libkworkspace.mo -share/locale/mr/LC_MESSAGES/phonon_kde_plugin.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/mr/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/mr/LC_MESSAGES/plasma_containmentactions_switchwindow.mo -share/locale/mr/LC_MESSAGES/plasma_engine_applicationjobs.mo -share/locale/mr/LC_MESSAGES/plasma_engine_notifications.mo share/locale/mr/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/mr/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/mr/LC_MESSAGES/plasma_runner_kill.mo share/locale/mr/LC_MESSAGES/plasma_runner_locations.mo share/locale/mr/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/mr/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/mr/LC_MESSAGES/plasma_runner_services.mo share/locale/mr/LC_MESSAGES/plasma_runner_sessions.mo share/locale/mr/LC_MESSAGES/plasma_runner_shell.mo share/locale/mr/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/mr/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/mr/LC_MESSAGES/soliduiserver.mo share/locale/ms/LC_MESSAGES/freespacenotifier.mo share/locale/ms/LC_MESSAGES/kcm_autostart.mo share/locale/ms/LC_MESSAGES/kcm_colors.mo share/locale/ms/LC_MESSAGES/kcm_componentchooser.mo share/locale/ms/LC_MESSAGES/kcm_cursortheme.mo share/locale/ms/LC_MESSAGES/kcm_desktoptheme.mo share/locale/ms/LC_MESSAGES/kcm_fonts.mo share/locale/ms/LC_MESSAGES/kcm_icons.mo share/locale/ms/LC_MESSAGES/kcm_style.mo share/locale/ms/LC_MESSAGES/kcminit.mo share/locale/ms/LC_MESSAGES/kfontinst.mo share/locale/ms/LC_MESSAGES/kio_applications.mo share/locale/ms/LC_MESSAGES/klipper.mo share/locale/ms/LC_MESSAGES/krdb.mo share/locale/ms/LC_MESSAGES/ksmserver.mo share/locale/ms/LC_MESSAGES/libkworkspace.mo -share/locale/ms/LC_MESSAGES/phonon_kde_plugin.mo share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/ms/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/ms/LC_MESSAGES/plasma_containmentactions_switchwindow.mo -share/locale/ms/LC_MESSAGES/plasma_engine_applicationjobs.mo -share/locale/ms/LC_MESSAGES/plasma_engine_notifications.mo share/locale/ms/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/ms/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/ms/LC_MESSAGES/plasma_runner_kill.mo share/locale/ms/LC_MESSAGES/plasma_runner_locations.mo share/locale/ms/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/ms/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/ms/LC_MESSAGES/plasma_runner_services.mo share/locale/ms/LC_MESSAGES/plasma_runner_sessions.mo share/locale/ms/LC_MESSAGES/plasma_runner_shell.mo share/locale/ms/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/ms/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/ms/LC_MESSAGES/soliduiserver.mo share/locale/nb/LC_MESSAGES/freespacenotifier.mo share/locale/nb/LC_MESSAGES/kcm_autostart.mo share/locale/nb/LC_MESSAGES/kcm_colors.mo share/locale/nb/LC_MESSAGES/kcm_componentchooser.mo share/locale/nb/LC_MESSAGES/kcm_cursortheme.mo share/locale/nb/LC_MESSAGES/kcm_desktoptheme.mo share/locale/nb/LC_MESSAGES/kcm_feedback.mo share/locale/nb/LC_MESSAGES/kcm_fonts.mo share/locale/nb/LC_MESSAGES/kcm_icons.mo share/locale/nb/LC_MESSAGES/kcm_lookandfeel.mo share/locale/nb/LC_MESSAGES/kcm_nightlight.mo +share/locale/nb/LC_MESSAGES/kcm_nighttime.mo share/locale/nb/LC_MESSAGES/kcm_notifications.mo share/locale/nb/LC_MESSAGES/kcm_regionandlang.mo share/locale/nb/LC_MESSAGES/kcm_soundtheme.mo share/locale/nb/LC_MESSAGES/kcm_style.mo share/locale/nb/LC_MESSAGES/kcm_users.mo +share/locale/nb/LC_MESSAGES/kcm_wallpaper.mo share/locale/nb/LC_MESSAGES/kcminit.mo share/locale/nb/LC_MESSAGES/kded_devicenotifications.mo share/locale/nb/LC_MESSAGES/kded_donationmessage.mo share/locale/nb/LC_MESSAGES/kded_geotimezoned.mo share/locale/nb/LC_MESSAGES/kfontinst.mo share/locale/nb/LC_MESSAGES/kio_applications.mo share/locale/nb/LC_MESSAGES/kio_desktop.mo share/locale/nb/LC_MESSAGES/klipper.mo share/locale/nb/LC_MESSAGES/krdb.mo share/locale/nb/LC_MESSAGES/krunner.mo +share/locale/nb/LC_MESSAGES/ksecretprompter.mo share/locale/nb/LC_MESSAGES/ksmserver.mo share/locale/nb/LC_MESSAGES/libkicker.mo share/locale/nb/LC_MESSAGES/libkmpris.mo share/locale/nb/LC_MESSAGES/libkworkspace.mo share/locale/nb/LC_MESSAGES/libnotificationmanager.mo share/locale/nb/LC_MESSAGES/oom-notifier.mo -share/locale/nb/LC_MESSAGES/phonon_kde_plugin.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.systemtray.mo share/locale/nb/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/nb/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/nb/LC_MESSAGES/plasma_containmentactions_switchwindow.mo -share/locale/nb/LC_MESSAGES/plasma_engine_applicationjobs.mo -share/locale/nb/LC_MESSAGES/plasma_engine_notifications.mo -share/locale/nb/LC_MESSAGES/plasma_engine_time.mo share/locale/nb/LC_MESSAGES/plasma_interactiveconsole.mo share/locale/nb/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/nb/LC_MESSAGES/plasma_runner_appstream.mo share/locale/nb/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/nb/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/nb/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/nb/LC_MESSAGES/plasma_runner_kill.mo share/locale/nb/LC_MESSAGES/plasma_runner_locations.mo share/locale/nb/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/nb/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/nb/LC_MESSAGES/plasma_runner_services.mo share/locale/nb/LC_MESSAGES/plasma_runner_sessions.mo share/locale/nb/LC_MESSAGES/plasma_runner_shell.mo share/locale/nb/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/nb/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/nb/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/nb/LC_MESSAGES/plasmashell.mo share/locale/nb/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/nb/LC_MESSAGES/plasmawindowed.mo share/locale/nb/LC_MESSAGES/session-shortcuts-kded.mo share/locale/nb/LC_MESSAGES/soliduiserver.mo share/locale/nds/LC_MESSAGES/freespacenotifier.mo share/locale/nds/LC_MESSAGES/kcm_autostart.mo share/locale/nds/LC_MESSAGES/kcm_colors.mo share/locale/nds/LC_MESSAGES/kcm_componentchooser.mo share/locale/nds/LC_MESSAGES/kcm_cursortheme.mo share/locale/nds/LC_MESSAGES/kcm_desktoptheme.mo share/locale/nds/LC_MESSAGES/kcm_fonts.mo share/locale/nds/LC_MESSAGES/kcm_icons.mo share/locale/nds/LC_MESSAGES/kcm_lookandfeel.mo share/locale/nds/LC_MESSAGES/kcm_style.mo share/locale/nds/LC_MESSAGES/kcminit.mo share/locale/nds/LC_MESSAGES/kfontinst.mo share/locale/nds/LC_MESSAGES/kio_applications.mo share/locale/nds/LC_MESSAGES/klipper.mo share/locale/nds/LC_MESSAGES/krdb.mo share/locale/nds/LC_MESSAGES/krunner.mo share/locale/nds/LC_MESSAGES/ksmserver.mo share/locale/nds/LC_MESSAGES/libkicker.mo share/locale/nds/LC_MESSAGES/libkworkspace.mo -share/locale/nds/LC_MESSAGES/phonon_kde_plugin.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.systemtray.mo share/locale/nds/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/nds/LC_MESSAGES/plasma_containmentactions_switchwindow.mo -share/locale/nds/LC_MESSAGES/plasma_engine_applicationjobs.mo -share/locale/nds/LC_MESSAGES/plasma_engine_notifications.mo -share/locale/nds/LC_MESSAGES/plasma_engine_time.mo share/locale/nds/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/nds/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/nds/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/nds/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/nds/LC_MESSAGES/plasma_runner_kill.mo share/locale/nds/LC_MESSAGES/plasma_runner_locations.mo share/locale/nds/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/nds/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/nds/LC_MESSAGES/plasma_runner_services.mo share/locale/nds/LC_MESSAGES/plasma_runner_sessions.mo share/locale/nds/LC_MESSAGES/plasma_runner_shell.mo share/locale/nds/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/nds/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/nds/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/nds/LC_MESSAGES/plasmashell.mo share/locale/nds/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/nds/LC_MESSAGES/soliduiserver.mo share/locale/ne/LC_MESSAGES/kcm_colors.mo share/locale/ne/LC_MESSAGES/kcm_componentchooser.mo share/locale/ne/LC_MESSAGES/kcm_cursortheme.mo share/locale/ne/LC_MESSAGES/kcm_fonts.mo share/locale/ne/LC_MESSAGES/kcm_icons.mo share/locale/ne/LC_MESSAGES/kcm_style.mo share/locale/ne/LC_MESSAGES/kcminit.mo share/locale/ne/LC_MESSAGES/kfontinst.mo share/locale/ne/LC_MESSAGES/kio_applications.mo share/locale/ne/LC_MESSAGES/klipper.mo share/locale/ne/LC_MESSAGES/krdb.mo share/locale/ne/LC_MESSAGES/ksmserver.mo share/locale/ne/LC_MESSAGES/libkworkspace.mo -share/locale/ne/LC_MESSAGES/phonon_kde_plugin.mo share/locale/ne/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/ne/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/ne/LC_MESSAGES/soliduiserver.mo share/locale/nl/LC_MESSAGES/freespacenotifier.mo share/locale/nl/LC_MESSAGES/kcm_autostart.mo share/locale/nl/LC_MESSAGES/kcm_colors.mo share/locale/nl/LC_MESSAGES/kcm_componentchooser.mo share/locale/nl/LC_MESSAGES/kcm_cursortheme.mo share/locale/nl/LC_MESSAGES/kcm_desktoptheme.mo share/locale/nl/LC_MESSAGES/kcm_feedback.mo share/locale/nl/LC_MESSAGES/kcm_fonts.mo share/locale/nl/LC_MESSAGES/kcm_icons.mo share/locale/nl/LC_MESSAGES/kcm_lookandfeel.mo share/locale/nl/LC_MESSAGES/kcm_nightlight.mo share/locale/nl/LC_MESSAGES/kcm_nighttime.mo share/locale/nl/LC_MESSAGES/kcm_notifications.mo share/locale/nl/LC_MESSAGES/kcm_regionandlang.mo share/locale/nl/LC_MESSAGES/kcm_soundtheme.mo share/locale/nl/LC_MESSAGES/kcm_style.mo share/locale/nl/LC_MESSAGES/kcm_users.mo share/locale/nl/LC_MESSAGES/kcm_wallpaper.mo share/locale/nl/LC_MESSAGES/kcminit.mo share/locale/nl/LC_MESSAGES/kded_devicenotifications.mo share/locale/nl/LC_MESSAGES/kded_donationmessage.mo share/locale/nl/LC_MESSAGES/kded_geotimezoned.mo share/locale/nl/LC_MESSAGES/kfontinst.mo share/locale/nl/LC_MESSAGES/kio_applications.mo share/locale/nl/LC_MESSAGES/kio_desktop.mo share/locale/nl/LC_MESSAGES/klipper.mo share/locale/nl/LC_MESSAGES/krdb.mo share/locale/nl/LC_MESSAGES/krunner.mo +share/locale/nl/LC_MESSAGES/ksecretprompter.mo share/locale/nl/LC_MESSAGES/ksmserver.mo share/locale/nl/LC_MESSAGES/libkicker.mo share/locale/nl/LC_MESSAGES/libkmpris.mo share/locale/nl/LC_MESSAGES/libkworkspace.mo share/locale/nl/LC_MESSAGES/libnotificationmanager.mo share/locale/nl/LC_MESSAGES/oom-notifier.mo -share/locale/nl/LC_MESSAGES/phonon_kde_plugin.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.systemtray.mo share/locale/nl/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/nl/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/nl/LC_MESSAGES/plasma_containmentactions_switchwindow.mo -share/locale/nl/LC_MESSAGES/plasma_engine_applicationjobs.mo -share/locale/nl/LC_MESSAGES/plasma_engine_notifications.mo -share/locale/nl/LC_MESSAGES/plasma_engine_time.mo share/locale/nl/LC_MESSAGES/plasma_interactiveconsole.mo share/locale/nl/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/nl/LC_MESSAGES/plasma_runner_appstream.mo share/locale/nl/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/nl/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/nl/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/nl/LC_MESSAGES/plasma_runner_kill.mo share/locale/nl/LC_MESSAGES/plasma_runner_locations.mo share/locale/nl/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/nl/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/nl/LC_MESSAGES/plasma_runner_services.mo share/locale/nl/LC_MESSAGES/plasma_runner_sessions.mo share/locale/nl/LC_MESSAGES/plasma_runner_shell.mo share/locale/nl/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/nl/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/nl/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/nl/LC_MESSAGES/plasmashell.mo share/locale/nl/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/nl/LC_MESSAGES/plasmawindowed.mo share/locale/nl/LC_MESSAGES/session-shortcuts-kded.mo share/locale/nl/LC_MESSAGES/soliduiserver.mo share/locale/nn/LC_MESSAGES/freespacenotifier.mo share/locale/nn/LC_MESSAGES/kcm_autostart.mo share/locale/nn/LC_MESSAGES/kcm_colors.mo share/locale/nn/LC_MESSAGES/kcm_componentchooser.mo share/locale/nn/LC_MESSAGES/kcm_cursortheme.mo share/locale/nn/LC_MESSAGES/kcm_desktoptheme.mo share/locale/nn/LC_MESSAGES/kcm_feedback.mo share/locale/nn/LC_MESSAGES/kcm_fonts.mo share/locale/nn/LC_MESSAGES/kcm_icons.mo share/locale/nn/LC_MESSAGES/kcm_lookandfeel.mo share/locale/nn/LC_MESSAGES/kcm_nightlight.mo share/locale/nn/LC_MESSAGES/kcm_nighttime.mo share/locale/nn/LC_MESSAGES/kcm_notifications.mo share/locale/nn/LC_MESSAGES/kcm_regionandlang.mo share/locale/nn/LC_MESSAGES/kcm_soundtheme.mo share/locale/nn/LC_MESSAGES/kcm_style.mo share/locale/nn/LC_MESSAGES/kcm_users.mo share/locale/nn/LC_MESSAGES/kcm_wallpaper.mo share/locale/nn/LC_MESSAGES/kcminit.mo share/locale/nn/LC_MESSAGES/kded_devicenotifications.mo share/locale/nn/LC_MESSAGES/kded_donationmessage.mo share/locale/nn/LC_MESSAGES/kded_geotimezoned.mo share/locale/nn/LC_MESSAGES/kfontinst.mo share/locale/nn/LC_MESSAGES/kio_applications.mo share/locale/nn/LC_MESSAGES/kio_desktop.mo share/locale/nn/LC_MESSAGES/klipper.mo share/locale/nn/LC_MESSAGES/krdb.mo share/locale/nn/LC_MESSAGES/krunner.mo share/locale/nn/LC_MESSAGES/ksmserver.mo share/locale/nn/LC_MESSAGES/libkicker.mo share/locale/nn/LC_MESSAGES/libkmpris.mo share/locale/nn/LC_MESSAGES/libkworkspace.mo share/locale/nn/LC_MESSAGES/libnotificationmanager.mo share/locale/nn/LC_MESSAGES/oom-notifier.mo -share/locale/nn/LC_MESSAGES/phonon_kde_plugin.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.systemtray.mo share/locale/nn/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/nn/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/nn/LC_MESSAGES/plasma_containmentactions_switchwindow.mo -share/locale/nn/LC_MESSAGES/plasma_engine_applicationjobs.mo -share/locale/nn/LC_MESSAGES/plasma_engine_notifications.mo -share/locale/nn/LC_MESSAGES/plasma_engine_time.mo share/locale/nn/LC_MESSAGES/plasma_interactiveconsole.mo share/locale/nn/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/nn/LC_MESSAGES/plasma_runner_appstream.mo share/locale/nn/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/nn/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/nn/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/nn/LC_MESSAGES/plasma_runner_kill.mo share/locale/nn/LC_MESSAGES/plasma_runner_locations.mo share/locale/nn/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/nn/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/nn/LC_MESSAGES/plasma_runner_services.mo share/locale/nn/LC_MESSAGES/plasma_runner_sessions.mo share/locale/nn/LC_MESSAGES/plasma_runner_shell.mo share/locale/nn/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/nn/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/nn/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/nn/LC_MESSAGES/plasmashell.mo share/locale/nn/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/nn/LC_MESSAGES/plasmawindowed.mo share/locale/nn/LC_MESSAGES/session-shortcuts-kded.mo share/locale/nn/LC_MESSAGES/soliduiserver.mo share/locale/oc/LC_MESSAGES/kcm_colors.mo share/locale/oc/LC_MESSAGES/kcm_componentchooser.mo share/locale/oc/LC_MESSAGES/kcm_cursortheme.mo share/locale/oc/LC_MESSAGES/kcm_fonts.mo share/locale/oc/LC_MESSAGES/kcm_icons.mo share/locale/oc/LC_MESSAGES/kcm_style.mo share/locale/oc/LC_MESSAGES/kcminit.mo share/locale/oc/LC_MESSAGES/kfontinst.mo share/locale/oc/LC_MESSAGES/kio_applications.mo share/locale/oc/LC_MESSAGES/klipper.mo share/locale/oc/LC_MESSAGES/krdb.mo share/locale/oc/LC_MESSAGES/ksmserver.mo share/locale/oc/LC_MESSAGES/libkworkspace.mo -share/locale/oc/LC_MESSAGES/phonon_kde_plugin.mo share/locale/oc/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/oc/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/oc/LC_MESSAGES/soliduiserver.mo share/locale/or/LC_MESSAGES/kcm_autostart.mo share/locale/or/LC_MESSAGES/kcm_colors.mo share/locale/or/LC_MESSAGES/kcm_componentchooser.mo share/locale/or/LC_MESSAGES/kcm_cursortheme.mo share/locale/or/LC_MESSAGES/kcm_desktoptheme.mo share/locale/or/LC_MESSAGES/kcm_fonts.mo share/locale/or/LC_MESSAGES/kcm_icons.mo share/locale/or/LC_MESSAGES/kcm_style.mo share/locale/or/LC_MESSAGES/kcminit.mo share/locale/or/LC_MESSAGES/kfontinst.mo share/locale/or/LC_MESSAGES/kio_applications.mo share/locale/or/LC_MESSAGES/klipper.mo share/locale/or/LC_MESSAGES/krdb.mo share/locale/or/LC_MESSAGES/ksmserver.mo share/locale/or/LC_MESSAGES/libkworkspace.mo -share/locale/or/LC_MESSAGES/phonon_kde_plugin.mo share/locale/or/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/or/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo -share/locale/or/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/or/LC_MESSAGES/plasma_runner_locations.mo share/locale/or/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/or/LC_MESSAGES/plasma_runner_sessions.mo share/locale/or/LC_MESSAGES/plasma_runner_shell.mo share/locale/or/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/or/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/or/LC_MESSAGES/soliduiserver.mo share/locale/pa/LC_MESSAGES/freespacenotifier.mo share/locale/pa/LC_MESSAGES/kcm_autostart.mo share/locale/pa/LC_MESSAGES/kcm_colors.mo share/locale/pa/LC_MESSAGES/kcm_componentchooser.mo share/locale/pa/LC_MESSAGES/kcm_cursortheme.mo share/locale/pa/LC_MESSAGES/kcm_desktoptheme.mo share/locale/pa/LC_MESSAGES/kcm_feedback.mo share/locale/pa/LC_MESSAGES/kcm_fonts.mo share/locale/pa/LC_MESSAGES/kcm_icons.mo share/locale/pa/LC_MESSAGES/kcm_lookandfeel.mo share/locale/pa/LC_MESSAGES/kcm_nightlight.mo share/locale/pa/LC_MESSAGES/kcm_notifications.mo share/locale/pa/LC_MESSAGES/kcm_regionandlang.mo share/locale/pa/LC_MESSAGES/kcm_soundtheme.mo share/locale/pa/LC_MESSAGES/kcm_style.mo share/locale/pa/LC_MESSAGES/kcm_users.mo share/locale/pa/LC_MESSAGES/kcminit.mo share/locale/pa/LC_MESSAGES/kded_devicenotifications.mo share/locale/pa/LC_MESSAGES/kfontinst.mo share/locale/pa/LC_MESSAGES/kio_applications.mo share/locale/pa/LC_MESSAGES/kio_desktop.mo share/locale/pa/LC_MESSAGES/klipper.mo share/locale/pa/LC_MESSAGES/krdb.mo share/locale/pa/LC_MESSAGES/krunner.mo share/locale/pa/LC_MESSAGES/ksmserver.mo share/locale/pa/LC_MESSAGES/libkicker.mo share/locale/pa/LC_MESSAGES/libkmpris.mo share/locale/pa/LC_MESSAGES/libkworkspace.mo share/locale/pa/LC_MESSAGES/libnotificationmanager.mo -share/locale/pa/LC_MESSAGES/phonon_kde_plugin.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.systemtray.mo share/locale/pa/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/pa/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/pa/LC_MESSAGES/plasma_containmentactions_switchwindow.mo -share/locale/pa/LC_MESSAGES/plasma_engine_applicationjobs.mo -share/locale/pa/LC_MESSAGES/plasma_engine_notifications.mo -share/locale/pa/LC_MESSAGES/plasma_engine_time.mo share/locale/pa/LC_MESSAGES/plasma_interactiveconsole.mo share/locale/pa/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/pa/LC_MESSAGES/plasma_runner_appstream.mo share/locale/pa/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/pa/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/pa/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/pa/LC_MESSAGES/plasma_runner_kill.mo share/locale/pa/LC_MESSAGES/plasma_runner_locations.mo share/locale/pa/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/pa/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/pa/LC_MESSAGES/plasma_runner_services.mo share/locale/pa/LC_MESSAGES/plasma_runner_sessions.mo share/locale/pa/LC_MESSAGES/plasma_runner_shell.mo share/locale/pa/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/pa/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/pa/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/pa/LC_MESSAGES/plasmashell.mo share/locale/pa/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/pa/LC_MESSAGES/plasmawindowed.mo share/locale/pa/LC_MESSAGES/session-shortcuts-kded.mo share/locale/pa/LC_MESSAGES/soliduiserver.mo share/locale/pl/LC_MESSAGES/freespacenotifier.mo share/locale/pl/LC_MESSAGES/kcm_autostart.mo share/locale/pl/LC_MESSAGES/kcm_colors.mo share/locale/pl/LC_MESSAGES/kcm_componentchooser.mo share/locale/pl/LC_MESSAGES/kcm_cursortheme.mo share/locale/pl/LC_MESSAGES/kcm_desktoptheme.mo share/locale/pl/LC_MESSAGES/kcm_feedback.mo share/locale/pl/LC_MESSAGES/kcm_fonts.mo share/locale/pl/LC_MESSAGES/kcm_icons.mo share/locale/pl/LC_MESSAGES/kcm_lookandfeel.mo share/locale/pl/LC_MESSAGES/kcm_nightlight.mo share/locale/pl/LC_MESSAGES/kcm_nighttime.mo share/locale/pl/LC_MESSAGES/kcm_notifications.mo share/locale/pl/LC_MESSAGES/kcm_regionandlang.mo share/locale/pl/LC_MESSAGES/kcm_soundtheme.mo share/locale/pl/LC_MESSAGES/kcm_style.mo share/locale/pl/LC_MESSAGES/kcm_users.mo share/locale/pl/LC_MESSAGES/kcm_wallpaper.mo share/locale/pl/LC_MESSAGES/kcminit.mo share/locale/pl/LC_MESSAGES/kded_devicenotifications.mo share/locale/pl/LC_MESSAGES/kded_donationmessage.mo share/locale/pl/LC_MESSAGES/kded_geotimezoned.mo share/locale/pl/LC_MESSAGES/kfontinst.mo share/locale/pl/LC_MESSAGES/kio_applications.mo share/locale/pl/LC_MESSAGES/kio_desktop.mo share/locale/pl/LC_MESSAGES/klipper.mo share/locale/pl/LC_MESSAGES/krdb.mo share/locale/pl/LC_MESSAGES/krunner.mo +share/locale/pl/LC_MESSAGES/ksecretprompter.mo share/locale/pl/LC_MESSAGES/ksmserver.mo share/locale/pl/LC_MESSAGES/libkicker.mo share/locale/pl/LC_MESSAGES/libkmpris.mo share/locale/pl/LC_MESSAGES/libkworkspace.mo share/locale/pl/LC_MESSAGES/libnotificationmanager.mo share/locale/pl/LC_MESSAGES/oom-notifier.mo -share/locale/pl/LC_MESSAGES/phonon_kde_plugin.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.systemtray.mo share/locale/pl/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/pl/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/pl/LC_MESSAGES/plasma_containmentactions_switchwindow.mo -share/locale/pl/LC_MESSAGES/plasma_engine_applicationjobs.mo -share/locale/pl/LC_MESSAGES/plasma_engine_notifications.mo -share/locale/pl/LC_MESSAGES/plasma_engine_time.mo share/locale/pl/LC_MESSAGES/plasma_interactiveconsole.mo share/locale/pl/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/pl/LC_MESSAGES/plasma_runner_appstream.mo share/locale/pl/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/pl/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/pl/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/pl/LC_MESSAGES/plasma_runner_kill.mo share/locale/pl/LC_MESSAGES/plasma_runner_locations.mo share/locale/pl/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/pl/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/pl/LC_MESSAGES/plasma_runner_services.mo share/locale/pl/LC_MESSAGES/plasma_runner_sessions.mo share/locale/pl/LC_MESSAGES/plasma_runner_shell.mo share/locale/pl/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/pl/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/pl/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/pl/LC_MESSAGES/plasmashell.mo share/locale/pl/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/pl/LC_MESSAGES/plasmawindowed.mo share/locale/pl/LC_MESSAGES/session-shortcuts-kded.mo share/locale/pl/LC_MESSAGES/soliduiserver.mo share/locale/pt/LC_MESSAGES/freespacenotifier.mo share/locale/pt/LC_MESSAGES/kcm_autostart.mo share/locale/pt/LC_MESSAGES/kcm_colors.mo share/locale/pt/LC_MESSAGES/kcm_componentchooser.mo share/locale/pt/LC_MESSAGES/kcm_cursortheme.mo share/locale/pt/LC_MESSAGES/kcm_desktoptheme.mo share/locale/pt/LC_MESSAGES/kcm_feedback.mo share/locale/pt/LC_MESSAGES/kcm_fonts.mo share/locale/pt/LC_MESSAGES/kcm_icons.mo share/locale/pt/LC_MESSAGES/kcm_lookandfeel.mo share/locale/pt/LC_MESSAGES/kcm_nightlight.mo share/locale/pt/LC_MESSAGES/kcm_notifications.mo share/locale/pt/LC_MESSAGES/kcm_regionandlang.mo share/locale/pt/LC_MESSAGES/kcm_style.mo share/locale/pt/LC_MESSAGES/kcm_users.mo share/locale/pt/LC_MESSAGES/kcminit.mo share/locale/pt/LC_MESSAGES/kfontinst.mo share/locale/pt/LC_MESSAGES/kio_applications.mo share/locale/pt/LC_MESSAGES/kio_desktop.mo share/locale/pt/LC_MESSAGES/klipper.mo share/locale/pt/LC_MESSAGES/krdb.mo share/locale/pt/LC_MESSAGES/krunner.mo share/locale/pt/LC_MESSAGES/ksmserver.mo share/locale/pt/LC_MESSAGES/libkicker.mo share/locale/pt/LC_MESSAGES/libkworkspace.mo share/locale/pt/LC_MESSAGES/libnotificationmanager.mo -share/locale/pt/LC_MESSAGES/phonon_kde_plugin.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.systemtray.mo share/locale/pt/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/pt/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/pt/LC_MESSAGES/plasma_containmentactions_switchwindow.mo -share/locale/pt/LC_MESSAGES/plasma_engine_applicationjobs.mo -share/locale/pt/LC_MESSAGES/plasma_engine_notifications.mo -share/locale/pt/LC_MESSAGES/plasma_engine_time.mo share/locale/pt/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/pt/LC_MESSAGES/plasma_runner_appstream.mo share/locale/pt/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/pt/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/pt/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/pt/LC_MESSAGES/plasma_runner_kill.mo share/locale/pt/LC_MESSAGES/plasma_runner_locations.mo share/locale/pt/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/pt/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/pt/LC_MESSAGES/plasma_runner_services.mo share/locale/pt/LC_MESSAGES/plasma_runner_sessions.mo share/locale/pt/LC_MESSAGES/plasma_runner_shell.mo share/locale/pt/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/pt/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/pt/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/pt/LC_MESSAGES/plasmashell.mo share/locale/pt/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/pt/LC_MESSAGES/soliduiserver.mo share/locale/pt_BR/LC_MESSAGES/freespacenotifier.mo share/locale/pt_BR/LC_MESSAGES/kcm_autostart.mo share/locale/pt_BR/LC_MESSAGES/kcm_colors.mo share/locale/pt_BR/LC_MESSAGES/kcm_componentchooser.mo share/locale/pt_BR/LC_MESSAGES/kcm_cursortheme.mo share/locale/pt_BR/LC_MESSAGES/kcm_desktoptheme.mo share/locale/pt_BR/LC_MESSAGES/kcm_feedback.mo share/locale/pt_BR/LC_MESSAGES/kcm_fonts.mo share/locale/pt_BR/LC_MESSAGES/kcm_icons.mo share/locale/pt_BR/LC_MESSAGES/kcm_lookandfeel.mo share/locale/pt_BR/LC_MESSAGES/kcm_nightlight.mo share/locale/pt_BR/LC_MESSAGES/kcm_nighttime.mo share/locale/pt_BR/LC_MESSAGES/kcm_notifications.mo share/locale/pt_BR/LC_MESSAGES/kcm_regionandlang.mo share/locale/pt_BR/LC_MESSAGES/kcm_soundtheme.mo share/locale/pt_BR/LC_MESSAGES/kcm_style.mo share/locale/pt_BR/LC_MESSAGES/kcm_users.mo share/locale/pt_BR/LC_MESSAGES/kcm_wallpaper.mo share/locale/pt_BR/LC_MESSAGES/kcminit.mo share/locale/pt_BR/LC_MESSAGES/kded_devicenotifications.mo share/locale/pt_BR/LC_MESSAGES/kded_donationmessage.mo share/locale/pt_BR/LC_MESSAGES/kded_geotimezoned.mo share/locale/pt_BR/LC_MESSAGES/kfontinst.mo share/locale/pt_BR/LC_MESSAGES/kio_applications.mo share/locale/pt_BR/LC_MESSAGES/kio_desktop.mo share/locale/pt_BR/LC_MESSAGES/klipper.mo share/locale/pt_BR/LC_MESSAGES/krdb.mo share/locale/pt_BR/LC_MESSAGES/krunner.mo +share/locale/pt_BR/LC_MESSAGES/ksecretprompter.mo share/locale/pt_BR/LC_MESSAGES/ksmserver.mo share/locale/pt_BR/LC_MESSAGES/libkicker.mo share/locale/pt_BR/LC_MESSAGES/libkmpris.mo share/locale/pt_BR/LC_MESSAGES/libkworkspace.mo share/locale/pt_BR/LC_MESSAGES/libnotificationmanager.mo share/locale/pt_BR/LC_MESSAGES/oom-notifier.mo -share/locale/pt_BR/LC_MESSAGES/phonon_kde_plugin.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.systemtray.mo share/locale/pt_BR/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/pt_BR/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/pt_BR/LC_MESSAGES/plasma_containmentactions_switchwindow.mo -share/locale/pt_BR/LC_MESSAGES/plasma_engine_applicationjobs.mo -share/locale/pt_BR/LC_MESSAGES/plasma_engine_notifications.mo -share/locale/pt_BR/LC_MESSAGES/plasma_engine_time.mo share/locale/pt_BR/LC_MESSAGES/plasma_interactiveconsole.mo share/locale/pt_BR/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_appstream.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_kill.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_locations.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_services.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_sessions.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_shell.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/pt_BR/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/pt_BR/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/pt_BR/LC_MESSAGES/plasmashell.mo share/locale/pt_BR/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/pt_BR/LC_MESSAGES/plasmawindowed.mo share/locale/pt_BR/LC_MESSAGES/session-shortcuts-kded.mo share/locale/pt_BR/LC_MESSAGES/soliduiserver.mo share/locale/ro/LC_MESSAGES/freespacenotifier.mo share/locale/ro/LC_MESSAGES/kcm_autostart.mo share/locale/ro/LC_MESSAGES/kcm_colors.mo share/locale/ro/LC_MESSAGES/kcm_componentchooser.mo share/locale/ro/LC_MESSAGES/kcm_cursortheme.mo share/locale/ro/LC_MESSAGES/kcm_desktoptheme.mo share/locale/ro/LC_MESSAGES/kcm_feedback.mo share/locale/ro/LC_MESSAGES/kcm_fonts.mo share/locale/ro/LC_MESSAGES/kcm_icons.mo share/locale/ro/LC_MESSAGES/kcm_lookandfeel.mo share/locale/ro/LC_MESSAGES/kcm_nightlight.mo +share/locale/ro/LC_MESSAGES/kcm_nighttime.mo share/locale/ro/LC_MESSAGES/kcm_notifications.mo share/locale/ro/LC_MESSAGES/kcm_regionandlang.mo share/locale/ro/LC_MESSAGES/kcm_soundtheme.mo share/locale/ro/LC_MESSAGES/kcm_style.mo share/locale/ro/LC_MESSAGES/kcm_users.mo +share/locale/ro/LC_MESSAGES/kcm_wallpaper.mo share/locale/ro/LC_MESSAGES/kcminit.mo share/locale/ro/LC_MESSAGES/kded_devicenotifications.mo share/locale/ro/LC_MESSAGES/kded_donationmessage.mo +share/locale/ro/LC_MESSAGES/kded_geotimezoned.mo share/locale/ro/LC_MESSAGES/kfontinst.mo share/locale/ro/LC_MESSAGES/kio_applications.mo share/locale/ro/LC_MESSAGES/kio_desktop.mo share/locale/ro/LC_MESSAGES/klipper.mo share/locale/ro/LC_MESSAGES/krdb.mo share/locale/ro/LC_MESSAGES/krunner.mo +share/locale/ro/LC_MESSAGES/ksecretprompter.mo share/locale/ro/LC_MESSAGES/ksmserver.mo share/locale/ro/LC_MESSAGES/libkicker.mo share/locale/ro/LC_MESSAGES/libkmpris.mo share/locale/ro/LC_MESSAGES/libkworkspace.mo share/locale/ro/LC_MESSAGES/libnotificationmanager.mo share/locale/ro/LC_MESSAGES/oom-notifier.mo -share/locale/ro/LC_MESSAGES/phonon_kde_plugin.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.systemtray.mo share/locale/ro/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/ro/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/ro/LC_MESSAGES/plasma_containmentactions_switchwindow.mo -share/locale/ro/LC_MESSAGES/plasma_engine_applicationjobs.mo -share/locale/ro/LC_MESSAGES/plasma_engine_notifications.mo -share/locale/ro/LC_MESSAGES/plasma_engine_time.mo share/locale/ro/LC_MESSAGES/plasma_interactiveconsole.mo share/locale/ro/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/ro/LC_MESSAGES/plasma_runner_appstream.mo share/locale/ro/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/ro/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/ro/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/ro/LC_MESSAGES/plasma_runner_kill.mo share/locale/ro/LC_MESSAGES/plasma_runner_locations.mo share/locale/ro/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/ro/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/ro/LC_MESSAGES/plasma_runner_services.mo share/locale/ro/LC_MESSAGES/plasma_runner_sessions.mo share/locale/ro/LC_MESSAGES/plasma_runner_shell.mo share/locale/ro/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/ro/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/ro/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/ro/LC_MESSAGES/plasmashell.mo share/locale/ro/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/ro/LC_MESSAGES/plasmawindowed.mo share/locale/ro/LC_MESSAGES/session-shortcuts-kded.mo share/locale/ro/LC_MESSAGES/soliduiserver.mo share/locale/ru/LC_MESSAGES/freespacenotifier.mo share/locale/ru/LC_MESSAGES/kcm_autostart.mo share/locale/ru/LC_MESSAGES/kcm_colors.mo share/locale/ru/LC_MESSAGES/kcm_componentchooser.mo share/locale/ru/LC_MESSAGES/kcm_cursortheme.mo share/locale/ru/LC_MESSAGES/kcm_desktoptheme.mo share/locale/ru/LC_MESSAGES/kcm_feedback.mo share/locale/ru/LC_MESSAGES/kcm_fonts.mo share/locale/ru/LC_MESSAGES/kcm_icons.mo share/locale/ru/LC_MESSAGES/kcm_lookandfeel.mo share/locale/ru/LC_MESSAGES/kcm_nightlight.mo share/locale/ru/LC_MESSAGES/kcm_nighttime.mo share/locale/ru/LC_MESSAGES/kcm_notifications.mo share/locale/ru/LC_MESSAGES/kcm_regionandlang.mo share/locale/ru/LC_MESSAGES/kcm_soundtheme.mo share/locale/ru/LC_MESSAGES/kcm_style.mo share/locale/ru/LC_MESSAGES/kcm_users.mo share/locale/ru/LC_MESSAGES/kcm_wallpaper.mo share/locale/ru/LC_MESSAGES/kcminit.mo share/locale/ru/LC_MESSAGES/kded_devicenotifications.mo share/locale/ru/LC_MESSAGES/kded_donationmessage.mo share/locale/ru/LC_MESSAGES/kded_geotimezoned.mo share/locale/ru/LC_MESSAGES/kfontinst.mo share/locale/ru/LC_MESSAGES/kio_applications.mo share/locale/ru/LC_MESSAGES/kio_desktop.mo share/locale/ru/LC_MESSAGES/klipper.mo share/locale/ru/LC_MESSAGES/krdb.mo share/locale/ru/LC_MESSAGES/krunner.mo share/locale/ru/LC_MESSAGES/ksmserver.mo share/locale/ru/LC_MESSAGES/libkicker.mo share/locale/ru/LC_MESSAGES/libkmpris.mo share/locale/ru/LC_MESSAGES/libkworkspace.mo share/locale/ru/LC_MESSAGES/libnotificationmanager.mo share/locale/ru/LC_MESSAGES/oom-notifier.mo -share/locale/ru/LC_MESSAGES/phonon_kde_plugin.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.systemtray.mo share/locale/ru/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/ru/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/ru/LC_MESSAGES/plasma_containmentactions_switchwindow.mo -share/locale/ru/LC_MESSAGES/plasma_engine_applicationjobs.mo -share/locale/ru/LC_MESSAGES/plasma_engine_notifications.mo -share/locale/ru/LC_MESSAGES/plasma_engine_time.mo share/locale/ru/LC_MESSAGES/plasma_interactiveconsole.mo share/locale/ru/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/ru/LC_MESSAGES/plasma_runner_appstream.mo share/locale/ru/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/ru/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/ru/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/ru/LC_MESSAGES/plasma_runner_kill.mo share/locale/ru/LC_MESSAGES/plasma_runner_locations.mo share/locale/ru/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/ru/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/ru/LC_MESSAGES/plasma_runner_services.mo share/locale/ru/LC_MESSAGES/plasma_runner_sessions.mo share/locale/ru/LC_MESSAGES/plasma_runner_shell.mo share/locale/ru/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/ru/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/ru/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/ru/LC_MESSAGES/plasmashell.mo share/locale/ru/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/ru/LC_MESSAGES/plasmawindowed.mo share/locale/ru/LC_MESSAGES/session-shortcuts-kded.mo share/locale/ru/LC_MESSAGES/soliduiserver.mo share/locale/sa/LC_MESSAGES/freespacenotifier.mo share/locale/sa/LC_MESSAGES/kcm_autostart.mo share/locale/sa/LC_MESSAGES/kcm_colors.mo share/locale/sa/LC_MESSAGES/kcm_componentchooser.mo share/locale/sa/LC_MESSAGES/kcm_cursortheme.mo share/locale/sa/LC_MESSAGES/kcm_desktoptheme.mo share/locale/sa/LC_MESSAGES/kcm_feedback.mo share/locale/sa/LC_MESSAGES/kcm_fonts.mo share/locale/sa/LC_MESSAGES/kcm_icons.mo share/locale/sa/LC_MESSAGES/kcm_lookandfeel.mo share/locale/sa/LC_MESSAGES/kcm_nightlight.mo share/locale/sa/LC_MESSAGES/kcm_notifications.mo share/locale/sa/LC_MESSAGES/kcm_regionandlang.mo share/locale/sa/LC_MESSAGES/kcm_soundtheme.mo share/locale/sa/LC_MESSAGES/kcm_style.mo share/locale/sa/LC_MESSAGES/kcm_users.mo share/locale/sa/LC_MESSAGES/kcminit.mo share/locale/sa/LC_MESSAGES/kded_devicenotifications.mo share/locale/sa/LC_MESSAGES/kded_donationmessage.mo share/locale/sa/LC_MESSAGES/kfontinst.mo share/locale/sa/LC_MESSAGES/kio_applications.mo share/locale/sa/LC_MESSAGES/kio_desktop.mo share/locale/sa/LC_MESSAGES/klipper.mo share/locale/sa/LC_MESSAGES/krdb.mo share/locale/sa/LC_MESSAGES/krunner.mo share/locale/sa/LC_MESSAGES/ksmserver.mo share/locale/sa/LC_MESSAGES/libkicker.mo share/locale/sa/LC_MESSAGES/libkmpris.mo share/locale/sa/LC_MESSAGES/libkworkspace.mo share/locale/sa/LC_MESSAGES/libnotificationmanager.mo share/locale/sa/LC_MESSAGES/oom-notifier.mo -share/locale/sa/LC_MESSAGES/phonon_kde_plugin.mo share/locale/sa/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/sa/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/sa/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/sa/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/sa/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo share/locale/sa/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/sa/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/sa/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/sa/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/sa/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/sa/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/sa/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/sa/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/sa/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/sa/LC_MESSAGES/plasma_applet_org.kde.plasma.systemtray.mo share/locale/sa/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/sa/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/sa/LC_MESSAGES/plasma_containmentactions_switchwindow.mo -share/locale/sa/LC_MESSAGES/plasma_engine_applicationjobs.mo -share/locale/sa/LC_MESSAGES/plasma_engine_notifications.mo -share/locale/sa/LC_MESSAGES/plasma_engine_time.mo share/locale/sa/LC_MESSAGES/plasma_interactiveconsole.mo share/locale/sa/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/sa/LC_MESSAGES/plasma_runner_appstream.mo share/locale/sa/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/sa/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/sa/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/sa/LC_MESSAGES/plasma_runner_kill.mo share/locale/sa/LC_MESSAGES/plasma_runner_locations.mo share/locale/sa/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/sa/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/sa/LC_MESSAGES/plasma_runner_services.mo share/locale/sa/LC_MESSAGES/plasma_runner_sessions.mo share/locale/sa/LC_MESSAGES/plasma_runner_shell.mo share/locale/sa/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/sa/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/sa/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/sa/LC_MESSAGES/plasmashell.mo share/locale/sa/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/sa/LC_MESSAGES/plasmawindowed.mo share/locale/sa/LC_MESSAGES/session-shortcuts-kded.mo share/locale/sa/LC_MESSAGES/soliduiserver.mo share/locale/se/LC_MESSAGES/kcm_colors.mo share/locale/se/LC_MESSAGES/kcm_componentchooser.mo share/locale/se/LC_MESSAGES/kcm_cursortheme.mo share/locale/se/LC_MESSAGES/kcm_fonts.mo share/locale/se/LC_MESSAGES/kcm_icons.mo share/locale/se/LC_MESSAGES/kcm_style.mo share/locale/se/LC_MESSAGES/kcminit.mo share/locale/se/LC_MESSAGES/kfontinst.mo share/locale/se/LC_MESSAGES/kio_applications.mo share/locale/se/LC_MESSAGES/klipper.mo share/locale/se/LC_MESSAGES/krdb.mo share/locale/se/LC_MESSAGES/krunner.mo share/locale/se/LC_MESSAGES/ksmserver.mo share/locale/se/LC_MESSAGES/libkworkspace.mo -share/locale/se/LC_MESSAGES/phonon_kde_plugin.mo share/locale/se/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/se/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/se/LC_MESSAGES/soliduiserver.mo share/locale/si/LC_MESSAGES/kcm_autostart.mo share/locale/si/LC_MESSAGES/kcm_colors.mo share/locale/si/LC_MESSAGES/kcm_componentchooser.mo share/locale/si/LC_MESSAGES/kcm_cursortheme.mo share/locale/si/LC_MESSAGES/kcm_desktoptheme.mo share/locale/si/LC_MESSAGES/kcm_fonts.mo share/locale/si/LC_MESSAGES/kcm_icons.mo share/locale/si/LC_MESSAGES/kcm_style.mo share/locale/si/LC_MESSAGES/kcminit.mo share/locale/si/LC_MESSAGES/kfontinst.mo share/locale/si/LC_MESSAGES/kio_applications.mo share/locale/si/LC_MESSAGES/klipper.mo share/locale/si/LC_MESSAGES/krdb.mo share/locale/si/LC_MESSAGES/ksmserver.mo share/locale/si/LC_MESSAGES/libkworkspace.mo -share/locale/si/LC_MESSAGES/phonon_kde_plugin.mo share/locale/si/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/si/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/si/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/si/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/si/LC_MESSAGES/plasma_containmentactions_switchwindow.mo -share/locale/si/LC_MESSAGES/plasma_engine_applicationjobs.mo -share/locale/si/LC_MESSAGES/plasma_engine_notifications.mo share/locale/si/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/si/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/si/LC_MESSAGES/plasma_runner_locations.mo share/locale/si/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/si/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/si/LC_MESSAGES/plasma_runner_sessions.mo share/locale/si/LC_MESSAGES/plasma_runner_shell.mo share/locale/si/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/si/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/si/LC_MESSAGES/soliduiserver.mo share/locale/sk/LC_MESSAGES/freespacenotifier.mo share/locale/sk/LC_MESSAGES/kcm_autostart.mo share/locale/sk/LC_MESSAGES/kcm_colors.mo share/locale/sk/LC_MESSAGES/kcm_componentchooser.mo share/locale/sk/LC_MESSAGES/kcm_cursortheme.mo share/locale/sk/LC_MESSAGES/kcm_desktoptheme.mo share/locale/sk/LC_MESSAGES/kcm_feedback.mo share/locale/sk/LC_MESSAGES/kcm_fonts.mo share/locale/sk/LC_MESSAGES/kcm_icons.mo share/locale/sk/LC_MESSAGES/kcm_lookandfeel.mo share/locale/sk/LC_MESSAGES/kcm_nightlight.mo share/locale/sk/LC_MESSAGES/kcm_notifications.mo share/locale/sk/LC_MESSAGES/kcm_regionandlang.mo share/locale/sk/LC_MESSAGES/kcm_soundtheme.mo share/locale/sk/LC_MESSAGES/kcm_style.mo share/locale/sk/LC_MESSAGES/kcm_users.mo share/locale/sk/LC_MESSAGES/kcminit.mo share/locale/sk/LC_MESSAGES/kded_devicenotifications.mo share/locale/sk/LC_MESSAGES/kded_donationmessage.mo share/locale/sk/LC_MESSAGES/kfontinst.mo share/locale/sk/LC_MESSAGES/kio_applications.mo share/locale/sk/LC_MESSAGES/kio_desktop.mo share/locale/sk/LC_MESSAGES/klipper.mo share/locale/sk/LC_MESSAGES/krdb.mo share/locale/sk/LC_MESSAGES/krunner.mo share/locale/sk/LC_MESSAGES/ksmserver.mo share/locale/sk/LC_MESSAGES/libkicker.mo share/locale/sk/LC_MESSAGES/libkmpris.mo share/locale/sk/LC_MESSAGES/libkworkspace.mo share/locale/sk/LC_MESSAGES/libnotificationmanager.mo share/locale/sk/LC_MESSAGES/oom-notifier.mo -share/locale/sk/LC_MESSAGES/phonon_kde_plugin.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.systemtray.mo share/locale/sk/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/sk/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/sk/LC_MESSAGES/plasma_containmentactions_switchwindow.mo -share/locale/sk/LC_MESSAGES/plasma_engine_applicationjobs.mo -share/locale/sk/LC_MESSAGES/plasma_engine_notifications.mo -share/locale/sk/LC_MESSAGES/plasma_engine_time.mo share/locale/sk/LC_MESSAGES/plasma_interactiveconsole.mo share/locale/sk/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/sk/LC_MESSAGES/plasma_runner_appstream.mo share/locale/sk/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/sk/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/sk/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/sk/LC_MESSAGES/plasma_runner_kill.mo share/locale/sk/LC_MESSAGES/plasma_runner_locations.mo share/locale/sk/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/sk/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/sk/LC_MESSAGES/plasma_runner_services.mo share/locale/sk/LC_MESSAGES/plasma_runner_sessions.mo share/locale/sk/LC_MESSAGES/plasma_runner_shell.mo share/locale/sk/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/sk/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/sk/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/sk/LC_MESSAGES/plasmashell.mo share/locale/sk/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/sk/LC_MESSAGES/plasmawindowed.mo share/locale/sk/LC_MESSAGES/session-shortcuts-kded.mo share/locale/sk/LC_MESSAGES/soliduiserver.mo share/locale/sl/LC_MESSAGES/freespacenotifier.mo share/locale/sl/LC_MESSAGES/kcm_autostart.mo share/locale/sl/LC_MESSAGES/kcm_colors.mo share/locale/sl/LC_MESSAGES/kcm_componentchooser.mo share/locale/sl/LC_MESSAGES/kcm_cursortheme.mo share/locale/sl/LC_MESSAGES/kcm_desktoptheme.mo share/locale/sl/LC_MESSAGES/kcm_feedback.mo share/locale/sl/LC_MESSAGES/kcm_fonts.mo share/locale/sl/LC_MESSAGES/kcm_icons.mo share/locale/sl/LC_MESSAGES/kcm_lookandfeel.mo share/locale/sl/LC_MESSAGES/kcm_nightlight.mo share/locale/sl/LC_MESSAGES/kcm_nighttime.mo share/locale/sl/LC_MESSAGES/kcm_notifications.mo share/locale/sl/LC_MESSAGES/kcm_regionandlang.mo share/locale/sl/LC_MESSAGES/kcm_soundtheme.mo share/locale/sl/LC_MESSAGES/kcm_style.mo share/locale/sl/LC_MESSAGES/kcm_users.mo share/locale/sl/LC_MESSAGES/kcm_wallpaper.mo share/locale/sl/LC_MESSAGES/kcminit.mo share/locale/sl/LC_MESSAGES/kded_devicenotifications.mo share/locale/sl/LC_MESSAGES/kded_donationmessage.mo share/locale/sl/LC_MESSAGES/kded_geotimezoned.mo share/locale/sl/LC_MESSAGES/kfontinst.mo share/locale/sl/LC_MESSAGES/kio_applications.mo share/locale/sl/LC_MESSAGES/kio_desktop.mo share/locale/sl/LC_MESSAGES/klipper.mo share/locale/sl/LC_MESSAGES/krdb.mo share/locale/sl/LC_MESSAGES/krunner.mo +share/locale/sl/LC_MESSAGES/ksecretprompter.mo share/locale/sl/LC_MESSAGES/ksmserver.mo share/locale/sl/LC_MESSAGES/libkicker.mo share/locale/sl/LC_MESSAGES/libkmpris.mo share/locale/sl/LC_MESSAGES/libkworkspace.mo share/locale/sl/LC_MESSAGES/libnotificationmanager.mo share/locale/sl/LC_MESSAGES/oom-notifier.mo -share/locale/sl/LC_MESSAGES/phonon_kde_plugin.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.systemtray.mo share/locale/sl/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/sl/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/sl/LC_MESSAGES/plasma_containmentactions_switchwindow.mo -share/locale/sl/LC_MESSAGES/plasma_engine_applicationjobs.mo -share/locale/sl/LC_MESSAGES/plasma_engine_notifications.mo -share/locale/sl/LC_MESSAGES/plasma_engine_time.mo share/locale/sl/LC_MESSAGES/plasma_interactiveconsole.mo share/locale/sl/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/sl/LC_MESSAGES/plasma_runner_appstream.mo share/locale/sl/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/sl/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/sl/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/sl/LC_MESSAGES/plasma_runner_kill.mo share/locale/sl/LC_MESSAGES/plasma_runner_locations.mo share/locale/sl/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/sl/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/sl/LC_MESSAGES/plasma_runner_services.mo share/locale/sl/LC_MESSAGES/plasma_runner_sessions.mo share/locale/sl/LC_MESSAGES/plasma_runner_shell.mo share/locale/sl/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/sl/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/sl/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/sl/LC_MESSAGES/plasmashell.mo share/locale/sl/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/sl/LC_MESSAGES/plasmawindowed.mo share/locale/sl/LC_MESSAGES/session-shortcuts-kded.mo share/locale/sl/LC_MESSAGES/soliduiserver.mo share/locale/sq/LC_MESSAGES/kcm_autostart.mo share/locale/sq/LC_MESSAGES/kcm_colors.mo share/locale/sq/LC_MESSAGES/kcm_componentchooser.mo share/locale/sq/LC_MESSAGES/kcm_cursortheme.mo share/locale/sq/LC_MESSAGES/kcm_desktoptheme.mo share/locale/sq/LC_MESSAGES/kcm_fonts.mo share/locale/sq/LC_MESSAGES/kcm_icons.mo share/locale/sq/LC_MESSAGES/kcm_style.mo share/locale/sq/LC_MESSAGES/kcminit.mo share/locale/sq/LC_MESSAGES/kfontinst.mo share/locale/sq/LC_MESSAGES/kio_applications.mo share/locale/sq/LC_MESSAGES/klipper.mo share/locale/sq/LC_MESSAGES/krdb.mo share/locale/sq/LC_MESSAGES/ksmserver.mo share/locale/sq/LC_MESSAGES/libkworkspace.mo -share/locale/sq/LC_MESSAGES/phonon_kde_plugin.mo share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/sq/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/sq/LC_MESSAGES/plasma_containmentactions_switchwindow.mo -share/locale/sq/LC_MESSAGES/plasma_engine_applicationjobs.mo -share/locale/sq/LC_MESSAGES/plasma_engine_notifications.mo share/locale/sq/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/sq/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/sq/LC_MESSAGES/plasma_runner_locations.mo share/locale/sq/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/sq/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/sq/LC_MESSAGES/plasma_runner_services.mo share/locale/sq/LC_MESSAGES/plasma_runner_sessions.mo share/locale/sq/LC_MESSAGES/plasma_runner_shell.mo share/locale/sq/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/sq/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/sq/LC_MESSAGES/plasmashell.mo +share/locale/sq/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/sq/LC_MESSAGES/soliduiserver.mo share/locale/sr/LC_MESSAGES/freespacenotifier.mo share/locale/sr/LC_MESSAGES/kcm_autostart.mo share/locale/sr/LC_MESSAGES/kcm_colors.mo share/locale/sr/LC_MESSAGES/kcm_componentchooser.mo share/locale/sr/LC_MESSAGES/kcm_cursortheme.mo share/locale/sr/LC_MESSAGES/kcm_desktoptheme.mo share/locale/sr/LC_MESSAGES/kcm_fonts.mo share/locale/sr/LC_MESSAGES/kcm_icons.mo share/locale/sr/LC_MESSAGES/kcm_lookandfeel.mo share/locale/sr/LC_MESSAGES/kcm_nightlight.mo share/locale/sr/LC_MESSAGES/kcm_style.mo share/locale/sr/LC_MESSAGES/kcminit.mo share/locale/sr/LC_MESSAGES/kfontinst.mo share/locale/sr/LC_MESSAGES/kio_applications.mo share/locale/sr/LC_MESSAGES/kio_desktop.mo share/locale/sr/LC_MESSAGES/klipper.mo share/locale/sr/LC_MESSAGES/krdb.mo share/locale/sr/LC_MESSAGES/krunner.mo share/locale/sr/LC_MESSAGES/ksmserver.mo share/locale/sr/LC_MESSAGES/libkicker.mo share/locale/sr/LC_MESSAGES/libkworkspace.mo -share/locale/sr/LC_MESSAGES/phonon_kde_plugin.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.systemtray.mo share/locale/sr/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/sr/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/sr/LC_MESSAGES/plasma_containmentactions_switchwindow.mo -share/locale/sr/LC_MESSAGES/plasma_engine_applicationjobs.mo -share/locale/sr/LC_MESSAGES/plasma_engine_notifications.mo -share/locale/sr/LC_MESSAGES/plasma_engine_time.mo share/locale/sr/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/sr/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/sr/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/sr/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/sr/LC_MESSAGES/plasma_runner_kill.mo share/locale/sr/LC_MESSAGES/plasma_runner_locations.mo share/locale/sr/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/sr/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/sr/LC_MESSAGES/plasma_runner_services.mo share/locale/sr/LC_MESSAGES/plasma_runner_sessions.mo share/locale/sr/LC_MESSAGES/plasma_runner_shell.mo share/locale/sr/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/sr/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/sr/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/sr/LC_MESSAGES/plasmashell.mo share/locale/sr/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/sr/LC_MESSAGES/soliduiserver.mo share/locale/sr@ijekavian/LC_MESSAGES/freespacenotifier.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_autostart.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_colors.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_componentchooser.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_cursortheme.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_desktoptheme.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_fonts.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_icons.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_lookandfeel.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_nightlight.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_style.mo share/locale/sr@ijekavian/LC_MESSAGES/kcminit.mo share/locale/sr@ijekavian/LC_MESSAGES/kfontinst.mo share/locale/sr@ijekavian/LC_MESSAGES/kio_applications.mo share/locale/sr@ijekavian/LC_MESSAGES/kio_desktop.mo share/locale/sr@ijekavian/LC_MESSAGES/klipper.mo share/locale/sr@ijekavian/LC_MESSAGES/krdb.mo share/locale/sr@ijekavian/LC_MESSAGES/krunner.mo share/locale/sr@ijekavian/LC_MESSAGES/ksmserver.mo share/locale/sr@ijekavian/LC_MESSAGES/libkicker.mo share/locale/sr@ijekavian/LC_MESSAGES/libkworkspace.mo -share/locale/sr@ijekavian/LC_MESSAGES/phonon_kde_plugin.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.systemtray.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_containmentactions_switchwindow.mo -share/locale/sr@ijekavian/LC_MESSAGES/plasma_engine_applicationjobs.mo -share/locale/sr@ijekavian/LC_MESSAGES/plasma_engine_notifications.mo -share/locale/sr@ijekavian/LC_MESSAGES/plasma_engine_time.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_kill.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_locations.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_services.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_sessions.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_shell.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/sr@ijekavian/LC_MESSAGES/plasmashell.mo share/locale/sr@ijekavian/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/sr@ijekavian/LC_MESSAGES/soliduiserver.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/freespacenotifier.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_autostart.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_colors.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_componentchooser.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_cursortheme.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_desktoptheme.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_fonts.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_icons.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_lookandfeel.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_nightlight.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_style.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcminit.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kfontinst.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kio_applications.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kio_desktop.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/klipper.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/krdb.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/krunner.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/ksmserver.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libkicker.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libkworkspace.mo -share/locale/sr@ijekavianlatin/LC_MESSAGES/phonon_kde_plugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.systemtray.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_containmentactions_switchwindow.mo -share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_engine_applicationjobs.mo -share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_engine_notifications.mo -share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_engine_time.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_kill.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_locations.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_services.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_sessions.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_shell.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasmashell.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/soliduiserver.mo share/locale/sr@latin/LC_MESSAGES/freespacenotifier.mo share/locale/sr@latin/LC_MESSAGES/kcm_autostart.mo share/locale/sr@latin/LC_MESSAGES/kcm_colors.mo share/locale/sr@latin/LC_MESSAGES/kcm_componentchooser.mo share/locale/sr@latin/LC_MESSAGES/kcm_cursortheme.mo share/locale/sr@latin/LC_MESSAGES/kcm_desktoptheme.mo share/locale/sr@latin/LC_MESSAGES/kcm_fonts.mo share/locale/sr@latin/LC_MESSAGES/kcm_icons.mo share/locale/sr@latin/LC_MESSAGES/kcm_lookandfeel.mo share/locale/sr@latin/LC_MESSAGES/kcm_nightlight.mo share/locale/sr@latin/LC_MESSAGES/kcm_style.mo share/locale/sr@latin/LC_MESSAGES/kcminit.mo share/locale/sr@latin/LC_MESSAGES/kfontinst.mo share/locale/sr@latin/LC_MESSAGES/kio_applications.mo share/locale/sr@latin/LC_MESSAGES/kio_desktop.mo share/locale/sr@latin/LC_MESSAGES/klipper.mo share/locale/sr@latin/LC_MESSAGES/krdb.mo share/locale/sr@latin/LC_MESSAGES/krunner.mo share/locale/sr@latin/LC_MESSAGES/ksmserver.mo share/locale/sr@latin/LC_MESSAGES/libkicker.mo share/locale/sr@latin/LC_MESSAGES/libkworkspace.mo -share/locale/sr@latin/LC_MESSAGES/phonon_kde_plugin.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.systemtray.mo share/locale/sr@latin/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/sr@latin/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/sr@latin/LC_MESSAGES/plasma_containmentactions_switchwindow.mo -share/locale/sr@latin/LC_MESSAGES/plasma_engine_applicationjobs.mo -share/locale/sr@latin/LC_MESSAGES/plasma_engine_notifications.mo -share/locale/sr@latin/LC_MESSAGES/plasma_engine_time.mo share/locale/sr@latin/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_kill.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_locations.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_services.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_sessions.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_shell.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/sr@latin/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/sr@latin/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/sr@latin/LC_MESSAGES/plasmashell.mo share/locale/sr@latin/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/sr@latin/LC_MESSAGES/soliduiserver.mo share/locale/sv/LC_MESSAGES/freespacenotifier.mo share/locale/sv/LC_MESSAGES/kcm_autostart.mo share/locale/sv/LC_MESSAGES/kcm_colors.mo share/locale/sv/LC_MESSAGES/kcm_componentchooser.mo share/locale/sv/LC_MESSAGES/kcm_cursortheme.mo share/locale/sv/LC_MESSAGES/kcm_desktoptheme.mo share/locale/sv/LC_MESSAGES/kcm_feedback.mo share/locale/sv/LC_MESSAGES/kcm_fonts.mo share/locale/sv/LC_MESSAGES/kcm_icons.mo share/locale/sv/LC_MESSAGES/kcm_lookandfeel.mo share/locale/sv/LC_MESSAGES/kcm_nightlight.mo share/locale/sv/LC_MESSAGES/kcm_nighttime.mo share/locale/sv/LC_MESSAGES/kcm_notifications.mo share/locale/sv/LC_MESSAGES/kcm_regionandlang.mo share/locale/sv/LC_MESSAGES/kcm_soundtheme.mo share/locale/sv/LC_MESSAGES/kcm_style.mo share/locale/sv/LC_MESSAGES/kcm_users.mo share/locale/sv/LC_MESSAGES/kcm_wallpaper.mo share/locale/sv/LC_MESSAGES/kcminit.mo share/locale/sv/LC_MESSAGES/kded_devicenotifications.mo share/locale/sv/LC_MESSAGES/kded_donationmessage.mo share/locale/sv/LC_MESSAGES/kded_geotimezoned.mo share/locale/sv/LC_MESSAGES/kfontinst.mo share/locale/sv/LC_MESSAGES/kio_applications.mo share/locale/sv/LC_MESSAGES/kio_desktop.mo share/locale/sv/LC_MESSAGES/klipper.mo share/locale/sv/LC_MESSAGES/krdb.mo share/locale/sv/LC_MESSAGES/krunner.mo share/locale/sv/LC_MESSAGES/ksmserver.mo share/locale/sv/LC_MESSAGES/libkicker.mo share/locale/sv/LC_MESSAGES/libkmpris.mo share/locale/sv/LC_MESSAGES/libkworkspace.mo share/locale/sv/LC_MESSAGES/libnotificationmanager.mo share/locale/sv/LC_MESSAGES/oom-notifier.mo -share/locale/sv/LC_MESSAGES/phonon_kde_plugin.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.systemtray.mo share/locale/sv/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/sv/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/sv/LC_MESSAGES/plasma_containmentactions_switchwindow.mo -share/locale/sv/LC_MESSAGES/plasma_engine_applicationjobs.mo -share/locale/sv/LC_MESSAGES/plasma_engine_notifications.mo -share/locale/sv/LC_MESSAGES/plasma_engine_time.mo share/locale/sv/LC_MESSAGES/plasma_interactiveconsole.mo share/locale/sv/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/sv/LC_MESSAGES/plasma_runner_appstream.mo share/locale/sv/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/sv/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/sv/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/sv/LC_MESSAGES/plasma_runner_kill.mo share/locale/sv/LC_MESSAGES/plasma_runner_locations.mo share/locale/sv/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/sv/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/sv/LC_MESSAGES/plasma_runner_services.mo share/locale/sv/LC_MESSAGES/plasma_runner_sessions.mo share/locale/sv/LC_MESSAGES/plasma_runner_shell.mo share/locale/sv/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/sv/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/sv/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/sv/LC_MESSAGES/plasmashell.mo share/locale/sv/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/sv/LC_MESSAGES/plasmawindowed.mo share/locale/sv/LC_MESSAGES/session-shortcuts-kded.mo share/locale/sv/LC_MESSAGES/soliduiserver.mo share/locale/ta/LC_MESSAGES/freespacenotifier.mo share/locale/ta/LC_MESSAGES/kcm_autostart.mo share/locale/ta/LC_MESSAGES/kcm_colors.mo share/locale/ta/LC_MESSAGES/kcm_componentchooser.mo share/locale/ta/LC_MESSAGES/kcm_cursortheme.mo share/locale/ta/LC_MESSAGES/kcm_desktoptheme.mo share/locale/ta/LC_MESSAGES/kcm_feedback.mo share/locale/ta/LC_MESSAGES/kcm_fonts.mo share/locale/ta/LC_MESSAGES/kcm_icons.mo share/locale/ta/LC_MESSAGES/kcm_lookandfeel.mo share/locale/ta/LC_MESSAGES/kcm_nightlight.mo share/locale/ta/LC_MESSAGES/kcm_nighttime.mo share/locale/ta/LC_MESSAGES/kcm_notifications.mo share/locale/ta/LC_MESSAGES/kcm_regionandlang.mo share/locale/ta/LC_MESSAGES/kcm_soundtheme.mo share/locale/ta/LC_MESSAGES/kcm_style.mo share/locale/ta/LC_MESSAGES/kcm_users.mo share/locale/ta/LC_MESSAGES/kcminit.mo share/locale/ta/LC_MESSAGES/kded_devicenotifications.mo share/locale/ta/LC_MESSAGES/kfontinst.mo share/locale/ta/LC_MESSAGES/kio_applications.mo share/locale/ta/LC_MESSAGES/kio_desktop.mo share/locale/ta/LC_MESSAGES/klipper.mo share/locale/ta/LC_MESSAGES/krdb.mo share/locale/ta/LC_MESSAGES/krunner.mo share/locale/ta/LC_MESSAGES/ksmserver.mo share/locale/ta/LC_MESSAGES/libkicker.mo share/locale/ta/LC_MESSAGES/libkmpris.mo share/locale/ta/LC_MESSAGES/libkworkspace.mo share/locale/ta/LC_MESSAGES/libnotificationmanager.mo -share/locale/ta/LC_MESSAGES/phonon_kde_plugin.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.systemtray.mo share/locale/ta/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/ta/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/ta/LC_MESSAGES/plasma_containmentactions_switchwindow.mo -share/locale/ta/LC_MESSAGES/plasma_engine_applicationjobs.mo -share/locale/ta/LC_MESSAGES/plasma_engine_notifications.mo -share/locale/ta/LC_MESSAGES/plasma_engine_time.mo share/locale/ta/LC_MESSAGES/plasma_interactiveconsole.mo share/locale/ta/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/ta/LC_MESSAGES/plasma_runner_appstream.mo share/locale/ta/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/ta/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/ta/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/ta/LC_MESSAGES/plasma_runner_kill.mo share/locale/ta/LC_MESSAGES/plasma_runner_locations.mo share/locale/ta/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/ta/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/ta/LC_MESSAGES/plasma_runner_services.mo share/locale/ta/LC_MESSAGES/plasma_runner_sessions.mo share/locale/ta/LC_MESSAGES/plasma_runner_shell.mo share/locale/ta/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/ta/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/ta/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/ta/LC_MESSAGES/plasmashell.mo share/locale/ta/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/ta/LC_MESSAGES/plasmawindowed.mo share/locale/ta/LC_MESSAGES/session-shortcuts-kded.mo share/locale/ta/LC_MESSAGES/soliduiserver.mo share/locale/te/LC_MESSAGES/kcm_autostart.mo share/locale/te/LC_MESSAGES/kcm_colors.mo share/locale/te/LC_MESSAGES/kcm_componentchooser.mo share/locale/te/LC_MESSAGES/kcm_cursortheme.mo share/locale/te/LC_MESSAGES/kcm_desktoptheme.mo share/locale/te/LC_MESSAGES/kcm_fonts.mo share/locale/te/LC_MESSAGES/kcm_icons.mo share/locale/te/LC_MESSAGES/kcm_style.mo share/locale/te/LC_MESSAGES/kcminit.mo share/locale/te/LC_MESSAGES/kfontinst.mo share/locale/te/LC_MESSAGES/kio_applications.mo share/locale/te/LC_MESSAGES/klipper.mo share/locale/te/LC_MESSAGES/krdb.mo share/locale/te/LC_MESSAGES/ksmserver.mo share/locale/te/LC_MESSAGES/libkworkspace.mo -share/locale/te/LC_MESSAGES/phonon_kde_plugin.mo share/locale/te/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/te/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo -share/locale/te/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/te/LC_MESSAGES/plasma_runner_locations.mo share/locale/te/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/te/LC_MESSAGES/plasma_runner_sessions.mo share/locale/te/LC_MESSAGES/plasma_runner_shell.mo share/locale/te/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/te/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/te/LC_MESSAGES/soliduiserver.mo share/locale/tg/LC_MESSAGES/freespacenotifier.mo share/locale/tg/LC_MESSAGES/kcm_autostart.mo share/locale/tg/LC_MESSAGES/kcm_colors.mo share/locale/tg/LC_MESSAGES/kcm_componentchooser.mo share/locale/tg/LC_MESSAGES/kcm_cursortheme.mo share/locale/tg/LC_MESSAGES/kcm_desktoptheme.mo share/locale/tg/LC_MESSAGES/kcm_fonts.mo share/locale/tg/LC_MESSAGES/kcm_icons.mo share/locale/tg/LC_MESSAGES/kcm_lookandfeel.mo share/locale/tg/LC_MESSAGES/kcm_notifications.mo share/locale/tg/LC_MESSAGES/kcm_style.mo share/locale/tg/LC_MESSAGES/kcm_users.mo share/locale/tg/LC_MESSAGES/kcminit.mo share/locale/tg/LC_MESSAGES/kfontinst.mo share/locale/tg/LC_MESSAGES/kio_applications.mo share/locale/tg/LC_MESSAGES/kio_desktop.mo share/locale/tg/LC_MESSAGES/klipper.mo share/locale/tg/LC_MESSAGES/krdb.mo share/locale/tg/LC_MESSAGES/krunner.mo share/locale/tg/LC_MESSAGES/ksmserver.mo share/locale/tg/LC_MESSAGES/libkicker.mo share/locale/tg/LC_MESSAGES/libkworkspace.mo share/locale/tg/LC_MESSAGES/libnotificationmanager.mo -share/locale/tg/LC_MESSAGES/phonon_kde_plugin.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.systemtray.mo share/locale/tg/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/tg/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/tg/LC_MESSAGES/plasma_containmentactions_switchwindow.mo -share/locale/tg/LC_MESSAGES/plasma_engine_applicationjobs.mo -share/locale/tg/LC_MESSAGES/plasma_engine_notifications.mo -share/locale/tg/LC_MESSAGES/plasma_engine_time.mo share/locale/tg/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/tg/LC_MESSAGES/plasma_runner_appstream.mo share/locale/tg/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/tg/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/tg/LC_MESSAGES/plasma_runner_locations.mo share/locale/tg/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/tg/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/tg/LC_MESSAGES/plasma_runner_services.mo share/locale/tg/LC_MESSAGES/plasma_runner_sessions.mo share/locale/tg/LC_MESSAGES/plasma_runner_shell.mo share/locale/tg/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/tg/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/tg/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/tg/LC_MESSAGES/plasmashell.mo share/locale/tg/LC_MESSAGES/soliduiserver.mo share/locale/th/LC_MESSAGES/freespacenotifier.mo share/locale/th/LC_MESSAGES/kcm_autostart.mo share/locale/th/LC_MESSAGES/kcm_colors.mo share/locale/th/LC_MESSAGES/kcm_componentchooser.mo share/locale/th/LC_MESSAGES/kcm_cursortheme.mo share/locale/th/LC_MESSAGES/kcm_desktoptheme.mo share/locale/th/LC_MESSAGES/kcm_feedback.mo share/locale/th/LC_MESSAGES/kcm_fonts.mo share/locale/th/LC_MESSAGES/kcm_icons.mo share/locale/th/LC_MESSAGES/kcm_regionandlang.mo share/locale/th/LC_MESSAGES/kcm_soundtheme.mo share/locale/th/LC_MESSAGES/kcm_style.mo share/locale/th/LC_MESSAGES/kcminit.mo share/locale/th/LC_MESSAGES/kded_donationmessage.mo share/locale/th/LC_MESSAGES/kded_geotimezoned.mo share/locale/th/LC_MESSAGES/kfontinst.mo share/locale/th/LC_MESSAGES/kio_applications.mo share/locale/th/LC_MESSAGES/kio_desktop.mo share/locale/th/LC_MESSAGES/klipper.mo share/locale/th/LC_MESSAGES/krdb.mo share/locale/th/LC_MESSAGES/ksmserver.mo share/locale/th/LC_MESSAGES/libkworkspace.mo share/locale/th/LC_MESSAGES/oom-notifier.mo -share/locale/th/LC_MESSAGES/phonon_kde_plugin.mo share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/th/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/th/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/th/LC_MESSAGES/plasma_containmentactions_switchwindow.mo -share/locale/th/LC_MESSAGES/plasma_engine_applicationjobs.mo -share/locale/th/LC_MESSAGES/plasma_engine_notifications.mo share/locale/th/LC_MESSAGES/plasma_runner_appstream.mo share/locale/th/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/th/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/th/LC_MESSAGES/plasma_runner_kill.mo share/locale/th/LC_MESSAGES/plasma_runner_locations.mo share/locale/th/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/th/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/th/LC_MESSAGES/plasma_runner_services.mo share/locale/th/LC_MESSAGES/plasma_runner_sessions.mo share/locale/th/LC_MESSAGES/plasma_runner_shell.mo share/locale/th/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/th/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/th/LC_MESSAGES/plasmashell.mo share/locale/th/LC_MESSAGES/plasmawindowed.mo share/locale/th/LC_MESSAGES/session-shortcuts-kded.mo share/locale/th/LC_MESSAGES/soliduiserver.mo share/locale/tok/LC_MESSAGES/freespacenotifier.mo share/locale/tok/LC_MESSAGES/kcm_autostart.mo share/locale/tok/LC_MESSAGES/kcm_colors.mo share/locale/tok/LC_MESSAGES/kcm_cursortheme.mo share/locale/tok/LC_MESSAGES/kcm_desktoptheme.mo share/locale/tok/LC_MESSAGES/kcm_feedback.mo share/locale/tok/LC_MESSAGES/kcm_fonts.mo share/locale/tok/LC_MESSAGES/kcm_icons.mo share/locale/tok/LC_MESSAGES/kcm_lookandfeel.mo share/locale/tok/LC_MESSAGES/kcm_nightlight.mo share/locale/tok/LC_MESSAGES/kcm_notifications.mo share/locale/tok/LC_MESSAGES/kcm_regionandlang.mo share/locale/tok/LC_MESSAGES/kcm_style.mo share/locale/tok/LC_MESSAGES/kcm_users.mo share/locale/tok/LC_MESSAGES/kcminit.mo share/locale/tok/LC_MESSAGES/kfontinst.mo share/locale/tok/LC_MESSAGES/kio_applications.mo share/locale/tok/LC_MESSAGES/kio_desktop.mo share/locale/tok/LC_MESSAGES/klipper.mo share/locale/tok/LC_MESSAGES/krdb.mo share/locale/tok/LC_MESSAGES/krunner.mo share/locale/tok/LC_MESSAGES/ksmserver.mo share/locale/tok/LC_MESSAGES/libkicker.mo share/locale/tok/LC_MESSAGES/libkworkspace.mo share/locale/tok/LC_MESSAGES/libnotificationmanager.mo -share/locale/tok/LC_MESSAGES/phonon_kde_plugin.mo share/locale/tok/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/tok/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/tok/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/tok/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/tok/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/tok/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/tok/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/tok/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/tok/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/tok/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/tok/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/tok/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/tok/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/tok/LC_MESSAGES/plasma_applet_org.kde.plasma.systemtray.mo share/locale/tok/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/tok/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/tok/LC_MESSAGES/plasma_containmentactions_switchwindow.mo -share/locale/tok/LC_MESSAGES/plasma_engine_applicationjobs.mo -share/locale/tok/LC_MESSAGES/plasma_engine_notifications.mo -share/locale/tok/LC_MESSAGES/plasma_engine_time.mo share/locale/tok/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/tok/LC_MESSAGES/plasma_runner_appstream.mo share/locale/tok/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/tok/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/tok/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/tok/LC_MESSAGES/plasma_runner_kill.mo share/locale/tok/LC_MESSAGES/plasma_runner_locations.mo share/locale/tok/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/tok/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/tok/LC_MESSAGES/plasma_runner_services.mo share/locale/tok/LC_MESSAGES/plasma_runner_sessions.mo share/locale/tok/LC_MESSAGES/plasma_runner_shell.mo share/locale/tok/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/tok/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/tok/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/tok/LC_MESSAGES/plasmashell.mo share/locale/tok/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/tok/LC_MESSAGES/soliduiserver.mo share/locale/tr/LC_MESSAGES/freespacenotifier.mo share/locale/tr/LC_MESSAGES/kcm_autostart.mo share/locale/tr/LC_MESSAGES/kcm_colors.mo share/locale/tr/LC_MESSAGES/kcm_componentchooser.mo share/locale/tr/LC_MESSAGES/kcm_cursortheme.mo share/locale/tr/LC_MESSAGES/kcm_desktoptheme.mo share/locale/tr/LC_MESSAGES/kcm_feedback.mo share/locale/tr/LC_MESSAGES/kcm_fonts.mo share/locale/tr/LC_MESSAGES/kcm_icons.mo share/locale/tr/LC_MESSAGES/kcm_lookandfeel.mo share/locale/tr/LC_MESSAGES/kcm_nightlight.mo share/locale/tr/LC_MESSAGES/kcm_nighttime.mo share/locale/tr/LC_MESSAGES/kcm_notifications.mo share/locale/tr/LC_MESSAGES/kcm_regionandlang.mo share/locale/tr/LC_MESSAGES/kcm_soundtheme.mo share/locale/tr/LC_MESSAGES/kcm_style.mo share/locale/tr/LC_MESSAGES/kcm_users.mo share/locale/tr/LC_MESSAGES/kcm_wallpaper.mo share/locale/tr/LC_MESSAGES/kcminit.mo share/locale/tr/LC_MESSAGES/kded_devicenotifications.mo share/locale/tr/LC_MESSAGES/kded_donationmessage.mo share/locale/tr/LC_MESSAGES/kded_geotimezoned.mo share/locale/tr/LC_MESSAGES/kfontinst.mo share/locale/tr/LC_MESSAGES/kio_applications.mo share/locale/tr/LC_MESSAGES/kio_desktop.mo share/locale/tr/LC_MESSAGES/klipper.mo share/locale/tr/LC_MESSAGES/krdb.mo share/locale/tr/LC_MESSAGES/krunner.mo +share/locale/tr/LC_MESSAGES/ksecretprompter.mo share/locale/tr/LC_MESSAGES/ksmserver.mo share/locale/tr/LC_MESSAGES/libkicker.mo share/locale/tr/LC_MESSAGES/libkmpris.mo share/locale/tr/LC_MESSAGES/libkworkspace.mo share/locale/tr/LC_MESSAGES/libnotificationmanager.mo share/locale/tr/LC_MESSAGES/oom-notifier.mo -share/locale/tr/LC_MESSAGES/phonon_kde_plugin.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.systemtray.mo share/locale/tr/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/tr/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/tr/LC_MESSAGES/plasma_containmentactions_switchwindow.mo -share/locale/tr/LC_MESSAGES/plasma_engine_applicationjobs.mo -share/locale/tr/LC_MESSAGES/plasma_engine_notifications.mo -share/locale/tr/LC_MESSAGES/plasma_engine_time.mo share/locale/tr/LC_MESSAGES/plasma_interactiveconsole.mo share/locale/tr/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/tr/LC_MESSAGES/plasma_runner_appstream.mo share/locale/tr/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/tr/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/tr/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/tr/LC_MESSAGES/plasma_runner_kill.mo share/locale/tr/LC_MESSAGES/plasma_runner_locations.mo share/locale/tr/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/tr/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/tr/LC_MESSAGES/plasma_runner_services.mo share/locale/tr/LC_MESSAGES/plasma_runner_sessions.mo share/locale/tr/LC_MESSAGES/plasma_runner_shell.mo share/locale/tr/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/tr/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/tr/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/tr/LC_MESSAGES/plasmashell.mo share/locale/tr/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/tr/LC_MESSAGES/plasmawindowed.mo share/locale/tr/LC_MESSAGES/session-shortcuts-kded.mo share/locale/tr/LC_MESSAGES/soliduiserver.mo share/locale/ug/LC_MESSAGES/freespacenotifier.mo share/locale/ug/LC_MESSAGES/kcm_autostart.mo share/locale/ug/LC_MESSAGES/kcm_colors.mo share/locale/ug/LC_MESSAGES/kcm_componentchooser.mo share/locale/ug/LC_MESSAGES/kcm_cursortheme.mo share/locale/ug/LC_MESSAGES/kcm_desktoptheme.mo share/locale/ug/LC_MESSAGES/kcm_fonts.mo share/locale/ug/LC_MESSAGES/kcm_icons.mo share/locale/ug/LC_MESSAGES/kcm_style.mo share/locale/ug/LC_MESSAGES/kcminit.mo share/locale/ug/LC_MESSAGES/kfontinst.mo share/locale/ug/LC_MESSAGES/kio_applications.mo share/locale/ug/LC_MESSAGES/klipper.mo share/locale/ug/LC_MESSAGES/krdb.mo share/locale/ug/LC_MESSAGES/ksmserver.mo share/locale/ug/LC_MESSAGES/libkicker.mo share/locale/ug/LC_MESSAGES/libkworkspace.mo -share/locale/ug/LC_MESSAGES/phonon_kde_plugin.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/ug/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/ug/LC_MESSAGES/plasma_containmentactions_switchwindow.mo -share/locale/ug/LC_MESSAGES/plasma_engine_applicationjobs.mo -share/locale/ug/LC_MESSAGES/plasma_engine_notifications.mo share/locale/ug/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/ug/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/ug/LC_MESSAGES/plasma_runner_kill.mo share/locale/ug/LC_MESSAGES/plasma_runner_locations.mo share/locale/ug/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/ug/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/ug/LC_MESSAGES/plasma_runner_services.mo share/locale/ug/LC_MESSAGES/plasma_runner_sessions.mo share/locale/ug/LC_MESSAGES/plasma_runner_shell.mo share/locale/ug/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/ug/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/ug/LC_MESSAGES/soliduiserver.mo share/locale/uk/LC_MESSAGES/freespacenotifier.mo share/locale/uk/LC_MESSAGES/kcm_autostart.mo share/locale/uk/LC_MESSAGES/kcm_colors.mo share/locale/uk/LC_MESSAGES/kcm_componentchooser.mo share/locale/uk/LC_MESSAGES/kcm_cursortheme.mo share/locale/uk/LC_MESSAGES/kcm_desktoptheme.mo share/locale/uk/LC_MESSAGES/kcm_feedback.mo share/locale/uk/LC_MESSAGES/kcm_fonts.mo share/locale/uk/LC_MESSAGES/kcm_icons.mo share/locale/uk/LC_MESSAGES/kcm_lookandfeel.mo share/locale/uk/LC_MESSAGES/kcm_nightlight.mo share/locale/uk/LC_MESSAGES/kcm_nighttime.mo share/locale/uk/LC_MESSAGES/kcm_notifications.mo share/locale/uk/LC_MESSAGES/kcm_regionandlang.mo share/locale/uk/LC_MESSAGES/kcm_soundtheme.mo share/locale/uk/LC_MESSAGES/kcm_style.mo share/locale/uk/LC_MESSAGES/kcm_users.mo share/locale/uk/LC_MESSAGES/kcm_wallpaper.mo share/locale/uk/LC_MESSAGES/kcminit.mo share/locale/uk/LC_MESSAGES/kded_devicenotifications.mo share/locale/uk/LC_MESSAGES/kded_donationmessage.mo share/locale/uk/LC_MESSAGES/kded_geotimezoned.mo share/locale/uk/LC_MESSAGES/kfontinst.mo share/locale/uk/LC_MESSAGES/kio_applications.mo share/locale/uk/LC_MESSAGES/kio_desktop.mo share/locale/uk/LC_MESSAGES/klipper.mo share/locale/uk/LC_MESSAGES/krdb.mo share/locale/uk/LC_MESSAGES/krunner.mo +share/locale/uk/LC_MESSAGES/ksecretprompter.mo share/locale/uk/LC_MESSAGES/ksmserver.mo share/locale/uk/LC_MESSAGES/libkicker.mo share/locale/uk/LC_MESSAGES/libkmpris.mo share/locale/uk/LC_MESSAGES/libkworkspace.mo share/locale/uk/LC_MESSAGES/libnotificationmanager.mo share/locale/uk/LC_MESSAGES/oom-notifier.mo -share/locale/uk/LC_MESSAGES/phonon_kde_plugin.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.systemtray.mo share/locale/uk/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/uk/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/uk/LC_MESSAGES/plasma_containmentactions_switchwindow.mo -share/locale/uk/LC_MESSAGES/plasma_engine_applicationjobs.mo -share/locale/uk/LC_MESSAGES/plasma_engine_notifications.mo -share/locale/uk/LC_MESSAGES/plasma_engine_time.mo share/locale/uk/LC_MESSAGES/plasma_interactiveconsole.mo share/locale/uk/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/uk/LC_MESSAGES/plasma_runner_appstream.mo share/locale/uk/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/uk/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/uk/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/uk/LC_MESSAGES/plasma_runner_kill.mo share/locale/uk/LC_MESSAGES/plasma_runner_locations.mo share/locale/uk/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/uk/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/uk/LC_MESSAGES/plasma_runner_services.mo share/locale/uk/LC_MESSAGES/plasma_runner_sessions.mo share/locale/uk/LC_MESSAGES/plasma_runner_shell.mo share/locale/uk/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/uk/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/uk/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/uk/LC_MESSAGES/plasmashell.mo share/locale/uk/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/uk/LC_MESSAGES/plasmawindowed.mo share/locale/uk/LC_MESSAGES/session-shortcuts-kded.mo share/locale/uk/LC_MESSAGES/soliduiserver.mo share/locale/uz/LC_MESSAGES/kcm_colors.mo share/locale/uz/LC_MESSAGES/kcm_componentchooser.mo share/locale/uz/LC_MESSAGES/kcm_cursortheme.mo share/locale/uz/LC_MESSAGES/kcm_fonts.mo share/locale/uz/LC_MESSAGES/kcm_icons.mo share/locale/uz/LC_MESSAGES/kcm_style.mo share/locale/uz/LC_MESSAGES/kfontinst.mo share/locale/uz/LC_MESSAGES/kio_applications.mo share/locale/uz/LC_MESSAGES/klipper.mo share/locale/uz/LC_MESSAGES/ksmserver.mo share/locale/uz@cyrillic/LC_MESSAGES/kcm_colors.mo share/locale/uz@cyrillic/LC_MESSAGES/kcm_componentchooser.mo share/locale/uz@cyrillic/LC_MESSAGES/kcm_cursortheme.mo share/locale/uz@cyrillic/LC_MESSAGES/kcm_fonts.mo share/locale/uz@cyrillic/LC_MESSAGES/kcm_icons.mo share/locale/uz@cyrillic/LC_MESSAGES/kcm_style.mo share/locale/uz@cyrillic/LC_MESSAGES/kfontinst.mo share/locale/uz@cyrillic/LC_MESSAGES/kio_applications.mo share/locale/uz@cyrillic/LC_MESSAGES/klipper.mo share/locale/uz@cyrillic/LC_MESSAGES/ksmserver.mo share/locale/uz@cyrillic/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/vi/LC_MESSAGES/freespacenotifier.mo share/locale/vi/LC_MESSAGES/kcm_autostart.mo share/locale/vi/LC_MESSAGES/kcm_colors.mo share/locale/vi/LC_MESSAGES/kcm_componentchooser.mo share/locale/vi/LC_MESSAGES/kcm_cursortheme.mo share/locale/vi/LC_MESSAGES/kcm_desktoptheme.mo share/locale/vi/LC_MESSAGES/kcm_feedback.mo share/locale/vi/LC_MESSAGES/kcm_fonts.mo share/locale/vi/LC_MESSAGES/kcm_icons.mo share/locale/vi/LC_MESSAGES/kcm_lookandfeel.mo share/locale/vi/LC_MESSAGES/kcm_nightlight.mo share/locale/vi/LC_MESSAGES/kcm_notifications.mo share/locale/vi/LC_MESSAGES/kcm_regionandlang.mo share/locale/vi/LC_MESSAGES/kcm_style.mo share/locale/vi/LC_MESSAGES/kcm_users.mo share/locale/vi/LC_MESSAGES/kcminit.mo share/locale/vi/LC_MESSAGES/kfontinst.mo share/locale/vi/LC_MESSAGES/kio_applications.mo share/locale/vi/LC_MESSAGES/kio_desktop.mo share/locale/vi/LC_MESSAGES/klipper.mo share/locale/vi/LC_MESSAGES/krdb.mo share/locale/vi/LC_MESSAGES/krunner.mo share/locale/vi/LC_MESSAGES/ksmserver.mo share/locale/vi/LC_MESSAGES/libkicker.mo share/locale/vi/LC_MESSAGES/libkworkspace.mo share/locale/vi/LC_MESSAGES/libnotificationmanager.mo -share/locale/vi/LC_MESSAGES/phonon_kde_plugin.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.systemtray.mo share/locale/vi/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/vi/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/vi/LC_MESSAGES/plasma_containmentactions_switchwindow.mo -share/locale/vi/LC_MESSAGES/plasma_engine_applicationjobs.mo -share/locale/vi/LC_MESSAGES/plasma_engine_notifications.mo -share/locale/vi/LC_MESSAGES/plasma_engine_time.mo share/locale/vi/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/vi/LC_MESSAGES/plasma_runner_appstream.mo share/locale/vi/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/vi/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/vi/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/vi/LC_MESSAGES/plasma_runner_kill.mo share/locale/vi/LC_MESSAGES/plasma_runner_locations.mo share/locale/vi/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/vi/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/vi/LC_MESSAGES/plasma_runner_services.mo share/locale/vi/LC_MESSAGES/plasma_runner_sessions.mo share/locale/vi/LC_MESSAGES/plasma_runner_shell.mo share/locale/vi/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/vi/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/vi/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/vi/LC_MESSAGES/plasmashell.mo share/locale/vi/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/vi/LC_MESSAGES/soliduiserver.mo share/locale/wa/LC_MESSAGES/freespacenotifier.mo share/locale/wa/LC_MESSAGES/kcm_autostart.mo share/locale/wa/LC_MESSAGES/kcm_colors.mo share/locale/wa/LC_MESSAGES/kcm_componentchooser.mo share/locale/wa/LC_MESSAGES/kcm_cursortheme.mo share/locale/wa/LC_MESSAGES/kcm_desktoptheme.mo share/locale/wa/LC_MESSAGES/kcm_fonts.mo share/locale/wa/LC_MESSAGES/kcm_icons.mo share/locale/wa/LC_MESSAGES/kcm_style.mo share/locale/wa/LC_MESSAGES/kcminit.mo share/locale/wa/LC_MESSAGES/kfontinst.mo share/locale/wa/LC_MESSAGES/kio_applications.mo share/locale/wa/LC_MESSAGES/klipper.mo share/locale/wa/LC_MESSAGES/krdb.mo share/locale/wa/LC_MESSAGES/ksmserver.mo share/locale/wa/LC_MESSAGES/libkworkspace.mo -share/locale/wa/LC_MESSAGES/phonon_kde_plugin.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/wa/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/wa/LC_MESSAGES/plasma_containmentactions_switchwindow.mo -share/locale/wa/LC_MESSAGES/plasma_engine_applicationjobs.mo -share/locale/wa/LC_MESSAGES/plasma_engine_notifications.mo share/locale/wa/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/wa/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/wa/LC_MESSAGES/plasma_runner_kill.mo share/locale/wa/LC_MESSAGES/plasma_runner_locations.mo share/locale/wa/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/wa/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/wa/LC_MESSAGES/plasma_runner_services.mo share/locale/wa/LC_MESSAGES/plasma_runner_sessions.mo share/locale/wa/LC_MESSAGES/plasma_runner_shell.mo share/locale/wa/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/wa/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/wa/LC_MESSAGES/soliduiserver.mo share/locale/xh/LC_MESSAGES/kcm_colors.mo share/locale/xh/LC_MESSAGES/kcm_componentchooser.mo share/locale/xh/LC_MESSAGES/kcm_cursortheme.mo share/locale/xh/LC_MESSAGES/kcm_fonts.mo share/locale/xh/LC_MESSAGES/kcm_icons.mo share/locale/xh/LC_MESSAGES/kcm_style.mo share/locale/xh/LC_MESSAGES/kfontinst.mo share/locale/xh/LC_MESSAGES/klipper.mo share/locale/xh/LC_MESSAGES/krdb.mo share/locale/xh/LC_MESSAGES/ksmserver.mo share/locale/zh_CN/LC_MESSAGES/freespacenotifier.mo share/locale/zh_CN/LC_MESSAGES/kcm_autostart.mo share/locale/zh_CN/LC_MESSAGES/kcm_colors.mo share/locale/zh_CN/LC_MESSAGES/kcm_componentchooser.mo share/locale/zh_CN/LC_MESSAGES/kcm_cursortheme.mo share/locale/zh_CN/LC_MESSAGES/kcm_desktoptheme.mo share/locale/zh_CN/LC_MESSAGES/kcm_feedback.mo share/locale/zh_CN/LC_MESSAGES/kcm_fonts.mo share/locale/zh_CN/LC_MESSAGES/kcm_icons.mo share/locale/zh_CN/LC_MESSAGES/kcm_lookandfeel.mo share/locale/zh_CN/LC_MESSAGES/kcm_nightlight.mo share/locale/zh_CN/LC_MESSAGES/kcm_nighttime.mo share/locale/zh_CN/LC_MESSAGES/kcm_notifications.mo share/locale/zh_CN/LC_MESSAGES/kcm_regionandlang.mo share/locale/zh_CN/LC_MESSAGES/kcm_soundtheme.mo share/locale/zh_CN/LC_MESSAGES/kcm_style.mo share/locale/zh_CN/LC_MESSAGES/kcm_users.mo share/locale/zh_CN/LC_MESSAGES/kcm_wallpaper.mo share/locale/zh_CN/LC_MESSAGES/kcminit.mo share/locale/zh_CN/LC_MESSAGES/kded_devicenotifications.mo share/locale/zh_CN/LC_MESSAGES/kded_donationmessage.mo share/locale/zh_CN/LC_MESSAGES/kded_geotimezoned.mo share/locale/zh_CN/LC_MESSAGES/kfontinst.mo share/locale/zh_CN/LC_MESSAGES/kio_applications.mo share/locale/zh_CN/LC_MESSAGES/kio_desktop.mo share/locale/zh_CN/LC_MESSAGES/klipper.mo share/locale/zh_CN/LC_MESSAGES/krdb.mo share/locale/zh_CN/LC_MESSAGES/krunner.mo +share/locale/zh_CN/LC_MESSAGES/ksecretprompter.mo share/locale/zh_CN/LC_MESSAGES/ksmserver.mo share/locale/zh_CN/LC_MESSAGES/libkicker.mo share/locale/zh_CN/LC_MESSAGES/libkmpris.mo share/locale/zh_CN/LC_MESSAGES/libkworkspace.mo share/locale/zh_CN/LC_MESSAGES/libnotificationmanager.mo share/locale/zh_CN/LC_MESSAGES/oom-notifier.mo -share/locale/zh_CN/LC_MESSAGES/phonon_kde_plugin.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.systemtray.mo share/locale/zh_CN/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/zh_CN/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/zh_CN/LC_MESSAGES/plasma_containmentactions_switchwindow.mo -share/locale/zh_CN/LC_MESSAGES/plasma_engine_applicationjobs.mo -share/locale/zh_CN/LC_MESSAGES/plasma_engine_notifications.mo -share/locale/zh_CN/LC_MESSAGES/plasma_engine_time.mo share/locale/zh_CN/LC_MESSAGES/plasma_interactiveconsole.mo share/locale/zh_CN/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_appstream.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_kill.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_locations.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_services.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_sessions.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_shell.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/zh_CN/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/zh_CN/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/zh_CN/LC_MESSAGES/plasmashell.mo share/locale/zh_CN/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/zh_CN/LC_MESSAGES/plasmawindowed.mo share/locale/zh_CN/LC_MESSAGES/session-shortcuts-kded.mo share/locale/zh_CN/LC_MESSAGES/soliduiserver.mo share/locale/zh_TW/LC_MESSAGES/freespacenotifier.mo share/locale/zh_TW/LC_MESSAGES/kcm_autostart.mo share/locale/zh_TW/LC_MESSAGES/kcm_colors.mo share/locale/zh_TW/LC_MESSAGES/kcm_componentchooser.mo share/locale/zh_TW/LC_MESSAGES/kcm_cursortheme.mo share/locale/zh_TW/LC_MESSAGES/kcm_desktoptheme.mo share/locale/zh_TW/LC_MESSAGES/kcm_feedback.mo share/locale/zh_TW/LC_MESSAGES/kcm_fonts.mo share/locale/zh_TW/LC_MESSAGES/kcm_icons.mo share/locale/zh_TW/LC_MESSAGES/kcm_lookandfeel.mo share/locale/zh_TW/LC_MESSAGES/kcm_nightlight.mo share/locale/zh_TW/LC_MESSAGES/kcm_nighttime.mo share/locale/zh_TW/LC_MESSAGES/kcm_notifications.mo share/locale/zh_TW/LC_MESSAGES/kcm_regionandlang.mo share/locale/zh_TW/LC_MESSAGES/kcm_soundtheme.mo share/locale/zh_TW/LC_MESSAGES/kcm_style.mo share/locale/zh_TW/LC_MESSAGES/kcm_users.mo share/locale/zh_TW/LC_MESSAGES/kcm_wallpaper.mo share/locale/zh_TW/LC_MESSAGES/kcminit.mo share/locale/zh_TW/LC_MESSAGES/kded_devicenotifications.mo share/locale/zh_TW/LC_MESSAGES/kded_donationmessage.mo share/locale/zh_TW/LC_MESSAGES/kded_geotimezoned.mo share/locale/zh_TW/LC_MESSAGES/kfontinst.mo share/locale/zh_TW/LC_MESSAGES/kio_applications.mo share/locale/zh_TW/LC_MESSAGES/kio_desktop.mo share/locale/zh_TW/LC_MESSAGES/klipper.mo share/locale/zh_TW/LC_MESSAGES/krdb.mo share/locale/zh_TW/LC_MESSAGES/krunner.mo +share/locale/zh_TW/LC_MESSAGES/ksecretprompter.mo share/locale/zh_TW/LC_MESSAGES/ksmserver.mo share/locale/zh_TW/LC_MESSAGES/libkicker.mo share/locale/zh_TW/LC_MESSAGES/libkmpris.mo share/locale/zh_TW/LC_MESSAGES/libkworkspace.mo share/locale/zh_TW/LC_MESSAGES/libnotificationmanager.mo share/locale/zh_TW/LC_MESSAGES/oom-notifier.mo -share/locale/zh_TW/LC_MESSAGES/phonon_kde_plugin.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.activitybar.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.cameraindicator.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.manageinputmethod.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.systemtray.mo share/locale/zh_TW/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/zh_TW/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/zh_TW/LC_MESSAGES/plasma_containmentactions_switchwindow.mo -share/locale/zh_TW/LC_MESSAGES/plasma_engine_applicationjobs.mo -share/locale/zh_TW/LC_MESSAGES/plasma_engine_notifications.mo -share/locale/zh_TW/LC_MESSAGES/plasma_engine_time.mo share/locale/zh_TW/LC_MESSAGES/plasma_interactiveconsole.mo share/locale/zh_TW/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_appstream.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_baloosearch.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_kill.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_locations.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_services.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_sessions.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_shell.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/zh_TW/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/zh_TW/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/zh_TW/LC_MESSAGES/plasmashell.mo share/locale/zh_TW/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/zh_TW/LC_MESSAGES/plasmawindowed.mo share/locale/zh_TW/LC_MESSAGES/session-shortcuts-kded.mo share/locale/zh_TW/LC_MESSAGES/soliduiserver.mo share/plasma/avatars/Artist Konqi.png share/plasma/avatars/Bookworm Konqi.png share/plasma/avatars/Boss Konqi.png share/plasma/avatars/Bug Catcher Konqi.png share/plasma/avatars/Card Shark Konqi.png share/plasma/avatars/Hacker Konqi.png share/plasma/avatars/Journalist Konqi.png share/plasma/avatars/Katie.png share/plasma/avatars/Konqi.png share/plasma/avatars/Mechanic Konqi.png share/plasma/avatars/Messenger Konqi.png share/plasma/avatars/Musician Konqi.png share/plasma/avatars/Office Worker Konqi.png share/plasma/avatars/PC Builder Konqi.png share/plasma/avatars/Scientist Konqi.png share/plasma/avatars/Teacher Konqi.png share/plasma/avatars/Virtual Reality Konqi.png share/plasma/avatars/photos/Air Balloon.png share/plasma/avatars/photos/Air Balloon.png.license share/plasma/avatars/photos/Astronaut.png share/plasma/avatars/photos/Astronaut.png.license share/plasma/avatars/photos/Books.png share/plasma/avatars/photos/Books.png.license share/plasma/avatars/photos/Brushes.png share/plasma/avatars/photos/Brushes.png.license share/plasma/avatars/photos/Bulb.png share/plasma/avatars/photos/Bulb.png.license share/plasma/avatars/photos/Car.png share/plasma/avatars/photos/Car.png.license share/plasma/avatars/photos/Cat.png share/plasma/avatars/photos/Cat.png.license share/plasma/avatars/photos/Chameleon.png share/plasma/avatars/photos/Chameleon.png.license share/plasma/avatars/photos/Cocktail.png share/plasma/avatars/photos/Cocktail.png.license share/plasma/avatars/photos/Dog.png share/plasma/avatars/photos/Dog.png.license share/plasma/avatars/photos/Fish.png share/plasma/avatars/photos/Fish.png.license share/plasma/avatars/photos/Gamepad.png share/plasma/avatars/photos/Gamepad.png.license share/plasma/avatars/photos/Owl.png share/plasma/avatars/photos/Owl.png.license share/plasma/avatars/photos/Pancakes.png share/plasma/avatars/photos/Pancakes.png.license share/plasma/avatars/photos/Parrot.png share/plasma/avatars/photos/Parrot.png.license share/plasma/avatars/photos/Pencils.png share/plasma/avatars/photos/Pencils.png.license share/plasma/avatars/photos/Shuttle.png share/plasma/avatars/photos/Shuttle.png.license share/plasma/avatars/photos/Soccer.png share/plasma/avatars/photos/Soccer.png.license share/plasma/avatars/photos/Sunflower.png share/plasma/avatars/photos/Sunflower.png.license share/plasma/avatars/photos/Sushi.png share/plasma/avatars/photos/Sushi.png.license share/plasma/look-and-feel/org.kde.breeze.desktop/contents/defaults share/plasma/look-and-feel/org.kde.breeze.desktop/contents/layouts/org.kde.plasma.desktop-layout.js share/plasma/look-and-feel/org.kde.breeze.desktop/contents/logout/Logout.qml share/plasma/look-and-feel/org.kde.breeze.desktop/contents/logout/LogoutButton.qml share/plasma/look-and-feel/org.kde.breeze.desktop/contents/logout/timer.js share/plasma/look-and-feel/org.kde.breeze.desktop/contents/previews/fullscreenpreview.jpg share/plasma/look-and-feel/org.kde.breeze.desktop/contents/previews/lockscreen.png share/plasma/look-and-feel/org.kde.breeze.desktop/contents/previews/preview.png share/plasma/look-and-feel/org.kde.breeze.desktop/contents/previews/splash.png share/plasma/look-and-feel/org.kde.breeze.desktop/contents/splash/Splash.qml share/plasma/look-and-feel/org.kde.breeze.desktop/contents/splash/images/busywidget.svgz share/plasma/look-and-feel/org.kde.breeze.desktop/contents/splash/images/kde.svgz share/plasma/look-and-feel/org.kde.breeze.desktop/contents/splash/images/plasma.svgz share/plasma/look-and-feel/org.kde.breeze.desktop/contents/systemdialog/SystemDialog.qml share/plasma/look-and-feel/org.kde.breeze.desktop/metadata.json share/plasma/look-and-feel/org.kde.breezedark.desktop/contents/defaults share/plasma/look-and-feel/org.kde.breezedark.desktop/contents/layouts/org.kde.plasma.desktop-layout.js share/plasma/look-and-feel/org.kde.breezedark.desktop/contents/previews/fullscreenpreview.jpg share/plasma/look-and-feel/org.kde.breezedark.desktop/contents/previews/preview.png share/plasma/look-and-feel/org.kde.breezedark.desktop/metadata.json share/plasma/look-and-feel/org.kde.breezetwilight.desktop/contents/defaults share/plasma/look-and-feel/org.kde.breezetwilight.desktop/contents/layouts/org.kde.plasma.desktop-layout.js share/plasma/look-and-feel/org.kde.breezetwilight.desktop/contents/previews/fullscreenpreview.jpg share/plasma/look-and-feel/org.kde.breezetwilight.desktop/contents/previews/preview.png share/plasma/look-and-feel/org.kde.breezetwilight.desktop/metadata.json -share/plasma/plasmoids/org.kde.plasma.activitybar/contents/ui/main.qml -share/plasma/plasmoids/org.kde.plasma.activitybar/metadata.json -share/plasma/plasmoids/org.kde.plasma.analogclock/contents/config/config.qml -share/plasma/plasmoids/org.kde.plasma.analogclock/contents/config/main.xml -share/plasma/plasmoids/org.kde.plasma.analogclock/contents/ui/Hand.qml -share/plasma/plasmoids/org.kde.plasma.analogclock/contents/ui/configGeneral.qml -share/plasma/plasmoids/org.kde.plasma.analogclock/contents/ui/main.qml -share/plasma/plasmoids/org.kde.plasma.analogclock/metadata.json -share/plasma/plasmoids/org.kde.plasma.appmenu/contents/config/config.qml -share/plasma/plasmoids/org.kde.plasma.appmenu/contents/config/main.xml -share/plasma/plasmoids/org.kde.plasma.appmenu/contents/ui/MenuDelegate.qml -share/plasma/plasmoids/org.kde.plasma.appmenu/contents/ui/configGeneral.qml -share/plasma/plasmoids/org.kde.plasma.appmenu/contents/ui/main.qml -share/plasma/plasmoids/org.kde.plasma.appmenu/metadata.json -share/plasma/plasmoids/org.kde.plasma.calendar/contents/config/config.qml -share/plasma/plasmoids/org.kde.plasma.calendar/contents/config/main.xml -share/plasma/plasmoids/org.kde.plasma.calendar/contents/images/mini-calendar.svgz -share/plasma/plasmoids/org.kde.plasma.calendar/contents/ui/configGeneral.qml -share/plasma/plasmoids/org.kde.plasma.calendar/contents/ui/main.qml -share/plasma/plasmoids/org.kde.plasma.calendar/metadata.json -share/plasma/plasmoids/org.kde.plasma.cameraindicator/contents/ui/FullRepresentation.qml -share/plasma/plasmoids/org.kde.plasma.cameraindicator/contents/ui/main.qml -share/plasma/plasmoids/org.kde.plasma.cameraindicator/metadata.json -share/plasma/plasmoids/org.kde.plasma.clipboard/contents/config/main.xml -share/plasma/plasmoids/org.kde.plasma.clipboard/contents/ui/main.qml -share/plasma/plasmoids/org.kde.plasma.clipboard/metadata.json -share/plasma/plasmoids/org.kde.plasma.icon/contents/config/main.xml -share/plasma/plasmoids/org.kde.plasma.icon/contents/ui/main.qml -share/plasma/plasmoids/org.kde.plasma.icon/metadata.json -share/plasma/plasmoids/org.kde.plasma.manage-inputmethod/contents/ui/main.qml -share/plasma/plasmoids/org.kde.plasma.manage-inputmethod/metadata.json share/plasma/plasmoids/org.kde.plasma.systemmonitor.cpu/contents/config/faceproperties share/plasma/plasmoids/org.kde.plasma.systemmonitor.cpu/metadata.json share/plasma/plasmoids/org.kde.plasma.systemmonitor.cpucore/contents/config/faceproperties share/plasma/plasmoids/org.kde.plasma.systemmonitor.cpucore/metadata.json share/plasma/plasmoids/org.kde.plasma.systemmonitor.diskactivity/contents/config/faceproperties share/plasma/plasmoids/org.kde.plasma.systemmonitor.diskactivity/metadata.json share/plasma/plasmoids/org.kde.plasma.systemmonitor.diskusage/contents/config/faceproperties share/plasma/plasmoids/org.kde.plasma.systemmonitor.diskusage/metadata.json share/plasma/plasmoids/org.kde.plasma.systemmonitor.memory/contents/config/faceproperties share/plasma/plasmoids/org.kde.plasma.systemmonitor.memory/metadata.json share/plasma/plasmoids/org.kde.plasma.systemmonitor.net/contents/config/faceproperties share/plasma/plasmoids/org.kde.plasma.systemmonitor.net/metadata.json share/plasma/plasmoids/org.kde.plasma.systemmonitor/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.systemmonitor/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.systemmonitor/contents/ui/CompactRepresentation.qml share/plasma/plasmoids/org.kde.plasma.systemmonitor/contents/ui/FullRepresentation.qml share/plasma/plasmoids/org.kde.plasma.systemmonitor/contents/ui/config/ConfigAppearance.qml share/plasma/plasmoids/org.kde.plasma.systemmonitor/contents/ui/config/ConfigSensors.qml share/plasma/plasmoids/org.kde.plasma.systemmonitor/contents/ui/config/FaceDetails.qml share/plasma/plasmoids/org.kde.plasma.systemmonitor/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.systemmonitor/metadata.json -share/plasma/plasmoids/org.kde.plasma.systemtray/contents/applet/CompactApplet.qml -share/plasma/plasmoids/org.kde.plasma.systemtray/contents/config/config.qml -share/plasma/plasmoids/org.kde.plasma.systemtray/contents/config/main.xml -share/plasma/plasmoids/org.kde.plasma.systemtray/contents/ui/ConfigEntries.qml -share/plasma/plasmoids/org.kde.plasma.systemtray/contents/ui/ConfigGeneral.qml -share/plasma/plasmoids/org.kde.plasma.systemtray/contents/ui/CurrentItemHighLight.qml -share/plasma/plasmoids/org.kde.plasma.systemtray/contents/ui/ExpandedRepresentation.qml -share/plasma/plasmoids/org.kde.plasma.systemtray/contents/ui/ExpanderArrow.qml -share/plasma/plasmoids/org.kde.plasma.systemtray/contents/ui/HiddenItemsView.qml -share/plasma/plasmoids/org.kde.plasma.systemtray/contents/ui/PlasmoidPopupsContainer.qml -share/plasma/plasmoids/org.kde.plasma.systemtray/contents/ui/SystemTrayState.qml -share/plasma/plasmoids/org.kde.plasma.systemtray/contents/ui/items/AbstractItem.qml -share/plasma/plasmoids/org.kde.plasma.systemtray/contents/ui/items/ItemLoader.qml -share/plasma/plasmoids/org.kde.plasma.systemtray/contents/ui/items/PlasmoidItem.qml -share/plasma/plasmoids/org.kde.plasma.systemtray/contents/ui/items/PulseAnimation.qml -share/plasma/plasmoids/org.kde.plasma.systemtray/contents/ui/items/StatusNotifierItem.qml -share/plasma/plasmoids/org.kde.plasma.systemtray/contents/ui/main.qml -share/plasma/plasmoids/org.kde.plasma.systemtray/metadata.json share/plasma/wallpapers/org.kde.color/contents/config/main.xml share/plasma/wallpapers/org.kde.color/contents/ui/config.qml share/plasma/wallpapers/org.kde.color/contents/ui/main.qml share/plasma/wallpapers/org.kde.color/metadata.json share/plasma/wallpapers/org.kde.image/contents/config/main.xml share/plasma/wallpapers/org.kde.image/contents/ui/AddFileDialog.qml share/plasma/wallpapers/org.kde.image/contents/ui/ImageStackView.qml share/plasma/wallpapers/org.kde.image/contents/ui/ThumbnailsComponent.qml share/plasma/wallpapers/org.kde.image/contents/ui/WallpaperDelegate.qml share/plasma/wallpapers/org.kde.image/contents/ui/config.qml share/plasma/wallpapers/org.kde.image/contents/ui/main.qml share/plasma/wallpapers/org.kde.image/contents/ui/mediacomponent/AnimatedImageComponent.qml share/plasma/wallpapers/org.kde.image/contents/ui/mediacomponent/BaseMediaComponent.qml share/plasma/wallpapers/org.kde.image/contents/ui/mediacomponent/BlurComponent.qml share/plasma/wallpapers/org.kde.image/contents/ui/mediacomponent/DayNightComponent.qml share/plasma/wallpapers/org.kde.image/contents/ui/mediacomponent/DayNightImage.qml share/plasma/wallpapers/org.kde.image/contents/ui/mediacomponent/DayNightView.qml share/plasma/wallpapers/org.kde.image/contents/ui/mediacomponent/StaticImageComponent.qml share/plasma/wallpapers/org.kde.image/metadata.json share/plasma/wallpapers/org.kde.slideshow/contents/config/main.xml share/plasma/wallpapers/org.kde.slideshow/contents/ui/AddFileDialog.qml share/plasma/wallpapers/org.kde.slideshow/contents/ui/ImageStackView.qml share/plasma/wallpapers/org.kde.slideshow/contents/ui/SlideshowComponent.qml share/plasma/wallpapers/org.kde.slideshow/contents/ui/ThumbnailsComponent.qml share/plasma/wallpapers/org.kde.slideshow/contents/ui/WallpaperDelegate.qml share/plasma/wallpapers/org.kde.slideshow/contents/ui/config.qml share/plasma/wallpapers/org.kde.slideshow/contents/ui/main.qml share/plasma/wallpapers/org.kde.slideshow/contents/ui/mediacomponent/AnimatedImageComponent.qml share/plasma/wallpapers/org.kde.slideshow/contents/ui/mediacomponent/BaseMediaComponent.qml share/plasma/wallpapers/org.kde.slideshow/contents/ui/mediacomponent/BlurComponent.qml share/plasma/wallpapers/org.kde.slideshow/contents/ui/mediacomponent/DayNightComponent.qml share/plasma/wallpapers/org.kde.slideshow/contents/ui/mediacomponent/DayNightImage.qml share/plasma/wallpapers/org.kde.slideshow/contents/ui/mediacomponent/DayNightView.qml share/plasma/wallpapers/org.kde.slideshow/contents/ui/mediacomponent/StaticImageComponent.qml share/plasma/wallpapers/org.kde.slideshow/metadata.json -share/plasma5support/services/applicationjobs.operations -share/plasma5support/services/notifications.operations -share/plasma5support/services/org.kde.plasma.clipboard.operations -share/plasma5support/services/statusnotifieritem.operations share/polkit-1/actions/org.kde.fontinst.policy share/qlogging-categories6/batterycontrol.categories share/qlogging-categories6/kcm_regionandlang.categories share/qlogging-categories6/kcmusers.categories share/qlogging-categories6/klipper.categories share/qlogging-categories6/libnotificationmanager.categories share/qlogging-categories6/plasma-workspace.categories share/solid/actions/openWithFileManager.desktop share/timezonefiles/timezones.json -share/wayland-sessions/plasmawayland.desktop +share/wayland-sessions/plasma.desktop share/xdg-desktop-portal/kde-portals.conf -share/xsessions/plasma.desktop +share/xsessions/plasmax11.desktop share/zsh/site-functions/_krunner share/zsh/site-functions/_plasmashell