diff --git a/Mk/Uses/kde.mk b/Mk/Uses/kde.mk index 7d58efb72cc4..4c703da5e008 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.6.3 +KDE_PLASMA6_VERSION?= 6.6.4 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.25.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.3 KDE_APPLICATIONS6_SHLIB_VER?= 6.6.3 # 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 a062bc16e950..113af04e4631 100644 --- a/audio/plasma6-kpipewire/distinfo +++ b/audio/plasma6-kpipewire/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1773754105 -SHA256 (KDE/plasma/6.6.3/kpipewire-6.6.3.tar.xz) = 3758393ad2dfd32074a31c705d840d742a074731983b489995829f18636d9e21 -SIZE (KDE/plasma/6.6.3/kpipewire-6.6.3.tar.xz) = 153696 +TIMESTAMP = 1775652512 +SHA256 (KDE/plasma/6.6.4/kpipewire-6.6.4.tar.xz) = 1b9ef2890be00ee96ca439770a3f7842f54ac901c6a47edd3d68aff85c1a3a8f +SIZE (KDE/plasma/6.6.4/kpipewire-6.6.4.tar.xz) = 154564 diff --git a/audio/plasma6-ocean-sound-theme/distinfo b/audio/plasma6-ocean-sound-theme/distinfo index 936c5259d45d..d220d253d782 100644 --- a/audio/plasma6-ocean-sound-theme/distinfo +++ b/audio/plasma6-ocean-sound-theme/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1773754187 -SHA256 (KDE/plasma/6.6.3/ocean-sound-theme-6.6.3.tar.xz) = a879429433796e611206e94aed70c506618ace9bf492a3f2ff9d771087b6f808 -SIZE (KDE/plasma/6.6.3/ocean-sound-theme-6.6.3.tar.xz) = 2124112 +TIMESTAMP = 1775652512 +SHA256 (KDE/plasma/6.6.4/ocean-sound-theme-6.6.4.tar.xz) = 3f6d02604eabf8ce084fa47dffa1ed1dc86728e970fd941ba058aa505348b541 +SIZE (KDE/plasma/6.6.4/ocean-sound-theme-6.6.4.tar.xz) = 2124560 diff --git a/audio/plasma6-oxygen-sounds/distinfo b/audio/plasma6-oxygen-sounds/distinfo index 1e2f53971967..54fbcc478a73 100644 --- a/audio/plasma6-oxygen-sounds/distinfo +++ b/audio/plasma6-oxygen-sounds/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1773754188 -SHA256 (KDE/plasma/6.6.3/oxygen-sounds-6.6.3.tar.xz) = c53b95557e318f78b26ee5bde1152781f61dfc1a441336dfa32ce8de5aee5be4 -SIZE (KDE/plasma/6.6.3/oxygen-sounds-6.6.3.tar.xz) = 1935448 +TIMESTAMP = 1775652513 +SHA256 (KDE/plasma/6.6.4/oxygen-sounds-6.6.4.tar.xz) = ffd36dfe7c3d1627933678d45b626c4d15a1194096bf66b5145dfbe873ee1051 +SIZE (KDE/plasma/6.6.4/oxygen-sounds-6.6.4.tar.xz) = 1936432 diff --git a/audio/plasma6-plasma-pa/distinfo b/audio/plasma6-plasma-pa/distinfo index 7fecaecc7759..099d8c3921c3 100644 --- a/audio/plasma6-plasma-pa/distinfo +++ b/audio/plasma6-plasma-pa/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1773754191 -SHA256 (KDE/plasma/6.6.3/plasma-pa-6.6.3.tar.xz) = 3549a90ba8c321570f81bfd573b8dd9a63ccd32f87d484534733b2b0c838cb4b -SIZE (KDE/plasma/6.6.3/plasma-pa-6.6.3.tar.xz) = 202780 +TIMESTAMP = 1775652515 +SHA256 (KDE/plasma/6.6.4/plasma-pa-6.6.4.tar.xz) = e7062b86e728033b1125c711ec5bb285d2028c642f9775347624a1607f694793 +SIZE (KDE/plasma/6.6.4/plasma-pa-6.6.4.tar.xz) = 203428 diff --git a/deskutils/plasma6-milou/distinfo b/deskutils/plasma6-milou/distinfo index 7fa64d738772..3e778a5fe086 100644 --- a/deskutils/plasma6-milou/distinfo +++ b/deskutils/plasma6-milou/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1773754192 -SHA256 (KDE/plasma/6.6.3/milou-6.6.3.tar.xz) = 909834cd7c62de83255a97090c685903ed6245b50be9c15d299703d9b822f9fd -SIZE (KDE/plasma/6.6.3/milou-6.6.3.tar.xz) = 49892 +TIMESTAMP = 1775652516 +SHA256 (KDE/plasma/6.6.4/milou-6.6.4.tar.xz) = 23305383141927777be94e9542a0cf839cf8949286ff071e08346aa8e15a6778 +SIZE (KDE/plasma/6.6.4/milou-6.6.4.tar.xz) = 50200 diff --git a/deskutils/plasma6-sddm-kcm/distinfo b/deskutils/plasma6-sddm-kcm/distinfo index 6d33f43156ca..c79f24222474 100644 --- a/deskutils/plasma6-sddm-kcm/distinfo +++ b/deskutils/plasma6-sddm-kcm/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1773754193 -SHA256 (KDE/plasma/6.6.3/sddm-kcm-6.6.3.tar.xz) = 30e9c85cb3f1cc2f711ed5946e44efd5aea5258c582bbd9d0f107e54841daaaf -SIZE (KDE/plasma/6.6.3/sddm-kcm-6.6.3.tar.xz) = 104932 +TIMESTAMP = 1775652516 +SHA256 (KDE/plasma/6.6.4/sddm-kcm-6.6.4.tar.xz) = b38c60186c4a810893df554e94acbb5a1cbc6c4f8ba57aacd42190dc77b577c9 +SIZE (KDE/plasma/6.6.4/sddm-kcm-6.6.4.tar.xz) = 104980 diff --git a/deskutils/plasma6-xdg-desktop-portal-kde/distinfo b/deskutils/plasma6-xdg-desktop-portal-kde/distinfo index 16cca60e0d34..163e111c1e2d 100644 --- a/deskutils/plasma6-xdg-desktop-portal-kde/distinfo +++ b/deskutils/plasma6-xdg-desktop-portal-kde/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1773754193 -SHA256 (KDE/plasma/6.6.3/xdg-desktop-portal-kde-6.6.3.tar.xz) = d9b5c39596b4039e517c8a04bb6c2faae7f7c4d99855756fdafb9417fe3ffbfd -SIZE (KDE/plasma/6.6.3/xdg-desktop-portal-kde-6.6.3.tar.xz) = 228836 +TIMESTAMP = 1775652517 +SHA256 (KDE/plasma/6.6.4/xdg-desktop-portal-kde-6.6.4.tar.xz) = d99bdc236abfcae497727d5e48e7bbcc62641700efb0df284afef221ef878518 +SIZE (KDE/plasma/6.6.4/xdg-desktop-portal-kde-6.6.4.tar.xz) = 230420 diff --git a/devel/plasma6-kwrited/distinfo b/devel/plasma6-kwrited/distinfo index 019d2911fc1b..74cd7f518732 100644 --- a/devel/plasma6-kwrited/distinfo +++ b/devel/plasma6-kwrited/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1773754194 -SHA256 (KDE/plasma/6.6.3/kwrited-6.6.3.tar.xz) = 7d254573de29330bd47cb332de97a824e0ea23bcabc516cc917ba16823a40c80 -SIZE (KDE/plasma/6.6.3/kwrited-6.6.3.tar.xz) = 23500 +TIMESTAMP = 1775652518 +SHA256 (KDE/plasma/6.6.4/kwrited-6.6.4.tar.xz) = 22543f56e124e76c96666e162b70d88d9dfdaf4000e732fca3ffc34a2ed36196 +SIZE (KDE/plasma/6.6.4/kwrited-6.6.4.tar.xz) = 23608 diff --git a/devel/plasma6-plasma-sdk/distinfo b/devel/plasma6-plasma-sdk/distinfo index 118c782c0c8b..a29b5a095130 100644 --- a/devel/plasma6-plasma-sdk/distinfo +++ b/devel/plasma6-plasma-sdk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1773754195 -SHA256 (KDE/plasma/6.6.3/plasma-sdk-6.6.3.tar.xz) = 4953ef978568947992aae44921302c8de776fa269e1644ea366772ddccc72c42 -SIZE (KDE/plasma/6.6.3/plasma-sdk-6.6.3.tar.xz) = 361944 +TIMESTAMP = 1775652518 +SHA256 (KDE/plasma/6.6.4/plasma-sdk-6.6.4.tar.xz) = b9a469bbca0250656c32e754989a85eb71f4e86e361bcdf831af2cc3b9266326 +SIZE (KDE/plasma/6.6.4/plasma-sdk-6.6.4.tar.xz) = 364336 diff --git a/devel/plasma6-plasma5support/distinfo b/devel/plasma6-plasma5support/distinfo index 344cab19f6e0..8b9f434c8c17 100644 --- a/devel/plasma6-plasma5support/distinfo +++ b/devel/plasma6-plasma5support/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1773754196 -SHA256 (KDE/plasma/6.6.3/plasma5support-6.6.3.tar.xz) = 7f764826ef8967990eb42da3636bbfdd29c85e3928eeb917b8d8fed4b77f730c -SIZE (KDE/plasma/6.6.3/plasma5support-6.6.3.tar.xz) = 835100 +TIMESTAMP = 1775652519 +SHA256 (KDE/plasma/6.6.4/plasma5support-6.6.4.tar.xz) = 30b4c1f17b8ef29e4ff519748690cc2545bbb61d71b3bc91b1ddeee981f94fd8 +SIZE (KDE/plasma/6.6.4/plasma5support-6.6.4.tar.xz) = 841508 diff --git a/graphics/plasma6-spectacle/distinfo b/graphics/plasma6-spectacle/distinfo index df020a8dd28c..7d2488b5f270 100644 --- a/graphics/plasma6-spectacle/distinfo +++ b/graphics/plasma6-spectacle/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1773754198 -SHA256 (KDE/plasma/6.6.3/spectacle-6.6.3.tar.xz) = beceaffae061676215582227208b8a29e9dce1689480ba86e76ec8afa0fef13d -SIZE (KDE/plasma/6.6.3/spectacle-6.6.3.tar.xz) = 1608692 +TIMESTAMP = 1775652521 +SHA256 (KDE/plasma/6.6.4/spectacle-6.6.4.tar.xz) = 1e6d66f3a4731c635f6abd144f1bb002271b12626ccb38e86f04e79c7e1ad2e6 +SIZE (KDE/plasma/6.6.4/spectacle-6.6.4.tar.xz) = 1610616 diff --git a/print/plasma6-print-manager/distinfo b/print/plasma6-print-manager/distinfo index f448b12542f5..6d7aea2c41e1 100644 --- a/print/plasma6-print-manager/distinfo +++ b/print/plasma6-print-manager/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1773754201 -SHA256 (KDE/plasma/6.6.3/print-manager-6.6.3.tar.xz) = 686fcff428c2be57114d14c3e74129f3e35e4c457cbcad37219515473c5b621b -SIZE (KDE/plasma/6.6.3/print-manager-6.6.3.tar.xz) = 385436 +TIMESTAMP = 1775652523 +SHA256 (KDE/plasma/6.6.4/print-manager-6.6.4.tar.xz) = ec44822dd2b2ecf5f26c36f9a46d5cbb3ee01d0b75ca0a2ad95f98a53d93ce6e +SIZE (KDE/plasma/6.6.4/print-manager-6.6.4.tar.xz) = 386980 diff --git a/security/plasma6-kscreenlocker/distinfo b/security/plasma6-kscreenlocker/distinfo index 4ce58702742b..cc9bec449368 100644 --- a/security/plasma6-kscreenlocker/distinfo +++ b/security/plasma6-kscreenlocker/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1773754201 -SHA256 (KDE/plasma/6.6.3/kscreenlocker-6.6.3.tar.xz) = f73d79394ecde7c87e76d4daf777bf23cae8c19585f3166ac08a93e3596e22b3 -SIZE (KDE/plasma/6.6.3/kscreenlocker-6.6.3.tar.xz) = 186552 +TIMESTAMP = 1775652523 +SHA256 (KDE/plasma/6.6.4/kscreenlocker-6.6.4.tar.xz) = c549524a20b697968cbb74b7a5eb3d4ebd8e1a23f29673e55a25b5b685b092b0 +SIZE (KDE/plasma/6.6.4/kscreenlocker-6.6.4.tar.xz) = 187200 diff --git a/security/plasma6-ksshaskpass/distinfo b/security/plasma6-ksshaskpass/distinfo index 43546a552646..63173f3c3e6b 100644 --- a/security/plasma6-ksshaskpass/distinfo +++ b/security/plasma6-ksshaskpass/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1773754202 -SHA256 (KDE/plasma/6.6.3/ksshaskpass-6.6.3.tar.xz) = f19f8a135abe71abeb55b2d01a6fdf207977e5b6ff74ba95a149bb32714118fc -SIZE (KDE/plasma/6.6.3/ksshaskpass-6.6.3.tar.xz) = 32424 +TIMESTAMP = 1775652524 +SHA256 (KDE/plasma/6.6.4/ksshaskpass-6.6.4.tar.xz) = 46f3606c1591986091d9b289c491512e8c058216a71f20ccdcad32d5b02a4393 +SIZE (KDE/plasma/6.6.4/ksshaskpass-6.6.4.tar.xz) = 32580 diff --git a/security/plasma6-kwallet-pam/distinfo b/security/plasma6-kwallet-pam/distinfo index a36c47f4c1b6..8b59ab587d02 100644 --- a/security/plasma6-kwallet-pam/distinfo +++ b/security/plasma6-kwallet-pam/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1773754203 -SHA256 (KDE/plasma/6.6.3/kwallet-pam-6.6.3.tar.xz) = 965a008d89a64f8161673c6a32c7f71c28473ee2714856743b949acf18296e16 -SIZE (KDE/plasma/6.6.3/kwallet-pam-6.6.3.tar.xz) = 22372 +TIMESTAMP = 1775652525 +SHA256 (KDE/plasma/6.6.4/kwallet-pam-6.6.4.tar.xz) = 731def95656f55114e6a5084e4ca722e2e9499d43fb613f4ca401904a47573e7 +SIZE (KDE/plasma/6.6.4/kwallet-pam-6.6.4.tar.xz) = 22520 diff --git a/sysutils/plasma6-discover/distinfo b/sysutils/plasma6-discover/distinfo index c8fe4537d57e..9a0722022cca 100644 --- a/sysutils/plasma6-discover/distinfo +++ b/sysutils/plasma6-discover/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1773754205 -SHA256 (KDE/plasma/6.6.3/discover-6.6.3.tar.xz) = 5d37916377d2c62ae630745c0160e5004c96b2bd4d45fc6cee7134b5249e62dd -SIZE (KDE/plasma/6.6.3/discover-6.6.3.tar.xz) = 1145324 +TIMESTAMP = 1775652526 +SHA256 (KDE/plasma/6.6.4/discover-6.6.4.tar.xz) = dd673afead30054f7492a882a2e58aad6cb0c52056f8b503a027bce5e04ef4da +SIZE (KDE/plasma/6.6.4/discover-6.6.4.tar.xz) = 1144340 diff --git a/sysutils/plasma6-kde-cli-tools/distinfo b/sysutils/plasma6-kde-cli-tools/distinfo index 391ce23dcb1a..9d67767a6605 100644 --- a/sysutils/plasma6-kde-cli-tools/distinfo +++ b/sysutils/plasma6-kde-cli-tools/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1773754206 -SHA256 (KDE/plasma/6.6.3/kde-cli-tools-6.6.3.tar.xz) = b51294a62d0dd3bc0232a3b9b0314405717aa5081fafa48445b5c66b1899def6 -SIZE (KDE/plasma/6.6.3/kde-cli-tools-6.6.3.tar.xz) = 637648 +TIMESTAMP = 1775652527 +SHA256 (KDE/plasma/6.6.4/kde-cli-tools-6.6.4.tar.xz) = 0d7cdd7875a970768f0a173748d6e301157adcac2ec7b6b6233f792277497704 +SIZE (KDE/plasma/6.6.4/kde-cli-tools-6.6.4.tar.xz) = 639664 diff --git a/sysutils/plasma6-kinfocenter/distinfo b/sysutils/plasma6-kinfocenter/distinfo index da7e8ef6731f..0f59268fde0e 100644 --- a/sysutils/plasma6-kinfocenter/distinfo +++ b/sysutils/plasma6-kinfocenter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1773754207 -SHA256 (KDE/plasma/6.6.3/kinfocenter-6.6.3.tar.xz) = 610c473bdf55497105a28e5cea67401446d83d1bd1b97ed56c4e07be7da0c813 -SIZE (KDE/plasma/6.6.3/kinfocenter-6.6.3.tar.xz) = 763156 +TIMESTAMP = 1775652528 +SHA256 (KDE/plasma/6.6.4/kinfocenter-6.6.4.tar.xz) = 247f58dd25d08fa968ab83b42cb8dc76710acec54969dff31313a75566226a82 +SIZE (KDE/plasma/6.6.4/kinfocenter-6.6.4.tar.xz) = 762792 diff --git a/sysutils/plasma6-kmenuedit/distinfo b/sysutils/plasma6-kmenuedit/distinfo index 85be6975d2c5..c5ebbb15a21a 100644 --- a/sysutils/plasma6-kmenuedit/distinfo +++ b/sysutils/plasma6-kmenuedit/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1773754208 -SHA256 (KDE/plasma/6.6.3/kmenuedit-6.6.3.tar.xz) = 6030a52204a546423ffac803659a87dced3650dc121d6798caeffb3143c3dc43 -SIZE (KDE/plasma/6.6.3/kmenuedit-6.6.3.tar.xz) = 887128 +TIMESTAMP = 1775652528 +SHA256 (KDE/plasma/6.6.4/kmenuedit-6.6.4.tar.xz) = b098c176623e9d848e80c769c1857ba7309187e2704e53e56c5eff84dc89760f +SIZE (KDE/plasma/6.6.4/kmenuedit-6.6.4.tar.xz) = 887020 diff --git a/sysutils/plasma6-knighttime/distinfo b/sysutils/plasma6-knighttime/distinfo index 37ef0f4c8067..02fb2b639f13 100644 --- a/sysutils/plasma6-knighttime/distinfo +++ b/sysutils/plasma6-knighttime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1773754209 -SHA256 (KDE/plasma/6.6.3/knighttime-6.6.3.tar.xz) = 97f612eb6cae0ee39ad3579bb9124d701751c83fd02cd3f5ed120896b1313a21 -SIZE (KDE/plasma/6.6.3/knighttime-6.6.3.tar.xz) = 39872 +TIMESTAMP = 1775652529 +SHA256 (KDE/plasma/6.6.4/knighttime-6.6.4.tar.xz) = 96d43cedad1f1d4819a7c7418a4eb8ed26cc20b47a17ada865ffb0f25722ee7b +SIZE (KDE/plasma/6.6.4/knighttime-6.6.4.tar.xz) = 40168 diff --git a/sysutils/plasma6-ksystemstats/distinfo b/sysutils/plasma6-ksystemstats/distinfo index 18ed70baa6e9..843c42ee696f 100644 --- a/sysutils/plasma6-ksystemstats/distinfo +++ b/sysutils/plasma6-ksystemstats/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1773754210 -SHA256 (KDE/plasma/6.6.3/ksystemstats-6.6.3.tar.xz) = d700d628ac0371c9f3730ca11d7bd528ab234a10078e8ce3d77fff47cf8e8bac -SIZE (KDE/plasma/6.6.3/ksystemstats-6.6.3.tar.xz) = 160340 +TIMESTAMP = 1775652530 +SHA256 (KDE/plasma/6.6.4/ksystemstats-6.6.4.tar.xz) = 31bdf29e6ba0bc5d790d1a04cb0fa9f92bb7fdf9dd8e146fe06eebb2664a7b44 +SIZE (KDE/plasma/6.6.4/ksystemstats-6.6.4.tar.xz) = 161040 diff --git a/sysutils/plasma6-libksysguard/distinfo b/sysutils/plasma6-libksysguard/distinfo index 8bd6c5a3a48a..ffd602e627a2 100644 --- a/sysutils/plasma6-libksysguard/distinfo +++ b/sysutils/plasma6-libksysguard/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1773754211 -SHA256 (KDE/plasma/6.6.3/libksysguard-6.6.3.tar.xz) = f4061299a69dc9e3cf83c0e54c174708d8dc748ae208d30a04b274c552586dbf -SIZE (KDE/plasma/6.6.3/libksysguard-6.6.3.tar.xz) = 337504 +TIMESTAMP = 1775652530 +SHA256 (KDE/plasma/6.6.4/libksysguard-6.6.4.tar.xz) = 9dd0a5a8d3f12d65351fab8c132365dd65f0f9976d6831598ce30ebbfa291a89 +SIZE (KDE/plasma/6.6.4/libksysguard-6.6.4.tar.xz) = 340148 diff --git a/sysutils/plasma6-plasma-disks/distinfo b/sysutils/plasma6-plasma-disks/distinfo index e42e5b082bfd..f391a872f6bc 100644 --- a/sysutils/plasma6-plasma-disks/distinfo +++ b/sysutils/plasma6-plasma-disks/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1773754213 -SHA256 (KDE/plasma/6.6.3/plasma-disks-6.6.3.tar.xz) = 7e30d2c0813f8a9e0a03740769b6b4e32c52aa43c2e53c3215d27cd019b8f1ed -SIZE (KDE/plasma/6.6.3/plasma-disks-6.6.3.tar.xz) = 107596 +TIMESTAMP = 1775652531 +SHA256 (KDE/plasma/6.6.4/plasma-disks-6.6.4.tar.xz) = e881ce0ca77c33296b4018780bd60451a677f6a1b485a5bb4184913e04d3cd76 +SIZE (KDE/plasma/6.6.4/plasma-disks-6.6.4.tar.xz) = 107796 diff --git a/sysutils/plasma6-plasma-systemmonitor/distinfo b/sysutils/plasma6-plasma-systemmonitor/distinfo index b8c2df6c3bf7..fc395e148ee7 100644 --- a/sysutils/plasma6-plasma-systemmonitor/distinfo +++ b/sysutils/plasma6-plasma-systemmonitor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1773754214 -SHA256 (KDE/plasma/6.6.3/plasma-systemmonitor-6.6.3.tar.xz) = 411bd919fa926bc6d7b44645f546bd48b0b82ae1f3fe97999a0568abd7019c85 -SIZE (KDE/plasma/6.6.3/plasma-systemmonitor-6.6.3.tar.xz) = 238948 +TIMESTAMP = 1775652532 +SHA256 (KDE/plasma/6.6.4/plasma-systemmonitor-6.6.4.tar.xz) = 5be0c214a4d48c85608169c0603c4d5687553c98bc1b45c7353be93f66cd8b12 +SIZE (KDE/plasma/6.6.4/plasma-systemmonitor-6.6.4.tar.xz) = 239628 diff --git a/sysutils/plasma6-polkit-kde-agent-1/distinfo b/sysutils/plasma6-polkit-kde-agent-1/distinfo index 187782c5c570..841dec1a4818 100644 --- a/sysutils/plasma6-polkit-kde-agent-1/distinfo +++ b/sysutils/plasma6-polkit-kde-agent-1/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1773754215 -SHA256 (KDE/plasma/6.6.3/polkit-kde-agent-1-6.6.3.tar.xz) = 3189471debe07a3f779efb247a9db1c15618cd70f37fc360e78078f40d5507a4 -SIZE (KDE/plasma/6.6.3/polkit-kde-agent-1-6.6.3.tar.xz) = 57248 +TIMESTAMP = 1775652532 +SHA256 (KDE/plasma/6.6.4/polkit-kde-agent-1-6.6.4.tar.xz) = 5a3944e19658cbff9d8fc4b15252ca1947c6acad9c41722d4bc05f9ce8d6f226 +SIZE (KDE/plasma/6.6.4/polkit-kde-agent-1-6.6.4.tar.xz) = 57672 diff --git a/sysutils/plasma6-powerdevil/distinfo b/sysutils/plasma6-powerdevil/distinfo index 2fe4947aaf41..9fe5d925f6cf 100644 --- a/sysutils/plasma6-powerdevil/distinfo +++ b/sysutils/plasma6-powerdevil/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1773754216 -SHA256 (KDE/plasma/6.6.3/powerdevil-6.6.3.tar.xz) = 73e9b85dbf9791fcf22c01d67b3cf024e23fea170476f09ff8fd91b4034480e9 -SIZE (KDE/plasma/6.6.3/powerdevil-6.6.3.tar.xz) = 1251880 +TIMESTAMP = 1775652533 +SHA256 (KDE/plasma/6.6.4/powerdevil-6.6.4.tar.xz) = 85234e1c8402e919f33c8592af71ea3c8be1c4cd93c22c09b4b8b38467ddbf05 +SIZE (KDE/plasma/6.6.4/powerdevil-6.6.4.tar.xz) = 1250836 diff --git a/sysutils/plasma6-systemsettings/distinfo b/sysutils/plasma6-systemsettings/distinfo index f7eaec44db33..32e65faeec0b 100644 --- a/sysutils/plasma6-systemsettings/distinfo +++ b/sysutils/plasma6-systemsettings/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1773754217 -SHA256 (KDE/plasma/6.6.3/systemsettings-6.6.3.tar.xz) = 99974a1922c9e3b3ce8a8479946e6f48c28f2ea860a3b8763c7bfc35e712e151 -SIZE (KDE/plasma/6.6.3/systemsettings-6.6.3.tar.xz) = 221948 +TIMESTAMP = 1775652534 +SHA256 (KDE/plasma/6.6.4/systemsettings-6.6.4.tar.xz) = 18d2aab42f3f3ce17c5e636238c2d7a1908152f2203f521d6d8441537d3edf04 +SIZE (KDE/plasma/6.6.4/systemsettings-6.6.4.tar.xz) = 221792 diff --git a/www/plasma6-plasma-browser-integration/distinfo b/www/plasma6-plasma-browser-integration/distinfo index b3a9cedbbdc6..0f4193099eda 100644 --- a/www/plasma6-plasma-browser-integration/distinfo +++ b/www/plasma6-plasma-browser-integration/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1773754218 -SHA256 (KDE/plasma/6.6.3/plasma-browser-integration-6.6.3.tar.xz) = 14dfc993fd7dcd77e41f82d386d2a6033e588ee9ceffe01ce32a7a13f53720e4 -SIZE (KDE/plasma/6.6.3/plasma-browser-integration-6.6.3.tar.xz) = 240092 +TIMESTAMP = 1775652534 +SHA256 (KDE/plasma/6.6.4/plasma-browser-integration-6.6.4.tar.xz) = 9ccc761b62f5ded99fe4a67b6e29e29e3b87f5794a8d08477bad41b92b7d6cb8 +SIZE (KDE/plasma/6.6.4/plasma-browser-integration-6.6.4.tar.xz) = 242636 diff --git a/x11-themes/plasma6-aurorae/distinfo b/x11-themes/plasma6-aurorae/distinfo index 1625b7901a1b..9ed8428748ab 100644 --- a/x11-themes/plasma6-aurorae/distinfo +++ b/x11-themes/plasma6-aurorae/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1773754219 -SHA256 (KDE/plasma/6.6.3/aurorae-6.6.3.tar.xz) = 2a196fea76980f20b53bbd94f5ef7a6b5ee08b68ba7a1a5917a780b789c57e91 -SIZE (KDE/plasma/6.6.3/aurorae-6.6.3.tar.xz) = 65868 +TIMESTAMP = 1775652535 +SHA256 (KDE/plasma/6.6.4/aurorae-6.6.4.tar.xz) = f7dbc82de06a53dd2c3ff54ae542351485cd5b27e071fada5bb7fc87911054f3 +SIZE (KDE/plasma/6.6.4/aurorae-6.6.4.tar.xz) = 66032 diff --git a/x11-themes/plasma6-breeze-gtk/distinfo b/x11-themes/plasma6-breeze-gtk/distinfo index 51325edd44d7..42447380d114 100644 --- a/x11-themes/plasma6-breeze-gtk/distinfo +++ b/x11-themes/plasma6-breeze-gtk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1773754224 -SHA256 (KDE/plasma/6.6.3/breeze-gtk-6.6.3.tar.xz) = 32e2e5947d5d26c1ae2020feca79302d2eea54bce655a6596dd34df5656e5e8d -SIZE (KDE/plasma/6.6.3/breeze-gtk-6.6.3.tar.xz) = 40804 +TIMESTAMP = 1775652539 +SHA256 (KDE/plasma/6.6.4/breeze-gtk-6.6.4.tar.xz) = 5ee332a31c5e86d6dd0a3bb7cd9a43e176adc2582f2e3b7d5e0c2fa9b90e9774 +SIZE (KDE/plasma/6.6.4/breeze-gtk-6.6.4.tar.xz) = 40996 diff --git a/x11-themes/plasma6-breeze/distinfo b/x11-themes/plasma6-breeze/distinfo index ce2ffdae55c1..bf8c62f28be1 100644 --- a/x11-themes/plasma6-breeze/distinfo +++ b/x11-themes/plasma6-breeze/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1773754223 -SHA256 (KDE/plasma/6.6.3/breeze-6.6.3.tar.xz) = 31826f094a447873c24b01c67392f96f0135a404cc219c4b969391a22ddd31dd -SIZE (KDE/plasma/6.6.3/breeze-6.6.3.tar.xz) = 42473744 +TIMESTAMP = 1775652538 +SHA256 (KDE/plasma/6.6.4/breeze-6.6.4.tar.xz) = 15ec98c5bdae5cb762c162a2aae87605531e20cf80a7ebeaa36e8d694018ffda +SIZE (KDE/plasma/6.6.4/breeze-6.6.4.tar.xz) = 42470336 diff --git a/x11-themes/plasma6-kde-gtk-config/distinfo b/x11-themes/plasma6-kde-gtk-config/distinfo index 9a8a60f39cc3..d27508cf07e5 100644 --- a/x11-themes/plasma6-kde-gtk-config/distinfo +++ b/x11-themes/plasma6-kde-gtk-config/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1773754224 -SHA256 (KDE/plasma/6.6.3/kde-gtk-config-6.6.3.tar.xz) = 4b5a88620cea11c6c29e33646e0893ab2bc825c1d6480c83e60572a153e34103 -SIZE (KDE/plasma/6.6.3/kde-gtk-config-6.6.3.tar.xz) = 79208 +TIMESTAMP = 1775652540 +SHA256 (KDE/plasma/6.6.4/kde-gtk-config-6.6.4.tar.xz) = a82347a2e719e00409f73f2d0fc7b4f7ac4432dd31fec0e132d7bf12d06da7df +SIZE (KDE/plasma/6.6.4/kde-gtk-config-6.6.4.tar.xz) = 79376 diff --git a/x11-themes/plasma6-oxygen/distinfo b/x11-themes/plasma6-oxygen/distinfo index 6281797b090e..d680c81d73ef 100644 --- a/x11-themes/plasma6-oxygen/distinfo +++ b/x11-themes/plasma6-oxygen/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1773754226 -SHA256 (KDE/plasma/6.6.3/oxygen-6.6.3.tar.xz) = 2b62011740f28db8975ce37ed733f514e8180ffe4840f81276bd9f9914d7079c -SIZE (KDE/plasma/6.6.3/oxygen-6.6.3.tar.xz) = 2969228 +TIMESTAMP = 1775652541 +SHA256 (KDE/plasma/6.6.4/oxygen-6.6.4.tar.xz) = d42522d3c34138583f3ab6a3d8077fbc77cb87a413205fed35a9d5feef9009cd +SIZE (KDE/plasma/6.6.4/oxygen-6.6.4.tar.xz) = 2972748 diff --git a/x11-themes/plasma6-oxygen/pkg-plist b/x11-themes/plasma6-oxygen/pkg-plist index 468e45b583db..93e241e52be8 100644 --- a/x11-themes/plasma6-oxygen/pkg-plist +++ b/x11-themes/plasma6-oxygen/pkg-plist @@ -1,1514 +1,1515 @@ 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/switch.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 8f65292ddde3..999eddb438bb 100644 --- a/x11-themes/plasma6-plasma-workspace-wallpapers/distinfo +++ b/x11-themes/plasma6-plasma-workspace-wallpapers/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1773754237 -SHA256 (KDE/plasma/6.6.3/plasma-workspace-wallpapers-6.6.3.tar.xz) = 73854af7129707a75f8b131edfd42c440410b8f219babb6173314a22cce915dd -SIZE (KDE/plasma/6.6.3/plasma-workspace-wallpapers-6.6.3.tar.xz) = 226402624 +TIMESTAMP = 1775652553 +SHA256 (KDE/plasma/6.6.4/plasma-workspace-wallpapers-6.6.4.tar.xz) = 512cf1c9a9440da5f9b4915e515a7d4eb530bb39da1b321848d8d5cfb344d1ad +SIZE (KDE/plasma/6.6.4/plasma-workspace-wallpapers-6.6.4.tar.xz) = 226397956 diff --git a/x11-themes/plasma6-qqc2-breeze-style/distinfo b/x11-themes/plasma6-qqc2-breeze-style/distinfo index 574aba4bb860..66f43c1c208b 100644 --- a/x11-themes/plasma6-qqc2-breeze-style/distinfo +++ b/x11-themes/plasma6-qqc2-breeze-style/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1773754238 -SHA256 (KDE/plasma/6.6.3/qqc2-breeze-style-6.6.3.tar.xz) = bc5864726fcdf0f3c81cbbc97aa4d5327ccfdd86a621b475ce5cd3e2ad6c4348 -SIZE (KDE/plasma/6.6.3/qqc2-breeze-style-6.6.3.tar.xz) = 66200 +TIMESTAMP = 1775652554 +SHA256 (KDE/plasma/6.6.4/qqc2-breeze-style-6.6.4.tar.xz) = 24e54a1b72f5f6d2f5a5f41c4e331c8f8324f12fddf6b200d2e04ea378e46132 +SIZE (KDE/plasma/6.6.4/qqc2-breeze-style-6.6.4.tar.xz) = 66624 diff --git a/x11-toolkits/plasma6-kdeplasma-addons/distinfo b/x11-toolkits/plasma6-kdeplasma-addons/distinfo index 557613b39063..a3268a88e36c 100644 --- a/x11-toolkits/plasma6-kdeplasma-addons/distinfo +++ b/x11-toolkits/plasma6-kdeplasma-addons/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1773754239 -SHA256 (KDE/plasma/6.6.3/kdeplasma-addons-6.6.3.tar.xz) = e9c99ea5283d708fe06257f277313fdfa19bccfaf81482a28a50fce0bfff2947 -SIZE (KDE/plasma/6.6.3/kdeplasma-addons-6.6.3.tar.xz) = 1110068 +TIMESTAMP = 1775652555 +SHA256 (KDE/plasma/6.6.4/kdeplasma-addons-6.6.4.tar.xz) = bd979fab502100af5e39501a6a68fdabacb747ff7f46a9d22a01084ca0093cae +SIZE (KDE/plasma/6.6.4/kdeplasma-addons-6.6.4.tar.xz) = 1108796 diff --git a/x11-toolkits/plasma6-kdeplasma-addons/pkg-plist b/x11-toolkits/plasma6-kdeplasma-addons/pkg-plist index 4a521f1b6fac..bc06b97c5b87 100644 --- a/x11-toolkits/plasma6-kdeplasma-addons/pkg-plist +++ b/x11-toolkits/plasma6-kdeplasma-addons/pkg-plist @@ -1,2076 +1,2078 @@ 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/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/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/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/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_colors.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/cs/LC_MESSAGES/plasma_wallpaper_org.kde.tiled.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.kickerdash/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 62da1afab537..89bd1b5a9e45 100644 --- a/x11-wm/plasma6-kdecoration/distinfo +++ b/x11-wm/plasma6-kdecoration/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1773754240 -SHA256 (KDE/plasma/6.6.3/kdecoration-6.6.3.tar.xz) = 0760e182234d79b3a693d12920284c9b864c437f797dbcd526188d761b7de3e9 -SIZE (KDE/plasma/6.6.3/kdecoration-6.6.3.tar.xz) = 61372 +TIMESTAMP = 1775652555 +SHA256 (KDE/plasma/6.6.4/kdecoration-6.6.4.tar.xz) = 20d9424a018fabbf62987bc138741068ae2384f3128a61f23d906ff4f42a5505 +SIZE (KDE/plasma/6.6.4/kdecoration-6.6.4.tar.xz) = 61512 diff --git a/x11-wm/plasma6-kwin-x11/distinfo b/x11-wm/plasma6-kwin-x11/distinfo index 38745b464d0e..1f9a9ebefd25 100644 --- a/x11-wm/plasma6-kwin-x11/distinfo +++ b/x11-wm/plasma6-kwin-x11/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1773754243 -SHA256 (KDE/plasma/6.6.3/kwin-x11-6.6.3.tar.xz) = a29fc80038fa4608cd1c9ca56734e874b0ba6ae66a6494a079e7f738ff36cc53 -SIZE (KDE/plasma/6.6.3/kwin-x11-6.6.3.tar.xz) = 6883184 +TIMESTAMP = 1775652557 +SHA256 (KDE/plasma/6.6.4/kwin-x11-6.6.4.tar.xz) = 81106d8b89fa2a9c93434e41aadc040ff2d7afb3b4693f423a45853806836e98 +SIZE (KDE/plasma/6.6.4/kwin-x11-6.6.4.tar.xz) = 6891168 diff --git a/x11-wm/plasma6-kwin-x11/pkg-plist b/x11-wm/plasma6-kwin-x11/pkg-plist index 42d80164b87f..749c5a2f603c 100644 --- a/x11-wm/plasma6-kwin-x11/pkg-plist +++ b/x11-wm/plasma6-kwin-x11/pkg-plist @@ -1,1523 +1,1525 @@ 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/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_animations_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_animations_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_animations_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/distinfo b/x11-wm/plasma6-kwin/distinfo index 7cf675b4e96f..83055692b026 100644 --- a/x11-wm/plasma6-kwin/distinfo +++ b/x11-wm/plasma6-kwin/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1773754241 -SHA256 (KDE/plasma/6.6.3/kwin-6.6.3.tar.xz) = 61a2e0f0b1a34f38b37f8a4ac7f7712c975ec763ff4e24ebb05ec1187e458e0f -SIZE (KDE/plasma/6.6.3/kwin-6.6.3.tar.xz) = 8880260 +TIMESTAMP = 1775652556 +SHA256 (KDE/plasma/6.6.4/kwin-6.6.4.tar.xz) = 3f9439760580a977d018daf4b35b62e5a1700def7b21c8dfbfc789d21378d7ad +SIZE (KDE/plasma/6.6.4/kwin-6.6.4.tar.xz) = 8894068 diff --git a/x11-wm/plasma6-kwin/pkg-plist b/x11-wm/plasma6-kwin/pkg-plist index 1cc4d4e3f968..529a470cc69d 100644 --- a/x11-wm/plasma6-kwin/pkg-plist +++ b/x11-wm/plasma6-kwin/pkg-plist @@ -1,1741 +1,1742 @@ 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/backgroundeffectitem.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_animations.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/distinfo b/x11/plasma6-kactivitymanagerd/distinfo index b57f3ef7e4e1..034150054bf0 100644 --- a/x11/plasma6-kactivitymanagerd/distinfo +++ b/x11/plasma6-kactivitymanagerd/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1773754243 -SHA256 (KDE/plasma/6.6.3/kactivitymanagerd-6.6.3.tar.xz) = 858bea71cc64bb2922ef06d5c125b5addaea2d8c095bf3dc8875a25f5b8c3341 -SIZE (KDE/plasma/6.6.3/kactivitymanagerd-6.6.3.tar.xz) = 98756 +TIMESTAMP = 1775652558 +SHA256 (KDE/plasma/6.6.4/kactivitymanagerd-6.6.4.tar.xz) = b405af0c48ad47ee4f2c70fd2a2aef9eee521120c15cac3f78945bd0e0fb3166 +SIZE (KDE/plasma/6.6.4/kactivitymanagerd-6.6.4.tar.xz) = 99284 diff --git a/x11/plasma6-kgamma/distinfo b/x11/plasma6-kgamma/distinfo index 60c8cce70aa4..22a63da95123 100644 --- a/x11/plasma6-kgamma/distinfo +++ b/x11/plasma6-kgamma/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1773754244 -SHA256 (KDE/plasma/6.6.3/kgamma-6.6.3.tar.xz) = 6c13370802e14595f24f3fd475a50cd27138f9af5fe873df306b90d9ee2956d6 -SIZE (KDE/plasma/6.6.3/kgamma-6.6.3.tar.xz) = 87212 +TIMESTAMP = 1775652559 +SHA256 (KDE/plasma/6.6.4/kgamma-6.6.4.tar.xz) = a7d3df14e5e016399e30e06923c0478a2c40a3a915e06abf070bd97e9381f1a3 +SIZE (KDE/plasma/6.6.4/kgamma-6.6.4.tar.xz) = 87352 diff --git a/x11/plasma6-kglobalacceld/distinfo b/x11/plasma6-kglobalacceld/distinfo index 5a56d30d0cb1..d3cac3845ba6 100644 --- a/x11/plasma6-kglobalacceld/distinfo +++ b/x11/plasma6-kglobalacceld/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1773754245 -SHA256 (KDE/plasma/6.6.3/kglobalacceld-6.6.3.tar.xz) = bcb5d43146df016fe568401912538de8c70e01c4e6da78740e6f2181a8b29ea7 -SIZE (KDE/plasma/6.6.3/kglobalacceld-6.6.3.tar.xz) = 57912 +TIMESTAMP = 1775652559 +SHA256 (KDE/plasma/6.6.4/kglobalacceld-6.6.4.tar.xz) = c0a7ebc420c11206ffc0bea1cc4b51654fc2d235b07ccb3c5f0ae9713049d12c +SIZE (KDE/plasma/6.6.4/kglobalacceld-6.6.4.tar.xz) = 58160 diff --git a/x11/plasma6-kscreen/distinfo b/x11/plasma6-kscreen/distinfo index 39850be2effa..8c4c342344e9 100644 --- a/x11/plasma6-kscreen/distinfo +++ b/x11/plasma6-kscreen/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1773754246 -SHA256 (KDE/plasma/6.6.3/kscreen-6.6.3.tar.xz) = 45f2999182eef89991812cfcf085b368d58052d21c22ab46325998aa51db13d1 -SIZE (KDE/plasma/6.6.3/kscreen-6.6.3.tar.xz) = 1748276 +TIMESTAMP = 1775652560 +SHA256 (KDE/plasma/6.6.4/kscreen-6.6.4.tar.xz) = 2f123691ac25da7f5166894ebaddda9615ddbaf949ebbb6c9829196b0615c250 +SIZE (KDE/plasma/6.6.4/kscreen-6.6.4.tar.xz) = 1749680 diff --git a/x11/plasma6-kscreen/pkg-plist b/x11/plasma6-kscreen/pkg-plist index d0fea4a1063a..14806390be8b 100644 --- a/x11/plasma6-kscreen/pkg-plist +++ b/x11/plasma6-kscreen/pkg-plist @@ -1,232 +1,234 @@ 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/hdrcalibrator.mo share/locale/cs/LC_MESSAGES/kcm_kscreen.mo share/locale/cs/LC_MESSAGES/kscreen_common.mo +share/locale/cs/LC_MESSAGES/kscreen_osd.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/kscreen_osd.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/kscreen_osd.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/hdrcalibrator.mo share/locale/ja/LC_MESSAGES/kcm_kscreen.mo share/locale/ja/LC_MESSAGES/kscreen_common.mo share/locale/ja/LC_MESSAGES/kscreen_osd.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-integration/distinfo b/x11/plasma6-kwayland-integration/distinfo index 39c53e77da27..3caea7ef804f 100644 --- a/x11/plasma6-kwayland-integration/distinfo +++ b/x11/plasma6-kwayland-integration/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1773754248 -SHA256 (KDE/plasma/6.6.3/kwayland-integration-6.6.3.tar.xz) = ea4c1424acdf1d437be88a6ff3ee2ed055e620da1b05dec1a534049d111b31ab -SIZE (KDE/plasma/6.6.3/kwayland-integration-6.6.3.tar.xz) = 26440 +TIMESTAMP = 1775652561 +SHA256 (KDE/plasma/6.6.4/kwayland-integration-6.6.4.tar.xz) = 632f5a76645bb4f1cdaa40ef5077a23bcf03cc8e74f07a4b54dd35c60e661a65 +SIZE (KDE/plasma/6.6.4/kwayland-integration-6.6.4.tar.xz) = 26572 diff --git a/x11/plasma6-kwayland/distinfo b/x11/plasma6-kwayland/distinfo index f848a185d405..d3c0d51e6555 100644 --- a/x11/plasma6-kwayland/distinfo +++ b/x11/plasma6-kwayland/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1773754247 -SHA256 (KDE/plasma/6.6.3/kwayland-6.6.3.tar.xz) = 55029d00c415b40e077a461541663fbca5c96e6b74e261950f7480ec5abbb555 -SIZE (KDE/plasma/6.6.3/kwayland-6.6.3.tar.xz) = 132844 +TIMESTAMP = 1775652561 +SHA256 (KDE/plasma/6.6.4/kwayland-6.6.4.tar.xz) = 75c4ad6743647b4a9737fddae2eddb7b0857afbef362e6b96465ccfb17c85f87 +SIZE (KDE/plasma/6.6.4/kwayland-6.6.4.tar.xz) = 134048 diff --git a/x11/plasma6-layer-shell-qt/distinfo b/x11/plasma6-layer-shell-qt/distinfo index d95142f704a3..c77fd355b796 100644 --- a/x11/plasma6-layer-shell-qt/distinfo +++ b/x11/plasma6-layer-shell-qt/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1773754248 -SHA256 (KDE/plasma/6.6.3/layer-shell-qt-6.6.3.tar.xz) = 092c02ff70e51a3e2f86d657d3a278a277458b295ada74d08b447a0695ec9b9a -SIZE (KDE/plasma/6.6.3/layer-shell-qt-6.6.3.tar.xz) = 36576 +TIMESTAMP = 1775652562 +SHA256 (KDE/plasma/6.6.4/layer-shell-qt-6.6.4.tar.xz) = 731af7a222bc1a1e87fd993060ed8fa515b4b38cbc294063b700ec87451e013f +SIZE (KDE/plasma/6.6.4/layer-shell-qt-6.6.4.tar.xz) = 36804 diff --git a/x11/plasma6-libkscreen/distinfo b/x11/plasma6-libkscreen/distinfo index ff57b2f40e49..f91bf8866a1c 100644 --- a/x11/plasma6-libkscreen/distinfo +++ b/x11/plasma6-libkscreen/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1773754251 -SHA256 (KDE/plasma/6.6.3/libkscreen-6.6.3.tar.xz) = 408110fc5342a8fe1ff43f026613e0b5ad94e925e85c195a24eac142e74fd179 -SIZE (KDE/plasma/6.6.3/libkscreen-6.6.3.tar.xz) = 119924 +TIMESTAMP = 1775652564 +SHA256 (KDE/plasma/6.6.4/libkscreen-6.6.4.tar.xz) = 18f8cf65fcc788a7188d72a17d6e0f107e044e07623d5c012d063d901d67b59d +SIZE (KDE/plasma/6.6.4/libkscreen-6.6.4.tar.xz) = 120844 diff --git a/x11/plasma6-libplasma/distinfo b/x11/plasma6-libplasma/distinfo index 2bacaebcb300..78cc1739a636 100644 --- a/x11/plasma6-libplasma/distinfo +++ b/x11/plasma6-libplasma/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1773754253 -SHA256 (KDE/plasma/6.6.3/libplasma-6.6.3.tar.xz) = 815ca99f55e68727ffed90b2d0a176f6240a2256454b1089a5a7f266a5a3775c -SIZE (KDE/plasma/6.6.3/libplasma-6.6.3.tar.xz) = 1971256 +TIMESTAMP = 1775652564 +SHA256 (KDE/plasma/6.6.4/libplasma-6.6.4.tar.xz) = cc7dfd90b4caba4b2b4da1eb5d6c7aaa20b72b9770f511cbc433eadcc5b8e483 +SIZE (KDE/plasma/6.6.4/libplasma-6.6.4.tar.xz) = 1970976 diff --git a/x11/plasma6-plasma-activities-stats/distinfo b/x11/plasma6-plasma-activities-stats/distinfo index 5296ea646f67..e6ad959e7ed1 100644 --- a/x11/plasma6-plasma-activities-stats/distinfo +++ b/x11/plasma6-plasma-activities-stats/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1773754257 -SHA256 (KDE/plasma/6.6.3/plasma-activities-stats-6.6.3.tar.xz) = 56667b230dc52893c3f08680e37a403d228a50a6a0b06ad081179224a7f16d16 -SIZE (KDE/plasma/6.6.3/plasma-activities-stats-6.6.3.tar.xz) = 83472 +TIMESTAMP = 1775652568 +SHA256 (KDE/plasma/6.6.4/plasma-activities-stats-6.6.4.tar.xz) = 8b1a6a93afee6876d5050d874927912f32e52c60ff3c67bcded477f4f7c9cd45 +SIZE (KDE/plasma/6.6.4/plasma-activities-stats-6.6.4.tar.xz) = 83824 diff --git a/x11/plasma6-plasma-activities/distinfo b/x11/plasma6-plasma-activities/distinfo index c5f5a2ed1c76..7331a8077b3e 100644 --- a/x11/plasma6-plasma-activities/distinfo +++ b/x11/plasma6-plasma-activities/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1773754255 -SHA256 (KDE/plasma/6.6.3/plasma-activities-6.6.3.tar.xz) = ac15123637ea067ab646cde091d69c84fc24742fd7308e5418bf99298ab9717a -SIZE (KDE/plasma/6.6.3/plasma-activities-6.6.3.tar.xz) = 63004 +TIMESTAMP = 1775652566 +SHA256 (KDE/plasma/6.6.4/plasma-activities-6.6.4.tar.xz) = a1973821797c703177d51e698f8abfd8294796a9396316440b14dca958bb57e5 +SIZE (KDE/plasma/6.6.4/plasma-activities-6.6.4.tar.xz) = 63288 diff --git a/x11/plasma6-plasma-desktop/distinfo b/x11/plasma6-plasma-desktop/distinfo index f73401f644a0..10c7b0664493 100644 --- a/x11/plasma6-plasma-desktop/distinfo +++ b/x11/plasma6-plasma-desktop/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1773754258 -SHA256 (KDE/plasma/6.6.3/plasma-desktop-6.6.3.tar.xz) = c5c026bb5a4a29aaf79a9bc07e77873c851f625ef5ba94ce0b717da6f18b1a18 -SIZE (KDE/plasma/6.6.3/plasma-desktop-6.6.3.tar.xz) = 17076892 +TIMESTAMP = 1775652569 +SHA256 (KDE/plasma/6.6.4/plasma-desktop-6.6.4.tar.xz) = e2db899274c52e895f09dcecd5c502374cf24de955b31aeb8c270f171ef81138 +SIZE (KDE/plasma/6.6.4/plasma-desktop-6.6.4.tar.xz) = 17082956 diff --git a/x11/plasma6-plasma-integration/distinfo b/x11/plasma6-plasma-integration/distinfo index 6fb0c31d62b9..be7e86da77e8 100644 --- a/x11/plasma6-plasma-integration/distinfo +++ b/x11/plasma6-plasma-integration/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1773754259 -SHA256 (KDE/plasma/6.6.3/plasma-integration-6.6.3.tar.xz) = 302c5bca988c8db4763669b2dbbba7576d94733a3c044170213d65cf3b1c3261 -SIZE (KDE/plasma/6.6.3/plasma-integration-6.6.3.tar.xz) = 99636 +TIMESTAMP = 1775652570 +SHA256 (KDE/plasma/6.6.4/plasma-integration-6.6.4.tar.xz) = a31b666d2aa3a7a4f239c141e16ca66617fb94388107ccaee8e8ff1f0205a16c +SIZE (KDE/plasma/6.6.4/plasma-integration-6.6.4.tar.xz) = 100264 diff --git a/x11/plasma6-plasma-workspace/distinfo b/x11/plasma6-plasma-workspace/distinfo index de298a966b6f..ae8cc9910e45 100644 --- a/x11/plasma6-plasma-workspace/distinfo +++ b/x11/plasma6-plasma-workspace/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1773754267 -SHA256 (KDE/plasma/6.6.3/plasma-workspace-6.6.3.tar.xz) = 18001465a01ee29292a3c37e62205106ee9f79f18aaa42ae9654d160abf11790 -SIZE (KDE/plasma/6.6.3/plasma-workspace-6.6.3.tar.xz) = 19345408 +TIMESTAMP = 1775652571 +SHA256 (KDE/plasma/6.6.4/plasma-workspace-6.6.4.tar.xz) = c68a70f33b3f638eccccd51f842491cc45abc6f143f5cae4a14b180b94a83ea2 +SIZE (KDE/plasma/6.6.4/plasma-workspace-6.6.4.tar.xz) = 19342288