Index: head/Mk/Uses/kde.mk =================================================================== --- head/Mk/Uses/kde.mk (revision 492810) +++ head/Mk/Uses/kde.mk (revision 492811) @@ -1,867 +1,867 @@ # $FreeBSD$ # # Provides support for KDE and KF5-based ports. # # Feature: kde # Valid ARGS: 5 # # 5: Depend on KDE Frameworks 5 components and variables. # # Variables that can be set by a port: # # USE_KDE List of KF5/Plasma5 components (other ports) that this # port depends on. # * foo_build Add a build-time dependency (BUILD_DEPENDS) # * foo_run Add a run-time dependency (RUN_DEPENDS) # * foo (default) Add both dependencies on component , or # a LIB_DEPENDS if applicable. # # To simplify the ports, also: # CATEGORIES If the port is part of one of the KDE Software distribution, # it can add, in addition to 'kde' one of the following: # kde-application: part of applications release # kde-frameworks: part of frameworks release # kde-plasma: part of plasma release # this will then set default values for MASTER_SITES and DIST_SUBDIR # as well as CPE_VENDOR and LICENSE. # # MAINTAINER: kde@FreeBSD.org .if !defined(_INCLUDE_USES_KDE_MK) _INCLUDE_USES_KDE_MK= yes _KDE_SUPPORTED= 5 . if empty(kde_ARGS) IGNORE= kde needs a version (${_KDE_SUPPORTED}) . endif . for ver in ${_KDE_SUPPORTED:O:u} . if ${kde_ARGS:M${ver}} . if !defined(_KDE_VERSION) _KDE_VERSION= ${ver} . else IGNORE?= cannot be installed: different KDE versions specified via kde:[${_KDE_SUPPORTED:S/ //g}] #' . endif . endif . endfor . if empty(_KDE_VERSION) IGNORE?= kde:[${_KDE_SUPPORTED:S/ //g}] needs an argument #' . else _KDE_RELNAME= KDE${_KDE_VERSION} # === VERSIONS OF THE DIFFERENT COMPONENTS ===================================== # Current KDE desktop. -KDE_PLASMA_VERSION?= 5.14.5 +KDE_PLASMA_VERSION?= 5.15.0 KDE_PLASMA_BRANCH?= stable # Current KDE frameworks. KDE_FRAMEWORKS_VERSION?= 5.55.0 KDE_FRAMEWORKS_BRANCH?= stable # Current KDE applications. KDE_APPLICATIONS_VERSION?= 18.12.2 KDE_APPLICATIONS_SHLIB_VER?= 5.10.2 KDE_APPLICATIONS_BRANCH?= stable # Upstream moves old software to Attic/. Specify the newest applications release there. # Only the major version is used for the comparison. _KDE_APPLICATIONS_ATTIC_VERSION= 17.08.3 # Extended KDE universe applications. CALLIGRA_VERSION?= 2.9.11 CALLIGRA_BRANCH?= stable # ============================================================================== # === INSTALLATION PREFIXES AND HEADER LOCATION ================================ # Define unversioned prefix variable. KDE_PREFIX= ${LOCALBASE} # ============================================================================== # === CATEGORIES HANDLING -- SETTING DEFAULT VALUES ============================ # Doing MASTER_SITES magic based on the category of the port _KDE_CATEGORIES_SUPPORTED= kde-applications kde-frameworks kde-plasma . for cat in ${_KDE_CATEGORIES_SUPPORTED} . if ${CATEGORIES:M${cat}} . if !defined(_KDE_CATEGORY) _KDE_CATEGORY= ${cat} . else IGNORE?= cannot be installed: multiple kde-<...> categories specified via CATEGORIES=${CATEGORIES} #' . endif . endif . endfor . if defined(_KDE_CATEGORY) # KDE is normally licensed under the LGPL 2.0. LICENSE?= LGPL20 # Set CPE Vendor Information # As _KDE_CATEGORY is set we can assume it is port release by KDE and the # vendor is therefore kde. CPE_VENDOR?= kde . if ${_KDE_CATEGORY:Mkde-applications} PORTVERSION?= ${KDE_APPLICATIONS_VERSION} # Decide where the file lies on KDE's servers: Check whether the file lies in Attic . if ${KDE_APPLICATIONS_VERSION:R:R} <= ${_KDE_APPLICATIONS_ATTIC_VERSION:R:R} MASTER_SITES?= KDE/Attic/applications/${KDE_APPLICATIONS_VERSION}/src . else MASTER_SITES?= KDE/${KDE_APPLICATIONS_BRANCH}/applications/${KDE_APPLICATIONS_VERSION}/src # Let bsd.port.mk create the plist-entries for the documentation. # KDE Applications ports install their documentation to # ${PREFIX}/share/doc. DOCSDIR= ${PREFIX}/share/doc PORTDOCS?= HTML/* # Further pass along a SHLIB_VER PLIST_SUB PLIST_SUB+= KDE_APPLICATIONS_SHLIB_VER=${KDE_APPLICATIONS_SHLIB_VER} \ KDE_APPLICATIONS_VERSION_SHORT="${KDE_APPLICATIONS_VERSION:R:R}" . endif DIST_SUBDIR?= KDE/applications/${KDE_APPLICATIONS_VERSION} . elif ${_KDE_CATEGORY:Mkde-plasma} PORTVERSION?= ${KDE_PLASMA_VERSION} PKGNAMEPREFIX?= plasma5- MASTER_SITES?= KDE/${KDE_PLASMA_BRANCH}/plasma/${KDE_PLASMA_VERSION} DIST_SUBDIR?= KDE/plasma/${KDE_PLASMA_VERSION} . elif ${_KDE_CATEGORY:Mkde-frameworks} PORTVERSION?= ${KDE_FRAMEWORKS_VERSION} PKGNAMEPREFIX?= kf5- # This is a slight duplication of _USE_FRAMEWORKS_PORTING -- it maybe would be # better to rely on ${_USE_FRAMEWORKS_PORTING:S/^/k/g} _PORTINGAIDS= kjs kjsembed kdelibs4support khtml kmediaplayer kross . if ${_PORTINGAIDS:M*${PORTNAME}*} MASTER_SITES?= KDE/${KDE_FRAMEWORKS_BRANCH}/frameworks/${KDE_FRAMEWORKS_VERSION:R}/portingAids . else MASTER_SITES?= KDE/${KDE_FRAMEWORKS_BRANCH}/frameworks/${KDE_FRAMEWORKS_VERSION:R} . endif DIST_SUBDIR?= KDE/frameworks/${KDE_FRAMEWORKS_VERSION} . else IGNORE?= unknown CATEGORY value '${_KDE_CATEGORY}' #' . endif . endif #defined(_KDE_CATEGORY) # ============================================================================== # ==== SETUP CMAKE ENVIRONMENT ================================================= # Help cmake to find files when testing ports with non-default PREFIX. CMAKE_ARGS+= -DCMAKE_PREFIX_PATH="${LOCALBASE}" . if ${_KDE_VERSION:M*5*} # We set KDE_INSTALL_USE_QT_SYS_PATHS to install mkspecs files, plugins and # imports to the Qt 5 install directory. CMAKE_ARGS+= -DBUILD_TESTING:BOOL=OFF \ -DCMAKE_MODULE_PATH="${LOCALBASE};${KDE_PREFIX}" \ -DCMAKE_INSTALL_PREFIX="${KDE_PREFIX}" \ -DKDE_INSTALL_USE_QT_SYS_PATHS:BOOL=TRUE . endif # Set man-page installation prefix. CMAKE_ARGS+= -DKDE_INSTALL_MANDIR:PATH="${KDE_PREFIX}/man" \ -DMAN_INSTALL_DIR:PATH="${KDE_PREFIX}/man" # ============================================================================== # === SET-UP PLIST_SUB ========================================================= # Prefix and include directory. PLIST_SUB+= KDE_PREFIX="${KDE_PREFIX}" # KDE Applications version. PLIST_SUB+= KDE_APPLICATIONS_VERSION="${KDE_APPLICATIONS_VERSION}" . if ${_KDE_VERSION:M*5*} PLIST_SUB+= KDE_PLASMA_VERSION="${KDE_PLASMA_VERSION}" \ KDE_FRAMEWORKS_VERSION="${KDE_FRAMEWORKS_VERSION}" . endif # ============================================================================== # === HANDLE PYTHON ============================================================ # TODO: Keep in sync with cmake/modules/PythonMacros.cmake _PYTHON_SHORT_VER= ${PYTHON_VERSION:S/^python//:S/.//} . if ${_PYTHON_SHORT_VER} > 31 PLIST_SUB+= PYCACHE="__pycache__/" \ PYC_SUFFIX=cpython-${_PYTHON_SHORT_VER}.pyc \ PYO_SUFFIX=cpython-${_PYTHON_SHORT_VER}.pyo . else PLIST_SUB+= PYCACHE="" \ PYC_SUFFIX=pyc \ PYO_SUFFIX=pyo . endif # ============================================================================== _USE_KDE_BOTH= akonadi attica libkcddb libkcompactdisc libkdcraw libkdegames \ libkeduvocdocument libkexiv2 libkipi libksane okular \ baloo baloo-widgets kate marble # List of components of the KDE Frameworks distribution. # The *_TIER variables are internal, primarily for checking # that our list of frameworks matches the structure offered upstream. _USE_FRAMEWORKS_TIER1= apidox archive attica5 breeze-icons codecs config \ coreaddons dbusaddons dnssd holidays i18n idletime itemmodels \ itemviews kirigami2 oxygen-icons5 plotting prison \ qqc2-desktop-style solid sonnet syntaxhighlighting \ threadweaver wayland widgetsaddons windowsystem # NOT LISTED TIER1: modemmanagerqt networkmanagerqt (not applicable) _USE_FRAMEWORKS_TIER2= auth completion crash doctools \ filemetadata kimageformats jobwidgets notifications \ package pty syndication unitconversion _USE_FRAMEWORKS_TIER3= activities activities-stats baloo5 bookmarks configwidgets \ designerplugin emoticons globalaccel guiaddons \ iconthemes init kcmutils kdeclarative \ kded kdesu kdewebkit kio newstuff notifyconfig parts \ people plasma-framework purpose runner service texteditor \ textwidgets wallet xmlgui xmlrpcclient _USE_FRAMEWORKS_TIER4= frameworkintegration # Porting Aids frameworks provide code and utilities to ease the transition from # kdelibs 4 to KDE Frameworks 5. Code should aim to port away from this framework, # new projects should avoid using these libraries. _USE_FRAMEWORKS_PORTING=js jsembed kdelibs4support khtml mediaplayer kross _USE_FRAMEWORKS_ALL= ecm \ ${_USE_FRAMEWORKS_TIER1} \ ${_USE_FRAMEWORKS_TIER2} \ ${_USE_FRAMEWORKS_TIER3} \ ${_USE_FRAMEWORKS_TIER4} \ ${_USE_FRAMEWORKS_PORTING} \ ${_USE_FRAMEWORKS_EXTRA} # List of components of the KDE Plasma distribution. _USE_PLASMA_ALL= activitymanagerd breeze breeze-gtk \ decoration discover drkonqi hotkeys \ infocenter kde-cli-tools kde-gtk-config \ kdeplasma-addons kgamma5 kmenuedit kscreen \ kscreenlocker ksshaskpass ksysguard kwallet-pam \ kwayland-integration kwin kwrited libkscreen \ libksysguard milou oxygen plasma-browser-integration \ plasma-desktop plasma-integration plasma-pa \ plasma-sdk plasma-workspace plasma-workspace-wallpapers \ polkit-kde-agent-1 powerdevil systemsettings \ user-manager # List of components of the KDE PIM distribution (part of applications). _USE_KDEPIM5_ALL= akonadicontacts akonadiimportwizard akonadimime akonadinotes \ akonadicalendar akonadisearch alarmcalendar \ blog calendarcore calendarsupport calendarutils \ contacts eventviews gapi grantleetheme \ gravatar identitymanagement imap \ incidenceeditor kdepim-addons kdepim-apps-libs \ kdepim-runtime5 kitinerary kontactinterface kpimdav kpkpass \ ksmtp ldap libkdepim libkleo libksieve mailcommon \ mailimporter mailtransport mbox messagelib \ mime pimcommon pimtextedit tnef \ kalarm kontact kmail account-wizard mbox-importer \ akonadiconsole akregator grantlee-editor kaddressbook \ kalarm kmail-account-wizard kmail knotes kontact \ korganizer mbox-importer pim-data-exporter _USE_KDE5_ALL= ${_USE_FRAMEWORKS_ALL} \ ${_USE_PLASMA_ALL} \ ${_USE_KDEPIM5_ALL} \ ${_USE_KDE_BOTH} # ====================== frameworks components ================================= activities_PORT= x11/kf5-kactivities activities_LIB= libKF5Activities.so activities-stats_PORT= x11/kf5-kactivities-stats activities-stats_LIB= libKF5ActivitiesStats.so apidox_PORT= devel/kf5-kapidox apidox_PATH= ${KDE_PREFIX}/bin/kapidox_generate apidox_TYPE= run archive_PORT= archivers/kf5-karchive archive_LIB= libKF5Archive.so attica5_PORT= x11-toolkits/kf5-attica attica5_LIB= libKF5Attica.so auth_PORT= devel/kf5-kauth auth_LIB= libKF5Auth.so baloo5_PORT= sysutils/kf5-baloo baloo5_LIB= libKF5Baloo.so bookmarks_PORT= devel/kf5-kbookmarks bookmarks_LIB= libKF5Bookmarks.so breeze-icons_PORT= x11-themes/kf5-breeze-icons breeze-icons_PATH= ${KDE_PREFIX}/share/icons/breeze/index.theme breeze-icons_TYPE= run codecs_PORT= textproc/kf5-kcodecs codecs_LIB= libKF5Codecs.so completion_PORT= x11-toolkits/kf5-kcompletion completion_LIB= libKF5Completion.so config_PORT= devel/kf5-kconfig config_LIB= libKF5ConfigCore.so configwidgets_PORT= x11-toolkits/kf5-kconfigwidgets configwidgets_LIB= libKF5ConfigWidgets.so coreaddons_PORT= devel/kf5-kcoreaddons coreaddons_LIB= libKF5CoreAddons.so crash_PORT= devel/kf5-kcrash crash_LIB= libKF5Crash.so dbusaddons_PORT= devel/kf5-kdbusaddons dbusaddons_LIB= libKF5DBusAddons.so designerplugin_PORT= x11-toolkits/kf5-kdesignerplugin designerplugin_PATH= ${QT_PLUGINDIR}/designer/kf5widgets.so designerplugin_TYPE= run dnssd_PORT= dns/kf5-kdnssd dnssd_LIB= libKF5DNSSD.so doctools_PORT= devel/kf5-kdoctools doctools_PATH= ${KDE_PREFIX}/bin/meinproc5 ecm_PORT= devel/kf5-extra-cmake-modules ecm_PATH= ${LOCALBASE}/share/ECM/cmake/ECMConfig.cmake emoticons_PORT= x11-themes/kf5-kemoticons emoticons_LIB= libKF5Emoticons.so filemetadata_PORT= devel/kf5-kfilemetadata filemetadata_LIB= libKF5FileMetaData.so frameworkintegration_PORT= x11/kf5-frameworkintegration frameworkintegration_LIB= libKF5Style.so globalaccel_PORT= x11/kf5-kglobalaccel globalaccel_LIB= libKF5GlobalAccel.so guiaddons_PORT= x11-toolkits/kf5-kguiaddons guiaddons_LIB= libKF5GuiAddons.so holidays_PORT= net/kf5-kholidays holidays_LIB= libKF5Holidays.so i18n_PORT= devel/kf5-ki18n i18n_LIB= libKF5I18n.so iconthemes_PORT= x11-themes/kf5-kiconthemes iconthemes_LIB= libKF5IconThemes.so idletime_PORT= devel/kf5-kidletime idletime_LIB= libKF5IdleTime.so init_PORT= x11/kf5-kinit init_PATH= ${KDE_PREFIX}/bin/kdeinit5 itemmodels_PORT= devel/kf5-kitemmodels itemmodels_LIB= libKF5ItemModels.so itemviews_PORT= x11-toolkits/kf5-kitemviews itemviews_LIB= libKF5ItemViews.so jobwidgets_PORT= x11-toolkits/kf5-kjobwidgets jobwidgets_LIB= libKF5JobWidgets.so js_PORT= www/kf5-kjs js_LIB= libKF5JS.so jsembed_PORT= www/kf5-kjsembed jsembed_LIB= libKF5JsEmbed.so kcmutils_PORT= devel/kf5-kcmutils kcmutils_LIB= libKF5KCMUtils.so kdeclarative_PORT= devel/kf5-kdeclarative kdeclarative_LIB= libKF5Declarative.so kded_PORT= x11/kf5-kded kded_LIB= libkdeinit5_kded5.so kdelibs4support_PORT= x11/kf5-kdelibs4support kdelibs4support_LIB= libKF5KDELibs4Support.so kdesu_PORT= security/kf5-kdesu kdesu_LIB= libKF5Su.so kdewebkit_PORT= www/kf5-kdewebkit kdewebkit_LIB= libKF5WebKit.so khtml_PORT= www/kf5-khtml khtml_LIB= libKF5KHtml.so kimageformats_PORT= graphics/kf5-kimageformats kimageformats_PATH= ${QT_PLUGINDIR}/imageformats/kimg_xcf.so kimageformats_TYPE= run kio_PORT= devel/kf5-kio kio_LIB= libKF5KIOCore.so kirigami2_PORT= x11-toolkits/kf5-kirigami2 kirigami2_PATH= ${QT_QMLDIR}/org/kde/kirigami.2/libkirigamiplugin.so kross_PORT= lang/kf5-kross kross_LIB= libKF5KrossCore.so mediaplayer_PORT= multimedia/kf5-kmediaplayer mediaplayer_LIB= libKF5MediaPlayer.so.5 newstuff_PORT= devel/kf5-knewstuff newstuff_LIB= libKF5NewStuff.so notifications_PORT= devel/kf5-knotifications notifications_LIB= libKF5Notifications.so notifyconfig_PORT= devel/kf5-knotifyconfig notifyconfig_LIB= libKF5NotifyConfig.so # This is a KF5 port used by KDE4 as well, but it's architecture-independent # and only contains icons. oxygen-icons5_PORT= x11-themes/kf5-oxygen-icons5 oxygen-icons5_PATH= ${KDE_PREFIX}/share/icons/oxygen/index.theme oxygen-icons5_TYPE= run package_PORT= devel/kf5-kpackage package_LIB= libKF5Package.so parts_PORT= devel/kf5-kparts parts_LIB= libKF5Parts.so people_PORT= devel/kf5-kpeople people_LIB= libKF5People.so plasma-framework_PORT= x11/kf5-plasma-framework plasma-framework_LIB= libKF5Plasma.so plotting_PORT= graphics/kf5-kplotting plotting_LIB= libKF5Plotting.so prison_PORT= graphics/kf5-prison prison_LIB= libKF5Prison.so pty_PORT= devel/kf5-kpty pty_LIB= libKF5Pty.so purpose_PORT= misc/kf5-purpose purpose_LIB= libKF5Purpose.so qqc2-desktop-style_PORT= x11-themes/kf5-qqc2-desktop-style qqc2-desktop-style_PATH= ${QT_PLUGINDIR}/kf5/kirigami/org.kde.desktop.so runner_PORT= x11/kf5-krunner runner_LIB= libKF5Runner.so service_PORT= devel/kf5-kservice service_PATH= ${KDE_PREFIX}/bin/kbuildsycoca5 solid_PORT= devel/kf5-solid solid_LIB= libKF5Solid.so sonnet_PORT= textproc/kf5-sonnet sonnet_LIB= libKF5SonnetCore.so syndication_PORT= net/kf5-syndication syndication_LIB= libKF5Syndication.so syntaxhighlighting_PORT= textproc/kf5-syntax-highlighting syntaxhighlighting_LIB= libKF5SyntaxHighlighting.so texteditor_PORT= devel/kf5-ktexteditor texteditor_LIB= libKF5TextEditor.so textwidgets_PORT= x11-toolkits/kf5-ktextwidgets textwidgets_LIB= libKF5TextWidgets.so threadweaver_PORT= devel/kf5-threadweaver threadweaver_LIB= libKF5ThreadWeaver.so unitconversion_PORT= devel/kf5-kunitconversion unitconversion_LIB= libKF5UnitConversion.so wallet_PORT= sysutils/kf5-kwallet wallet_LIB= libKF5Wallet.so wayland_PORT= x11/kf5-kwayland wayland_LIB= libKF5WaylandClient.so widgetsaddons_PORT= x11-toolkits/kf5-kwidgetsaddons widgetsaddons_LIB= libKF5WidgetsAddons.so windowsystem_PORT= x11/kf5-kwindowsystem windowsystem_LIB= libKF5WindowSystem.so xmlgui_PORT= x11-toolkits/kf5-kxmlgui xmlgui_LIB= libKF5XmlGui.so xmlrpcclient_PORT= net/kf5-kxmlrpcclient xmlrpcclient_LIB= libKF5XmlRpcClient.so # ====================== end of frameworks components ========================== # ====================== plasma components ===================================== activitymanagerd_PORT= x11/plasma5-kactivitymanagerd activitymanagerd_LIB= libkactivitymanagerd_plugin.so breeze_PORT= x11-themes/plasma5-breeze breeze_PATH= ${KDE_PREFIX}/share/QtCurve/Breeze.qtcurve breeze-gtk_PORT= x11-themes/plasma5-breeze-gtk breeze-gtk_PATH= ${KDE_PREFIX}/lib/kconf_update_bin/gtkbreeze5.5 decoration_PORT= x11-wm/plasma5-kdecoration decoration_LIB= libkdecorations2.so discover_PORT= sysutils/plasma5-discover discover_PATH= ${KDE_PREFIX}/bin/plasma-discover drkonqi_PORT= sysutils/plasma5-drkonqi drkonqi_PATH= ${KDE_PREFIX}/lib/libexec/drkonqi hotkeys_PORT= devel/plasma5-khotkeys hotkeys_LIB= libkhotkeysprivate.so.5 infocenter_PORT= sysutils/plasma5-kinfocenter infocenter_PATH= ${KDE_PREFIX}/bin/kinfocenter kde-cli-tools_PORT= sysutils/plasma5-kde-cli-tools kde-cli-tools_PATH= ${KDE_PREFIX}/bin/kcmshell5 kde-gtk-config_PORT= x11-themes/plasma5-kde-gtk-config kde-gtk-config_PATH= ${QT_PLUGINDIR}/kcm_kdegtkconfig.so kdeplasma-addons_PORT= x11-toolkits/plasma5-kdeplasma-addons kdeplasma-addons_PATH= ${QT_PLUGINDIR}/kcm_krunner_dictionary.so kgamma5_PORT= x11/plasma5-kgamma5 kgamma5_PATH= ${QT_PLUGINDIR}/kcm_kgamma.so kmenuedit_PORT= sysutils/plasma5-kmenuedit kmenuedit_LIB= libkdeinit5_kmenuedit.so kscreen_PORT= x11/plasma5-kscreen kscreen_PATH= ${KDE_PREFIX}/bin/kscreen-console kscreenlocker_PORT= security/plasma5-kscreenlocker kscreenlocker_LIB= libKScreenLocker.so ksshaskpass_PORT= security/plasma5-ksshaskpass ksshaskpass_PATH= ${KDE_PREFIX}/bin/ksshaskpass ksysguard_PORT= sysutils/plasma5-ksysguard ksysguard_PATH= ${KDE_PREFIX}/bin/ksysguard kwallet-pam_PORT= security/plasma5-kwallet-pam kwallet-pam_PATH= ${KDE_PREFIX}/lib/security/pam_kwallet5.so kwayland-integration_PORT= x11/plasma5-kwayland-integration kwayland-integration_PATH= ${QT_PLUGINDIR}/kf5/org.kde.kidletime.platforms/KF5IdleTimeKWaylandPlugin.so kwin_PORT= x11-wm/plasma5-kwin kwin_PATH= ${KDE_PREFIX}/bin/kwin_x11 kwrited_PORT= devel/plasma5-kwrited kwrited_PATH= ${QT_PLUGINDIR}/kf5/kded/kwrited.so libkscreen_PORT= x11/plasma5-libkscreen libkscreen_LIB= libKF5Screen.so libksysguard_PORT= sysutils/plasma5-libksysguard libksysguard_LIB= libksgrd.so milou_PORT= deskutils/plasma5-milou milou_LIB= libmilou.so.5 oxygen_PORT= x11-themes/plasma5-oxygen oxygen_LIB= liboxygenstyle5.so plasma-browser-integration_PORT= www/plasma5-plasma-browser-integration plasma-browser-integration_PATH= ${KDE_PREFIX}/bin/plasma-browser-integration-host plasma-desktop_PORT= x11/plasma5-plasma-desktop plasma-desktop_PATH= ${KDE_PREFIX}/bin/krdb plasma-integration_PORT= x11/plasma5-plasma-integration plasma-integration_PATH= ${QT_PLUGINDIR}/platformthemes/KDEPlasmaPlatformTheme.so plasma-pa_PORT= audio/plasma5-plasma-pa plasma-pa_PATH= ${QT_PLUGINDIR}/kcms/kcm_pulseaudio.so plasma-sdk_PORT= devel/plasma5-plasma-sdk plasma-sdk_PATH= ${KDE_PREFIX}/bin/plasmoidviewer plasma-workspace_PORT= x11/plasma5-plasma-workspace plasma-workspace_LIB= libkdeinit5_kcminit.so plasma-workspace-wallpapers_PORT= x11-themes/plasma5-plasma-workspace-wallpapers plasma-workspace-wallpapers_PATH= ${KDE_PREFIX}/share/wallpapers/Autumn/contents/images/1280x1024.jpg polkit-kde-agent-1_PORT= sysutils/plasma5-polkit-kde-agent-1 polkit-kde-agent-1_PATH= ${KDE_PREFIX}/lib/libexec/polkit-kde-authentication-agent-1 powerdevil_PORT= sysutils/plasma5-powerdevil powerdevil_LIB= libpowerdevilcore.so systemsettings_PORT= sysutils/plasma5-systemsettings systemsettings_PATH= ${KDE_PREFIX}/bin/systemsettings5 user-manager_PORT= sysutils/plasma5-user-manager user-manager_PATH= ${QT_PLUGINDIR}/user_manager.so # ====================== end of plasma components ============================== # ====================== pim5 components ======================================= akonadicontacts_PORT= net/akonadi-contacts akonadicontacts_LIB= libKF5AkonadiContact.so akonadiimportwizard_PORT= deskutils/akonadi-import-wizard akonadiimportwizard_LIB= libKPimImportWizard.so akonadimime_PORT= net/akonadi-mime akonadimime_LIB= libKF5AkonadiMime.so akonadinotes_PORT= net/akonadi-notes akonadinotes_LIB= libKF5AkonadiNotes.so akonadicalendar_PORT= net/akonadi-calendar akonadicalendar_LIB= libKF5AkonadiCalendar.so akonadisearch_PORT= net/akonadi-search akonadisearch_LIB= libKF5AkonadiSearchCore.so alarmcalendar_PORT= net/kalarmcal alarmcalendar_LIB= libKF5AlarmCalendar.so blog_PORT= net/kblog blog_LIB= libKF5Blog.so calendarsupport_PORT= net/calendarsupport calendarsupport_LIB= libKF5CalendarSupport.so calendarcore_PORT= net/kcalcore calendarcore_LIB= libKF5CalendarCore.so calendarutils_PORT= net/kcalutils calendarutils_LIB= libKF5CalendarUtils.so contacts_PORT= net/kcontacts contacts_LIB= libKF5Contacts.so eventviews_PORT= net/eventviews eventviews_LIB= libKF5EventViews.so gapi_PORT= net/libkgapi gapi_LIB= libKPimGAPICore.so grantleetheme_PORT= deskutils/grantleetheme grantleetheme_LIB= libKF5GrantleeTheme.so gravatar_PORT= net/libgravatar gravatar_LIB= libKF5Gravatar.so identitymanagement_PORT= net/kidentitymanagement identitymanagement_LIB= libKF5IdentityManagement.so imap_PORT= net/kimap imap_LIB= libKF5IMAP.so incidenceeditor_PORT= net/incidenceeditor incidenceeditor_LIB= libKF5IncidenceEditor.so kdepim-addons_PORT= deskutils/kdepim-addons kdepim-addons_PATH= ${KDE_PREFIX}/lib/contacteditor/editorpageplugins/cryptopageplugin.so kdepim-apps-libs_PORT= deskutils/kdepim-apps-libs kdepim-apps-libs_LIB= libKF5SendLater.so kdepim-runtime5_PORT= deskutils/kdepim-runtime kdepim-runtime5_PATH= ${KDE_PREFIX}/bin/gidmigrator kitinerary_PORT= net/kitinerary kitinerary_LIB= libKPimItinerary.so kontactinterface_PORT= net/kontactinterface kontactinterface_LIB= libKF5KontactInterface.so kpimdav_PORT= net/kdav kpimdav_LIB= libKPimKDAV.so kpkpass_PORT= security/kpkpass kpkpass_LIB= libKPimPkPass.so ksmtp_PORT= net/ksmtp ksmtp_LIB= libKPimSMTP.so ldap_PORT= net/kldap ldap_LIB= libKF5Ldap.so libkdepim_PORT= deskutils/libkdepim libkdepim_LIB= libKF5Libkdepim.so libkleo_PORT= security/libkleo libkleo_LIB= libKF5Libkleo.so libksieve_PORT= net/libksieve libksieve_LIB= libKF5KSieve.so mailcommon_PORT= net/mailcommon mailcommon_LIB= libKF5MailCommon.so mailimporter_PORT= net/mailimporter mailimporter_LIB= libKF5MailImporter.so mailtransport_PORT= net/kmailtransport mailtransport_LIB= libKF5MailTransport.so mbox_PORT= net/kmbox mbox_LIB= libKF5Mbox.so messagelib_PORT= net/messagelib messagelib_LIB= libKF5MessageList.so mime_PORT= net/kmime mime_LIB= libKF5Mime.so pimcommon_PORT= net/pimcommon pimcommon_LIB= libKF5PimCommon.so pimtextedit_PORT= net/kpimtextedit pimtextedit_LIB= libKF5PimTextEdit.so tnef_PORT= net/ktnef tnef_LIB= libKF5Tnef.so # PIM Applications akonadiconsole_PORT= deskutils/akonadiconsole akonadiconsole_PATH= ${KDE_PREFIX}/bin/akonadiconsole akregator_PORT= deskutils/akregator akregator_PATH= ${KDE_PREFIX}/bin/akregator grantlee-editor_PORT= deskutils/grantlee-editor grantlee-editor_PATH= ${KDE_PREFIX}/bin/contactthemeeditor kaddressbook_PORT= deskutils/kaddressbook kaddressbook_PATH= ${KDE_PREFIX}/bin/kaddressbook kalarm_PORT= deskutils/kalarm kalarm_PATH= ${KDE_PREFIX}/bin/kalarm kmail_PORT= deskutils/kmail kmail_PATH= ${KDE_PREFIX}/bin/kmail kmail-account-wizard_PORT= deskutils/kmail-account-wizard kmail-account-wizard_PATH= ${KDE_PREFIX}/bin/accountwizard knotes_PORT= deskutils/knotes knotex_PATH= ${KDE_PREFIX}/bin/knotes kontact_PORT= deskutils/kontact kontact_PATH= ${KDE_PREFIX}/bin/kontact korganizer_PORT= deskutils/korganizer korganizer_PATH= ${KDE_PREFIX}/bin/korganizer mbox-importer_PORT= deskutils/mbox-importer mbox-importer_PATH= ${KDE_PREFIX}/bin/mboximporter pim-data-exporter_PORT= deskutils/pim-data-exporter pim-data-exporter_PATH= ${KDE_PREFIX}/bin/pimsettingexporter # ====================== end of pim5 components ================================ # ====================== multiversion component ================================ akonadi5_PORT= databases/akonadi akonadi5_LIB= libKF5AkonadiPrivate.so baloo-widgets5_PORT= sysutils/baloo-widgets baloo-widgets5_LIB= libKF5BalooWidgets.so kate5_PORT= editors/kate kate5_PATH= ${QT_PLUGINDIR}/ktexteditor/katebacktracebrowserplugin.so libkcddb5_PORT= audio/libkcddb libkcddb5_LIB= libKF5Cddb.so libkcompactdisc5_PORT= audio/libkcompactdisc-kde5 libkcompactdisc5_LIB= libKF5CompactDisc.so libkdcraw5_PORT= graphics/libkdcraw libkdcraw5_LIB= libKF5KDcraw.so libkdegames5_PORT= games/libkdegames libkdegames5_LIB= libKF5KDEGames.so libkeduvocdocument5_PORT= misc/libkeduvocdocument libkeduvocdocument5_LIB= libKEduVocDocument.so libkexiv25_PORT= graphics/libkexiv2 libkexiv25_LIB= libKF5KExiv2.so libkipi5_PORT= graphics/libkipi libkipi5_LIB= libKF5Kipi.so libksane5_PORT= graphics/libksane libksane5_LIB= libKF5Sane.so marble5_PORT= astro/marble marble5_LIB= libmarblewidget-qt5.so okular5_PORT= graphics/okular okular5_LIB= libOkular5Core.so # ====================== end of multiversion components ======================== # ====================== select the proper multiversion component ============== . for comp in ${_USE_KDE_BOTH} ${comp}_PORT= ${${comp}${_KDE_VERSION}_PORT} . if defined(${comp}${_KDE_VERSION}_LIB) ${comp}_LIB= ${${comp}${_KDE_VERSION}_LIB} . else . if defined(${comp}${_KDE_VERSION}_PATH}) ${comp}_PATH= ${${comp}${_KDE_VERSION}_LIB} . endif # If neither is defined, this gets caught below when checking components . endif . endfor #=============================================================================== # end of component list ######################################################## _USE_KDE_ALL= ${_USE_${_KDE_RELNAME}_ALL} # Iterate through components deprived of suffix. . for component in ${USE_KDE:O:u:C/_.+//} # Check that the component is valid. . if ${_USE_KDE_ALL:M${component}} != "" # Skip meta-components (currently none). . if defined(${component}_PORT) && (defined(${component}_PATH) || defined(${component}_LIB)) # Check if a dependency type is explicitly requested. . if ${USE_KDE:M${component}_*} != "" && ${USE_KDE:M${component}} == "" ${component}_TYPE= # empty . if ${USE_KDE:M${component}_build} != "" ${component}_TYPE+= build . endif . if ${USE_KDE:M${component}_run} != "" ${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(${component}_TYPE) ${component}_TYPE= build run . endif # Set real dependencies. . if defined(${component}_LIB) && ${${component}_TYPE:Mbuild} && ${${component}_TYPE:Mrun} LIB_DEPENDS+= ${${component}_LIB}:${${component}_PORT} . else ${component}_PATH?= ${KDE_PREFIX}/lib/${${component}_LIB} ${component}_DEPENDS= ${${component}_PATH}:${${component}_PORT} . if ${${component}_TYPE:Mbuild} != "" BUILD_DEPENDS+= ${${component}_DEPENDS} . endif . if ${${component}_TYPE:Mrun} != "" RUN_DEPENDS+= ${${component}_DEPENDS} . endif . endif # ${${component}_LIB} && ${${component}_TYPE:Mbuild} && ${${component}_TYPE:Mrun} . endif # defined(${component}_PORT) && defined(${component}_PATH) . else # ! ${_USE_KDE_ALL:M${component}} != "" IGNORE= cannot be installed: unknown USE_KDE component '${component}' . endif # ${_USE_KDE_ALL:M${component}} != "" . endfor . endif .endif Index: head/audio/plasma5-plasma-pa/Makefile =================================================================== --- head/audio/plasma5-plasma-pa/Makefile (revision 492810) +++ head/audio/plasma5-plasma-pa/Makefile (revision 492811) @@ -1,24 +1,23 @@ # $FreeBSD$ PORTNAME= plasma-pa DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= audio kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 Plasma pulse audio mixer LIB_DEPENDS= libcanberra.so:audio/libcanberra \ libpulse.so:audio/pulseaudio USES= cmake compiler:c++11-lib cpe gettext kde:5 \ pkgconfig qt:5 shebangfix tar:xz USE_GNOME= gconf2 USE_KDE= config configwidgets coreaddons ecm globalaccel i18n \ kdeclarative package plasma-framework USE_QT= core dbus declarative gui network widgets \ buildtools_build qmake_build SHEBANG_FILES= data/plasmaVolumeDisableKMixAutostart.pl .include Index: head/audio/plasma5-plasma-pa/distinfo =================================================================== --- head/audio/plasma5-plasma-pa/distinfo (revision 492810) +++ head/audio/plasma5-plasma-pa/distinfo (revision 492811) @@ -1,3 +1,3 @@ -TIMESTAMP = 1547014596 -SHA256 (KDE/plasma/5.14.5/plasma-pa-5.14.5.tar.xz) = 0f4735d97950921517d96f3bd24753c6e6416384e7a010ed77317852cfc3e47c -SIZE (KDE/plasma/5.14.5/plasma-pa-5.14.5.tar.xz) = 94368 +TIMESTAMP = 1549993914 +SHA256 (KDE/plasma/5.15.0/plasma-pa-5.15.0.tar.xz) = 190a8d2d64227070082127cde98a2a3a91e30b7b16c8fd705b1e18d3cf13074f +SIZE (KDE/plasma/5.15.0/plasma-pa-5.15.0.tar.xz) = 94884 Index: head/audio/plasma5-plasma-pa/pkg-plist =================================================================== --- head/audio/plasma5-plasma-pa/pkg-plist (revision 492810) +++ head/audio/plasma5-plasma-pa/pkg-plist (revision 492811) @@ -1,130 +1,129 @@ %%QT_PLUGINDIR%%/kcms/kcm_pulseaudio.so %%QT_QMLDIR%%/org/kde/plasma/private/volume/PulseObjectFilterModel.qml %%QT_QMLDIR%%/org/kde/plasma/private/volume/libplasma-volume-declarative.so %%QT_QMLDIR%%/org/kde/plasma/private/volume/qmldir share/doc/HTML/ca/kcontrol/plasma-pa/index.cache.bz2 share/doc/HTML/ca/kcontrol/plasma-pa/index.docbook share/doc/HTML/de/kcontrol/plasma-pa/index.cache.bz2 share/doc/HTML/de/kcontrol/plasma-pa/index.docbook share/doc/HTML/en/kcontrol/plasma-pa/index.cache.bz2 share/doc/HTML/en/kcontrol/plasma-pa/index.docbook share/doc/HTML/it/kcontrol/plasma-pa/index.cache.bz2 share/doc/HTML/it/kcontrol/plasma-pa/index.docbook share/doc/HTML/nl/kcontrol/plasma-pa/index.cache.bz2 share/doc/HTML/nl/kcontrol/plasma-pa/index.docbook share/doc/HTML/pt/kcontrol/plasma-pa/index.cache.bz2 share/doc/HTML/pt/kcontrol/plasma-pa/index.docbook share/doc/HTML/pt_BR/kcontrol/plasma-pa/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/plasma-pa/index.docbook share/doc/HTML/ru/kcontrol/plasma-pa/index.cache.bz2 share/doc/HTML/ru/kcontrol/plasma-pa/index.docbook share/doc/HTML/sv/kcontrol/plasma-pa/index.cache.bz2 share/doc/HTML/sv/kcontrol/plasma-pa/index.docbook share/doc/HTML/uk/kcontrol/plasma-pa/index.cache.bz2 share/doc/HTML/uk/kcontrol/plasma-pa/index.docbook share/kconf_update/disable_kmix.upd share/kconf_update/plasmaVolumeDisableKMixAutostart.pl share/kde4/apps/kconf_update/disable_kmix.upd share/kde4/apps/kconf_update/plasmaVolumeDisableKMixAutostart.pl share/kpackage/kcms/kcm_pulseaudio/contents/ui/Advanced.qml share/kpackage/kcms/kcm_pulseaudio/contents/ui/Applications.qml share/kpackage/kcms/kcm_pulseaudio/contents/ui/CardListItem.qml share/kpackage/kcms/kcm_pulseaudio/contents/ui/DefaultDeviceButton.qml share/kpackage/kcms/kcm_pulseaudio/contents/ui/DeviceComboBox.qml share/kpackage/kcms/kcm_pulseaudio/contents/ui/DeviceListItem.qml share/kpackage/kcms/kcm_pulseaudio/contents/ui/Devices.qml share/kpackage/kcms/kcm_pulseaudio/contents/ui/Header.qml share/kpackage/kcms/kcm_pulseaudio/contents/ui/ListItemSeperator.qml share/kpackage/kcms/kcm_pulseaudio/contents/ui/MuteButton.qml share/kpackage/kcms/kcm_pulseaudio/contents/ui/StreamListItem.qml share/kpackage/kcms/kcm_pulseaudio/contents/ui/VolumeSlider.qml share/kpackage/kcms/kcm_pulseaudio/contents/ui/main.qml share/kpackage/kcms/kcm_pulseaudio/metadata.desktop share/kpackage/kcms/kcm_pulseaudio/metadata.json share/kservices5/kcm_pulseaudio.desktop share/kservices5/plasma-applet-org.kde.plasma.volume.desktop share/locale/ar/LC_MESSAGES/kcm_pulseaudio.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo -share/locale/ast/LC_MESSAGES/kcm_pulseaudio.mo -share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo share/locale/ca/LC_MESSAGES/kcm_pulseaudio.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo share/locale/ca@valencia/LC_MESSAGES/kcm_pulseaudio.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo share/locale/cs/LC_MESSAGES/kcm_pulseaudio.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo share/locale/da/LC_MESSAGES/kcm_pulseaudio.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo share/locale/de/LC_MESSAGES/kcm_pulseaudio.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo share/locale/el/LC_MESSAGES/kcm_pulseaudio.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo share/locale/en_GB/LC_MESSAGES/kcm_pulseaudio.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo share/locale/es/LC_MESSAGES/kcm_pulseaudio.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo share/locale/et/LC_MESSAGES/kcm_pulseaudio.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo share/locale/eu/LC_MESSAGES/kcm_pulseaudio.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo share/locale/fi/LC_MESSAGES/kcm_pulseaudio.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo share/locale/fr/LC_MESSAGES/kcm_pulseaudio.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo share/locale/gl/LC_MESSAGES/kcm_pulseaudio.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo share/locale/he/LC_MESSAGES/kcm_pulseaudio.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo share/locale/hu/LC_MESSAGES/kcm_pulseaudio.mo share/locale/ia/LC_MESSAGES/kcm_pulseaudio.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo share/locale/id/LC_MESSAGES/kcm_pulseaudio.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo share/locale/it/LC_MESSAGES/kcm_pulseaudio.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo share/locale/ja/LC_MESSAGES/kcm_pulseaudio.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo share/locale/ko/LC_MESSAGES/kcm_pulseaudio.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo share/locale/lt/LC_MESSAGES/kcm_pulseaudio.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo +share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo share/locale/nb/LC_MESSAGES/kcm_pulseaudio.mo share/locale/nl/LC_MESSAGES/kcm_pulseaudio.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo share/locale/nn/LC_MESSAGES/kcm_pulseaudio.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo share/locale/pa/LC_MESSAGES/kcm_pulseaudio.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo share/locale/pl/LC_MESSAGES/kcm_pulseaudio.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo share/locale/pt/LC_MESSAGES/kcm_pulseaudio.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo share/locale/pt_BR/LC_MESSAGES/kcm_pulseaudio.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo share/locale/ru/LC_MESSAGES/kcm_pulseaudio.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo share/locale/sk/LC_MESSAGES/kcm_pulseaudio.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo share/locale/sl/LC_MESSAGES/kcm_pulseaudio.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo share/locale/sr/LC_MESSAGES/kcm_pulseaudio.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_pulseaudio.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_pulseaudio.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo share/locale/sr@latin/LC_MESSAGES/kcm_pulseaudio.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo share/locale/sv/LC_MESSAGES/kcm_pulseaudio.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo share/locale/tr/LC_MESSAGES/kcm_pulseaudio.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo share/locale/uk/LC_MESSAGES/kcm_pulseaudio.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo share/locale/zh_CN/LC_MESSAGES/kcm_pulseaudio.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo share/locale/zh_TW/LC_MESSAGES/kcm_pulseaudio.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo share/metainfo/org.kde.plasma.volume.appdata.xml share/plasma/plasmoids/org.kde.plasma.volume/contents.rcc share/plasma/plasmoids/org.kde.plasma.volume/metadata.json Index: head/deskutils/plasma5-milou/Makefile =================================================================== --- head/deskutils/plasma5-milou/Makefile (revision 492810) +++ head/deskutils/plasma5-milou/Makefile (revision 492811) @@ -1,17 +1,16 @@ # $FreeBSD$ PORTNAME= milou DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= deskutils kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 Plasmoid for search USES= cmake compiler:c++11-lib cpe gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs config coreaddons i18n kdeclarative package \ plasma-framework runner service USE_QT= core declarative gui network script testlib widgets \ buildtools_build qmake_build .include Index: head/deskutils/plasma5-milou/distinfo =================================================================== --- head/deskutils/plasma5-milou/distinfo (revision 492810) +++ head/deskutils/plasma5-milou/distinfo (revision 492811) @@ -1,3 +1,3 @@ -TIMESTAMP = 1547014597 -SHA256 (KDE/plasma/5.14.5/milou-5.14.5.tar.xz) = 0315e73b9c9ba568b09fa13c0bd75c5fa5d36a18e5e1567fde8c57580321e69c -SIZE (KDE/plasma/5.14.5/milou-5.14.5.tar.xz) = 57628 +TIMESTAMP = 1549993915 +SHA256 (KDE/plasma/5.15.0/milou-5.15.0.tar.xz) = 37f8f6f81916318182fe57a2ed3bfbd03a6505a1b6bbc773b05fbacad076d721 +SIZE (KDE/plasma/5.15.0/milou-5.15.0.tar.xz) = 57152 Index: head/deskutils/plasma5-milou/pkg-plist =================================================================== --- head/deskutils/plasma5-milou/pkg-plist (revision 492810) +++ head/deskutils/plasma5-milou/pkg-plist (revision 492811) @@ -1,111 +1,109 @@ lib/libmilou.so.5 lib/libmilou.so.%%KDE_PLASMA_VERSION%% %%QT_PLUGINDIR%%/miloutextplugin.so %%QT_QMLDIR%%/org/kde/milou/ResultDelegate.qml %%QT_QMLDIR%%/org/kde/milou/ResultsListView.qml %%QT_QMLDIR%%/org/kde/milou/ResultsListViewDelegate.qml %%QT_QMLDIR%%/org/kde/milou/ResultsView.qml %%QT_QMLDIR%%/org/kde/milou/globals.js %%QT_QMLDIR%%/org/kde/milou/libmilouqmlplugin.so %%QT_QMLDIR%%/org/kde/milou/qmldir share/kservices5/miloutextpreview.desktop share/kservices5/plasma-applet-org.kde.milou.desktop share/kservicetypes5/miloupreviewplugin.desktop share/locale/ar/LC_MESSAGES/milou.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.milou.mo -share/locale/ast/LC_MESSAGES/milou.mo -share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/bs/LC_MESSAGES/milou.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/ca/LC_MESSAGES/milou.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/ca@valencia/LC_MESSAGES/milou.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/cs/LC_MESSAGES/milou.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/da/LC_MESSAGES/milou.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/de/LC_MESSAGES/milou.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/el/LC_MESSAGES/milou.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/en_GB/LC_MESSAGES/milou.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/es/LC_MESSAGES/milou.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/et/LC_MESSAGES/milou.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/eu/LC_MESSAGES/milou.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/fi/LC_MESSAGES/milou.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/fr/LC_MESSAGES/milou.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/gl/LC_MESSAGES/milou.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/he/LC_MESSAGES/milou.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/hu/LC_MESSAGES/milou.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/ia/LC_MESSAGES/milou.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/id/LC_MESSAGES/milou.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/it/LC_MESSAGES/milou.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/ja/LC_MESSAGES/milou.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/ko/LC_MESSAGES/milou.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/lt/LC_MESSAGES/milou.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/nb/LC_MESSAGES/milou.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/nds/LC_MESSAGES/milou.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/nl/LC_MESSAGES/milou.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/nn/LC_MESSAGES/milou.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/pa/LC_MESSAGES/milou.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/pl/LC_MESSAGES/milou.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/pt/LC_MESSAGES/milou.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/pt_BR/LC_MESSAGES/milou.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/ro/LC_MESSAGES/milou.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/ru/LC_MESSAGES/milou.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/sk/LC_MESSAGES/milou.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/sl/LC_MESSAGES/milou.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/sr/LC_MESSAGES/milou.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/sr@ijekavian/LC_MESSAGES/milou.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/milou.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/sr@latin/LC_MESSAGES/milou.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/sv/LC_MESSAGES/milou.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/tr/LC_MESSAGES/milou.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/uk/LC_MESSAGES/milou.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/zh_CN/LC_MESSAGES/milou.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/locale/zh_TW/LC_MESSAGES/milou.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.milou.mo share/metainfo/org.kde.milou.appdata.xml share/plasma/plasmoids/org.kde.milou/contents/ui/SearchField.qml share/plasma/plasmoids/org.kde.milou/contents/ui/globals.js share/plasma/plasmoids/org.kde.milou/contents/ui/main.qml share/plasma/plasmoids/org.kde.milou/contents/ui/previews/Audio.qml share/plasma/plasmoids/org.kde.milou/contents/ui/previews/TextPreview.qml share/plasma/plasmoids/org.kde.milou/metadata.desktop share/plasma/plasmoids/org.kde.milou/metadata.json Index: head/deskutils/plasma5-sddm-kcm/Makefile =================================================================== --- head/deskutils/plasma5-sddm-kcm/Makefile (revision 492810) +++ head/deskutils/plasma5-sddm-kcm/Makefile (revision 492811) @@ -1,21 +1,20 @@ # $FreeBSD$ PORTNAME= sddm-kcm DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= deskutils kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 config module for SDDM USES= cmake compiler:c++11-lib gettext kde:5 cpe pkgconfig \ qt:5 tar:xz USE_KDE= auth archive attica codecs completion config configwidgets \ coreaddons ecm i18n jobwidgets kio newstuff service \ widgetsaddons xmlgui USE_QT= concurrent core dbus declarative designer gui network uiplugin widgets \ x11extras xml \ buildtools_build qmake_build USE_XORG= ice sm x11 xcb xcursor xext xfixes .include Index: head/deskutils/plasma5-sddm-kcm/distinfo =================================================================== --- head/deskutils/plasma5-sddm-kcm/distinfo (revision 492810) +++ head/deskutils/plasma5-sddm-kcm/distinfo (revision 492811) @@ -1,3 +1,3 @@ -TIMESTAMP = 1547014598 -SHA256 (KDE/plasma/5.14.5/sddm-kcm-5.14.5.tar.xz) = a1220ef49e57a5b0f63a01501d2d5d57c704f0869db7c53a465c40c1f2133d2a -SIZE (KDE/plasma/5.14.5/sddm-kcm-5.14.5.tar.xz) = 60956 +TIMESTAMP = 1549993916 +SHA256 (KDE/plasma/5.15.0/sddm-kcm-5.15.0.tar.xz) = b6500919ac8a112af2b3d500d50a3951e294e49cf41cf23cab2785bd6840d339 +SIZE (KDE/plasma/5.15.0/sddm-kcm-5.15.0.tar.xz) = 61400 Index: head/deskutils/plasma5-sddm-kcm/pkg-plist =================================================================== --- head/deskutils/plasma5-sddm-kcm/pkg-plist (revision 492810) +++ head/deskutils/plasma5-sddm-kcm/pkg-plist (revision 492811) @@ -1,53 +1,52 @@ bin/sddmthemeinstaller etc/dbus-1/system.d/org.kde.kcontrol.kcmsddm.conf etc/xdg/sddmtheme.knsrc lib/libexec/kauth/kcmsddm_authhelper %%QT_PLUGINDIR%%/kcm_sddm.so share/dbus-1/system-services/org.kde.kcontrol.kcmsddm.service share/kservices5/kcm_sddm.desktop share/locale/ar/LC_MESSAGES/kcm_sddm.mo -share/locale/ast/LC_MESSAGES/kcm_sddm.mo share/locale/bs/LC_MESSAGES/kcm_sddm.mo share/locale/ca/LC_MESSAGES/kcm_sddm.mo share/locale/ca@valencia/LC_MESSAGES/kcm_sddm.mo share/locale/cs/LC_MESSAGES/kcm_sddm.mo share/locale/da/LC_MESSAGES/kcm_sddm.mo share/locale/de/LC_MESSAGES/kcm_sddm.mo share/locale/el/LC_MESSAGES/kcm_sddm.mo share/locale/en_GB/LC_MESSAGES/kcm_sddm.mo share/locale/es/LC_MESSAGES/kcm_sddm.mo share/locale/et/LC_MESSAGES/kcm_sddm.mo share/locale/eu/LC_MESSAGES/kcm_sddm.mo share/locale/fi/LC_MESSAGES/kcm_sddm.mo share/locale/fr/LC_MESSAGES/kcm_sddm.mo share/locale/gl/LC_MESSAGES/kcm_sddm.mo share/locale/he/LC_MESSAGES/kcm_sddm.mo share/locale/hu/LC_MESSAGES/kcm_sddm.mo share/locale/ia/LC_MESSAGES/kcm_sddm.mo share/locale/id/LC_MESSAGES/kcm_sddm.mo share/locale/it/LC_MESSAGES/kcm_sddm.mo share/locale/ja/LC_MESSAGES/kcm_sddm.mo share/locale/ko/LC_MESSAGES/kcm_sddm.mo share/locale/lt/LC_MESSAGES/kcm_sddm.mo share/locale/nb/LC_MESSAGES/kcm_sddm.mo share/locale/nl/LC_MESSAGES/kcm_sddm.mo share/locale/nn/LC_MESSAGES/kcm_sddm.mo share/locale/pa/LC_MESSAGES/kcm_sddm.mo share/locale/pl/LC_MESSAGES/kcm_sddm.mo share/locale/pt/LC_MESSAGES/kcm_sddm.mo share/locale/pt_BR/LC_MESSAGES/kcm_sddm.mo share/locale/ro/LC_MESSAGES/kcm_sddm.mo share/locale/ru/LC_MESSAGES/kcm_sddm.mo share/locale/sk/LC_MESSAGES/kcm_sddm.mo share/locale/sl/LC_MESSAGES/kcm_sddm.mo share/locale/sr/LC_MESSAGES/kcm_sddm.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_sddm.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_sddm.mo share/locale/sr@latin/LC_MESSAGES/kcm_sddm.mo share/locale/sv/LC_MESSAGES/kcm_sddm.mo share/locale/tr/LC_MESSAGES/kcm_sddm.mo share/locale/uk/LC_MESSAGES/kcm_sddm.mo share/locale/zh_CN/LC_MESSAGES/kcm_sddm.mo share/locale/zh_TW/LC_MESSAGES/kcm_sddm.mo share/polkit-1/actions/org.kde.kcontrol.kcmsddm.policy %%DATADIR%%/main.qml Index: head/devel/plasma5-khotkeys/Makefile =================================================================== --- head/devel/plasma5-khotkeys/Makefile (revision 492810) +++ head/devel/plasma5-khotkeys/Makefile (revision 492811) @@ -1,22 +1,21 @@ # $FreeBSD$ PORTNAME= khotkeys DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= devel kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 library for hotkeys USES= cmake compiler:c++11-lib cpe gettext kde:5 qt:5 tar:xz USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons ecm emoticons globalaccel \ guiaddons i18n iconthemes init itemmodels itemviews jobwidgets \ kcmutils kdelibs4support kio notifications parts \ plasma-framework plasma-workspace service solid sonnet \ textwidgets unitconversion widgetsaddons windowsystem xmlgui USE_QT= core dbus gui network printsupport widgets x11extras xml \ buildtools_build qmake_build USE_XORG= x11 xtst .include Index: head/devel/plasma5-khotkeys/distinfo =================================================================== --- head/devel/plasma5-khotkeys/distinfo (revision 492810) +++ head/devel/plasma5-khotkeys/distinfo (revision 492811) @@ -1,3 +1,3 @@ -TIMESTAMP = 1547014599 -SHA256 (KDE/plasma/5.14.5/khotkeys-5.14.5.tar.xz) = 4460c6b5a4a01c11517399d1c10b567ff86e5726a95440fc239d29b8de95e214 -SIZE (KDE/plasma/5.14.5/khotkeys-5.14.5.tar.xz) = 1380612 +TIMESTAMP = 1549993917 +SHA256 (KDE/plasma/5.15.0/khotkeys-5.15.0.tar.xz) = 3ce9b79cbd47af748b129b35f1207549287d1763a4bf367cb89b9dce57adcb02 +SIZE (KDE/plasma/5.15.0/khotkeys-5.15.0.tar.xz) = 1865208 Index: head/devel/plasma5-khotkeys/pkg-plist =================================================================== --- head/devel/plasma5-khotkeys/pkg-plist (revision 492810) +++ head/devel/plasma5-khotkeys/pkg-plist (revision 492811) @@ -1,150 +1,155 @@ lib/cmake/KHotKeysDBusInterface/KHotKeysDBusInterfaceConfig.cmake lib/libkhotkeysprivate.so.5 lib/libkhotkeysprivate.so.%%KDE_PLASMA_VERSION%% %%QT_PLUGINDIR%%/kcm_hotkeys.so %%QT_PLUGINDIR%%/kf5/kded/khotkeys.so share/dbus-1/interfaces/org.kde.khotkeys.xml +share/doc/HTML/ca/kcontrol/khotkeys/document-open.png +share/doc/HTML/ca/kcontrol/khotkeys/shortcuts-action-command.png +share/doc/HTML/ca/kcontrol/khotkeys/shortcuts-action-dbus.png +share/doc/HTML/ca/kcontrol/khotkeys/shortcuts-action-keyboard.png +share/doc/HTML/ca/kcontrol/khotkeys/shortcuts-trigger-keyboard.png +share/doc/HTML/ca/kcontrol/khotkeys/shortcuts-trigger-mouse.png share/doc/HTML/ca/kcontrol/khotkeys/groups-comment.png share/doc/HTML/ca/kcontrol/khotkeys/index.cache.bz2 share/doc/HTML/ca/kcontrol/khotkeys/index.docbook share/doc/HTML/ca/kcontrol/khotkeys/manage-export.png share/doc/HTML/ca/kcontrol/khotkeys/oxygen-22x22-edit-clear-locationbar-rtl.png share/doc/HTML/ca/kcontrol/khotkeys/settings.png share/doc/HTML/de/kcontrol/khotkeys/index.cache.bz2 share/doc/HTML/de/kcontrol/khotkeys/index.docbook share/doc/HTML/en/kcontrol/khotkeys/document-open.png share/doc/HTML/en/kcontrol/khotkeys/groups-comment.png share/doc/HTML/en/kcontrol/khotkeys/index.cache.bz2 share/doc/HTML/en/kcontrol/khotkeys/index.docbook share/doc/HTML/en/kcontrol/khotkeys/manage-export.png share/doc/HTML/en/kcontrol/khotkeys/oxygen-22x22-edit-clear-locationbar-rtl.png share/doc/HTML/en/kcontrol/khotkeys/settings.png share/doc/HTML/en/kcontrol/khotkeys/shortcuts-action-command.png share/doc/HTML/en/kcontrol/khotkeys/shortcuts-action-dbus.png share/doc/HTML/en/kcontrol/khotkeys/shortcuts-action-keyboard.png share/doc/HTML/en/kcontrol/khotkeys/shortcuts-trigger-keyboard.png share/doc/HTML/en/kcontrol/khotkeys/shortcuts-trigger-mouse.png share/doc/HTML/it/kcontrol/khotkeys/index.cache.bz2 share/doc/HTML/it/kcontrol/khotkeys/index.docbook share/doc/HTML/nl/kcontrol/khotkeys/index.cache.bz2 share/doc/HTML/nl/kcontrol/khotkeys/index.docbook share/doc/HTML/pt/kcontrol/khotkeys/index.cache.bz2 share/doc/HTML/pt/kcontrol/khotkeys/index.docbook share/doc/HTML/pt_BR/kcontrol/khotkeys/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/khotkeys/index.docbook share/doc/HTML/ru/kcontrol/khotkeys/document-open.png share/doc/HTML/ru/kcontrol/khotkeys/groups-comment.png share/doc/HTML/ru/kcontrol/khotkeys/index.cache.bz2 share/doc/HTML/ru/kcontrol/khotkeys/index.docbook share/doc/HTML/ru/kcontrol/khotkeys/manage-export.png share/doc/HTML/ru/kcontrol/khotkeys/oxygen-22x22-edit-clear-locationbar-rtl.png share/doc/HTML/ru/kcontrol/khotkeys/settings.png share/doc/HTML/ru/kcontrol/khotkeys/shortcuts-action-command.png share/doc/HTML/ru/kcontrol/khotkeys/shortcuts-action-dbus.png share/doc/HTML/ru/kcontrol/khotkeys/shortcuts-action-keyboard.png share/doc/HTML/ru/kcontrol/khotkeys/shortcuts-trigger-keyboard.png share/doc/HTML/ru/kcontrol/khotkeys/shortcuts-trigger-mouse.png share/doc/HTML/sv/kcontrol/khotkeys/index.cache.bz2 share/doc/HTML/sv/kcontrol/khotkeys/index.docbook share/doc/HTML/uk/kcontrol/khotkeys/groups-comment.png share/doc/HTML/uk/kcontrol/khotkeys/index.cache.bz2 share/doc/HTML/uk/kcontrol/khotkeys/index.docbook share/doc/HTML/uk/kcontrol/khotkeys/manage-export.png share/doc/HTML/uk/kcontrol/khotkeys/settings.png share/doc/HTML/uk/kcontrol/khotkeys/shortcuts-action-command.png share/doc/HTML/uk/kcontrol/khotkeys/shortcuts-action-dbus.png share/doc/HTML/uk/kcontrol/khotkeys/shortcuts-action-keyboard.png share/doc/HTML/uk/kcontrol/khotkeys/shortcuts-trigger-keyboard.png share/doc/HTML/uk/kcontrol/khotkeys/shortcuts-trigger-mouse.png %%DATADIR%%/defaults.khotkeys %%DATADIR%%/kde32b1.khotkeys %%DATADIR%%/konqueror_gestures_kde321.khotkeys share/kservices5/khotkeys.desktop share/locale/af/LC_MESSAGES/khotkeys.mo share/locale/ar/LC_MESSAGES/khotkeys.mo -share/locale/ast/LC_MESSAGES/khotkeys.mo share/locale/be/LC_MESSAGES/khotkeys.mo share/locale/bg/LC_MESSAGES/khotkeys.mo share/locale/bn_IN/LC_MESSAGES/khotkeys.mo share/locale/br/LC_MESSAGES/khotkeys.mo share/locale/bs/LC_MESSAGES/khotkeys.mo share/locale/ca/LC_MESSAGES/khotkeys.mo share/locale/ca@valencia/LC_MESSAGES/khotkeys.mo share/locale/cs/LC_MESSAGES/khotkeys.mo share/locale/csb/LC_MESSAGES/khotkeys.mo share/locale/cy/LC_MESSAGES/khotkeys.mo share/locale/da/LC_MESSAGES/khotkeys.mo share/locale/de/LC_MESSAGES/khotkeys.mo share/locale/el/LC_MESSAGES/khotkeys.mo share/locale/en_GB/LC_MESSAGES/khotkeys.mo share/locale/eo/LC_MESSAGES/khotkeys.mo share/locale/es/LC_MESSAGES/khotkeys.mo share/locale/et/LC_MESSAGES/khotkeys.mo share/locale/eu/LC_MESSAGES/khotkeys.mo share/locale/fa/LC_MESSAGES/khotkeys.mo share/locale/fi/LC_MESSAGES/khotkeys.mo share/locale/fr/LC_MESSAGES/khotkeys.mo share/locale/fy/LC_MESSAGES/khotkeys.mo share/locale/ga/LC_MESSAGES/khotkeys.mo share/locale/gl/LC_MESSAGES/khotkeys.mo share/locale/gu/LC_MESSAGES/khotkeys.mo share/locale/he/LC_MESSAGES/khotkeys.mo share/locale/hi/LC_MESSAGES/khotkeys.mo share/locale/hne/LC_MESSAGES/khotkeys.mo share/locale/hr/LC_MESSAGES/khotkeys.mo share/locale/hsb/LC_MESSAGES/khotkeys.mo share/locale/hu/LC_MESSAGES/khotkeys.mo share/locale/ia/LC_MESSAGES/khotkeys.mo share/locale/id/LC_MESSAGES/khotkeys.mo share/locale/is/LC_MESSAGES/khotkeys.mo share/locale/it/LC_MESSAGES/khotkeys.mo share/locale/ja/LC_MESSAGES/khotkeys.mo share/locale/kk/LC_MESSAGES/khotkeys.mo share/locale/km/LC_MESSAGES/khotkeys.mo share/locale/kn/LC_MESSAGES/khotkeys.mo share/locale/ko/LC_MESSAGES/khotkeys.mo share/locale/ku/LC_MESSAGES/khotkeys.mo share/locale/lt/LC_MESSAGES/khotkeys.mo share/locale/lv/LC_MESSAGES/khotkeys.mo share/locale/mai/LC_MESSAGES/khotkeys.mo share/locale/mk/LC_MESSAGES/khotkeys.mo share/locale/ml/LC_MESSAGES/khotkeys.mo share/locale/mr/LC_MESSAGES/khotkeys.mo share/locale/ms/LC_MESSAGES/khotkeys.mo share/locale/nb/LC_MESSAGES/khotkeys.mo share/locale/nds/LC_MESSAGES/khotkeys.mo share/locale/ne/LC_MESSAGES/khotkeys.mo share/locale/nl/LC_MESSAGES/khotkeys.mo share/locale/nn/LC_MESSAGES/khotkeys.mo share/locale/oc/LC_MESSAGES/khotkeys.mo share/locale/or/LC_MESSAGES/khotkeys.mo share/locale/pa/LC_MESSAGES/khotkeys.mo share/locale/pl/LC_MESSAGES/khotkeys.mo share/locale/pt/LC_MESSAGES/khotkeys.mo share/locale/pt_BR/LC_MESSAGES/khotkeys.mo share/locale/ro/LC_MESSAGES/khotkeys.mo share/locale/ru/LC_MESSAGES/khotkeys.mo share/locale/se/LC_MESSAGES/khotkeys.mo share/locale/si/LC_MESSAGES/khotkeys.mo share/locale/sk/LC_MESSAGES/khotkeys.mo share/locale/sl/LC_MESSAGES/khotkeys.mo share/locale/sq/LC_MESSAGES/khotkeys.mo share/locale/sr/LC_MESSAGES/khotkeys.mo share/locale/sr@ijekavian/LC_MESSAGES/khotkeys.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/khotkeys.mo share/locale/sr@latin/LC_MESSAGES/khotkeys.mo share/locale/sv/LC_MESSAGES/khotkeys.mo share/locale/ta/LC_MESSAGES/khotkeys.mo share/locale/te/LC_MESSAGES/khotkeys.mo share/locale/tg/LC_MESSAGES/khotkeys.mo share/locale/th/LC_MESSAGES/khotkeys.mo share/locale/tr/LC_MESSAGES/khotkeys.mo share/locale/ug/LC_MESSAGES/khotkeys.mo share/locale/uk/LC_MESSAGES/khotkeys.mo share/locale/uz/LC_MESSAGES/khotkeys.mo share/locale/uz@cyrillic/LC_MESSAGES/khotkeys.mo share/locale/vi/LC_MESSAGES/khotkeys.mo share/locale/wa/LC_MESSAGES/khotkeys.mo share/locale/xh/LC_MESSAGES/khotkeys.mo share/locale/zh_CN/LC_MESSAGES/khotkeys.mo share/locale/zh_TW/LC_MESSAGES/khotkeys.mo Index: head/devel/plasma5-kwrited/Makefile =================================================================== --- head/devel/plasma5-kwrited/Makefile (revision 492810) +++ head/devel/plasma5-kwrited/Makefile (revision 492811) @@ -1,16 +1,15 @@ # $FreeBSD$ PORTNAME= kwrited DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= devel kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 daemon listening for wall and write messages USES= cmake compiler:c++11-lib cpe gettext kde:5 qt:5 tar:xz USE_KDE= coreaddons dbusaddons ecm i18n notifications pty USE_QT= core dbus gui widgets \ buildtools_build qmake_build .include Index: head/devel/plasma5-kwrited/distinfo =================================================================== --- head/devel/plasma5-kwrited/distinfo (revision 492810) +++ head/devel/plasma5-kwrited/distinfo (revision 492811) @@ -1,3 +1,3 @@ -TIMESTAMP = 1547014599 -SHA256 (KDE/plasma/5.14.5/kwrited-5.14.5.tar.xz) = d06283cdfdb6ab1323e45a8e36b8bf119ffba523bc138ee081a4289499c62504 -SIZE (KDE/plasma/5.14.5/kwrited-5.14.5.tar.xz) = 20000 +TIMESTAMP = 1549993918 +SHA256 (KDE/plasma/5.15.0/kwrited-5.15.0.tar.xz) = ec511139b4745303daeb5e601515ada25d1c4e6a2e9ad34861b02b49e7a9d0fd +SIZE (KDE/plasma/5.15.0/kwrited-5.15.0.tar.xz) = 20004 Index: head/devel/plasma5-plasma-sdk/Makefile =================================================================== --- head/devel/plasma5-plasma-sdk/Makefile (revision 492810) +++ head/devel/plasma5-plasma-sdk/Makefile (revision 492811) @@ -1,20 +1,19 @@ # $FreeBSD$ PORTNAME= plasma-sdk DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= devel kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 applications useful for Plasma development USES= cmake compiler:c++11-lib cpe gettext kde:5 qt:5 tar:xz USE_KDE= archive attica auth codecs completion config configwidgets \ coreaddons dbusaddons ecm i18n iconthemes itemmodels \ jobwidgets kdeclarative kio kirigami2 newstuff package parts \ plasma-framework service sonnet texteditor textwidgets \ widgetsaddons windowsystem xmlgui USE_QT= concurrent core dbus declarative gui network webkit widgets x11extras xml \ buildtools_build qmake_build .include Index: head/devel/plasma5-plasma-sdk/distinfo =================================================================== --- head/devel/plasma5-plasma-sdk/distinfo (revision 492810) +++ head/devel/plasma5-plasma-sdk/distinfo (revision 492811) @@ -1,3 +1,3 @@ -TIMESTAMP = 1547014600 -SHA256 (KDE/plasma/5.14.5/plasma-sdk-5.14.5.tar.xz) = 21f77a9b2e4b019de80e5f07df60b64f4ee738a8a36904bf6e5765e8cdb4206d -SIZE (KDE/plasma/5.14.5/plasma-sdk-5.14.5.tar.xz) = 250236 +TIMESTAMP = 1549993919 +SHA256 (KDE/plasma/5.15.0/plasma-sdk-5.15.0.tar.xz) = a8a514775ded362b4b15190eb451bc0ef7b2564630f6937daf871a92311eb812 +SIZE (KDE/plasma/5.15.0/plasma-sdk-5.15.0.tar.xz) = 249508 Index: head/devel/plasma5-plasma-sdk/pkg-plist =================================================================== --- head/devel/plasma5-plasma-sdk/pkg-plist (revision 492810) +++ head/devel/plasma5-plasma-sdk/pkg-plist (revision 492811) @@ -1,505 +1,497 @@ bin/cuttlefish bin/lookandfeelexplorer bin/plasmaengineexplorer bin/plasmathemeexplorer bin/plasmoidviewer %%QT_PLUGINDIR%%/ktexteditor/cuttlefishplugin.so man/man1/plasmaengineexplorer.1.gz man/man1/plasmoidviewer.1.gz share/applications/org.kde.cuttlefish.desktop share/applications/org.kde.plasma.lookandfeelexplorer.desktop share/applications/org.kde.plasma.themeexplorer.desktop share/applications/org.kde.plasmaengineexplorer.desktop share/applications/org.kde.plasmoidviewer.desktop share/kpackage/genericqml/org.kde.plasma.lookandfeelexplorer/contents/ui/FormField.qml share/kpackage/genericqml/org.kde.plasma.lookandfeelexplorer/contents/ui/FormLabel.qml share/kpackage/genericqml/org.kde.plasma.lookandfeelexplorer/contents/ui/MetadataEditor.qml share/kpackage/genericqml/org.kde.plasma.lookandfeelexplorer/contents/ui/main.qml share/kpackage/genericqml/org.kde.plasma.lookandfeelexplorer/metadata.desktop share/kpackage/genericqml/org.kde.plasma.lookandfeelexplorer/metadata.json share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/code/openInEditor.sh share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/data/themeDescription.json share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/data/todo share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/ColorButton.qml share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/ColorEditor.qml share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/FormLabel.qml share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/MetadataEditor.qml share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/delegates/Hand.qml share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/delegates/actionbutton.qml share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/delegates/allframesvgs.qml share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/delegates/analog_meter.qml share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/delegates/busyindicator.qml share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/delegates/button.qml share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/delegates/checkmarks.qml share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/delegates/clock.qml share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/delegates/containment-controls.qml share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/delegates/dialog.qml share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/delegates/framesvg.qml share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/delegates/icons.qml share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/delegates/listitem.qml share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/delegates/monitor.qml share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/delegates/panel.qml share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/delegates/progressbar.qml share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/delegates/scrollbar.qml share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/delegates/slider.qml share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/delegates/tabbar.qml share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/delegates/textfield.qml share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/fakecontrols/Button.qml share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/fakecontrols/CheckBox.qml share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/fakecontrols/LineEdit.qml share/kpackage/genericqml/org.kde.plasma.themeexplorer/contents/ui/main.qml share/kpackage/genericqml/org.kde.plasma.themeexplorer/metadata.desktop share/kpackage/genericqml/org.kde.plasma.themeexplorer/metadata.json share/kservices5/plasma-package-org.kde.plasma.cuttlefish.desktop share/kservices5/plasma-shell-org.kde.plasma.plasmoidviewershell.desktop share/locale/ar/LC_MESSAGES/cuttlefish.mo share/locale/ar/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/ar/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/ar/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/ar/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/ar/LC_MESSAGES/plasmaengineexplorer.mo share/locale/ar/LC_MESSAGES/plasmawallpaperviewer.mo share/locale/ar/LC_MESSAGES/plasmoidviewer.mo -share/locale/ast/LC_MESSAGES/cuttlefish.mo -share/locale/ast/LC_MESSAGES/cuttlefish_editorplugin.mo -share/locale/ast/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo -share/locale/ast/LC_MESSAGES/org.kde.plasma.themeexplorer.mo -share/locale/ast/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo -share/locale/ast/LC_MESSAGES/plasmaengineexplorer.mo -share/locale/ast/LC_MESSAGES/plasmawallpaperviewer.mo -share/locale/ast/LC_MESSAGES/plasmoidviewer.mo share/locale/be/LC_MESSAGES/plasmaengineexplorer.mo share/locale/be@latin/LC_MESSAGES/plasmaengineexplorer.mo share/locale/be@latin/LC_MESSAGES/plasmoidviewer.mo share/locale/bg/LC_MESSAGES/plasmaengineexplorer.mo share/locale/bg/LC_MESSAGES/plasmoidviewer.mo share/locale/bn_IN/LC_MESSAGES/plasmaengineexplorer.mo share/locale/bn_IN/LC_MESSAGES/plasmoidviewer.mo share/locale/bs/LC_MESSAGES/plasmaengineexplorer.mo share/locale/bs/LC_MESSAGES/plasmawallpaperviewer.mo share/locale/bs/LC_MESSAGES/plasmoidviewer.mo share/locale/ca/LC_MESSAGES/cuttlefish.mo share/locale/ca/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/ca/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/ca/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/ca/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/ca/LC_MESSAGES/plasmaengineexplorer.mo share/locale/ca/LC_MESSAGES/plasmawallpaperviewer.mo share/locale/ca/LC_MESSAGES/plasmoidviewer.mo share/locale/ca@valencia/LC_MESSAGES/cuttlefish.mo share/locale/ca@valencia/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/ca@valencia/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/ca@valencia/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/ca@valencia/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/ca@valencia/LC_MESSAGES/plasmaengineexplorer.mo share/locale/ca@valencia/LC_MESSAGES/plasmawallpaperviewer.mo share/locale/ca@valencia/LC_MESSAGES/plasmoidviewer.mo share/locale/cs/LC_MESSAGES/cuttlefish.mo share/locale/cs/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/cs/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/cs/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/cs/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/cs/LC_MESSAGES/plasmaengineexplorer.mo share/locale/cs/LC_MESSAGES/plasmawallpaperviewer.mo share/locale/cs/LC_MESSAGES/plasmoidviewer.mo share/locale/csb/LC_MESSAGES/plasmaengineexplorer.mo share/locale/csb/LC_MESSAGES/plasmawallpaperviewer.mo share/locale/csb/LC_MESSAGES/plasmoidviewer.mo share/locale/da/LC_MESSAGES/cuttlefish.mo share/locale/da/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/da/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/da/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/da/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/da/LC_MESSAGES/plasmaengineexplorer.mo share/locale/da/LC_MESSAGES/plasmawallpaperviewer.mo share/locale/da/LC_MESSAGES/plasmoidviewer.mo share/locale/de/LC_MESSAGES/cuttlefish.mo share/locale/de/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/de/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/de/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/de/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/de/LC_MESSAGES/plasmaengineexplorer.mo share/locale/de/LC_MESSAGES/plasmawallpaperviewer.mo share/locale/de/LC_MESSAGES/plasmoidviewer.mo share/locale/el/LC_MESSAGES/cuttlefish.mo share/locale/el/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/el/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/el/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/el/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/el/LC_MESSAGES/plasmaengineexplorer.mo share/locale/el/LC_MESSAGES/plasmawallpaperviewer.mo share/locale/el/LC_MESSAGES/plasmoidviewer.mo share/locale/en_GB/LC_MESSAGES/cuttlefish.mo share/locale/en_GB/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/en_GB/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/en_GB/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/en_GB/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/en_GB/LC_MESSAGES/plasmaengineexplorer.mo share/locale/en_GB/LC_MESSAGES/plasmawallpaperviewer.mo share/locale/en_GB/LC_MESSAGES/plasmoidviewer.mo share/locale/eo/LC_MESSAGES/plasmaengineexplorer.mo share/locale/eo/LC_MESSAGES/plasmawallpaperviewer.mo share/locale/eo/LC_MESSAGES/plasmoidviewer.mo share/locale/es/LC_MESSAGES/cuttlefish.mo share/locale/es/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/es/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/es/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/es/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/es/LC_MESSAGES/plasmaengineexplorer.mo share/locale/es/LC_MESSAGES/plasmawallpaperviewer.mo share/locale/es/LC_MESSAGES/plasmoidviewer.mo share/locale/et/LC_MESSAGES/cuttlefish.mo share/locale/et/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/et/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/et/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/et/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/et/LC_MESSAGES/plasmaengineexplorer.mo share/locale/et/LC_MESSAGES/plasmawallpaperviewer.mo share/locale/et/LC_MESSAGES/plasmoidviewer.mo share/locale/eu/LC_MESSAGES/cuttlefish.mo share/locale/eu/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/eu/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/eu/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/eu/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/eu/LC_MESSAGES/plasmaengineexplorer.mo share/locale/eu/LC_MESSAGES/plasmawallpaperviewer.mo share/locale/eu/LC_MESSAGES/plasmoidviewer.mo share/locale/fa/LC_MESSAGES/plasmaengineexplorer.mo share/locale/fi/LC_MESSAGES/cuttlefish.mo share/locale/fi/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/fi/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/fi/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/fi/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/fi/LC_MESSAGES/plasmaengineexplorer.mo share/locale/fi/LC_MESSAGES/plasmawallpaperviewer.mo share/locale/fi/LC_MESSAGES/plasmoidviewer.mo share/locale/fr/LC_MESSAGES/cuttlefish.mo share/locale/fr/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/fr/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/fr/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/fr/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/fr/LC_MESSAGES/plasmaengineexplorer.mo share/locale/fr/LC_MESSAGES/plasmawallpaperviewer.mo share/locale/fr/LC_MESSAGES/plasmoidviewer.mo share/locale/fy/LC_MESSAGES/plasmaengineexplorer.mo share/locale/fy/LC_MESSAGES/plasmawallpaperviewer.mo share/locale/fy/LC_MESSAGES/plasmoidviewer.mo share/locale/ga/LC_MESSAGES/plasmaengineexplorer.mo share/locale/ga/LC_MESSAGES/plasmawallpaperviewer.mo share/locale/ga/LC_MESSAGES/plasmoidviewer.mo share/locale/gl/LC_MESSAGES/cuttlefish.mo share/locale/gl/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/gl/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/gl/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/gl/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/gl/LC_MESSAGES/plasmaengineexplorer.mo share/locale/gl/LC_MESSAGES/plasmawallpaperviewer.mo share/locale/gl/LC_MESSAGES/plasmoidviewer.mo share/locale/gu/LC_MESSAGES/plasmaengineexplorer.mo share/locale/gu/LC_MESSAGES/plasmawallpaperviewer.mo share/locale/gu/LC_MESSAGES/plasmoidviewer.mo share/locale/he/LC_MESSAGES/cuttlefish.mo share/locale/he/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/he/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/he/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/he/LC_MESSAGES/plasmaengineexplorer.mo share/locale/he/LC_MESSAGES/plasmawallpaperviewer.mo share/locale/he/LC_MESSAGES/plasmoidviewer.mo share/locale/hi/LC_MESSAGES/plasmaengineexplorer.mo share/locale/hi/LC_MESSAGES/plasmawallpaperviewer.mo share/locale/hi/LC_MESSAGES/plasmoidviewer.mo share/locale/hne/LC_MESSAGES/plasmoidviewer.mo share/locale/hr/LC_MESSAGES/plasmaengineexplorer.mo share/locale/hr/LC_MESSAGES/plasmawallpaperviewer.mo share/locale/hr/LC_MESSAGES/plasmoidviewer.mo share/locale/hsb/LC_MESSAGES/plasmaengineexplorer.mo share/locale/hsb/LC_MESSAGES/plasmoidviewer.mo share/locale/hu/LC_MESSAGES/cuttlefish.mo share/locale/hu/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/hu/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/hu/LC_MESSAGES/plasmaengineexplorer.mo share/locale/hu/LC_MESSAGES/plasmawallpaperviewer.mo share/locale/hu/LC_MESSAGES/plasmoidviewer.mo share/locale/ia/LC_MESSAGES/cuttlefish.mo share/locale/ia/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/ia/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/ia/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/ia/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/ia/LC_MESSAGES/plasmaengineexplorer.mo share/locale/ia/LC_MESSAGES/plasmawallpaperviewer.mo share/locale/ia/LC_MESSAGES/plasmoidviewer.mo share/locale/id/LC_MESSAGES/cuttlefish.mo share/locale/id/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/id/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/id/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/id/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/id/LC_MESSAGES/plasmaengineexplorer.mo share/locale/id/LC_MESSAGES/plasmawallpaperviewer.mo share/locale/id/LC_MESSAGES/plasmoidviewer.mo share/locale/is/LC_MESSAGES/plasmaengineexplorer.mo share/locale/is/LC_MESSAGES/plasmawallpaperviewer.mo share/locale/is/LC_MESSAGES/plasmoidviewer.mo share/locale/it/LC_MESSAGES/cuttlefish.mo share/locale/it/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/it/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/it/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/it/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/it/LC_MESSAGES/plasmaengineexplorer.mo share/locale/it/LC_MESSAGES/plasmawallpaperviewer.mo share/locale/it/LC_MESSAGES/plasmoidviewer.mo share/locale/ja/LC_MESSAGES/cuttlefish.mo share/locale/ja/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/ja/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/ja/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/ja/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/ja/LC_MESSAGES/plasmaengineexplorer.mo share/locale/ja/LC_MESSAGES/plasmawallpaperviewer.mo share/locale/ja/LC_MESSAGES/plasmoidviewer.mo share/locale/kk/LC_MESSAGES/plasmaengineexplorer.mo share/locale/kk/LC_MESSAGES/plasmawallpaperviewer.mo share/locale/kk/LC_MESSAGES/plasmoidviewer.mo share/locale/km/LC_MESSAGES/plasmaengineexplorer.mo share/locale/km/LC_MESSAGES/plasmawallpaperviewer.mo share/locale/km/LC_MESSAGES/plasmoidviewer.mo share/locale/kn/LC_MESSAGES/plasmaengineexplorer.mo share/locale/kn/LC_MESSAGES/plasmawallpaperviewer.mo share/locale/ko/LC_MESSAGES/cuttlefish.mo share/locale/ko/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/ko/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/ko/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/ko/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/ko/LC_MESSAGES/plasmaengineexplorer.mo share/locale/ko/LC_MESSAGES/plasmawallpaperviewer.mo share/locale/ko/LC_MESSAGES/plasmoidviewer.mo share/locale/ku/LC_MESSAGES/plasmaengineexplorer.mo share/locale/ku/LC_MESSAGES/plasmoidviewer.mo share/locale/lt/LC_MESSAGES/cuttlefish.mo share/locale/lt/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/lt/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/lt/LC_MESSAGES/plasmaengineexplorer.mo share/locale/lt/LC_MESSAGES/plasmawallpaperviewer.mo share/locale/lt/LC_MESSAGES/plasmoidviewer.mo share/locale/lv/LC_MESSAGES/plasmaengineexplorer.mo share/locale/lv/LC_MESSAGES/plasmawallpaperviewer.mo share/locale/lv/LC_MESSAGES/plasmoidviewer.mo share/locale/mai/LC_MESSAGES/plasmaengineexplorer.mo share/locale/mai/LC_MESSAGES/plasmawallpaperviewer.mo share/locale/mai/LC_MESSAGES/plasmoidviewer.mo share/locale/mk/LC_MESSAGES/plasmaengineexplorer.mo share/locale/ml/LC_MESSAGES/plasmaengineexplorer.mo share/locale/ml/LC_MESSAGES/plasmoidviewer.mo share/locale/mr/LC_MESSAGES/plasmaengineexplorer.mo share/locale/mr/LC_MESSAGES/plasmawallpaperviewer.mo share/locale/mr/LC_MESSAGES/plasmoidviewer.mo share/locale/ms/LC_MESSAGES/plasmaengineexplorer.mo share/locale/ms/LC_MESSAGES/plasmawallpaperviewer.mo share/locale/ms/LC_MESSAGES/plasmoidviewer.mo share/locale/nb/LC_MESSAGES/plasmaengineexplorer.mo share/locale/nb/LC_MESSAGES/plasmawallpaperviewer.mo share/locale/nb/LC_MESSAGES/plasmoidviewer.mo share/locale/nds/LC_MESSAGES/plasmaengineexplorer.mo share/locale/nds/LC_MESSAGES/plasmawallpaperviewer.mo share/locale/nds/LC_MESSAGES/plasmoidviewer.mo share/locale/ne/LC_MESSAGES/plasmaengineexplorer.mo share/locale/nl/LC_MESSAGES/cuttlefish.mo share/locale/nl/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/nl/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/nl/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/nl/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/nl/LC_MESSAGES/plasmaengineexplorer.mo share/locale/nl/LC_MESSAGES/plasmawallpaperviewer.mo share/locale/nl/LC_MESSAGES/plasmoidviewer.mo share/locale/nn/LC_MESSAGES/cuttlefish.mo share/locale/nn/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/nn/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/nn/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/nn/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/nn/LC_MESSAGES/plasmaengineexplorer.mo share/locale/nn/LC_MESSAGES/plasmawallpaperviewer.mo share/locale/nn/LC_MESSAGES/plasmoidviewer.mo share/locale/oc/LC_MESSAGES/plasmaengineexplorer.mo share/locale/or/LC_MESSAGES/plasmaengineexplorer.mo share/locale/or/LC_MESSAGES/plasmoidviewer.mo share/locale/pa/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/pa/LC_MESSAGES/plasmaengineexplorer.mo share/locale/pa/LC_MESSAGES/plasmawallpaperviewer.mo share/locale/pa/LC_MESSAGES/plasmoidviewer.mo share/locale/pl/LC_MESSAGES/cuttlefish.mo share/locale/pl/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/pl/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/pl/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/pl/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/pl/LC_MESSAGES/plasmaengineexplorer.mo share/locale/pl/LC_MESSAGES/plasmawallpaperviewer.mo share/locale/pl/LC_MESSAGES/plasmoidviewer.mo share/locale/pt/LC_MESSAGES/cuttlefish.mo share/locale/pt/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/pt/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/pt/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/pt/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/pt/LC_MESSAGES/plasmaengineexplorer.mo share/locale/pt/LC_MESSAGES/plasmawallpaperviewer.mo share/locale/pt/LC_MESSAGES/plasmoidviewer.mo share/locale/pt_BR/LC_MESSAGES/cuttlefish.mo share/locale/pt_BR/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/pt_BR/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/pt_BR/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/pt_BR/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/pt_BR/LC_MESSAGES/plasmaengineexplorer.mo share/locale/pt_BR/LC_MESSAGES/plasmawallpaperviewer.mo share/locale/pt_BR/LC_MESSAGES/plasmoidviewer.mo share/locale/ro/LC_MESSAGES/plasmaengineexplorer.mo share/locale/ro/LC_MESSAGES/plasmawallpaperviewer.mo share/locale/ro/LC_MESSAGES/plasmoidviewer.mo share/locale/ru/LC_MESSAGES/cuttlefish.mo share/locale/ru/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/ru/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/ru/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/ru/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/ru/LC_MESSAGES/plasmaengineexplorer.mo share/locale/ru/LC_MESSAGES/plasmawallpaperviewer.mo share/locale/ru/LC_MESSAGES/plasmoidviewer.mo share/locale/se/LC_MESSAGES/plasmaengineexplorer.mo share/locale/si/LC_MESSAGES/plasmaengineexplorer.mo share/locale/si/LC_MESSAGES/plasmawallpaperviewer.mo share/locale/si/LC_MESSAGES/plasmoidviewer.mo share/locale/sk/LC_MESSAGES/cuttlefish.mo share/locale/sk/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/sk/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/sk/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/sk/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/sk/LC_MESSAGES/plasmaengineexplorer.mo share/locale/sk/LC_MESSAGES/plasmawallpaperviewer.mo share/locale/sk/LC_MESSAGES/plasmoidviewer.mo share/locale/sl/LC_MESSAGES/cuttlefish.mo share/locale/sl/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/sl/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/sl/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/sl/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/sl/LC_MESSAGES/plasmaengineexplorer.mo share/locale/sl/LC_MESSAGES/plasmawallpaperviewer.mo share/locale/sl/LC_MESSAGES/plasmoidviewer.mo share/locale/sq/LC_MESSAGES/plasmaengineexplorer.mo share/locale/sq/LC_MESSAGES/plasmawallpaperviewer.mo share/locale/sq/LC_MESSAGES/plasmoidviewer.mo share/locale/sr/LC_MESSAGES/cuttlefish.mo share/locale/sr/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/sr/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/sr/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/sr/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/sr/LC_MESSAGES/plasmaengineexplorer.mo share/locale/sr/LC_MESSAGES/plasmawallpaperviewer.mo share/locale/sr/LC_MESSAGES/plasmoidviewer.mo share/locale/sr@ijekavian/LC_MESSAGES/cuttlefish.mo share/locale/sr@ijekavian/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/sr@ijekavian/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/sr@ijekavian/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/sr@ijekavian/LC_MESSAGES/plasmaengineexplorer.mo share/locale/sr@ijekavian/LC_MESSAGES/plasmawallpaperviewer.mo share/locale/sr@ijekavian/LC_MESSAGES/plasmoidviewer.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/cuttlefish.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasmaengineexplorer.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasmawallpaperviewer.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasmoidviewer.mo share/locale/sr@latin/LC_MESSAGES/cuttlefish.mo share/locale/sr@latin/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/sr@latin/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/sr@latin/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/sr@latin/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/sr@latin/LC_MESSAGES/plasmaengineexplorer.mo share/locale/sr@latin/LC_MESSAGES/plasmawallpaperviewer.mo share/locale/sr@latin/LC_MESSAGES/plasmoidviewer.mo share/locale/sv/LC_MESSAGES/cuttlefish.mo share/locale/sv/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/sv/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/sv/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/sv/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/sv/LC_MESSAGES/plasmaengineexplorer.mo share/locale/sv/LC_MESSAGES/plasmawallpaperviewer.mo share/locale/sv/LC_MESSAGES/plasmoidviewer.mo share/locale/ta/LC_MESSAGES/plasmaengineexplorer.mo share/locale/ta/LC_MESSAGES/plasmoidviewer.mo share/locale/te/LC_MESSAGES/plasmaengineexplorer.mo share/locale/te/LC_MESSAGES/plasmoidviewer.mo share/locale/tg/LC_MESSAGES/plasmaengineexplorer.mo share/locale/tg/LC_MESSAGES/plasmoidviewer.mo share/locale/th/LC_MESSAGES/plasmaengineexplorer.mo share/locale/th/LC_MESSAGES/plasmawallpaperviewer.mo share/locale/th/LC_MESSAGES/plasmoidviewer.mo share/locale/tr/LC_MESSAGES/cuttlefish.mo share/locale/tr/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/tr/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/tr/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/tr/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/tr/LC_MESSAGES/plasmaengineexplorer.mo share/locale/tr/LC_MESSAGES/plasmawallpaperviewer.mo share/locale/tr/LC_MESSAGES/plasmoidviewer.mo share/locale/ug/LC_MESSAGES/plasmaengineexplorer.mo share/locale/ug/LC_MESSAGES/plasmawallpaperviewer.mo share/locale/ug/LC_MESSAGES/plasmoidviewer.mo share/locale/uk/LC_MESSAGES/cuttlefish.mo share/locale/uk/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/uk/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/uk/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/uk/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/uk/LC_MESSAGES/plasmaengineexplorer.mo share/locale/uk/LC_MESSAGES/plasmawallpaperviewer.mo share/locale/uk/LC_MESSAGES/plasmoidviewer.mo share/locale/wa/LC_MESSAGES/plasmaengineexplorer.mo share/locale/wa/LC_MESSAGES/plasmawallpaperviewer.mo share/locale/wa/LC_MESSAGES/plasmoidviewer.mo share/locale/zh_CN/LC_MESSAGES/cuttlefish.mo share/locale/zh_CN/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/zh_CN/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/zh_CN/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/zh_CN/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/zh_CN/LC_MESSAGES/plasmaengineexplorer.mo share/locale/zh_CN/LC_MESSAGES/plasmawallpaperviewer.mo share/locale/zh_CN/LC_MESSAGES/plasmoidviewer.mo share/locale/zh_TW/LC_MESSAGES/cuttlefish.mo share/locale/zh_TW/LC_MESSAGES/cuttlefish_editorplugin.mo share/locale/zh_TW/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo share/locale/zh_TW/LC_MESSAGES/org.kde.plasma.themeexplorer.mo share/locale/zh_TW/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo share/locale/zh_TW/LC_MESSAGES/plasmaengineexplorer.mo share/locale/zh_TW/LC_MESSAGES/plasmawallpaperviewer.mo share/locale/zh_TW/LC_MESSAGES/plasmoidviewer.mo share/metainfo/org.kde.cuttlefish.appdata.xml share/metainfo/org.kde.plasma.cuttlefish.appdata.xml share/metainfo/org.kde.plasma.lookandfeelexplorer.appdata.xml share/metainfo/org.kde.plasma.plasmoidviewershell.appdata.xml share/metainfo/org.kde.plasma.themeexplorer.appdata.xml share/metainfo/org.kde.plasmaengineexplorer.appdata.xml share/metainfo/org.kde.plasmoidviewer.appdata.xml share/plasma/packages/org.kde.plasma.cuttlefish/contents/ui/IconGrid.qml share/plasma/packages/org.kde.plasma.cuttlefish/contents/ui/IconGridDelegate.qml share/plasma/packages/org.kde.plasma.cuttlefish/contents/ui/Preview.qml share/plasma/packages/org.kde.plasma.cuttlefish/contents/ui/SvgGrid.qml share/plasma/packages/org.kde.plasma.cuttlefish/contents/ui/Tools.qml share/plasma/packages/org.kde.plasma.cuttlefish/contents/ui/cuttlefish.qml share/plasma/packages/org.kde.plasma.cuttlefish/metadata.desktop share/plasma/packages/org.kde.plasma.cuttlefish/metadata.json share/plasma/shells/org.kde.plasma.plasmoidviewershell/contents/applet/AppletError.qml share/plasma/shells/org.kde.plasma.plasmoidviewershell/contents/applet/CompactApplet.qml share/plasma/shells/org.kde.plasma.plasmoidviewershell/contents/applet/DefaultCompactRepresentation.qml share/plasma/shells/org.kde.plasma.plasmoidviewershell/contents/configuration/AppletConfiguration.qml share/plasma/shells/org.kde.plasma.plasmoidviewershell/contents/configuration/ConfigCategoryDelegate.qml share/plasma/shells/org.kde.plasma.plasmoidviewershell/contents/configuration/ConfigurationContainmentActions.qml share/plasma/shells/org.kde.plasma.plasmoidviewershell/contents/configuration/ConfigurationContainmentAppearance.qml share/plasma/shells/org.kde.plasma.plasmoidviewershell/contents/configuration/ConfigurationKcmPage.qml share/plasma/shells/org.kde.plasma.plasmoidviewershell/contents/configuration/ConfigurationShortcuts.qml share/plasma/shells/org.kde.plasma.plasmoidviewershell/contents/configuration/ContainmentConfiguration.qml share/plasma/shells/org.kde.plasma.plasmoidviewershell/contents/configuration/MouseEventInputButton.qml share/plasma/shells/org.kde.plasma.plasmoidviewershell/contents/configuration/PanelConfiguration.qml share/plasma/shells/org.kde.plasma.plasmoidviewershell/contents/defaults share/plasma/shells/org.kde.plasma.plasmoidviewershell/contents/views/Background.qml share/plasma/shells/org.kde.plasma.plasmoidviewershell/contents/views/Desktop.qml share/plasma/shells/org.kde.plasma.plasmoidviewershell/contents/views/Konsole.qml share/plasma/shells/org.kde.plasma.plasmoidviewershell/contents/views/SdkButtons.qml share/plasma/shells/org.kde.plasma.plasmoidviewershell/metadata.desktop share/plasma/shells/org.kde.plasma.plasmoidviewershell/metadata.json Index: head/security/plasma5-kscreenlocker/Makefile =================================================================== --- head/security/plasma5-kscreenlocker/Makefile (revision 492810) +++ head/security/plasma5-kscreenlocker/Makefile (revision 492811) @@ -1,30 +1,29 @@ # $FreeBSD$ PORTNAME= kscreenlocker DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= security kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 secure lock screen architecture BUILD_DEPENDS= ck-list-sessions:sysutils/consolekit2 LIB_DEPENDS= libwayland-client.so:graphics/wayland \ libxcb-keysyms.so:x11/xcb-util-keysyms RUN_DEPENDS= ck-list-sessions:sysutils/consolekit2\ dbus-send:devel/dbus USES= cmake compiler:c++11-lib cpe gettext kde:5 pkgconfig \ qt:5 shebangfix tar:xz USE_KDE= auth codecs config configwidgets coreaddons crash ecm \ emoticons globalaccel i18n idletime init itemmodels kcmutils \ kdeclarative kdelibs4support notifications package \ plasma-framework sonnet textwidgets wayland widgetsaddons \ windowsystem xmlgui USE_QT= core dbus declarative gui network testlib widgets x11extras xml \ buildtools_build qmake_build USE_XORG= ice sm x11 xcb xcursor xext xi SHEBANG_FILES= updaters/ksreenlocker_5_3_separate_autologin.pl .include Index: head/security/plasma5-kscreenlocker/distinfo =================================================================== --- head/security/plasma5-kscreenlocker/distinfo (revision 492810) +++ head/security/plasma5-kscreenlocker/distinfo (revision 492811) @@ -1,3 +1,3 @@ -TIMESTAMP = 1547014601 -SHA256 (KDE/plasma/5.14.5/kscreenlocker-5.14.5.tar.xz) = d594896c8d7c5181f157b2f2eb25b0b4063d221696b730e72edc4cf0efc95599 -SIZE (KDE/plasma/5.14.5/kscreenlocker-5.14.5.tar.xz) = 122232 +TIMESTAMP = 1549993920 +SHA256 (KDE/plasma/5.15.0/kscreenlocker-5.15.0.tar.xz) = d11bfd7aa0ec11d61a8a8aad81d1c9fffedfcdff55f43ba42816c7b57e15f2c1 +SIZE (KDE/plasma/5.15.0/kscreenlocker-5.15.0.tar.xz) = 122200 Index: head/security/plasma5-kscreenlocker/pkg-plist =================================================================== --- head/security/plasma5-kscreenlocker/pkg-plist (revision 492810) +++ head/security/plasma5-kscreenlocker/pkg-plist (revision 492811) @@ -1,167 +1,164 @@ bin/ck-unlock-session include/KScreenLocker/KScreenLocker/KsldApp include/KScreenLocker/KScreenLocker/kscreenlocker_export.h include/KScreenLocker/KScreenLocker/ksldapp.h lib/cmake/KScreenLocker/KScreenLockerConfig.cmake lib/cmake/KScreenLocker/KScreenLockerConfigVersion.cmake lib/cmake/KScreenLocker/KScreenLockerTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KScreenLocker/KScreenLockerTargets.cmake lib/cmake/ScreenSaverDBusInterface/ScreenSaverDBusInterfaceConfig.cmake lib/libKScreenLocker.so lib/libKScreenLocker.so.5 lib/libKScreenLocker.so.%%KDE_PLASMA_VERSION%% @(,,4555) lib/libexec/kcheckpass lib/libexec/kscreenlocker_greet %%QT_PLUGINDIR%%/screenlocker_kcm.so share/dbus-1/interfaces/kf5_org.freedesktop.ScreenSaver.xml share/dbus-1/interfaces/org.kde.screensaver.xml share/kconf_update/kscreenlocker.upd share/kconf_update/ksreenlocker_5_3_separate_autologin.pl share/knotifications5/ksmserver.notifyrc share/kservices5/screenlocker.desktop share/ksmserver/screenlocker/org.kde.passworddialog/metadata.desktop share/locale/ar/LC_MESSAGES/kscreenlocker.mo share/locale/ar/LC_MESSAGES/kscreenlocker_greet.mo share/locale/ar/LC_MESSAGES/screenlocker_kcm.mo -share/locale/ast/LC_MESSAGES/kscreenlocker.mo -share/locale/ast/LC_MESSAGES/kscreenlocker_greet.mo -share/locale/ast/LC_MESSAGES/screenlocker_kcm.mo share/locale/bs/LC_MESSAGES/kscreenlocker.mo share/locale/bs/LC_MESSAGES/kscreenlocker_greet.mo share/locale/bs/LC_MESSAGES/screenlocker_kcm.mo share/locale/ca/LC_MESSAGES/kscreenlocker.mo share/locale/ca/LC_MESSAGES/kscreenlocker_greet.mo share/locale/ca/LC_MESSAGES/screenlocker_kcm.mo share/locale/ca@valencia/LC_MESSAGES/kscreenlocker.mo share/locale/ca@valencia/LC_MESSAGES/kscreenlocker_greet.mo share/locale/ca@valencia/LC_MESSAGES/screenlocker_kcm.mo share/locale/cs/LC_MESSAGES/kscreenlocker.mo share/locale/cs/LC_MESSAGES/kscreenlocker_greet.mo share/locale/cs/LC_MESSAGES/screenlocker_kcm.mo share/locale/da/LC_MESSAGES/kscreenlocker.mo share/locale/da/LC_MESSAGES/kscreenlocker_greet.mo share/locale/da/LC_MESSAGES/screenlocker_kcm.mo share/locale/de/LC_MESSAGES/kscreenlocker.mo share/locale/de/LC_MESSAGES/kscreenlocker_greet.mo share/locale/de/LC_MESSAGES/screenlocker_kcm.mo share/locale/el/LC_MESSAGES/kscreenlocker.mo share/locale/el/LC_MESSAGES/kscreenlocker_greet.mo share/locale/el/LC_MESSAGES/screenlocker_kcm.mo share/locale/en_GB/LC_MESSAGES/kscreenlocker.mo share/locale/en_GB/LC_MESSAGES/kscreenlocker_greet.mo share/locale/en_GB/LC_MESSAGES/screenlocker_kcm.mo share/locale/es/LC_MESSAGES/kscreenlocker.mo share/locale/es/LC_MESSAGES/kscreenlocker_greet.mo share/locale/es/LC_MESSAGES/screenlocker_kcm.mo share/locale/et/LC_MESSAGES/kscreenlocker.mo share/locale/et/LC_MESSAGES/kscreenlocker_greet.mo share/locale/et/LC_MESSAGES/screenlocker_kcm.mo share/locale/eu/LC_MESSAGES/kscreenlocker.mo share/locale/eu/LC_MESSAGES/kscreenlocker_greet.mo share/locale/eu/LC_MESSAGES/screenlocker_kcm.mo share/locale/fi/LC_MESSAGES/kscreenlocker.mo share/locale/fi/LC_MESSAGES/kscreenlocker_greet.mo share/locale/fi/LC_MESSAGES/screenlocker_kcm.mo share/locale/fr/LC_MESSAGES/kscreenlocker.mo share/locale/fr/LC_MESSAGES/kscreenlocker_greet.mo share/locale/fr/LC_MESSAGES/screenlocker_kcm.mo share/locale/ga/LC_MESSAGES/kscreenlocker.mo share/locale/ga/LC_MESSAGES/kscreenlocker_greet.mo share/locale/gl/LC_MESSAGES/kscreenlocker.mo share/locale/gl/LC_MESSAGES/kscreenlocker_greet.mo share/locale/gl/LC_MESSAGES/screenlocker_kcm.mo share/locale/he/LC_MESSAGES/kscreenlocker.mo share/locale/he/LC_MESSAGES/kscreenlocker_greet.mo share/locale/he/LC_MESSAGES/screenlocker_kcm.mo share/locale/hu/LC_MESSAGES/kscreenlocker.mo share/locale/hu/LC_MESSAGES/kscreenlocker_greet.mo share/locale/hu/LC_MESSAGES/screenlocker_kcm.mo share/locale/ia/LC_MESSAGES/kscreenlocker.mo share/locale/ia/LC_MESSAGES/kscreenlocker_greet.mo share/locale/ia/LC_MESSAGES/screenlocker_kcm.mo share/locale/id/LC_MESSAGES/kscreenlocker.mo share/locale/id/LC_MESSAGES/kscreenlocker_greet.mo share/locale/id/LC_MESSAGES/screenlocker_kcm.mo share/locale/it/LC_MESSAGES/kscreenlocker.mo share/locale/it/LC_MESSAGES/kscreenlocker_greet.mo share/locale/it/LC_MESSAGES/screenlocker_kcm.mo share/locale/ja/LC_MESSAGES/kscreenlocker.mo share/locale/ja/LC_MESSAGES/kscreenlocker_greet.mo share/locale/ja/LC_MESSAGES/screenlocker_kcm.mo share/locale/kk/LC_MESSAGES/kscreenlocker.mo share/locale/kk/LC_MESSAGES/kscreenlocker_greet.mo share/locale/ko/LC_MESSAGES/kscreenlocker.mo share/locale/ko/LC_MESSAGES/kscreenlocker_greet.mo share/locale/ko/LC_MESSAGES/screenlocker_kcm.mo share/locale/lt/LC_MESSAGES/kscreenlocker.mo share/locale/lt/LC_MESSAGES/kscreenlocker_greet.mo share/locale/lt/LC_MESSAGES/screenlocker_kcm.mo share/locale/mr/LC_MESSAGES/kscreenlocker.mo share/locale/mr/LC_MESSAGES/kscreenlocker_greet.mo share/locale/nb/LC_MESSAGES/kscreenlocker.mo share/locale/nb/LC_MESSAGES/kscreenlocker_greet.mo share/locale/nb/LC_MESSAGES/screenlocker_kcm.mo share/locale/nds/LC_MESSAGES/kscreenlocker.mo share/locale/nds/LC_MESSAGES/kscreenlocker_greet.mo share/locale/nds/LC_MESSAGES/screenlocker_kcm.mo share/locale/nl/LC_MESSAGES/kscreenlocker.mo share/locale/nl/LC_MESSAGES/kscreenlocker_greet.mo share/locale/nl/LC_MESSAGES/screenlocker_kcm.mo share/locale/nn/LC_MESSAGES/kscreenlocker.mo share/locale/nn/LC_MESSAGES/kscreenlocker_greet.mo share/locale/nn/LC_MESSAGES/screenlocker_kcm.mo share/locale/pa/LC_MESSAGES/kscreenlocker.mo share/locale/pa/LC_MESSAGES/kscreenlocker_greet.mo share/locale/pa/LC_MESSAGES/screenlocker_kcm.mo share/locale/pl/LC_MESSAGES/kscreenlocker.mo share/locale/pl/LC_MESSAGES/kscreenlocker_greet.mo share/locale/pl/LC_MESSAGES/screenlocker_kcm.mo share/locale/pt/LC_MESSAGES/kscreenlocker.mo share/locale/pt/LC_MESSAGES/kscreenlocker_greet.mo share/locale/pt/LC_MESSAGES/screenlocker_kcm.mo share/locale/pt_BR/LC_MESSAGES/kscreenlocker.mo share/locale/pt_BR/LC_MESSAGES/kscreenlocker_greet.mo share/locale/pt_BR/LC_MESSAGES/screenlocker_kcm.mo share/locale/ro/LC_MESSAGES/kscreenlocker.mo share/locale/ro/LC_MESSAGES/kscreenlocker_greet.mo share/locale/ro/LC_MESSAGES/screenlocker_kcm.mo share/locale/ru/LC_MESSAGES/kscreenlocker.mo share/locale/ru/LC_MESSAGES/kscreenlocker_greet.mo share/locale/ru/LC_MESSAGES/screenlocker_kcm.mo share/locale/sk/LC_MESSAGES/kscreenlocker.mo share/locale/sk/LC_MESSAGES/kscreenlocker_greet.mo share/locale/sk/LC_MESSAGES/screenlocker_kcm.mo share/locale/sl/LC_MESSAGES/kscreenlocker.mo share/locale/sl/LC_MESSAGES/kscreenlocker_greet.mo share/locale/sl/LC_MESSAGES/screenlocker_kcm.mo share/locale/sr/LC_MESSAGES/kscreenlocker.mo share/locale/sr/LC_MESSAGES/kscreenlocker_greet.mo share/locale/sr/LC_MESSAGES/screenlocker_kcm.mo share/locale/sr@ijekavian/LC_MESSAGES/kscreenlocker.mo share/locale/sr@ijekavian/LC_MESSAGES/kscreenlocker_greet.mo share/locale/sr@ijekavian/LC_MESSAGES/screenlocker_kcm.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kscreenlocker.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kscreenlocker_greet.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/screenlocker_kcm.mo share/locale/sr@latin/LC_MESSAGES/kscreenlocker.mo share/locale/sr@latin/LC_MESSAGES/kscreenlocker_greet.mo share/locale/sr@latin/LC_MESSAGES/screenlocker_kcm.mo share/locale/sv/LC_MESSAGES/kscreenlocker.mo share/locale/sv/LC_MESSAGES/kscreenlocker_greet.mo share/locale/sv/LC_MESSAGES/screenlocker_kcm.mo share/locale/tr/LC_MESSAGES/kscreenlocker.mo share/locale/tr/LC_MESSAGES/kscreenlocker_greet.mo share/locale/tr/LC_MESSAGES/screenlocker_kcm.mo share/locale/ug/LC_MESSAGES/kscreenlocker.mo share/locale/ug/LC_MESSAGES/kscreenlocker_greet.mo share/locale/uk/LC_MESSAGES/kscreenlocker.mo share/locale/uk/LC_MESSAGES/kscreenlocker_greet.mo share/locale/uk/LC_MESSAGES/screenlocker_kcm.mo share/locale/wa/LC_MESSAGES/kscreenlocker.mo share/locale/wa/LC_MESSAGES/kscreenlocker_greet.mo share/locale/zh_CN/LC_MESSAGES/kscreenlocker.mo share/locale/zh_CN/LC_MESSAGES/kscreenlocker_greet.mo share/locale/zh_CN/LC_MESSAGES/screenlocker_kcm.mo share/locale/zh_TW/LC_MESSAGES/kscreenlocker.mo share/locale/zh_TW/LC_MESSAGES/kscreenlocker_greet.mo share/locale/zh_TW/LC_MESSAGES/screenlocker_kcm.mo Index: head/security/plasma5-ksshaskpass/Makefile =================================================================== --- head/security/plasma5-ksshaskpass/Makefile (revision 492810) +++ head/security/plasma5-ksshaskpass/Makefile (revision 492811) @@ -1,16 +1,15 @@ # $FreeBSD$ PORTNAME= ksshaskpass DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= security kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 ssh-add frontend USES= cmake compiler:c++11-lib cpe gettext kde:5 qt:5 tar:xz USE_KDE= coreaddons doctools ecm i18n wallet widgetsaddons USE_QT= core gui widgets \ buildtools_build qmake_build .include Index: head/security/plasma5-ksshaskpass/distinfo =================================================================== --- head/security/plasma5-ksshaskpass/distinfo (revision 492810) +++ head/security/plasma5-ksshaskpass/distinfo (revision 492811) @@ -1,3 +1,3 @@ -TIMESTAMP = 1547014602 -SHA256 (KDE/plasma/5.14.5/ksshaskpass-5.14.5.tar.xz) = b29987093aea1fae79f7d724daaf5137c83ab2cdb352ded6a5c74f320f11796a -SIZE (KDE/plasma/5.14.5/ksshaskpass-5.14.5.tar.xz) = 21332 +TIMESTAMP = 1549993921 +SHA256 (KDE/plasma/5.15.0/ksshaskpass-5.15.0.tar.xz) = a43479f2448fa3eba5e2417662fe10008547b0672c8748fe1fe3cc377608da34 +SIZE (KDE/plasma/5.15.0/ksshaskpass-5.15.0.tar.xz) = 21176 Index: head/security/plasma5-ksshaskpass/pkg-plist =================================================================== --- head/security/plasma5-ksshaskpass/pkg-plist (revision 492810) +++ head/security/plasma5-ksshaskpass/pkg-plist (revision 492811) @@ -1,45 +1,44 @@ bin/ksshaskpass man/man1/ksshaskpass.1.gz share/locale/ar/LC_MESSAGES/ksshaskpass.mo -share/locale/ast/LC_MESSAGES/ksshaskpass.mo share/locale/bs/LC_MESSAGES/ksshaskpass.mo share/locale/ca/LC_MESSAGES/ksshaskpass.mo share/locale/ca@valencia/LC_MESSAGES/ksshaskpass.mo share/locale/cs/LC_MESSAGES/ksshaskpass.mo share/locale/da/LC_MESSAGES/ksshaskpass.mo share/locale/de/LC_MESSAGES/ksshaskpass.mo share/locale/el/LC_MESSAGES/ksshaskpass.mo share/locale/en_GB/LC_MESSAGES/ksshaskpass.mo share/locale/es/LC_MESSAGES/ksshaskpass.mo share/locale/et/LC_MESSAGES/ksshaskpass.mo share/locale/eu/LC_MESSAGES/ksshaskpass.mo share/locale/fi/LC_MESSAGES/ksshaskpass.mo share/locale/fr/LC_MESSAGES/ksshaskpass.mo share/locale/gl/LC_MESSAGES/ksshaskpass.mo share/locale/he/LC_MESSAGES/ksshaskpass.mo share/locale/ia/LC_MESSAGES/ksshaskpass.mo share/locale/id/LC_MESSAGES/ksshaskpass.mo share/locale/it/LC_MESSAGES/ksshaskpass.mo share/locale/ja/LC_MESSAGES/ksshaskpass.mo share/locale/ko/LC_MESSAGES/ksshaskpass.mo share/locale/lt/LC_MESSAGES/ksshaskpass.mo share/locale/nb/LC_MESSAGES/ksshaskpass.mo share/locale/nl/LC_MESSAGES/ksshaskpass.mo share/locale/nn/LC_MESSAGES/ksshaskpass.mo share/locale/pa/LC_MESSAGES/ksshaskpass.mo share/locale/pl/LC_MESSAGES/ksshaskpass.mo share/locale/pt/LC_MESSAGES/ksshaskpass.mo share/locale/pt_BR/LC_MESSAGES/ksshaskpass.mo share/locale/ro/LC_MESSAGES/ksshaskpass.mo share/locale/ru/LC_MESSAGES/ksshaskpass.mo share/locale/sk/LC_MESSAGES/ksshaskpass.mo share/locale/sl/LC_MESSAGES/ksshaskpass.mo share/locale/sr/LC_MESSAGES/ksshaskpass.mo share/locale/sr@ijekavian/LC_MESSAGES/ksshaskpass.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/ksshaskpass.mo share/locale/sr@latin/LC_MESSAGES/ksshaskpass.mo share/locale/sv/LC_MESSAGES/ksshaskpass.mo share/locale/tr/LC_MESSAGES/ksshaskpass.mo share/locale/uk/LC_MESSAGES/ksshaskpass.mo share/locale/zh_CN/LC_MESSAGES/ksshaskpass.mo share/locale/zh_TW/LC_MESSAGES/ksshaskpass.mo Index: head/security/plasma5-kwallet-pam/Makefile =================================================================== --- head/security/plasma5-kwallet-pam/Makefile (revision 492810) +++ head/security/plasma5-kwallet-pam/Makefile (revision 492811) @@ -1,25 +1,24 @@ # $FreeBSD$ PORTNAME= kwallet-pam DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= security kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 KWallet PAM Integration LIB_DEPENDS= libgcrypt.so:security/libgcrypt \ libgpg-error.so:security/libgpg-error USES= cmake cpe gettext kde:5 qt:5 tar:xz USE_KDE= ecm USE_QT= buildtools_build qmake_build # The qmake dependency is only needed so that kf5-e-c-m can query qmake for # some installation directories. # We explicitly prevent it from looking for qt5-core and specify qmake's path # to avoid needlessly depending on qt5-core. CMAKE_ARGS= -DCMAKE_DISABLE_FIND_PACKAGE_Qt5Core=TRUE \ -DQMAKE_EXECUTABLE:PATH=${QMAKE} .include Index: head/security/plasma5-kwallet-pam/distinfo =================================================================== --- head/security/plasma5-kwallet-pam/distinfo (revision 492810) +++ head/security/plasma5-kwallet-pam/distinfo (revision 492811) @@ -1,3 +1,3 @@ -TIMESTAMP = 1547014602 -SHA256 (KDE/plasma/5.14.5/kwallet-pam-5.14.5.tar.xz) = 68de718cd52b2117f46aa0049136a9f8bffc6f52d4453bc2e8c5e189109372d6 -SIZE (KDE/plasma/5.14.5/kwallet-pam-5.14.5.tar.xz) = 19120 +TIMESTAMP = 1549993921 +SHA256 (KDE/plasma/5.15.0/kwallet-pam-5.15.0.tar.xz) = d3997252a662944a5de59576ffe05b9098300e2026eba3e92f36619dabacda6f +SIZE (KDE/plasma/5.15.0/kwallet-pam-5.15.0.tar.xz) = 19260 Index: head/sysutils/plasma5-discover/Makefile =================================================================== --- head/sysutils/plasma5-discover/Makefile (revision 492810) +++ head/sysutils/plasma5-discover/Makefile (revision 492811) @@ -1,24 +1,23 @@ # $FreeBSD$ PORTNAME= discover DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= sysutils kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 package management tools # TODO: update packagekit-qt5 #LIB_DEPENDS= libpackagekit-qt.so:ports-mgmt/packagekit-qt5 USES= cmake compiler:c++11-lib cpe desktop-file-utils \ gettext kde:5 pkgconfig qt:5 tar:xz USE_KDE= archive attica auth codecs completion config configwidgets \ coreaddons crash dbusaddons ecm i18n iconthemes itemmodels \ itemviews jobwidgets kdeclarative kio kirigami2 newstuff \ notifications package plasma-framework service solid \ textwidgets wallet widgetsaddons xmlgui USE_QT= concurrent core dbus declarative gui network svg testlib widgets xml \ buildtools_build qmake_build .include Index: head/sysutils/plasma5-discover/distinfo =================================================================== --- head/sysutils/plasma5-discover/distinfo (revision 492810) +++ head/sysutils/plasma5-discover/distinfo (revision 492811) @@ -1,3 +1,3 @@ -TIMESTAMP = 1547014604 -SHA256 (KDE/plasma/5.14.5/discover-5.14.5.tar.xz) = ad211d9634ff53fb1a787bdbc5b785149619628be8a1eb1097e3fbb299a0b03f -SIZE (KDE/plasma/5.14.5/discover-5.14.5.tar.xz) = 10432316 +TIMESTAMP = 1549993923 +SHA256 (KDE/plasma/5.15.0/discover-5.15.0.tar.xz) = 897540796fbdca109f96d6b3ed09d58bf921330cea744182a1d3135d63170d11 +SIZE (KDE/plasma/5.15.0/discover-5.15.0.tar.xz) = 10441380 Index: head/sysutils/plasma5-discover/pkg-plist =================================================================== --- head/sysutils/plasma5-discover/pkg-plist (revision 492810) +++ head/sysutils/plasma5-discover/pkg-plist (revision 492811) @@ -1,214 +1,210 @@ bin/plasma-discover etc/xdg/discover.categories etc/xdg/discover_ktexteditor_codesnippets_core.knsrc lib/plasma-discover/libDiscoverCommon.so lib/plasma-discover/libDiscoverNotifiers.so %%QT_PLUGINDIR%%/discover/kns-backend.so %%QT_QMLDIR%%/org/kde/discovernotifier/libDiscoverNotifierDeclarativePlugin.so %%QT_QMLDIR%%/org/kde/discovernotifier/qmldir share/applications/org.kde.discover.desktop share/applications/org.kde.discover.snap.urlhandler.desktop share/applications/org.kde.discover.urlhandler.desktop share/icons/hicolor/128x128/apps/plasmadiscover.png share/icons/hicolor/16x16/apps/plasmadiscover.png share/icons/hicolor/22x22/apps/plasmadiscover.png share/icons/hicolor/32x32/apps/plasmadiscover.png share/icons/hicolor/48x48/apps/plasmadiscover.png share/icons/hicolor/scalable/apps/plasmadiscover.svgz share/knotifications5/discoverabstractnotifier.notifyrc share/kservices5/plasma-applet-org.kde.discovernotifier.desktop share/kxmlgui5/plasmadiscover/plasmadiscoverui.rc share/locale/ar/LC_MESSAGES/libdiscover.mo share/locale/ar/LC_MESSAGES/plasma-discover-notifier.mo share/locale/ar/LC_MESSAGES/plasma-discover.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo -share/locale/ast/LC_MESSAGES/libdiscover.mo -share/locale/ast/LC_MESSAGES/plasma-discover-notifier.mo -share/locale/ast/LC_MESSAGES/plasma-discover.mo -share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo share/locale/bg/LC_MESSAGES/libdiscover.mo share/locale/bs/LC_MESSAGES/libdiscover.mo share/locale/bs/LC_MESSAGES/plasma-discover.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo share/locale/ca/LC_MESSAGES/libdiscover.mo share/locale/ca/LC_MESSAGES/plasma-discover-notifier.mo share/locale/ca/LC_MESSAGES/plasma-discover.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo share/locale/ca@valencia/LC_MESSAGES/libdiscover.mo share/locale/ca@valencia/LC_MESSAGES/plasma-discover-notifier.mo share/locale/ca@valencia/LC_MESSAGES/plasma-discover.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo share/locale/cs/LC_MESSAGES/libdiscover.mo share/locale/cs/LC_MESSAGES/plasma-discover-notifier.mo share/locale/cs/LC_MESSAGES/plasma-discover.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo share/locale/da/LC_MESSAGES/libdiscover.mo share/locale/da/LC_MESSAGES/plasma-discover-notifier.mo share/locale/da/LC_MESSAGES/plasma-discover.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo share/locale/de/LC_MESSAGES/libdiscover.mo share/locale/de/LC_MESSAGES/plasma-discover-notifier.mo share/locale/de/LC_MESSAGES/plasma-discover.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo share/locale/el/LC_MESSAGES/libdiscover.mo share/locale/el/LC_MESSAGES/plasma-discover-notifier.mo share/locale/el/LC_MESSAGES/plasma-discover.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo share/locale/en_GB/LC_MESSAGES/libdiscover.mo share/locale/en_GB/LC_MESSAGES/plasma-discover-notifier.mo share/locale/en_GB/LC_MESSAGES/plasma-discover.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo share/locale/es/LC_MESSAGES/libdiscover.mo share/locale/es/LC_MESSAGES/plasma-discover-notifier.mo share/locale/es/LC_MESSAGES/plasma-discover.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo share/locale/et/LC_MESSAGES/libdiscover.mo share/locale/et/LC_MESSAGES/plasma-discover-notifier.mo share/locale/et/LC_MESSAGES/plasma-discover.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo share/locale/eu/LC_MESSAGES/libdiscover.mo share/locale/eu/LC_MESSAGES/plasma-discover-notifier.mo share/locale/eu/LC_MESSAGES/plasma-discover.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo share/locale/fi/LC_MESSAGES/libdiscover.mo share/locale/fi/LC_MESSAGES/plasma-discover-notifier.mo share/locale/fi/LC_MESSAGES/plasma-discover.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo share/locale/fr/LC_MESSAGES/libdiscover.mo share/locale/fr/LC_MESSAGES/plasma-discover-notifier.mo share/locale/fr/LC_MESSAGES/plasma-discover.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo share/locale/ga/LC_MESSAGES/libdiscover.mo share/locale/ga/LC_MESSAGES/plasma-discover.mo share/locale/gl/LC_MESSAGES/libdiscover.mo share/locale/gl/LC_MESSAGES/plasma-discover-notifier.mo share/locale/gl/LC_MESSAGES/plasma-discover.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo share/locale/he/LC_MESSAGES/libdiscover.mo share/locale/he/LC_MESSAGES/plasma-discover-notifier.mo share/locale/he/LC_MESSAGES/plasma-discover.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo share/locale/hu/LC_MESSAGES/libdiscover.mo share/locale/hu/LC_MESSAGES/plasma-discover-notifier.mo share/locale/hu/LC_MESSAGES/plasma-discover.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo share/locale/ia/LC_MESSAGES/libdiscover.mo share/locale/ia/LC_MESSAGES/plasma-discover-notifier.mo share/locale/ia/LC_MESSAGES/plasma-discover.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo share/locale/id/LC_MESSAGES/libdiscover.mo share/locale/id/LC_MESSAGES/plasma-discover-notifier.mo share/locale/id/LC_MESSAGES/plasma-discover.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo share/locale/it/LC_MESSAGES/libdiscover.mo share/locale/it/LC_MESSAGES/plasma-discover-notifier.mo share/locale/it/LC_MESSAGES/plasma-discover.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo share/locale/ja/LC_MESSAGES/libdiscover.mo share/locale/ja/LC_MESSAGES/plasma-discover-notifier.mo share/locale/ja/LC_MESSAGES/plasma-discover.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo share/locale/kk/LC_MESSAGES/libdiscover.mo share/locale/kk/LC_MESSAGES/plasma-discover.mo share/locale/ko/LC_MESSAGES/libdiscover.mo share/locale/ko/LC_MESSAGES/plasma-discover-notifier.mo share/locale/ko/LC_MESSAGES/plasma-discover.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo share/locale/lt/LC_MESSAGES/libdiscover.mo share/locale/lt/LC_MESSAGES/plasma-discover-notifier.mo share/locale/lt/LC_MESSAGES/plasma-discover.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo share/locale/mr/LC_MESSAGES/libdiscover.mo share/locale/mr/LC_MESSAGES/plasma-discover.mo share/locale/nb/LC_MESSAGES/libdiscover.mo share/locale/nb/LC_MESSAGES/plasma-discover-notifier.mo share/locale/nb/LC_MESSAGES/plasma-discover.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo share/locale/nds/LC_MESSAGES/libdiscover.mo share/locale/nds/LC_MESSAGES/plasma-discover.mo share/locale/nl/LC_MESSAGES/libdiscover.mo share/locale/nl/LC_MESSAGES/plasma-discover-notifier.mo share/locale/nl/LC_MESSAGES/plasma-discover.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo share/locale/nn/LC_MESSAGES/libdiscover.mo share/locale/nn/LC_MESSAGES/plasma-discover-notifier.mo share/locale/nn/LC_MESSAGES/plasma-discover.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo share/locale/pa/LC_MESSAGES/libdiscover.mo share/locale/pa/LC_MESSAGES/plasma-discover-notifier.mo share/locale/pa/LC_MESSAGES/plasma-discover.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo share/locale/pl/LC_MESSAGES/libdiscover.mo share/locale/pl/LC_MESSAGES/plasma-discover-notifier.mo share/locale/pl/LC_MESSAGES/plasma-discover.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo share/locale/pt/LC_MESSAGES/libdiscover.mo share/locale/pt/LC_MESSAGES/plasma-discover-notifier.mo share/locale/pt/LC_MESSAGES/plasma-discover.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo share/locale/pt_BR/LC_MESSAGES/libdiscover.mo share/locale/pt_BR/LC_MESSAGES/plasma-discover-notifier.mo share/locale/pt_BR/LC_MESSAGES/plasma-discover.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo share/locale/ro/LC_MESSAGES/libdiscover.mo share/locale/ro/LC_MESSAGES/plasma-discover-notifier.mo share/locale/ro/LC_MESSAGES/plasma-discover.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo share/locale/ru/LC_MESSAGES/libdiscover.mo share/locale/ru/LC_MESSAGES/plasma-discover-notifier.mo share/locale/ru/LC_MESSAGES/plasma-discover.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo share/locale/sk/LC_MESSAGES/libdiscover.mo share/locale/sk/LC_MESSAGES/plasma-discover-notifier.mo share/locale/sk/LC_MESSAGES/plasma-discover.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo share/locale/sl/LC_MESSAGES/libdiscover.mo share/locale/sl/LC_MESSAGES/plasma-discover-notifier.mo share/locale/sl/LC_MESSAGES/plasma-discover.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo share/locale/sr/LC_MESSAGES/libdiscover.mo share/locale/sr/LC_MESSAGES/plasma-discover-notifier.mo share/locale/sr/LC_MESSAGES/plasma-discover.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo share/locale/sr@ijekavian/LC_MESSAGES/libdiscover.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma-discover-notifier.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma-discover.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libdiscover.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma-discover-notifier.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma-discover.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo share/locale/sr@latin/LC_MESSAGES/libdiscover.mo share/locale/sr@latin/LC_MESSAGES/plasma-discover-notifier.mo share/locale/sr@latin/LC_MESSAGES/plasma-discover.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo share/locale/sv/LC_MESSAGES/libdiscover.mo share/locale/sv/LC_MESSAGES/plasma-discover-notifier.mo share/locale/sv/LC_MESSAGES/plasma-discover.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo share/locale/tr/LC_MESSAGES/libdiscover.mo share/locale/tr/LC_MESSAGES/plasma-discover-notifier.mo share/locale/tr/LC_MESSAGES/plasma-discover.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo share/locale/ug/LC_MESSAGES/libdiscover.mo share/locale/ug/LC_MESSAGES/plasma-discover.mo share/locale/uk/LC_MESSAGES/libdiscover.mo share/locale/uk/LC_MESSAGES/plasma-discover-notifier.mo share/locale/uk/LC_MESSAGES/plasma-discover.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo share/locale/vi/LC_MESSAGES/libdiscover.mo share/locale/vi/LC_MESSAGES/plasma-discover.mo share/locale/zh_CN/LC_MESSAGES/libdiscover.mo share/locale/zh_CN/LC_MESSAGES/plasma-discover-notifier.mo share/locale/zh_CN/LC_MESSAGES/plasma-discover.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo share/locale/zh_TW/LC_MESSAGES/libdiscover.mo share/locale/zh_TW/LC_MESSAGES/plasma-discover-notifier.mo share/locale/zh_TW/LC_MESSAGES/plasma-discover.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.discovernotifier.mo share/metainfo/org.kde.discover.appdata.xml share/metainfo/org.kde.discovernotifier.appdata.xml share/plasma/plasmoids/org.kde.discovernotifier/contents/ui/Full.qml share/plasma/plasmoids/org.kde.discovernotifier/contents/ui/main.qml share/plasma/plasmoids/org.kde.discovernotifier/metadata.desktop share/plasma/plasmoids/org.kde.discovernotifier/metadata.json Index: head/sysutils/plasma5-drkonqi/Makefile =================================================================== --- head/sysutils/plasma5-drkonqi/Makefile (revision 492810) +++ head/sysutils/plasma5-drkonqi/Makefile (revision 492811) @@ -1,18 +1,17 @@ # $FreeBSD$ PORTNAME= drkonqi DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= sysutils kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 crash handler USES= cmake compiler:c++11-lang kde:5 pkgconfig qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons \ crash i18n idletime jobwidgets kio notifications \ service wallet widgetsaddons xmlrpcclient USE_QT= concurrent core dbus gui network widgets x11extras xml \ buildtools_build qmake_build .include Index: head/sysutils/plasma5-drkonqi/distinfo =================================================================== --- head/sysutils/plasma5-drkonqi/distinfo (revision 492810) +++ head/sysutils/plasma5-drkonqi/distinfo (revision 492811) @@ -1,3 +1,3 @@ -TIMESTAMP = 1547014605 -SHA256 (KDE/plasma/5.14.5/drkonqi-5.14.5.tar.xz) = e8a3d1912d5358eb4041ae959bde41923590aa09fbba04250f222787cca8fe75 -SIZE (KDE/plasma/5.14.5/drkonqi-5.14.5.tar.xz) = 737580 +TIMESTAMP = 1549993924 +SHA256 (KDE/plasma/5.15.0/drkonqi-5.15.0.tar.xz) = 49cf8434c3e3593b95e2f5ae416d261f1374a9b4391d9bebd0d713a27c8834ce +SIZE (KDE/plasma/5.15.0/drkonqi-5.15.0.tar.xz) = 738460 Index: head/sysutils/plasma5-drkonqi/pkg-plist =================================================================== --- head/sysutils/plasma5-drkonqi/pkg-plist (revision 492810) +++ head/sysutils/plasma5-drkonqi/pkg-plist (revision 492811) @@ -1,98 +1,100 @@ etc/xdg/drkonqi.categories lib/libexec/drkonqi share/applications/org.kde.drkonqi.desktop %%DATADIR%%/debuggers/external/gdbrc %%DATADIR%%/debuggers/external/kdbgrc %%DATADIR%%/debuggers/internal/dbxrc %%DATADIR%%/debuggers/internal/gdbrc %%DATADIR%%/debuggers/internal/kdbgwinrc +%%DATADIR%%/debuggers/external.mac/lldbrc +%%DATADIR%%/debuggers/external/lldbrc +%%DATADIR%%/debuggers/internal/lldbrc %%DATADIR%%/mappings share/locale/af/LC_MESSAGES/drkonqi5.mo share/locale/ar/LC_MESSAGES/drkonqi5.mo -share/locale/ast/LC_MESSAGES/drkonqi5.mo share/locale/be/LC_MESSAGES/drkonqi5.mo share/locale/bg/LC_MESSAGES/drkonqi5.mo share/locale/bn/LC_MESSAGES/drkonqi5.mo share/locale/bn_IN/LC_MESSAGES/drkonqi5.mo share/locale/br/LC_MESSAGES/drkonqi5.mo share/locale/bs/LC_MESSAGES/drkonqi5.mo share/locale/ca/LC_MESSAGES/drkonqi5.mo share/locale/ca@valencia/LC_MESSAGES/drkonqi5.mo share/locale/cs/LC_MESSAGES/drkonqi5.mo share/locale/csb/LC_MESSAGES/drkonqi5.mo share/locale/cy/LC_MESSAGES/drkonqi5.mo share/locale/da/LC_MESSAGES/drkonqi5.mo share/locale/de/LC_MESSAGES/drkonqi5.mo share/locale/el/LC_MESSAGES/drkonqi5.mo share/locale/en_GB/LC_MESSAGES/drkonqi5.mo share/locale/eo/LC_MESSAGES/drkonqi5.mo share/locale/es/LC_MESSAGES/drkonqi5.mo share/locale/et/LC_MESSAGES/drkonqi5.mo share/locale/eu/LC_MESSAGES/drkonqi5.mo share/locale/fa/LC_MESSAGES/drkonqi5.mo share/locale/fi/LC_MESSAGES/drkonqi5.mo share/locale/fr/LC_MESSAGES/drkonqi5.mo share/locale/fy/LC_MESSAGES/drkonqi5.mo share/locale/ga/LC_MESSAGES/drkonqi5.mo share/locale/gl/LC_MESSAGES/drkonqi5.mo share/locale/gu/LC_MESSAGES/drkonqi5.mo share/locale/he/LC_MESSAGES/drkonqi5.mo share/locale/hi/LC_MESSAGES/drkonqi5.mo share/locale/hne/LC_MESSAGES/drkonqi5.mo share/locale/hr/LC_MESSAGES/drkonqi5.mo share/locale/hsb/LC_MESSAGES/drkonqi5.mo share/locale/hu/LC_MESSAGES/drkonqi5.mo share/locale/ia/LC_MESSAGES/drkonqi5.mo share/locale/id/LC_MESSAGES/drkonqi5.mo share/locale/is/LC_MESSAGES/drkonqi5.mo share/locale/it/LC_MESSAGES/drkonqi5.mo share/locale/ja/LC_MESSAGES/drkonqi5.mo share/locale/kk/LC_MESSAGES/drkonqi5.mo share/locale/km/LC_MESSAGES/drkonqi5.mo share/locale/kn/LC_MESSAGES/drkonqi5.mo share/locale/ko/LC_MESSAGES/drkonqi5.mo share/locale/ku/LC_MESSAGES/drkonqi5.mo share/locale/lt/LC_MESSAGES/drkonqi5.mo share/locale/lv/LC_MESSAGES/drkonqi5.mo share/locale/mai/LC_MESSAGES/drkonqi5.mo share/locale/mk/LC_MESSAGES/drkonqi5.mo share/locale/ml/LC_MESSAGES/drkonqi5.mo share/locale/mr/LC_MESSAGES/drkonqi5.mo share/locale/ms/LC_MESSAGES/drkonqi5.mo share/locale/nb/LC_MESSAGES/drkonqi5.mo share/locale/nds/LC_MESSAGES/drkonqi5.mo share/locale/ne/LC_MESSAGES/drkonqi5.mo share/locale/nl/LC_MESSAGES/drkonqi5.mo share/locale/nn/LC_MESSAGES/drkonqi5.mo share/locale/oc/LC_MESSAGES/drkonqi5.mo share/locale/or/LC_MESSAGES/drkonqi5.mo share/locale/pa/LC_MESSAGES/drkonqi5.mo share/locale/pl/LC_MESSAGES/drkonqi5.mo share/locale/pt/LC_MESSAGES/drkonqi5.mo share/locale/pt_BR/LC_MESSAGES/drkonqi5.mo share/locale/ro/LC_MESSAGES/drkonqi5.mo share/locale/ru/LC_MESSAGES/drkonqi5.mo share/locale/se/LC_MESSAGES/drkonqi5.mo share/locale/si/LC_MESSAGES/drkonqi5.mo share/locale/sk/LC_MESSAGES/drkonqi5.mo share/locale/sl/LC_MESSAGES/drkonqi5.mo share/locale/sq/LC_MESSAGES/drkonqi5.mo share/locale/sr/LC_MESSAGES/drkonqi5.mo share/locale/sr@ijekavian/LC_MESSAGES/drkonqi5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/drkonqi5.mo share/locale/sr@latin/LC_MESSAGES/drkonqi5.mo share/locale/sv/LC_MESSAGES/drkonqi5.mo share/locale/ta/LC_MESSAGES/drkonqi5.mo share/locale/te/LC_MESSAGES/drkonqi5.mo share/locale/tg/LC_MESSAGES/drkonqi5.mo share/locale/th/LC_MESSAGES/drkonqi5.mo share/locale/tr/LC_MESSAGES/drkonqi5.mo share/locale/ug/LC_MESSAGES/drkonqi5.mo share/locale/uk/LC_MESSAGES/drkonqi5.mo share/locale/uz/LC_MESSAGES/drkonqi5.mo share/locale/uz@cyrillic/LC_MESSAGES/drkonqi5.mo share/locale/vi/LC_MESSAGES/drkonqi5.mo share/locale/wa/LC_MESSAGES/drkonqi5.mo share/locale/xh/LC_MESSAGES/drkonqi5.mo share/locale/zh_CN/LC_MESSAGES/drkonqi5.mo share/locale/zh_TW/LC_MESSAGES/drkonqi5.mo Index: head/sysutils/plasma5-kde-cli-tools/Makefile =================================================================== --- head/sysutils/plasma5-kde-cli-tools/Makefile (revision 492810) +++ head/sysutils/plasma5-kde-cli-tools/Makefile (revision 492811) @@ -1,24 +1,23 @@ # $FreeBSD$ PORTNAME= kde-cli-tools DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= sysutils kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 non-interactive system tools CONFLICTS_INSTALL= kde-runtime-kde4 USES= cmake compiler:c++11-lib cpe gettext kde:5 qt:5 tar:xz USE_KDE= activities auth bookmarks codecs completion config configwidgets \ coreaddons crash ecm emoticons guiaddons i18n iconthemes init \ itemmodels itemviews jobwidgets kcmutils kdelibs4support kdesu \ kio notifications parts plasma-workspace pty service solid sonnet \ textwidgets unitconversion widgetsaddons windowsystem xmlgui USE_QT= concurrent core dbus gui network printsupport svg testlib widgets \ x11extras xml \ buildtools_build qmake_build USE_XORG= x11 .include Index: head/sysutils/plasma5-kde-cli-tools/distinfo =================================================================== --- head/sysutils/plasma5-kde-cli-tools/distinfo (revision 492810) +++ head/sysutils/plasma5-kde-cli-tools/distinfo (revision 492811) @@ -1,3 +1,3 @@ -TIMESTAMP = 1547014605 -SHA256 (KDE/plasma/5.14.5/kde-cli-tools-5.14.5.tar.xz) = 9626655df213c3b386f4ba0d16ab523bc97d05b6a1dcb02c3b001345b1b4b906 -SIZE (KDE/plasma/5.14.5/kde-cli-tools-5.14.5.tar.xz) = 584812 +TIMESTAMP = 1549993925 +SHA256 (KDE/plasma/5.15.0/kde-cli-tools-5.15.0.tar.xz) = a0a5c175b9a5908d765bd81fe21c345eeeb8d15473339bb3e4119afca2a5c9a0 +SIZE (KDE/plasma/5.15.0/kde-cli-tools-5.15.0.tar.xz) = 585700 Index: head/sysutils/plasma5-kde-cli-tools/pkg-plist =================================================================== --- head/sysutils/plasma5-kde-cli-tools/pkg-plist (revision 492810) +++ head/sysutils/plasma5-kde-cli-tools/pkg-plist (revision 492811) @@ -1,723 +1,715 @@ bin/kbroadcastnotification bin/kcmshell5 bin/kde-open5 bin/kdecp5 bin/kdemv5 bin/keditfiletype5 bin/kioclient5 bin/kmimetypefinder5 bin/kstart5 bin/ksvgtopng5 bin/ktraderclient5 lib/libexec/kf5/kdeeject lib/libexec/kf5/kdesu lib/libkdeinit5_kcmshell5.so %%QT_PLUGINDIR%%/kcm_filetypes.so man/ca/man1/kdesu.1.gz man/de/man1/kdesu.1.gz man/es/man1/kdesu.1.gz man/et/man1/kdesu.1.gz man/it/man1/kdesu.1.gz man/man1/kdesu.1.gz man/nb/man1/kdesu.1.gz man/nl/man1/kdesu.1.gz man/pt/man1/kdesu.1.gz man/pt_BR/man1/kdesu.1.gz man/ru/man1/kdesu.1.gz man/sr/man1/kdesu.1.gz man/sr@latin/man1/kdesu.1.gz man/sv/man1/kdesu.1.gz man/uk/man1/kdesu.1.gz share/doc/HTML/ca/kcontrol5/filetypes/index.cache.bz2 share/doc/HTML/ca/kcontrol5/filetypes/index.docbook share/doc/HTML/ca/kdesu/index.cache.bz2 share/doc/HTML/ca/kdesu/index.docbook share/doc/HTML/de/kcontrol5/filetypes/index.cache.bz2 share/doc/HTML/de/kcontrol5/filetypes/index.docbook share/doc/HTML/de/kdesu/index.cache.bz2 share/doc/HTML/de/kdesu/index.docbook share/doc/HTML/en/kcontrol5/filetypes/index.cache.bz2 share/doc/HTML/en/kcontrol5/filetypes/index.docbook share/doc/HTML/en/kdesu/index.cache.bz2 share/doc/HTML/en/kdesu/index.docbook share/doc/HTML/es/kcontrol5/filetypes/index.cache.bz2 share/doc/HTML/es/kcontrol5/filetypes/index.docbook share/doc/HTML/es/kdesu/index.cache.bz2 share/doc/HTML/es/kdesu/index.docbook share/doc/HTML/et/kdesu/index.cache.bz2 share/doc/HTML/et/kdesu/index.docbook share/doc/HTML/it/kcontrol5/filetypes/index.cache.bz2 share/doc/HTML/it/kcontrol5/filetypes/index.docbook share/doc/HTML/it/kdesu/index.cache.bz2 share/doc/HTML/it/kdesu/index.docbook share/doc/HTML/nl/kcontrol5/filetypes/index.cache.bz2 share/doc/HTML/nl/kcontrol5/filetypes/index.docbook share/doc/HTML/nl/kdesu/index.cache.bz2 share/doc/HTML/nl/kdesu/index.docbook share/doc/HTML/pt/kcontrol5/filetypes/index.cache.bz2 share/doc/HTML/pt/kcontrol5/filetypes/index.docbook share/doc/HTML/pt/kdesu/index.cache.bz2 share/doc/HTML/pt/kdesu/index.docbook share/doc/HTML/pt_BR/kcontrol5/filetypes/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol5/filetypes/index.docbook share/doc/HTML/pt_BR/kdesu/index.cache.bz2 share/doc/HTML/pt_BR/kdesu/index.docbook share/doc/HTML/ru/kcontrol5/filetypes/index.cache.bz2 share/doc/HTML/ru/kcontrol5/filetypes/index.docbook share/doc/HTML/ru/kdesu/index.cache.bz2 share/doc/HTML/ru/kdesu/index.docbook share/doc/HTML/sr/kcontrol5/filetypes/index.cache.bz2 share/doc/HTML/sr/kcontrol5/filetypes/index.docbook share/doc/HTML/sr/kdesu/index.cache.bz2 share/doc/HTML/sr/kdesu/index.docbook share/doc/HTML/sr@latin/kcontrol5/filetypes/index.cache.bz2 share/doc/HTML/sr@latin/kcontrol5/filetypes/index.docbook share/doc/HTML/sr@latin/kdesu/index.cache.bz2 share/doc/HTML/sr@latin/kdesu/index.docbook share/doc/HTML/sv/kcontrol5/filetypes/index.cache.bz2 share/doc/HTML/sv/kcontrol5/filetypes/index.docbook share/doc/HTML/sv/kdesu/index.cache.bz2 share/doc/HTML/sv/kdesu/index.docbook share/doc/HTML/uk/kcontrol5/filetypes/index.cache.bz2 share/doc/HTML/uk/kcontrol5/filetypes/index.docbook share/doc/HTML/uk/kdesu/index.cache.bz2 share/doc/HTML/uk/kdesu/index.docbook share/kservices5/filetypes.desktop share/locale/af/LC_MESSAGES/kcm5_filetypes.mo share/locale/af/LC_MESSAGES/kcmshell5.mo share/locale/af/LC_MESSAGES/kdesu5.mo share/locale/af/LC_MESSAGES/kstart5.mo share/locale/ar/LC_MESSAGES/kcm5_filetypes.mo share/locale/ar/LC_MESSAGES/kcmshell5.mo share/locale/ar/LC_MESSAGES/kdesu5.mo share/locale/ar/LC_MESSAGES/kioclient5.mo share/locale/ar/LC_MESSAGES/kmimetypefinder5.mo share/locale/ar/LC_MESSAGES/kstart5.mo share/locale/ar/LC_MESSAGES/ktraderclient5.mo -share/locale/ast/LC_MESSAGES/kbroadcastnotification.mo -share/locale/ast/LC_MESSAGES/kcm5_filetypes.mo -share/locale/ast/LC_MESSAGES/kcmshell5.mo -share/locale/ast/LC_MESSAGES/kdesu5.mo -share/locale/ast/LC_MESSAGES/kioclient5.mo -share/locale/ast/LC_MESSAGES/kmimetypefinder5.mo -share/locale/ast/LC_MESSAGES/kstart5.mo -share/locale/ast/LC_MESSAGES/ktraderclient5.mo share/locale/be/LC_MESSAGES/kcm5_filetypes.mo share/locale/be/LC_MESSAGES/kcmshell5.mo share/locale/be/LC_MESSAGES/kdesu5.mo share/locale/be/LC_MESSAGES/kioclient5.mo share/locale/be/LC_MESSAGES/kmimetypefinder5.mo share/locale/be/LC_MESSAGES/kstart5.mo share/locale/be/LC_MESSAGES/ktraderclient5.mo share/locale/be@latin/LC_MESSAGES/kcm5_filetypes.mo share/locale/be@latin/LC_MESSAGES/kdesu5.mo share/locale/be@latin/LC_MESSAGES/kmimetypefinder5.mo share/locale/be@latin/LC_MESSAGES/kstart5.mo share/locale/bg/LC_MESSAGES/kcm5_filetypes.mo share/locale/bg/LC_MESSAGES/kcmshell5.mo share/locale/bg/LC_MESSAGES/kdesu5.mo share/locale/bg/LC_MESSAGES/kioclient5.mo share/locale/bg/LC_MESSAGES/kmimetypefinder5.mo share/locale/bg/LC_MESSAGES/kstart5.mo share/locale/bg/LC_MESSAGES/ktraderclient5.mo share/locale/bn/LC_MESSAGES/kcm5_filetypes.mo share/locale/bn/LC_MESSAGES/kcmshell5.mo share/locale/bn/LC_MESSAGES/kstart5.mo share/locale/bn_IN/LC_MESSAGES/kcm5_filetypes.mo share/locale/bn_IN/LC_MESSAGES/kcmshell5.mo share/locale/bn_IN/LC_MESSAGES/kdesu5.mo share/locale/bn_IN/LC_MESSAGES/kioclient5.mo share/locale/bn_IN/LC_MESSAGES/kmimetypefinder5.mo share/locale/bn_IN/LC_MESSAGES/kstart5.mo share/locale/bn_IN/LC_MESSAGES/ktraderclient5.mo share/locale/br/LC_MESSAGES/kcm5_filetypes.mo share/locale/br/LC_MESSAGES/kcmshell5.mo share/locale/br/LC_MESSAGES/kdesu5.mo share/locale/br/LC_MESSAGES/kstart5.mo share/locale/bs/LC_MESSAGES/kcm5_filetypes.mo share/locale/bs/LC_MESSAGES/kcmshell5.mo share/locale/bs/LC_MESSAGES/kdesu5.mo share/locale/bs/LC_MESSAGES/kioclient5.mo share/locale/bs/LC_MESSAGES/kmimetypefinder5.mo share/locale/bs/LC_MESSAGES/kstart5.mo share/locale/bs/LC_MESSAGES/ktraderclient5.mo share/locale/ca/LC_MESSAGES/kbroadcastnotification.mo share/locale/ca/LC_MESSAGES/kcm5_filetypes.mo share/locale/ca/LC_MESSAGES/kcmshell5.mo share/locale/ca/LC_MESSAGES/kdesu5.mo share/locale/ca/LC_MESSAGES/kioclient5.mo share/locale/ca/LC_MESSAGES/kmimetypefinder5.mo share/locale/ca/LC_MESSAGES/kstart5.mo share/locale/ca/LC_MESSAGES/ktraderclient5.mo share/locale/ca@valencia/LC_MESSAGES/kbroadcastnotification.mo share/locale/ca@valencia/LC_MESSAGES/kcm5_filetypes.mo share/locale/ca@valencia/LC_MESSAGES/kcmshell5.mo share/locale/ca@valencia/LC_MESSAGES/kdesu5.mo share/locale/ca@valencia/LC_MESSAGES/kioclient5.mo share/locale/ca@valencia/LC_MESSAGES/kmimetypefinder5.mo share/locale/ca@valencia/LC_MESSAGES/kstart5.mo share/locale/ca@valencia/LC_MESSAGES/ktraderclient5.mo share/locale/cs/LC_MESSAGES/kbroadcastnotification.mo share/locale/cs/LC_MESSAGES/kcm5_filetypes.mo share/locale/cs/LC_MESSAGES/kcmshell5.mo share/locale/cs/LC_MESSAGES/kdesu5.mo share/locale/cs/LC_MESSAGES/kioclient5.mo share/locale/cs/LC_MESSAGES/kmimetypefinder5.mo share/locale/cs/LC_MESSAGES/kstart5.mo share/locale/cs/LC_MESSAGES/ktraderclient5.mo share/locale/csb/LC_MESSAGES/kcm5_filetypes.mo share/locale/csb/LC_MESSAGES/kcmshell5.mo share/locale/csb/LC_MESSAGES/kdesu5.mo share/locale/csb/LC_MESSAGES/kioclient5.mo share/locale/csb/LC_MESSAGES/kmimetypefinder5.mo share/locale/csb/LC_MESSAGES/kstart5.mo share/locale/csb/LC_MESSAGES/ktraderclient5.mo share/locale/cy/LC_MESSAGES/kcm5_filetypes.mo share/locale/cy/LC_MESSAGES/kcmshell5.mo share/locale/cy/LC_MESSAGES/kdesu5.mo share/locale/cy/LC_MESSAGES/kstart5.mo share/locale/da/LC_MESSAGES/kbroadcastnotification.mo share/locale/da/LC_MESSAGES/kcm5_filetypes.mo share/locale/da/LC_MESSAGES/kcmshell5.mo share/locale/da/LC_MESSAGES/kdesu5.mo share/locale/da/LC_MESSAGES/kioclient5.mo share/locale/da/LC_MESSAGES/kmimetypefinder5.mo share/locale/da/LC_MESSAGES/kstart5.mo share/locale/da/LC_MESSAGES/ktraderclient5.mo share/locale/de/LC_MESSAGES/kbroadcastnotification.mo share/locale/de/LC_MESSAGES/kcm5_filetypes.mo share/locale/de/LC_MESSAGES/kcmshell5.mo share/locale/de/LC_MESSAGES/kdesu5.mo share/locale/de/LC_MESSAGES/kioclient5.mo share/locale/de/LC_MESSAGES/kmimetypefinder5.mo share/locale/de/LC_MESSAGES/kstart5.mo share/locale/de/LC_MESSAGES/ktraderclient5.mo share/locale/el/LC_MESSAGES/kcm5_filetypes.mo share/locale/el/LC_MESSAGES/kcmshell5.mo share/locale/el/LC_MESSAGES/kdesu5.mo share/locale/el/LC_MESSAGES/kioclient5.mo share/locale/el/LC_MESSAGES/kmimetypefinder5.mo share/locale/el/LC_MESSAGES/kstart5.mo share/locale/el/LC_MESSAGES/ktraderclient5.mo share/locale/en_GB/LC_MESSAGES/kbroadcastnotification.mo share/locale/en_GB/LC_MESSAGES/kcm5_filetypes.mo share/locale/en_GB/LC_MESSAGES/kcmshell5.mo share/locale/en_GB/LC_MESSAGES/kdesu5.mo share/locale/en_GB/LC_MESSAGES/kioclient5.mo share/locale/en_GB/LC_MESSAGES/kmimetypefinder5.mo share/locale/en_GB/LC_MESSAGES/kstart5.mo share/locale/en_GB/LC_MESSAGES/ktraderclient5.mo share/locale/eo/LC_MESSAGES/kcm5_filetypes.mo share/locale/eo/LC_MESSAGES/kcmshell5.mo share/locale/eo/LC_MESSAGES/kdesu5.mo share/locale/eo/LC_MESSAGES/kioclient5.mo share/locale/eo/LC_MESSAGES/kmimetypefinder5.mo share/locale/eo/LC_MESSAGES/kstart5.mo share/locale/eo/LC_MESSAGES/ktraderclient5.mo share/locale/es/LC_MESSAGES/kbroadcastnotification.mo share/locale/es/LC_MESSAGES/kcm5_filetypes.mo share/locale/es/LC_MESSAGES/kcmshell5.mo share/locale/es/LC_MESSAGES/kdesu5.mo share/locale/es/LC_MESSAGES/kioclient5.mo share/locale/es/LC_MESSAGES/kmimetypefinder5.mo share/locale/es/LC_MESSAGES/kstart5.mo share/locale/es/LC_MESSAGES/ktraderclient5.mo share/locale/et/LC_MESSAGES/kcm5_filetypes.mo share/locale/et/LC_MESSAGES/kcmshell5.mo share/locale/et/LC_MESSAGES/kdesu5.mo share/locale/et/LC_MESSAGES/kioclient5.mo share/locale/et/LC_MESSAGES/kmimetypefinder5.mo share/locale/et/LC_MESSAGES/kstart5.mo share/locale/et/LC_MESSAGES/ktraderclient5.mo share/locale/eu/LC_MESSAGES/kbroadcastnotification.mo share/locale/eu/LC_MESSAGES/kcm5_filetypes.mo share/locale/eu/LC_MESSAGES/kcmshell5.mo share/locale/eu/LC_MESSAGES/kdesu5.mo share/locale/eu/LC_MESSAGES/kioclient5.mo share/locale/eu/LC_MESSAGES/kmimetypefinder5.mo share/locale/eu/LC_MESSAGES/kstart5.mo share/locale/eu/LC_MESSAGES/ktraderclient5.mo share/locale/fa/LC_MESSAGES/kcm5_filetypes.mo share/locale/fa/LC_MESSAGES/kcmshell5.mo share/locale/fa/LC_MESSAGES/kdesu5.mo share/locale/fa/LC_MESSAGES/kioclient5.mo share/locale/fa/LC_MESSAGES/kmimetypefinder5.mo share/locale/fa/LC_MESSAGES/kstart5.mo share/locale/fa/LC_MESSAGES/ktraderclient5.mo share/locale/fi/LC_MESSAGES/kbroadcastnotification.mo share/locale/fi/LC_MESSAGES/kcm5_filetypes.mo share/locale/fi/LC_MESSAGES/kcmshell5.mo share/locale/fi/LC_MESSAGES/kdesu5.mo share/locale/fi/LC_MESSAGES/kioclient5.mo share/locale/fi/LC_MESSAGES/kmimetypefinder5.mo share/locale/fi/LC_MESSAGES/kstart5.mo share/locale/fi/LC_MESSAGES/ktraderclient5.mo share/locale/fr/LC_MESSAGES/kbroadcastnotification.mo share/locale/fr/LC_MESSAGES/kcm5_filetypes.mo share/locale/fr/LC_MESSAGES/kcmshell5.mo share/locale/fr/LC_MESSAGES/kdesu5.mo share/locale/fr/LC_MESSAGES/kioclient5.mo share/locale/fr/LC_MESSAGES/kmimetypefinder5.mo share/locale/fr/LC_MESSAGES/kstart5.mo share/locale/fr/LC_MESSAGES/ktraderclient5.mo share/locale/fy/LC_MESSAGES/kcm5_filetypes.mo share/locale/fy/LC_MESSAGES/kcmshell5.mo share/locale/fy/LC_MESSAGES/kdesu5.mo share/locale/fy/LC_MESSAGES/kioclient5.mo share/locale/fy/LC_MESSAGES/kmimetypefinder5.mo share/locale/fy/LC_MESSAGES/kstart5.mo share/locale/fy/LC_MESSAGES/ktraderclient5.mo share/locale/ga/LC_MESSAGES/kcm5_filetypes.mo share/locale/ga/LC_MESSAGES/kcmshell5.mo share/locale/ga/LC_MESSAGES/kdesu5.mo share/locale/ga/LC_MESSAGES/kioclient5.mo share/locale/ga/LC_MESSAGES/kmimetypefinder5.mo share/locale/ga/LC_MESSAGES/kstart5.mo share/locale/ga/LC_MESSAGES/ktraderclient5.mo share/locale/gl/LC_MESSAGES/kbroadcastnotification.mo share/locale/gl/LC_MESSAGES/kcm5_filetypes.mo share/locale/gl/LC_MESSAGES/kcmshell5.mo share/locale/gl/LC_MESSAGES/kdesu5.mo share/locale/gl/LC_MESSAGES/kioclient5.mo share/locale/gl/LC_MESSAGES/kmimetypefinder5.mo share/locale/gl/LC_MESSAGES/kstart5.mo share/locale/gl/LC_MESSAGES/ktraderclient5.mo share/locale/gu/LC_MESSAGES/kcm5_filetypes.mo share/locale/gu/LC_MESSAGES/kcmshell5.mo share/locale/gu/LC_MESSAGES/kdesu5.mo share/locale/gu/LC_MESSAGES/kioclient5.mo share/locale/gu/LC_MESSAGES/kmimetypefinder5.mo share/locale/gu/LC_MESSAGES/kstart5.mo share/locale/gu/LC_MESSAGES/ktraderclient5.mo share/locale/he/LC_MESSAGES/kbroadcastnotification.mo share/locale/he/LC_MESSAGES/kcm5_filetypes.mo share/locale/he/LC_MESSAGES/kcmshell5.mo share/locale/he/LC_MESSAGES/kdesu5.mo share/locale/he/LC_MESSAGES/kioclient5.mo share/locale/he/LC_MESSAGES/kmimetypefinder5.mo share/locale/he/LC_MESSAGES/kstart5.mo share/locale/he/LC_MESSAGES/ktraderclient5.mo share/locale/hi/LC_MESSAGES/kcm5_filetypes.mo share/locale/hi/LC_MESSAGES/kcmshell5.mo share/locale/hi/LC_MESSAGES/kdesu5.mo share/locale/hi/LC_MESSAGES/kioclient5.mo share/locale/hi/LC_MESSAGES/kmimetypefinder5.mo share/locale/hi/LC_MESSAGES/kstart5.mo share/locale/hi/LC_MESSAGES/ktraderclient5.mo share/locale/hne/LC_MESSAGES/kcm5_filetypes.mo share/locale/hne/LC_MESSAGES/kcmshell5.mo share/locale/hne/LC_MESSAGES/kdesu5.mo share/locale/hne/LC_MESSAGES/kioclient5.mo share/locale/hne/LC_MESSAGES/kmimetypefinder5.mo share/locale/hne/LC_MESSAGES/kstart5.mo share/locale/hne/LC_MESSAGES/ktraderclient5.mo share/locale/hr/LC_MESSAGES/kcm5_filetypes.mo share/locale/hr/LC_MESSAGES/kcmshell5.mo share/locale/hr/LC_MESSAGES/kdesu5.mo share/locale/hr/LC_MESSAGES/kioclient5.mo share/locale/hr/LC_MESSAGES/kmimetypefinder5.mo share/locale/hr/LC_MESSAGES/kstart5.mo share/locale/hr/LC_MESSAGES/ktraderclient5.mo share/locale/hsb/LC_MESSAGES/kcm5_filetypes.mo share/locale/hsb/LC_MESSAGES/kcmshell5.mo share/locale/hsb/LC_MESSAGES/kdesu5.mo share/locale/hsb/LC_MESSAGES/kioclient5.mo share/locale/hsb/LC_MESSAGES/kmimetypefinder5.mo share/locale/hsb/LC_MESSAGES/kstart5.mo share/locale/hsb/LC_MESSAGES/ktraderclient5.mo share/locale/hu/LC_MESSAGES/kbroadcastnotification.mo share/locale/hu/LC_MESSAGES/kcm5_filetypes.mo share/locale/hu/LC_MESSAGES/kcmshell5.mo share/locale/hu/LC_MESSAGES/kdesu5.mo share/locale/hu/LC_MESSAGES/kioclient5.mo share/locale/hu/LC_MESSAGES/kmimetypefinder5.mo share/locale/hu/LC_MESSAGES/kstart5.mo share/locale/hu/LC_MESSAGES/ktraderclient5.mo share/locale/ia/LC_MESSAGES/kbroadcastnotification.mo share/locale/ia/LC_MESSAGES/kcm5_filetypes.mo share/locale/ia/LC_MESSAGES/kcmshell5.mo share/locale/ia/LC_MESSAGES/kdesu5.mo share/locale/ia/LC_MESSAGES/kioclient5.mo share/locale/ia/LC_MESSAGES/kmimetypefinder5.mo share/locale/ia/LC_MESSAGES/kstart5.mo share/locale/ia/LC_MESSAGES/ktraderclient5.mo share/locale/id/LC_MESSAGES/kbroadcastnotification.mo share/locale/id/LC_MESSAGES/kcm5_filetypes.mo share/locale/id/LC_MESSAGES/kcmshell5.mo share/locale/id/LC_MESSAGES/kdesu5.mo share/locale/id/LC_MESSAGES/kioclient5.mo share/locale/id/LC_MESSAGES/kmimetypefinder5.mo share/locale/id/LC_MESSAGES/kstart5.mo share/locale/id/LC_MESSAGES/ktraderclient5.mo share/locale/is/LC_MESSAGES/kcm5_filetypes.mo share/locale/is/LC_MESSAGES/kcmshell5.mo share/locale/is/LC_MESSAGES/kdesu5.mo share/locale/is/LC_MESSAGES/kioclient5.mo share/locale/is/LC_MESSAGES/kmimetypefinder5.mo share/locale/is/LC_MESSAGES/kstart5.mo share/locale/is/LC_MESSAGES/ktraderclient5.mo share/locale/it/LC_MESSAGES/kbroadcastnotification.mo share/locale/it/LC_MESSAGES/kcm5_filetypes.mo share/locale/it/LC_MESSAGES/kcmshell5.mo share/locale/it/LC_MESSAGES/kdesu5.mo share/locale/it/LC_MESSAGES/kioclient5.mo share/locale/it/LC_MESSAGES/kmimetypefinder5.mo share/locale/it/LC_MESSAGES/kstart5.mo share/locale/it/LC_MESSAGES/ktraderclient5.mo share/locale/ja/LC_MESSAGES/kbroadcastnotification.mo share/locale/ja/LC_MESSAGES/kcm5_filetypes.mo share/locale/ja/LC_MESSAGES/kcmshell5.mo share/locale/ja/LC_MESSAGES/kdesu5.mo share/locale/ja/LC_MESSAGES/kioclient5.mo share/locale/ja/LC_MESSAGES/kmimetypefinder5.mo share/locale/ja/LC_MESSAGES/kstart5.mo share/locale/ja/LC_MESSAGES/ktraderclient5.mo share/locale/kk/LC_MESSAGES/kcm5_filetypes.mo share/locale/kk/LC_MESSAGES/kcmshell5.mo share/locale/kk/LC_MESSAGES/kdesu5.mo share/locale/kk/LC_MESSAGES/kioclient5.mo share/locale/kk/LC_MESSAGES/kmimetypefinder5.mo share/locale/kk/LC_MESSAGES/kstart5.mo share/locale/kk/LC_MESSAGES/ktraderclient5.mo share/locale/km/LC_MESSAGES/kcm5_filetypes.mo share/locale/km/LC_MESSAGES/kcmshell5.mo share/locale/km/LC_MESSAGES/kdesu5.mo share/locale/km/LC_MESSAGES/kioclient5.mo share/locale/km/LC_MESSAGES/kmimetypefinder5.mo share/locale/km/LC_MESSAGES/kstart5.mo share/locale/km/LC_MESSAGES/ktraderclient5.mo share/locale/kn/LC_MESSAGES/kcm5_filetypes.mo share/locale/kn/LC_MESSAGES/kcmshell5.mo share/locale/kn/LC_MESSAGES/kdesu5.mo share/locale/kn/LC_MESSAGES/kioclient5.mo share/locale/kn/LC_MESSAGES/kmimetypefinder5.mo share/locale/kn/LC_MESSAGES/kstart5.mo share/locale/kn/LC_MESSAGES/ktraderclient5.mo share/locale/ko/LC_MESSAGES/kbroadcastnotification.mo share/locale/ko/LC_MESSAGES/kcm5_filetypes.mo share/locale/ko/LC_MESSAGES/kcmshell5.mo share/locale/ko/LC_MESSAGES/kdesu5.mo share/locale/ko/LC_MESSAGES/kioclient5.mo share/locale/ko/LC_MESSAGES/kmimetypefinder5.mo share/locale/ko/LC_MESSAGES/kstart5.mo share/locale/ko/LC_MESSAGES/ktraderclient5.mo share/locale/ku/LC_MESSAGES/kcm5_filetypes.mo share/locale/ku/LC_MESSAGES/kcmshell5.mo share/locale/ku/LC_MESSAGES/kdesu5.mo share/locale/ku/LC_MESSAGES/kioclient5.mo share/locale/ku/LC_MESSAGES/kmimetypefinder5.mo share/locale/ku/LC_MESSAGES/kstart5.mo share/locale/ku/LC_MESSAGES/ktraderclient5.mo share/locale/lb/LC_MESSAGES/kcmshell5.mo share/locale/lt/LC_MESSAGES/kcm5_filetypes.mo share/locale/lt/LC_MESSAGES/kcmshell5.mo share/locale/lt/LC_MESSAGES/kdesu5.mo share/locale/lt/LC_MESSAGES/kioclient5.mo share/locale/lt/LC_MESSAGES/kmimetypefinder5.mo share/locale/lt/LC_MESSAGES/kstart5.mo share/locale/lt/LC_MESSAGES/ktraderclient5.mo share/locale/lv/LC_MESSAGES/kcm5_filetypes.mo share/locale/lv/LC_MESSAGES/kcmshell5.mo share/locale/lv/LC_MESSAGES/kdesu5.mo share/locale/lv/LC_MESSAGES/kioclient5.mo share/locale/lv/LC_MESSAGES/kmimetypefinder5.mo share/locale/lv/LC_MESSAGES/kstart5.mo share/locale/lv/LC_MESSAGES/ktraderclient5.mo share/locale/mai/LC_MESSAGES/kcm5_filetypes.mo share/locale/mai/LC_MESSAGES/kcmshell5.mo share/locale/mai/LC_MESSAGES/kdesu5.mo share/locale/mai/LC_MESSAGES/kioclient5.mo share/locale/mai/LC_MESSAGES/kmimetypefinder5.mo share/locale/mai/LC_MESSAGES/kstart5.mo share/locale/mai/LC_MESSAGES/ktraderclient5.mo share/locale/mk/LC_MESSAGES/kcm5_filetypes.mo share/locale/mk/LC_MESSAGES/kcmshell5.mo share/locale/mk/LC_MESSAGES/kdesu5.mo share/locale/mk/LC_MESSAGES/kioclient5.mo share/locale/mk/LC_MESSAGES/kmimetypefinder5.mo share/locale/mk/LC_MESSAGES/kstart5.mo share/locale/mk/LC_MESSAGES/ktraderclient5.mo share/locale/ml/LC_MESSAGES/kcm5_filetypes.mo share/locale/ml/LC_MESSAGES/kcmshell5.mo share/locale/ml/LC_MESSAGES/kdesu5.mo share/locale/ml/LC_MESSAGES/kioclient5.mo share/locale/ml/LC_MESSAGES/kmimetypefinder5.mo share/locale/ml/LC_MESSAGES/kstart5.mo share/locale/ml/LC_MESSAGES/ktraderclient5.mo share/locale/mr/LC_MESSAGES/kcm5_filetypes.mo share/locale/mr/LC_MESSAGES/kcmshell5.mo share/locale/mr/LC_MESSAGES/kdesu5.mo share/locale/mr/LC_MESSAGES/kioclient5.mo share/locale/mr/LC_MESSAGES/kmimetypefinder5.mo share/locale/mr/LC_MESSAGES/kstart5.mo share/locale/mr/LC_MESSAGES/ktraderclient5.mo share/locale/ms/LC_MESSAGES/kcm5_filetypes.mo share/locale/ms/LC_MESSAGES/kcmshell5.mo share/locale/ms/LC_MESSAGES/kdesu5.mo share/locale/ms/LC_MESSAGES/kioclient5.mo share/locale/ms/LC_MESSAGES/kmimetypefinder5.mo share/locale/ms/LC_MESSAGES/kstart5.mo share/locale/ms/LC_MESSAGES/ktraderclient5.mo share/locale/nb/LC_MESSAGES/kcm5_filetypes.mo share/locale/nb/LC_MESSAGES/kcmshell5.mo share/locale/nb/LC_MESSAGES/kdesu5.mo share/locale/nb/LC_MESSAGES/kioclient5.mo share/locale/nb/LC_MESSAGES/kmimetypefinder5.mo share/locale/nb/LC_MESSAGES/kstart5.mo share/locale/nb/LC_MESSAGES/ktraderclient5.mo share/locale/nds/LC_MESSAGES/kcm5_filetypes.mo share/locale/nds/LC_MESSAGES/kcmshell5.mo share/locale/nds/LC_MESSAGES/kdesu5.mo share/locale/nds/LC_MESSAGES/kioclient5.mo share/locale/nds/LC_MESSAGES/kmimetypefinder5.mo share/locale/nds/LC_MESSAGES/kstart5.mo share/locale/nds/LC_MESSAGES/ktraderclient5.mo share/locale/ne/LC_MESSAGES/kcm5_filetypes.mo share/locale/ne/LC_MESSAGES/kcmshell5.mo share/locale/ne/LC_MESSAGES/kdesu5.mo share/locale/ne/LC_MESSAGES/kioclient5.mo share/locale/ne/LC_MESSAGES/kmimetypefinder5.mo share/locale/ne/LC_MESSAGES/kstart5.mo share/locale/ne/LC_MESSAGES/ktraderclient5.mo share/locale/nl/LC_MESSAGES/kbroadcastnotification.mo share/locale/nl/LC_MESSAGES/kcm5_filetypes.mo share/locale/nl/LC_MESSAGES/kcmshell5.mo share/locale/nl/LC_MESSAGES/kdesu5.mo share/locale/nl/LC_MESSAGES/kioclient5.mo share/locale/nl/LC_MESSAGES/kmimetypefinder5.mo share/locale/nl/LC_MESSAGES/kstart5.mo share/locale/nl/LC_MESSAGES/ktraderclient5.mo share/locale/nn/LC_MESSAGES/kbroadcastnotification.mo share/locale/nn/LC_MESSAGES/kcm5_filetypes.mo share/locale/nn/LC_MESSAGES/kcmshell5.mo share/locale/nn/LC_MESSAGES/kdesu5.mo share/locale/nn/LC_MESSAGES/kioclient5.mo share/locale/nn/LC_MESSAGES/kmimetypefinder5.mo share/locale/nn/LC_MESSAGES/kstart5.mo share/locale/nn/LC_MESSAGES/ktraderclient5.mo share/locale/oc/LC_MESSAGES/kcm5_filetypes.mo share/locale/oc/LC_MESSAGES/kcmshell5.mo share/locale/oc/LC_MESSAGES/kdesu5.mo share/locale/oc/LC_MESSAGES/kioclient5.mo share/locale/oc/LC_MESSAGES/kmimetypefinder5.mo share/locale/oc/LC_MESSAGES/kstart5.mo share/locale/oc/LC_MESSAGES/ktraderclient5.mo share/locale/or/LC_MESSAGES/kcmshell5.mo share/locale/or/LC_MESSAGES/kdesu5.mo share/locale/or/LC_MESSAGES/kioclient5.mo share/locale/or/LC_MESSAGES/kmimetypefinder5.mo share/locale/or/LC_MESSAGES/kstart5.mo share/locale/or/LC_MESSAGES/ktraderclient5.mo share/locale/pa/LC_MESSAGES/kcm5_filetypes.mo share/locale/pa/LC_MESSAGES/kcmshell5.mo share/locale/pa/LC_MESSAGES/kdesu5.mo share/locale/pa/LC_MESSAGES/kioclient5.mo share/locale/pa/LC_MESSAGES/kmimetypefinder5.mo share/locale/pa/LC_MESSAGES/kstart5.mo share/locale/pa/LC_MESSAGES/ktraderclient5.mo share/locale/pl/LC_MESSAGES/kbroadcastnotification.mo share/locale/pl/LC_MESSAGES/kcm5_filetypes.mo share/locale/pl/LC_MESSAGES/kcmshell5.mo share/locale/pl/LC_MESSAGES/kdesu5.mo share/locale/pl/LC_MESSAGES/kioclient5.mo share/locale/pl/LC_MESSAGES/kmimetypefinder5.mo share/locale/pl/LC_MESSAGES/kstart5.mo share/locale/pl/LC_MESSAGES/ktraderclient5.mo share/locale/pt/LC_MESSAGES/kbroadcastnotification.mo share/locale/pt/LC_MESSAGES/kcm5_filetypes.mo share/locale/pt/LC_MESSAGES/kcmshell5.mo share/locale/pt/LC_MESSAGES/kdesu5.mo share/locale/pt/LC_MESSAGES/kioclient5.mo share/locale/pt/LC_MESSAGES/kmimetypefinder5.mo share/locale/pt/LC_MESSAGES/kstart5.mo share/locale/pt/LC_MESSAGES/ktraderclient5.mo share/locale/pt_BR/LC_MESSAGES/kbroadcastnotification.mo share/locale/pt_BR/LC_MESSAGES/kcm5_filetypes.mo share/locale/pt_BR/LC_MESSAGES/kcmshell5.mo share/locale/pt_BR/LC_MESSAGES/kdesu5.mo share/locale/pt_BR/LC_MESSAGES/kioclient5.mo share/locale/pt_BR/LC_MESSAGES/kmimetypefinder5.mo share/locale/pt_BR/LC_MESSAGES/kstart5.mo share/locale/pt_BR/LC_MESSAGES/ktraderclient5.mo share/locale/ro/LC_MESSAGES/kcm5_filetypes.mo share/locale/ro/LC_MESSAGES/kcmshell5.mo share/locale/ro/LC_MESSAGES/kdesu5.mo share/locale/ro/LC_MESSAGES/kioclient5.mo share/locale/ro/LC_MESSAGES/kmimetypefinder5.mo share/locale/ro/LC_MESSAGES/kstart5.mo share/locale/ro/LC_MESSAGES/ktraderclient5.mo share/locale/ru/LC_MESSAGES/kbroadcastnotification.mo share/locale/ru/LC_MESSAGES/kcm5_filetypes.mo share/locale/ru/LC_MESSAGES/kcmshell5.mo share/locale/ru/LC_MESSAGES/kdesu5.mo share/locale/ru/LC_MESSAGES/kioclient5.mo share/locale/ru/LC_MESSAGES/kmimetypefinder5.mo share/locale/ru/LC_MESSAGES/kstart5.mo share/locale/ru/LC_MESSAGES/ktraderclient5.mo share/locale/se/LC_MESSAGES/kcm5_filetypes.mo share/locale/se/LC_MESSAGES/kcmshell5.mo share/locale/se/LC_MESSAGES/kdesu5.mo share/locale/se/LC_MESSAGES/kioclient5.mo share/locale/se/LC_MESSAGES/kmimetypefinder5.mo share/locale/se/LC_MESSAGES/kstart5.mo share/locale/se/LC_MESSAGES/ktraderclient5.mo share/locale/si/LC_MESSAGES/kcm5_filetypes.mo share/locale/si/LC_MESSAGES/kcmshell5.mo share/locale/si/LC_MESSAGES/kdesu5.mo share/locale/si/LC_MESSAGES/kioclient5.mo share/locale/si/LC_MESSAGES/kmimetypefinder5.mo share/locale/si/LC_MESSAGES/kstart5.mo share/locale/si/LC_MESSAGES/ktraderclient5.mo share/locale/sk/LC_MESSAGES/kbroadcastnotification.mo share/locale/sk/LC_MESSAGES/kcm5_filetypes.mo share/locale/sk/LC_MESSAGES/kcmshell5.mo share/locale/sk/LC_MESSAGES/kdesu5.mo share/locale/sk/LC_MESSAGES/kioclient5.mo share/locale/sk/LC_MESSAGES/kmimetypefinder5.mo share/locale/sk/LC_MESSAGES/kstart5.mo share/locale/sk/LC_MESSAGES/ktraderclient5.mo share/locale/sl/LC_MESSAGES/kbroadcastnotification.mo share/locale/sl/LC_MESSAGES/kcm5_filetypes.mo share/locale/sl/LC_MESSAGES/kcmshell5.mo share/locale/sl/LC_MESSAGES/kdesu5.mo share/locale/sl/LC_MESSAGES/kioclient5.mo share/locale/sl/LC_MESSAGES/kmimetypefinder5.mo share/locale/sl/LC_MESSAGES/kstart5.mo share/locale/sl/LC_MESSAGES/ktraderclient5.mo share/locale/sq/LC_MESSAGES/kcm5_filetypes.mo share/locale/sq/LC_MESSAGES/kcmshell5.mo share/locale/sq/LC_MESSAGES/kdesu5.mo share/locale/sq/LC_MESSAGES/kioclient5.mo share/locale/sq/LC_MESSAGES/kmimetypefinder5.mo share/locale/sq/LC_MESSAGES/kstart5.mo share/locale/sq/LC_MESSAGES/ktraderclient5.mo share/locale/sr/LC_MESSAGES/kbroadcastnotification.mo share/locale/sr/LC_MESSAGES/kcm5_filetypes.mo share/locale/sr/LC_MESSAGES/kcmshell5.mo share/locale/sr/LC_MESSAGES/kdesu5.mo share/locale/sr/LC_MESSAGES/kioclient5.mo share/locale/sr/LC_MESSAGES/kmimetypefinder5.mo share/locale/sr/LC_MESSAGES/kstart5.mo share/locale/sr/LC_MESSAGES/ktraderclient5.mo share/locale/sr@ijekavian/LC_MESSAGES/kbroadcastnotification.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm5_filetypes.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmshell5.mo share/locale/sr@ijekavian/LC_MESSAGES/kdesu5.mo share/locale/sr@ijekavian/LC_MESSAGES/kioclient5.mo share/locale/sr@ijekavian/LC_MESSAGES/kmimetypefinder5.mo share/locale/sr@ijekavian/LC_MESSAGES/kstart5.mo share/locale/sr@ijekavian/LC_MESSAGES/ktraderclient5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kbroadcastnotification.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm5_filetypes.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmshell5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kdesu5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kioclient5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kmimetypefinder5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kstart5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/ktraderclient5.mo share/locale/sr@latin/LC_MESSAGES/kbroadcastnotification.mo share/locale/sr@latin/LC_MESSAGES/kcm5_filetypes.mo share/locale/sr@latin/LC_MESSAGES/kcmshell5.mo share/locale/sr@latin/LC_MESSAGES/kdesu5.mo share/locale/sr@latin/LC_MESSAGES/kioclient5.mo share/locale/sr@latin/LC_MESSAGES/kmimetypefinder5.mo share/locale/sr@latin/LC_MESSAGES/kstart5.mo share/locale/sr@latin/LC_MESSAGES/ktraderclient5.mo share/locale/sv/LC_MESSAGES/kbroadcastnotification.mo share/locale/sv/LC_MESSAGES/kcm5_filetypes.mo share/locale/sv/LC_MESSAGES/kcmshell5.mo share/locale/sv/LC_MESSAGES/kdesu5.mo share/locale/sv/LC_MESSAGES/kioclient5.mo share/locale/sv/LC_MESSAGES/kmimetypefinder5.mo share/locale/sv/LC_MESSAGES/kstart5.mo share/locale/sv/LC_MESSAGES/ktraderclient5.mo share/locale/ta/LC_MESSAGES/kcm5_filetypes.mo share/locale/ta/LC_MESSAGES/kcmshell5.mo share/locale/ta/LC_MESSAGES/kdesu5.mo share/locale/ta/LC_MESSAGES/kioclient5.mo share/locale/ta/LC_MESSAGES/kmimetypefinder5.mo share/locale/ta/LC_MESSAGES/kstart5.mo share/locale/ta/LC_MESSAGES/ktraderclient5.mo share/locale/te/LC_MESSAGES/kcm5_filetypes.mo share/locale/te/LC_MESSAGES/kcmshell5.mo share/locale/te/LC_MESSAGES/kdesu5.mo share/locale/te/LC_MESSAGES/kioclient5.mo share/locale/te/LC_MESSAGES/kmimetypefinder5.mo share/locale/te/LC_MESSAGES/kstart5.mo share/locale/te/LC_MESSAGES/ktraderclient5.mo share/locale/tg/LC_MESSAGES/kcm5_filetypes.mo share/locale/tg/LC_MESSAGES/kcmshell5.mo share/locale/tg/LC_MESSAGES/kdesu5.mo share/locale/tg/LC_MESSAGES/kioclient5.mo share/locale/tg/LC_MESSAGES/kmimetypefinder5.mo share/locale/tg/LC_MESSAGES/kstart5.mo share/locale/tg/LC_MESSAGES/ktraderclient5.mo share/locale/th/LC_MESSAGES/kcm5_filetypes.mo share/locale/th/LC_MESSAGES/kcmshell5.mo share/locale/th/LC_MESSAGES/kdesu5.mo share/locale/th/LC_MESSAGES/kioclient5.mo share/locale/th/LC_MESSAGES/kmimetypefinder5.mo share/locale/th/LC_MESSAGES/kstart5.mo share/locale/th/LC_MESSAGES/ktraderclient5.mo share/locale/tr/LC_MESSAGES/kbroadcastnotification.mo share/locale/tr/LC_MESSAGES/kcm5_filetypes.mo share/locale/tr/LC_MESSAGES/kcmshell5.mo share/locale/tr/LC_MESSAGES/kdesu5.mo share/locale/tr/LC_MESSAGES/kioclient5.mo share/locale/tr/LC_MESSAGES/kmimetypefinder5.mo share/locale/tr/LC_MESSAGES/kstart5.mo share/locale/tr/LC_MESSAGES/ktraderclient5.mo share/locale/ug/LC_MESSAGES/kcm5_filetypes.mo share/locale/ug/LC_MESSAGES/kcmshell5.mo share/locale/ug/LC_MESSAGES/kdesu5.mo share/locale/ug/LC_MESSAGES/kioclient5.mo share/locale/ug/LC_MESSAGES/kmimetypefinder5.mo share/locale/ug/LC_MESSAGES/kstart5.mo share/locale/ug/LC_MESSAGES/ktraderclient5.mo share/locale/uk/LC_MESSAGES/kbroadcastnotification.mo share/locale/uk/LC_MESSAGES/kcm5_filetypes.mo share/locale/uk/LC_MESSAGES/kcmshell5.mo share/locale/uk/LC_MESSAGES/kdesu5.mo share/locale/uk/LC_MESSAGES/kioclient5.mo share/locale/uk/LC_MESSAGES/kmimetypefinder5.mo share/locale/uk/LC_MESSAGES/kstart5.mo share/locale/uk/LC_MESSAGES/ktraderclient5.mo share/locale/uz/LC_MESSAGES/kcm5_filetypes.mo share/locale/uz/LC_MESSAGES/kdesu5.mo share/locale/uz/LC_MESSAGES/kstart5.mo share/locale/uz@cyrillic/LC_MESSAGES/kcm5_filetypes.mo share/locale/uz@cyrillic/LC_MESSAGES/kdesu5.mo share/locale/uz@cyrillic/LC_MESSAGES/kstart5.mo share/locale/vi/LC_MESSAGES/kcm5_filetypes.mo share/locale/vi/LC_MESSAGES/kcmshell5.mo share/locale/vi/LC_MESSAGES/kdesu5.mo share/locale/vi/LC_MESSAGES/kioclient5.mo share/locale/vi/LC_MESSAGES/kmimetypefinder5.mo share/locale/vi/LC_MESSAGES/kstart5.mo share/locale/vi/LC_MESSAGES/ktraderclient5.mo share/locale/wa/LC_MESSAGES/kcm5_filetypes.mo share/locale/wa/LC_MESSAGES/kcmshell5.mo share/locale/wa/LC_MESSAGES/kdesu5.mo share/locale/wa/LC_MESSAGES/kioclient5.mo share/locale/wa/LC_MESSAGES/kmimetypefinder5.mo share/locale/wa/LC_MESSAGES/kstart5.mo share/locale/wa/LC_MESSAGES/ktraderclient5.mo share/locale/xh/LC_MESSAGES/kcm5_filetypes.mo share/locale/xh/LC_MESSAGES/kdesu5.mo share/locale/xh/LC_MESSAGES/kstart5.mo share/locale/zh_CN/LC_MESSAGES/kbroadcastnotification.mo share/locale/zh_CN/LC_MESSAGES/kcm5_filetypes.mo share/locale/zh_CN/LC_MESSAGES/kcmshell5.mo share/locale/zh_CN/LC_MESSAGES/kdesu5.mo share/locale/zh_CN/LC_MESSAGES/kioclient5.mo share/locale/zh_CN/LC_MESSAGES/kmimetypefinder5.mo share/locale/zh_CN/LC_MESSAGES/kstart5.mo share/locale/zh_CN/LC_MESSAGES/ktraderclient5.mo share/locale/zh_TW/LC_MESSAGES/kbroadcastnotification.mo share/locale/zh_TW/LC_MESSAGES/kcm5_filetypes.mo share/locale/zh_TW/LC_MESSAGES/kcmshell5.mo share/locale/zh_TW/LC_MESSAGES/kdesu5.mo share/locale/zh_TW/LC_MESSAGES/kioclient5.mo share/locale/zh_TW/LC_MESSAGES/kmimetypefinder5.mo share/locale/zh_TW/LC_MESSAGES/kstart5.mo share/locale/zh_TW/LC_MESSAGES/ktraderclient5.mo Index: head/sysutils/plasma5-kinfocenter/Makefile =================================================================== --- head/sysutils/plasma5-kinfocenter/Makefile (revision 492810) +++ head/sysutils/plasma5-kinfocenter/Makefile (revision 492811) @@ -1,37 +1,36 @@ # $FreeBSD$ PORTNAME= kinfocenter DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= sysutils kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 utility providing system information LIB_DEPENDS= libpci.so:devel/libpci USES= cmake compiler:c++11-lib cpe gettext kde:5 pkgconfig \ qt:5 tar:xz USE_GL= egl gl glu USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons doctools ecm emoticons guiaddons \ i18n iconthemes jobwidgets kcmutils kdeclarative \ kdelibs4support kio notifications package parts init \ itemmodels itemviews service solid sonnet textwidgets \ unitconversion wayland wayland widgetsaddons windowsystem xmlgui USE_QT= concurrent core dbus gui network printsupport widgets xml \ buildtools_build qmake_build USE_XORG= ice sm x11 xext # TODO -- this should be handled correctly... LDFLAGS+=-ldevinfo # install freebsd-logo and distrorc post-install: ${MKDIR} ${STAGEDIR}/${DATADIR}/images ${INSTALL_DATA} ${FILESDIR}/freebsd_logo.svg ${STAGEDIR}/${DATADIR}/images/ ${MKDIR} ${STAGEDIR}/${PREFIX}/etc/xdg ${INSTALL_DATA} ${FILESDIR}/kcm-about-distrorc ${STAGEDIR}/${PREFIX}/etc/xdg/ ${REINPLACE_CMD} -i "" -e "s#%%DATADIR%%#${DATADIR}#" ${STAGEDIR}/${PREFIX}/etc/xdg/kcm-about-distrorc .include Index: head/sysutils/plasma5-kinfocenter/distinfo =================================================================== --- head/sysutils/plasma5-kinfocenter/distinfo (revision 492810) +++ head/sysutils/plasma5-kinfocenter/distinfo (revision 492811) @@ -1,3 +1,3 @@ -TIMESTAMP = 1547014606 -SHA256 (KDE/plasma/5.14.5/kinfocenter-5.14.5.tar.xz) = cc66c15522ce1698e2f170339701d9e2866fc8becd28f74ab46db121d24b31fc -SIZE (KDE/plasma/5.14.5/kinfocenter-5.14.5.tar.xz) = 1323212 +TIMESTAMP = 1549993936 +SHA256 (KDE/plasma/5.15.0/kinfocenter-5.15.0.tar.xz) = f321fc9efd7f460d903ded9cebf51b21382298ab0b3df4fd714b1e0b407136c6 +SIZE (KDE/plasma/5.15.0/kinfocenter-5.15.0.tar.xz) = 1322604 Index: head/sysutils/plasma5-kinfocenter/files/patch-git_39ede9c =================================================================== --- head/sysutils/plasma5-kinfocenter/files/patch-git_39ede9c (revision 492810) +++ head/sysutils/plasma5-kinfocenter/files/patch-git_39ede9c (nonexistent) @@ -1,51 +0,0 @@ -From 39ede9c7e64ba23300a419ee9f58d953f7606b39 Mon Sep 17 00:00:00 2001 -From: Adriaan de Groot -Date: Mon, 24 Dec 2018 22:04:07 +0100 -Subject: [PATCH] Update logic for disabling the PCI module. - -Summary: -FreeBSD on ThunderX2 does support PCI, and apparently the KCM -even works. https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=234256 - -Reviewers: davidedmundson - -Reviewed By: davidedmundson - -Subscribers: plasma-devel - -Tags: #plasma - -Differential Revision: https://phabricator.kde.org/D17785 ---- - Modules/CMakeLists.txt | 15 ++++++++++++++- - 1 file changed, 14 insertions(+), 1 deletion(-) - -diff --git Modules/CMakeLists.txt Modules/CMakeLists.txt -index f513752..43420d6 100644 ---- Modules/CMakeLists.txt -+++ Modules/CMakeLists.txt -@@ -44,7 +44,20 @@ set_package_properties(PCIUTILS PROPERTIES DESCRIPTION "PciUtils is a library fo - PURPOSE "View PCI details in kinfocenter." - ) - --if(NOT APPLE AND NOT ${CMAKE_SYSTEM_PROCESSOR} MATCHES "arm" AND NOT ${CMAKE_SYSTEM_PROCESSOR} MATCHES "aarch64") -+# PCI module doesn't work on Linux arm64, nor on MacOS, but does on -+# FreeBSD arm64, so this is a bit of a tangle of what-is-supported. -+set(_want_pci ON) -+if(APPLE) -+ set(_want_pci OFF) -+elseif(${CMAKE_SYSTEM_PROCESSOR} MATCHES "arm" OR ${CMAKE_SYSTEM_PROCESSOR} MATCHES "aarch64") -+ if (${CMAKE_SYSTEM} MATCHES "FreeBSD") -+ message(STATUS "FreeBSD arm64 pci support enabled.") -+ else() -+ set(_want_pci OFF) -+ endif() -+endif() -+ -+if(_want_pci) - add_subdirectory( pci ) - endif() - endif() --- -2.20.1 - Property changes on: head/sysutils/plasma5-kinfocenter/files/patch-git_39ede9c ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sysutils/plasma5-kinfocenter/pkg-plist =================================================================== --- head/sysutils/plasma5-kinfocenter/pkg-plist (revision 492810) +++ head/sysutils/plasma5-kinfocenter/pkg-plist (revision 492811) @@ -1,992 +1,979 @@ bin/kinfocenter etc/xdg/kcm-about-distrorc etc/xdg/menus/kinfocenter.menu %%QT_PLUGINDIR%%/kcm_about_distro.so %%QT_PLUGINDIR%%/kcm_devinfo.so %%QT_PLUGINDIR%%/kcm_info.so %%QT_PLUGINDIR%%/kcm_memory.so %%QT_PLUGINDIR%%/kcm_nic.so %%QT_PLUGINDIR%%/kcm_opengl.so %%QT_PLUGINDIR%%/kcm_pci.so %%QT_PLUGINDIR%%/kcm_samba.so %%QT_PLUGINDIR%%/kcm_usb.so share/applications/org.kde.kinfocenter.desktop share/desktop-directories/kinfocenter.directory share/doc/HTML/ca/kinfocenter/index.cache.bz2 share/doc/HTML/ca/kinfocenter/index.docbook share/doc/HTML/ca/kinfocenter/kinfocenter.png share/doc/HTML/de/kinfocenter/index.cache.bz2 share/doc/HTML/de/kinfocenter/index.docbook share/doc/HTML/en/kinfocenter/index.cache.bz2 share/doc/HTML/en/kinfocenter/index.docbook share/doc/HTML/en/kinfocenter/kinfocenter.png share/doc/HTML/it/kinfocenter/index.cache.bz2 share/doc/HTML/it/kinfocenter/index.docbook share/doc/HTML/nl/kinfocenter/index.cache.bz2 share/doc/HTML/nl/kinfocenter/index.docbook share/doc/HTML/pt/kinfocenter/index.cache.bz2 share/doc/HTML/pt/kinfocenter/index.docbook share/doc/HTML/pt_BR/kinfocenter/index.cache.bz2 share/doc/HTML/pt_BR/kinfocenter/index.docbook share/doc/HTML/pt_BR/kinfocenter/kinfocenter.png share/doc/HTML/ru/kinfocenter/index.cache.bz2 share/doc/HTML/ru/kinfocenter/index.docbook share/doc/HTML/sr/kinfocenter/index.cache.bz2 share/doc/HTML/sr/kinfocenter/index.docbook share/doc/HTML/sr@latin/kinfocenter/index.cache.bz2 share/doc/HTML/sr@latin/kinfocenter/index.docbook share/doc/HTML/sv/kinfocenter/index.cache.bz2 share/doc/HTML/sv/kinfocenter/index.docbook share/doc/HTML/uk/kinfocenter/index.cache.bz2 share/doc/HTML/uk/kinfocenter/index.docbook share/doc/HTML/uk/kinfocenter/kinfocenter.png share/kcmusb/usb.ids %%DATADIR%%/images/freebsd_logo.svg share/kservices5/about-distro.desktop share/kservices5/deviceinfocategory.desktop share/kservices5/devinfo.desktop share/kservices5/dma.desktop share/kservices5/graphicalinfocategory.desktop share/kservices5/interrupts.desktop share/kservices5/ioports.desktop share/kservices5/kcm_memory.desktop share/kservices5/kcm_pci.desktop share/kservices5/kcmusb.desktop share/kservices5/lostfoundcategory.desktop share/kservices5/networkinfocategory.desktop share/kservices5/nic.desktop share/kservices5/opengl.desktop share/kservices5/smbstatus.desktop share/kservices5/wayland.desktop share/kservices5/xserver.desktop share/kservicetypes5/kinfocentercategory.desktop share/kxmlgui5/kinfocenter/kinfocenterui.rc share/locale/af/LC_MESSAGES/kcminfo.mo share/locale/af/LC_MESSAGES/kcmsamba.mo share/locale/af/LC_MESSAGES/kcmusb.mo share/locale/af/LC_MESSAGES/kcmview1394.mo share/locale/af/LC_MESSAGES/kinfocenter.mo share/locale/ar/LC_MESSAGES/kcm-about-distro.mo share/locale/ar/LC_MESSAGES/kcm_energyinfo.mo share/locale/ar/LC_MESSAGES/kcm_fileindexermonitor.mo share/locale/ar/LC_MESSAGES/kcm_memory.mo share/locale/ar/LC_MESSAGES/kcm_pci.mo share/locale/ar/LC_MESSAGES/kcmdevinfo.mo share/locale/ar/LC_MESSAGES/kcminfo.mo share/locale/ar/LC_MESSAGES/kcmnic.mo share/locale/ar/LC_MESSAGES/kcmopengl.mo share/locale/ar/LC_MESSAGES/kcmsamba.mo share/locale/ar/LC_MESSAGES/kcmusb.mo share/locale/ar/LC_MESSAGES/kcmview1394.mo share/locale/ar/LC_MESSAGES/kinfocenter.mo -share/locale/ast/LC_MESSAGES/kcm-about-distro.mo -share/locale/ast/LC_MESSAGES/kcm_energyinfo.mo -share/locale/ast/LC_MESSAGES/kcm_fileindexermonitor.mo -share/locale/ast/LC_MESSAGES/kcm_memory.mo -share/locale/ast/LC_MESSAGES/kcm_pci.mo -share/locale/ast/LC_MESSAGES/kcmdevinfo.mo -share/locale/ast/LC_MESSAGES/kcminfo.mo -share/locale/ast/LC_MESSAGES/kcmnic.mo -share/locale/ast/LC_MESSAGES/kcmopengl.mo -share/locale/ast/LC_MESSAGES/kcmsamba.mo -share/locale/ast/LC_MESSAGES/kcmusb.mo -share/locale/ast/LC_MESSAGES/kcmview1394.mo -share/locale/ast/LC_MESSAGES/kinfocenter.mo share/locale/be/LC_MESSAGES/kcminfo.mo share/locale/be/LC_MESSAGES/kcmopengl.mo share/locale/be/LC_MESSAGES/kcmsamba.mo share/locale/be/LC_MESSAGES/kcmusb.mo share/locale/be/LC_MESSAGES/kcmview1394.mo share/locale/be/LC_MESSAGES/kinfocenter.mo share/locale/be@latin/LC_MESSAGES/kcminfo.mo share/locale/bg/LC_MESSAGES/kcm-about-distro.mo share/locale/bg/LC_MESSAGES/kcm_memory.mo share/locale/bg/LC_MESSAGES/kcm_pci.mo share/locale/bg/LC_MESSAGES/kcmdevinfo.mo share/locale/bg/LC_MESSAGES/kcminfo.mo share/locale/bg/LC_MESSAGES/kcmnic.mo share/locale/bg/LC_MESSAGES/kcmopengl.mo share/locale/bg/LC_MESSAGES/kcmsamba.mo share/locale/bg/LC_MESSAGES/kcmusb.mo share/locale/bg/LC_MESSAGES/kcmview1394.mo share/locale/bg/LC_MESSAGES/kinfocenter.mo share/locale/bn/LC_MESSAGES/kcminfo.mo share/locale/bn/LC_MESSAGES/kcmusb.mo share/locale/bn/LC_MESSAGES/kcmview1394.mo share/locale/bn/LC_MESSAGES/kinfocenter.mo share/locale/bn_IN/LC_MESSAGES/kcm_memory.mo share/locale/bn_IN/LC_MESSAGES/kcm_pci.mo share/locale/bn_IN/LC_MESSAGES/kcminfo.mo share/locale/bn_IN/LC_MESSAGES/kcmsamba.mo share/locale/bn_IN/LC_MESSAGES/kcmusb.mo share/locale/bn_IN/LC_MESSAGES/kcmview1394.mo share/locale/bn_IN/LC_MESSAGES/kinfocenter.mo share/locale/br/LC_MESSAGES/kcminfo.mo share/locale/br/LC_MESSAGES/kcmsamba.mo share/locale/br/LC_MESSAGES/kcmusb.mo share/locale/br/LC_MESSAGES/kcmview1394.mo share/locale/br/LC_MESSAGES/kinfocenter.mo share/locale/bs/LC_MESSAGES/kcm-about-distro.mo share/locale/bs/LC_MESSAGES/kcm_memory.mo share/locale/bs/LC_MESSAGES/kcm_pci.mo share/locale/bs/LC_MESSAGES/kcmdevinfo.mo share/locale/bs/LC_MESSAGES/kcminfo.mo share/locale/bs/LC_MESSAGES/kcmnic.mo share/locale/bs/LC_MESSAGES/kcmopengl.mo share/locale/bs/LC_MESSAGES/kcmsamba.mo share/locale/bs/LC_MESSAGES/kcmusb.mo share/locale/bs/LC_MESSAGES/kcmview1394.mo share/locale/bs/LC_MESSAGES/kinfocenter.mo share/locale/ca/LC_MESSAGES/kcm-about-distro.mo share/locale/ca/LC_MESSAGES/kcm_energyinfo.mo share/locale/ca/LC_MESSAGES/kcm_fileindexermonitor.mo share/locale/ca/LC_MESSAGES/kcm_memory.mo share/locale/ca/LC_MESSAGES/kcm_pci.mo share/locale/ca/LC_MESSAGES/kcmdevinfo.mo share/locale/ca/LC_MESSAGES/kcminfo.mo share/locale/ca/LC_MESSAGES/kcmnic.mo share/locale/ca/LC_MESSAGES/kcmopengl.mo share/locale/ca/LC_MESSAGES/kcmsamba.mo share/locale/ca/LC_MESSAGES/kcmusb.mo share/locale/ca/LC_MESSAGES/kcmview1394.mo share/locale/ca/LC_MESSAGES/kinfocenter.mo share/locale/ca@valencia/LC_MESSAGES/kcm-about-distro.mo share/locale/ca@valencia/LC_MESSAGES/kcm_energyinfo.mo share/locale/ca@valencia/LC_MESSAGES/kcm_fileindexermonitor.mo share/locale/ca@valencia/LC_MESSAGES/kcm_memory.mo share/locale/ca@valencia/LC_MESSAGES/kcm_pci.mo share/locale/ca@valencia/LC_MESSAGES/kcmdevinfo.mo share/locale/ca@valencia/LC_MESSAGES/kcminfo.mo share/locale/ca@valencia/LC_MESSAGES/kcmnic.mo share/locale/ca@valencia/LC_MESSAGES/kcmopengl.mo share/locale/ca@valencia/LC_MESSAGES/kcmsamba.mo share/locale/ca@valencia/LC_MESSAGES/kcmusb.mo share/locale/ca@valencia/LC_MESSAGES/kcmview1394.mo share/locale/ca@valencia/LC_MESSAGES/kinfocenter.mo share/locale/cs/LC_MESSAGES/kcm-about-distro.mo share/locale/cs/LC_MESSAGES/kcm_energyinfo.mo share/locale/cs/LC_MESSAGES/kcm_fileindexermonitor.mo share/locale/cs/LC_MESSAGES/kcm_memory.mo share/locale/cs/LC_MESSAGES/kcm_pci.mo share/locale/cs/LC_MESSAGES/kcmdevinfo.mo share/locale/cs/LC_MESSAGES/kcminfo.mo share/locale/cs/LC_MESSAGES/kcmnic.mo share/locale/cs/LC_MESSAGES/kcmopengl.mo share/locale/cs/LC_MESSAGES/kcmsamba.mo share/locale/cs/LC_MESSAGES/kcmusb.mo share/locale/cs/LC_MESSAGES/kcmview1394.mo share/locale/cs/LC_MESSAGES/kinfocenter.mo share/locale/csb/LC_MESSAGES/kcmsamba.mo share/locale/csb/LC_MESSAGES/kcmusb.mo share/locale/csb/LC_MESSAGES/kcmview1394.mo share/locale/csb/LC_MESSAGES/kinfocenter.mo share/locale/cy/LC_MESSAGES/kcminfo.mo share/locale/cy/LC_MESSAGES/kcmsamba.mo share/locale/cy/LC_MESSAGES/kcmusb.mo share/locale/cy/LC_MESSAGES/kcmview1394.mo share/locale/cy/LC_MESSAGES/kinfocenter.mo share/locale/da/LC_MESSAGES/kcm-about-distro.mo share/locale/da/LC_MESSAGES/kcm_energyinfo.mo share/locale/da/LC_MESSAGES/kcm_fileindexermonitor.mo share/locale/da/LC_MESSAGES/kcm_memory.mo share/locale/da/LC_MESSAGES/kcm_pci.mo share/locale/da/LC_MESSAGES/kcmdevinfo.mo share/locale/da/LC_MESSAGES/kcminfo.mo share/locale/da/LC_MESSAGES/kcmnic.mo share/locale/da/LC_MESSAGES/kcmopengl.mo share/locale/da/LC_MESSAGES/kcmsamba.mo share/locale/da/LC_MESSAGES/kcmusb.mo share/locale/da/LC_MESSAGES/kcmview1394.mo share/locale/da/LC_MESSAGES/kinfocenter.mo share/locale/de/LC_MESSAGES/kcm-about-distro.mo share/locale/de/LC_MESSAGES/kcm_energyinfo.mo share/locale/de/LC_MESSAGES/kcm_fileindexermonitor.mo share/locale/de/LC_MESSAGES/kcm_memory.mo share/locale/de/LC_MESSAGES/kcm_pci.mo share/locale/de/LC_MESSAGES/kcmdevinfo.mo share/locale/de/LC_MESSAGES/kcminfo.mo share/locale/de/LC_MESSAGES/kcmnic.mo share/locale/de/LC_MESSAGES/kcmopengl.mo share/locale/de/LC_MESSAGES/kcmsamba.mo share/locale/de/LC_MESSAGES/kcmusb.mo share/locale/de/LC_MESSAGES/kcmview1394.mo share/locale/de/LC_MESSAGES/kinfocenter.mo share/locale/el/LC_MESSAGES/kcm-about-distro.mo share/locale/el/LC_MESSAGES/kcm_energyinfo.mo share/locale/el/LC_MESSAGES/kcm_fileindexermonitor.mo share/locale/el/LC_MESSAGES/kcm_memory.mo share/locale/el/LC_MESSAGES/kcm_pci.mo share/locale/el/LC_MESSAGES/kcmdevinfo.mo share/locale/el/LC_MESSAGES/kcminfo.mo share/locale/el/LC_MESSAGES/kcmnic.mo share/locale/el/LC_MESSAGES/kcmopengl.mo share/locale/el/LC_MESSAGES/kcmsamba.mo share/locale/el/LC_MESSAGES/kcmusb.mo share/locale/el/LC_MESSAGES/kcmview1394.mo share/locale/el/LC_MESSAGES/kinfocenter.mo share/locale/en_GB/LC_MESSAGES/kcm-about-distro.mo share/locale/en_GB/LC_MESSAGES/kcm_energyinfo.mo share/locale/en_GB/LC_MESSAGES/kcm_fileindexermonitor.mo share/locale/en_GB/LC_MESSAGES/kcm_memory.mo share/locale/en_GB/LC_MESSAGES/kcm_pci.mo share/locale/en_GB/LC_MESSAGES/kcmdevinfo.mo share/locale/en_GB/LC_MESSAGES/kcminfo.mo share/locale/en_GB/LC_MESSAGES/kcmnic.mo share/locale/en_GB/LC_MESSAGES/kcmopengl.mo share/locale/en_GB/LC_MESSAGES/kcmsamba.mo share/locale/en_GB/LC_MESSAGES/kcmusb.mo share/locale/en_GB/LC_MESSAGES/kcmview1394.mo share/locale/en_GB/LC_MESSAGES/kinfocenter.mo share/locale/eo/LC_MESSAGES/kcm_memory.mo share/locale/eo/LC_MESSAGES/kcm_pci.mo share/locale/eo/LC_MESSAGES/kcmdevinfo.mo share/locale/eo/LC_MESSAGES/kcminfo.mo share/locale/eo/LC_MESSAGES/kcmnic.mo share/locale/eo/LC_MESSAGES/kcmopengl.mo share/locale/eo/LC_MESSAGES/kcmsamba.mo share/locale/eo/LC_MESSAGES/kcmusb.mo share/locale/eo/LC_MESSAGES/kcmview1394.mo share/locale/eo/LC_MESSAGES/kinfocenter.mo share/locale/es/LC_MESSAGES/kcm-about-distro.mo share/locale/es/LC_MESSAGES/kcm_energyinfo.mo share/locale/es/LC_MESSAGES/kcm_fileindexermonitor.mo share/locale/es/LC_MESSAGES/kcm_memory.mo share/locale/es/LC_MESSAGES/kcm_pci.mo share/locale/es/LC_MESSAGES/kcmdevinfo.mo share/locale/es/LC_MESSAGES/kcminfo.mo share/locale/es/LC_MESSAGES/kcmnic.mo share/locale/es/LC_MESSAGES/kcmopengl.mo share/locale/es/LC_MESSAGES/kcmsamba.mo share/locale/es/LC_MESSAGES/kcmusb.mo share/locale/es/LC_MESSAGES/kcmview1394.mo share/locale/es/LC_MESSAGES/kinfocenter.mo share/locale/et/LC_MESSAGES/kcm-about-distro.mo share/locale/et/LC_MESSAGES/kcm_energyinfo.mo share/locale/et/LC_MESSAGES/kcm_fileindexermonitor.mo share/locale/et/LC_MESSAGES/kcm_memory.mo share/locale/et/LC_MESSAGES/kcm_pci.mo share/locale/et/LC_MESSAGES/kcmdevinfo.mo share/locale/et/LC_MESSAGES/kcminfo.mo share/locale/et/LC_MESSAGES/kcmnic.mo share/locale/et/LC_MESSAGES/kcmopengl.mo share/locale/et/LC_MESSAGES/kcmsamba.mo share/locale/et/LC_MESSAGES/kcmusb.mo share/locale/et/LC_MESSAGES/kcmview1394.mo share/locale/et/LC_MESSAGES/kinfocenter.mo share/locale/eu/LC_MESSAGES/kcm-about-distro.mo share/locale/eu/LC_MESSAGES/kcm_energyinfo.mo share/locale/eu/LC_MESSAGES/kcm_fileindexermonitor.mo share/locale/eu/LC_MESSAGES/kcm_memory.mo share/locale/eu/LC_MESSAGES/kcm_pci.mo share/locale/eu/LC_MESSAGES/kcmdevinfo.mo share/locale/eu/LC_MESSAGES/kcminfo.mo share/locale/eu/LC_MESSAGES/kcmnic.mo share/locale/eu/LC_MESSAGES/kcmopengl.mo share/locale/eu/LC_MESSAGES/kcmsamba.mo share/locale/eu/LC_MESSAGES/kcmusb.mo share/locale/eu/LC_MESSAGES/kcmview1394.mo share/locale/eu/LC_MESSAGES/kinfocenter.mo share/locale/fa/LC_MESSAGES/kcm_memory.mo share/locale/fa/LC_MESSAGES/kcm_pci.mo share/locale/fa/LC_MESSAGES/kcmdevinfo.mo share/locale/fa/LC_MESSAGES/kcminfo.mo share/locale/fa/LC_MESSAGES/kcmopengl.mo share/locale/fa/LC_MESSAGES/kcmsamba.mo share/locale/fa/LC_MESSAGES/kcmusb.mo share/locale/fa/LC_MESSAGES/kcmview1394.mo share/locale/fa/LC_MESSAGES/kinfocenter.mo share/locale/fi/LC_MESSAGES/kcm-about-distro.mo share/locale/fi/LC_MESSAGES/kcm_energyinfo.mo share/locale/fi/LC_MESSAGES/kcm_fileindexermonitor.mo share/locale/fi/LC_MESSAGES/kcm_memory.mo share/locale/fi/LC_MESSAGES/kcm_pci.mo share/locale/fi/LC_MESSAGES/kcmdevinfo.mo share/locale/fi/LC_MESSAGES/kcminfo.mo share/locale/fi/LC_MESSAGES/kcmnic.mo share/locale/fi/LC_MESSAGES/kcmopengl.mo share/locale/fi/LC_MESSAGES/kcmsamba.mo share/locale/fi/LC_MESSAGES/kcmusb.mo share/locale/fi/LC_MESSAGES/kcmview1394.mo share/locale/fi/LC_MESSAGES/kinfocenter.mo share/locale/fr/LC_MESSAGES/kcm-about-distro.mo share/locale/fr/LC_MESSAGES/kcm_energyinfo.mo share/locale/fr/LC_MESSAGES/kcm_fileindexermonitor.mo share/locale/fr/LC_MESSAGES/kcm_memory.mo share/locale/fr/LC_MESSAGES/kcm_pci.mo share/locale/fr/LC_MESSAGES/kcmdevinfo.mo share/locale/fr/LC_MESSAGES/kcminfo.mo share/locale/fr/LC_MESSAGES/kcmnic.mo share/locale/fr/LC_MESSAGES/kcmopengl.mo share/locale/fr/LC_MESSAGES/kcmsamba.mo share/locale/fr/LC_MESSAGES/kcmusb.mo share/locale/fr/LC_MESSAGES/kcmview1394.mo share/locale/fr/LC_MESSAGES/kinfocenter.mo share/locale/fy/LC_MESSAGES/kcm_memory.mo share/locale/fy/LC_MESSAGES/kcm_pci.mo share/locale/fy/LC_MESSAGES/kcminfo.mo share/locale/fy/LC_MESSAGES/kcmopengl.mo share/locale/fy/LC_MESSAGES/kcmsamba.mo share/locale/fy/LC_MESSAGES/kcmusb.mo share/locale/fy/LC_MESSAGES/kcmview1394.mo share/locale/fy/LC_MESSAGES/kinfocenter.mo share/locale/ga/LC_MESSAGES/kcm_memory.mo share/locale/ga/LC_MESSAGES/kcm_pci.mo share/locale/ga/LC_MESSAGES/kcmdevinfo.mo share/locale/ga/LC_MESSAGES/kcminfo.mo share/locale/ga/LC_MESSAGES/kcmnic.mo share/locale/ga/LC_MESSAGES/kcmopengl.mo share/locale/ga/LC_MESSAGES/kcmsamba.mo share/locale/ga/LC_MESSAGES/kcmusb.mo share/locale/ga/LC_MESSAGES/kcmview1394.mo share/locale/ga/LC_MESSAGES/kinfocenter.mo share/locale/gl/LC_MESSAGES/kcm-about-distro.mo share/locale/gl/LC_MESSAGES/kcm_energyinfo.mo share/locale/gl/LC_MESSAGES/kcm_fileindexermonitor.mo share/locale/gl/LC_MESSAGES/kcm_memory.mo share/locale/gl/LC_MESSAGES/kcm_pci.mo share/locale/gl/LC_MESSAGES/kcmdevinfo.mo share/locale/gl/LC_MESSAGES/kcminfo.mo share/locale/gl/LC_MESSAGES/kcmnic.mo share/locale/gl/LC_MESSAGES/kcmopengl.mo share/locale/gl/LC_MESSAGES/kcmsamba.mo share/locale/gl/LC_MESSAGES/kcmusb.mo share/locale/gl/LC_MESSAGES/kcmview1394.mo share/locale/gl/LC_MESSAGES/kinfocenter.mo share/locale/gu/LC_MESSAGES/kcm_memory.mo share/locale/gu/LC_MESSAGES/kcm_pci.mo share/locale/gu/LC_MESSAGES/kcmdevinfo.mo share/locale/gu/LC_MESSAGES/kcminfo.mo share/locale/gu/LC_MESSAGES/kcmnic.mo share/locale/gu/LC_MESSAGES/kcmopengl.mo share/locale/gu/LC_MESSAGES/kcmsamba.mo share/locale/gu/LC_MESSAGES/kcmusb.mo share/locale/gu/LC_MESSAGES/kcmview1394.mo share/locale/gu/LC_MESSAGES/kinfocenter.mo share/locale/he/LC_MESSAGES/kcm-about-distro.mo share/locale/he/LC_MESSAGES/kcm_energyinfo.mo share/locale/he/LC_MESSAGES/kcm_fileindexermonitor.mo share/locale/he/LC_MESSAGES/kcm_memory.mo share/locale/he/LC_MESSAGES/kcm_pci.mo share/locale/he/LC_MESSAGES/kcmdevinfo.mo share/locale/he/LC_MESSAGES/kcminfo.mo share/locale/he/LC_MESSAGES/kcmnic.mo share/locale/he/LC_MESSAGES/kcmopengl.mo share/locale/he/LC_MESSAGES/kcmsamba.mo share/locale/he/LC_MESSAGES/kcmusb.mo share/locale/he/LC_MESSAGES/kcmview1394.mo share/locale/he/LC_MESSAGES/kinfocenter.mo share/locale/hi/LC_MESSAGES/kcm_memory.mo share/locale/hi/LC_MESSAGES/kcm_pci.mo share/locale/hi/LC_MESSAGES/kcmdevinfo.mo share/locale/hi/LC_MESSAGES/kcminfo.mo share/locale/hi/LC_MESSAGES/kcmnic.mo share/locale/hi/LC_MESSAGES/kcmopengl.mo share/locale/hi/LC_MESSAGES/kcmsamba.mo share/locale/hi/LC_MESSAGES/kcmusb.mo share/locale/hi/LC_MESSAGES/kcmview1394.mo share/locale/hi/LC_MESSAGES/kinfocenter.mo share/locale/hne/LC_MESSAGES/kcm_memory.mo share/locale/hne/LC_MESSAGES/kcm_pci.mo share/locale/hne/LC_MESSAGES/kcminfo.mo share/locale/hne/LC_MESSAGES/kcmopengl.mo share/locale/hne/LC_MESSAGES/kcmsamba.mo share/locale/hne/LC_MESSAGES/kcmusb.mo share/locale/hne/LC_MESSAGES/kcmview1394.mo share/locale/hne/LC_MESSAGES/kinfocenter.mo share/locale/hr/LC_MESSAGES/kcm_memory.mo share/locale/hr/LC_MESSAGES/kcm_pci.mo share/locale/hr/LC_MESSAGES/kcmdevinfo.mo share/locale/hr/LC_MESSAGES/kcminfo.mo share/locale/hr/LC_MESSAGES/kcmnic.mo share/locale/hr/LC_MESSAGES/kcmopengl.mo share/locale/hr/LC_MESSAGES/kcmsamba.mo share/locale/hr/LC_MESSAGES/kcmusb.mo share/locale/hr/LC_MESSAGES/kcmview1394.mo share/locale/hr/LC_MESSAGES/kinfocenter.mo share/locale/hsb/LC_MESSAGES/kcm_memory.mo share/locale/hsb/LC_MESSAGES/kcm_pci.mo share/locale/hsb/LC_MESSAGES/kcminfo.mo share/locale/hsb/LC_MESSAGES/kcmopengl.mo share/locale/hsb/LC_MESSAGES/kcmsamba.mo share/locale/hsb/LC_MESSAGES/kcmusb.mo share/locale/hsb/LC_MESSAGES/kcmview1394.mo share/locale/hsb/LC_MESSAGES/kinfocenter.mo share/locale/hu/LC_MESSAGES/kcm-about-distro.mo share/locale/hu/LC_MESSAGES/kcm_energyinfo.mo share/locale/hu/LC_MESSAGES/kcm_fileindexermonitor.mo share/locale/hu/LC_MESSAGES/kcm_memory.mo share/locale/hu/LC_MESSAGES/kcm_pci.mo share/locale/hu/LC_MESSAGES/kcmdevinfo.mo share/locale/hu/LC_MESSAGES/kcminfo.mo share/locale/hu/LC_MESSAGES/kcmnic.mo share/locale/hu/LC_MESSAGES/kcmopengl.mo share/locale/hu/LC_MESSAGES/kcmsamba.mo share/locale/hu/LC_MESSAGES/kcmusb.mo share/locale/hu/LC_MESSAGES/kcmview1394.mo share/locale/hu/LC_MESSAGES/kinfocenter.mo share/locale/ia/LC_MESSAGES/kcm-about-distro.mo share/locale/ia/LC_MESSAGES/kcm_energyinfo.mo share/locale/ia/LC_MESSAGES/kcm_fileindexermonitor.mo share/locale/ia/LC_MESSAGES/kcm_memory.mo share/locale/ia/LC_MESSAGES/kcm_pci.mo share/locale/ia/LC_MESSAGES/kcmdevinfo.mo share/locale/ia/LC_MESSAGES/kcminfo.mo share/locale/ia/LC_MESSAGES/kcmnic.mo share/locale/ia/LC_MESSAGES/kcmopengl.mo share/locale/ia/LC_MESSAGES/kcmsamba.mo share/locale/ia/LC_MESSAGES/kcmusb.mo share/locale/ia/LC_MESSAGES/kcmview1394.mo share/locale/ia/LC_MESSAGES/kinfocenter.mo share/locale/id/LC_MESSAGES/kcm-about-distro.mo share/locale/id/LC_MESSAGES/kcm_energyinfo.mo share/locale/id/LC_MESSAGES/kcm_fileindexermonitor.mo share/locale/id/LC_MESSAGES/kcm_memory.mo share/locale/id/LC_MESSAGES/kcm_pci.mo share/locale/id/LC_MESSAGES/kcmdevinfo.mo share/locale/id/LC_MESSAGES/kcminfo.mo share/locale/id/LC_MESSAGES/kcmnic.mo share/locale/id/LC_MESSAGES/kcmopengl.mo share/locale/id/LC_MESSAGES/kcmsamba.mo share/locale/id/LC_MESSAGES/kcmusb.mo share/locale/id/LC_MESSAGES/kcmview1394.mo share/locale/id/LC_MESSAGES/kinfocenter.mo share/locale/is/LC_MESSAGES/kcm_memory.mo share/locale/is/LC_MESSAGES/kcm_pci.mo share/locale/is/LC_MESSAGES/kcmdevinfo.mo share/locale/is/LC_MESSAGES/kcminfo.mo share/locale/is/LC_MESSAGES/kcmnic.mo share/locale/is/LC_MESSAGES/kcmopengl.mo share/locale/is/LC_MESSAGES/kcmsamba.mo share/locale/is/LC_MESSAGES/kcmusb.mo share/locale/is/LC_MESSAGES/kcmview1394.mo share/locale/is/LC_MESSAGES/kinfocenter.mo share/locale/it/LC_MESSAGES/kcm-about-distro.mo share/locale/it/LC_MESSAGES/kcm_energyinfo.mo share/locale/it/LC_MESSAGES/kcm_fileindexermonitor.mo share/locale/it/LC_MESSAGES/kcm_memory.mo share/locale/it/LC_MESSAGES/kcm_pci.mo share/locale/it/LC_MESSAGES/kcmdevinfo.mo share/locale/it/LC_MESSAGES/kcminfo.mo share/locale/it/LC_MESSAGES/kcmnic.mo share/locale/it/LC_MESSAGES/kcmopengl.mo share/locale/it/LC_MESSAGES/kcmsamba.mo share/locale/it/LC_MESSAGES/kcmusb.mo share/locale/it/LC_MESSAGES/kcmview1394.mo share/locale/it/LC_MESSAGES/kinfocenter.mo share/locale/ja/LC_MESSAGES/kcm-about-distro.mo share/locale/ja/LC_MESSAGES/kcm_energyinfo.mo share/locale/ja/LC_MESSAGES/kcm_fileindexermonitor.mo share/locale/ja/LC_MESSAGES/kcm_memory.mo share/locale/ja/LC_MESSAGES/kcm_pci.mo share/locale/ja/LC_MESSAGES/kcmdevinfo.mo share/locale/ja/LC_MESSAGES/kcminfo.mo share/locale/ja/LC_MESSAGES/kcmnic.mo share/locale/ja/LC_MESSAGES/kcmopengl.mo share/locale/ja/LC_MESSAGES/kcmsamba.mo share/locale/ja/LC_MESSAGES/kcmusb.mo share/locale/ja/LC_MESSAGES/kcmview1394.mo share/locale/ja/LC_MESSAGES/kinfocenter.mo share/locale/kk/LC_MESSAGES/kcm_memory.mo share/locale/kk/LC_MESSAGES/kcm_pci.mo share/locale/kk/LC_MESSAGES/kcmdevinfo.mo share/locale/kk/LC_MESSAGES/kcminfo.mo share/locale/kk/LC_MESSAGES/kcmnic.mo share/locale/kk/LC_MESSAGES/kcmopengl.mo share/locale/kk/LC_MESSAGES/kcmsamba.mo share/locale/kk/LC_MESSAGES/kcmusb.mo share/locale/kk/LC_MESSAGES/kcmview1394.mo share/locale/kk/LC_MESSAGES/kinfocenter.mo share/locale/km/LC_MESSAGES/kcm_memory.mo share/locale/km/LC_MESSAGES/kcm_pci.mo share/locale/km/LC_MESSAGES/kcmdevinfo.mo share/locale/km/LC_MESSAGES/kcminfo.mo share/locale/km/LC_MESSAGES/kcmnic.mo share/locale/km/LC_MESSAGES/kcmopengl.mo share/locale/km/LC_MESSAGES/kcmsamba.mo share/locale/km/LC_MESSAGES/kcmusb.mo share/locale/km/LC_MESSAGES/kcmview1394.mo share/locale/km/LC_MESSAGES/kinfocenter.mo share/locale/kn/LC_MESSAGES/kcm_memory.mo share/locale/kn/LC_MESSAGES/kcm_pci.mo share/locale/kn/LC_MESSAGES/kcmdevinfo.mo share/locale/kn/LC_MESSAGES/kcminfo.mo share/locale/kn/LC_MESSAGES/kcmnic.mo share/locale/kn/LC_MESSAGES/kcmopengl.mo share/locale/kn/LC_MESSAGES/kcmsamba.mo share/locale/kn/LC_MESSAGES/kcmusb.mo share/locale/kn/LC_MESSAGES/kcmview1394.mo share/locale/kn/LC_MESSAGES/kinfocenter.mo share/locale/ko/LC_MESSAGES/kcm-about-distro.mo share/locale/ko/LC_MESSAGES/kcm_energyinfo.mo share/locale/ko/LC_MESSAGES/kcm_fileindexermonitor.mo share/locale/ko/LC_MESSAGES/kcm_memory.mo share/locale/ko/LC_MESSAGES/kcm_pci.mo share/locale/ko/LC_MESSAGES/kcmdevinfo.mo share/locale/ko/LC_MESSAGES/kcminfo.mo share/locale/ko/LC_MESSAGES/kcmnic.mo share/locale/ko/LC_MESSAGES/kcmopengl.mo share/locale/ko/LC_MESSAGES/kcmsamba.mo share/locale/ko/LC_MESSAGES/kcmusb.mo share/locale/ko/LC_MESSAGES/kcmview1394.mo share/locale/ko/LC_MESSAGES/kinfocenter.mo share/locale/ku/LC_MESSAGES/kcm_memory.mo share/locale/ku/LC_MESSAGES/kcm_pci.mo share/locale/ku/LC_MESSAGES/kcminfo.mo share/locale/ku/LC_MESSAGES/kcmopengl.mo share/locale/ku/LC_MESSAGES/kcmsamba.mo share/locale/ku/LC_MESSAGES/kcmusb.mo share/locale/ku/LC_MESSAGES/kcmview1394.mo share/locale/ku/LC_MESSAGES/kinfocenter.mo share/locale/lt/LC_MESSAGES/kcm-about-distro.mo share/locale/lt/LC_MESSAGES/kcm_energyinfo.mo share/locale/lt/LC_MESSAGES/kcm_memory.mo share/locale/lt/LC_MESSAGES/kcm_pci.mo share/locale/lt/LC_MESSAGES/kcmdevinfo.mo share/locale/lt/LC_MESSAGES/kcminfo.mo share/locale/lt/LC_MESSAGES/kcmnic.mo share/locale/lt/LC_MESSAGES/kcmopengl.mo share/locale/lt/LC_MESSAGES/kcmsamba.mo share/locale/lt/LC_MESSAGES/kcmusb.mo share/locale/lt/LC_MESSAGES/kcmview1394.mo share/locale/lt/LC_MESSAGES/kinfocenter.mo share/locale/lv/LC_MESSAGES/kcm_memory.mo share/locale/lv/LC_MESSAGES/kcm_pci.mo share/locale/lv/LC_MESSAGES/kcmdevinfo.mo share/locale/lv/LC_MESSAGES/kcminfo.mo share/locale/lv/LC_MESSAGES/kcmnic.mo share/locale/lv/LC_MESSAGES/kcmopengl.mo share/locale/lv/LC_MESSAGES/kcmsamba.mo share/locale/lv/LC_MESSAGES/kcmusb.mo share/locale/lv/LC_MESSAGES/kcmview1394.mo share/locale/lv/LC_MESSAGES/kinfocenter.mo share/locale/mai/LC_MESSAGES/kcm_memory.mo share/locale/mai/LC_MESSAGES/kcm_pci.mo share/locale/mai/LC_MESSAGES/kcmdevinfo.mo share/locale/mai/LC_MESSAGES/kcminfo.mo share/locale/mai/LC_MESSAGES/kcmnic.mo share/locale/mai/LC_MESSAGES/kcmopengl.mo share/locale/mai/LC_MESSAGES/kcmsamba.mo share/locale/mai/LC_MESSAGES/kcmusb.mo share/locale/mai/LC_MESSAGES/kcmview1394.mo share/locale/mai/LC_MESSAGES/kinfocenter.mo share/locale/mk/LC_MESSAGES/kcm_memory.mo share/locale/mk/LC_MESSAGES/kcm_pci.mo share/locale/mk/LC_MESSAGES/kcminfo.mo share/locale/mk/LC_MESSAGES/kcmsamba.mo share/locale/mk/LC_MESSAGES/kcmusb.mo share/locale/mk/LC_MESSAGES/kcmview1394.mo share/locale/mk/LC_MESSAGES/kinfocenter.mo share/locale/ml/LC_MESSAGES/kcm_memory.mo share/locale/ml/LC_MESSAGES/kcm_pci.mo share/locale/ml/LC_MESSAGES/kcmdevinfo.mo share/locale/ml/LC_MESSAGES/kcminfo.mo share/locale/ml/LC_MESSAGES/kcmnic.mo share/locale/ml/LC_MESSAGES/kcmopengl.mo share/locale/ml/LC_MESSAGES/kcmsamba.mo share/locale/ml/LC_MESSAGES/kcmusb.mo share/locale/ml/LC_MESSAGES/kcmview1394.mo share/locale/ml/LC_MESSAGES/kinfocenter.mo share/locale/mr/LC_MESSAGES/kcm_memory.mo share/locale/mr/LC_MESSAGES/kcm_pci.mo share/locale/mr/LC_MESSAGES/kcmdevinfo.mo share/locale/mr/LC_MESSAGES/kcminfo.mo share/locale/mr/LC_MESSAGES/kcmnic.mo share/locale/mr/LC_MESSAGES/kcmopengl.mo share/locale/mr/LC_MESSAGES/kcmsamba.mo share/locale/mr/LC_MESSAGES/kcmusb.mo share/locale/mr/LC_MESSAGES/kcmview1394.mo share/locale/mr/LC_MESSAGES/kinfocenter.mo share/locale/ms/LC_MESSAGES/kcm_memory.mo share/locale/ms/LC_MESSAGES/kcm_pci.mo share/locale/ms/LC_MESSAGES/kcmdevinfo.mo share/locale/ms/LC_MESSAGES/kcminfo.mo share/locale/ms/LC_MESSAGES/kcmnic.mo share/locale/ms/LC_MESSAGES/kcmopengl.mo share/locale/ms/LC_MESSAGES/kcmsamba.mo share/locale/ms/LC_MESSAGES/kcmusb.mo share/locale/ms/LC_MESSAGES/kcmview1394.mo share/locale/ms/LC_MESSAGES/kinfocenter.mo share/locale/nb/LC_MESSAGES/kcm-about-distro.mo share/locale/nb/LC_MESSAGES/kcm_energyinfo.mo share/locale/nb/LC_MESSAGES/kcm_memory.mo share/locale/nb/LC_MESSAGES/kcm_pci.mo share/locale/nb/LC_MESSAGES/kcmdevinfo.mo share/locale/nb/LC_MESSAGES/kcminfo.mo share/locale/nb/LC_MESSAGES/kcmnic.mo share/locale/nb/LC_MESSAGES/kcmopengl.mo share/locale/nb/LC_MESSAGES/kcmsamba.mo share/locale/nb/LC_MESSAGES/kcmusb.mo share/locale/nb/LC_MESSAGES/kcmview1394.mo share/locale/nb/LC_MESSAGES/kinfocenter.mo share/locale/nds/LC_MESSAGES/kcm_memory.mo share/locale/nds/LC_MESSAGES/kcm_pci.mo share/locale/nds/LC_MESSAGES/kcmdevinfo.mo share/locale/nds/LC_MESSAGES/kcminfo.mo share/locale/nds/LC_MESSAGES/kcmnic.mo share/locale/nds/LC_MESSAGES/kcmopengl.mo share/locale/nds/LC_MESSAGES/kcmsamba.mo share/locale/nds/LC_MESSAGES/kcmusb.mo share/locale/nds/LC_MESSAGES/kcmview1394.mo share/locale/nds/LC_MESSAGES/kinfocenter.mo share/locale/ne/LC_MESSAGES/kcminfo.mo share/locale/ne/LC_MESSAGES/kcmsamba.mo share/locale/ne/LC_MESSAGES/kcmusb.mo share/locale/ne/LC_MESSAGES/kcmview1394.mo share/locale/ne/LC_MESSAGES/kinfocenter.mo share/locale/nl/LC_MESSAGES/kcm-about-distro.mo share/locale/nl/LC_MESSAGES/kcm_energyinfo.mo share/locale/nl/LC_MESSAGES/kcm_fileindexermonitor.mo share/locale/nl/LC_MESSAGES/kcm_memory.mo share/locale/nl/LC_MESSAGES/kcm_pci.mo share/locale/nl/LC_MESSAGES/kcmdevinfo.mo share/locale/nl/LC_MESSAGES/kcminfo.mo share/locale/nl/LC_MESSAGES/kcmnic.mo share/locale/nl/LC_MESSAGES/kcmopengl.mo share/locale/nl/LC_MESSAGES/kcmsamba.mo share/locale/nl/LC_MESSAGES/kcmusb.mo share/locale/nl/LC_MESSAGES/kcmview1394.mo share/locale/nl/LC_MESSAGES/kinfocenter.mo share/locale/nn/LC_MESSAGES/kcm-about-distro.mo share/locale/nn/LC_MESSAGES/kcm_energyinfo.mo share/locale/nn/LC_MESSAGES/kcm_fileindexermonitor.mo share/locale/nn/LC_MESSAGES/kcm_memory.mo share/locale/nn/LC_MESSAGES/kcm_pci.mo share/locale/nn/LC_MESSAGES/kcmdevinfo.mo share/locale/nn/LC_MESSAGES/kcminfo.mo share/locale/nn/LC_MESSAGES/kcmnic.mo share/locale/nn/LC_MESSAGES/kcmopengl.mo share/locale/nn/LC_MESSAGES/kcmsamba.mo share/locale/nn/LC_MESSAGES/kcmusb.mo share/locale/nn/LC_MESSAGES/kcmview1394.mo share/locale/nn/LC_MESSAGES/kinfocenter.mo share/locale/oc/LC_MESSAGES/kcminfo.mo share/locale/oc/LC_MESSAGES/kcmsamba.mo share/locale/oc/LC_MESSAGES/kcmusb.mo share/locale/oc/LC_MESSAGES/kcmview1394.mo share/locale/oc/LC_MESSAGES/kinfocenter.mo share/locale/or/LC_MESSAGES/kcm_memory.mo share/locale/or/LC_MESSAGES/kcm_pci.mo share/locale/or/LC_MESSAGES/kcminfo.mo share/locale/or/LC_MESSAGES/kcmopengl.mo share/locale/or/LC_MESSAGES/kcmsamba.mo share/locale/or/LC_MESSAGES/kcmusb.mo share/locale/or/LC_MESSAGES/kcmview1394.mo share/locale/or/LC_MESSAGES/kinfocenter.mo share/locale/pa/LC_MESSAGES/kcm-about-distro.mo share/locale/pa/LC_MESSAGES/kcm_energyinfo.mo share/locale/pa/LC_MESSAGES/kcm_memory.mo share/locale/pa/LC_MESSAGES/kcm_pci.mo share/locale/pa/LC_MESSAGES/kcmdevinfo.mo share/locale/pa/LC_MESSAGES/kcminfo.mo share/locale/pa/LC_MESSAGES/kcmnic.mo share/locale/pa/LC_MESSAGES/kcmopengl.mo share/locale/pa/LC_MESSAGES/kcmsamba.mo share/locale/pa/LC_MESSAGES/kcmusb.mo share/locale/pa/LC_MESSAGES/kcmview1394.mo share/locale/pa/LC_MESSAGES/kinfocenter.mo share/locale/pl/LC_MESSAGES/kcm-about-distro.mo share/locale/pl/LC_MESSAGES/kcm_energyinfo.mo share/locale/pl/LC_MESSAGES/kcm_fileindexermonitor.mo share/locale/pl/LC_MESSAGES/kcm_memory.mo share/locale/pl/LC_MESSAGES/kcm_pci.mo share/locale/pl/LC_MESSAGES/kcmdevinfo.mo share/locale/pl/LC_MESSAGES/kcminfo.mo share/locale/pl/LC_MESSAGES/kcmnic.mo share/locale/pl/LC_MESSAGES/kcmopengl.mo share/locale/pl/LC_MESSAGES/kcmsamba.mo share/locale/pl/LC_MESSAGES/kcmusb.mo share/locale/pl/LC_MESSAGES/kcmview1394.mo share/locale/pl/LC_MESSAGES/kinfocenter.mo share/locale/pt/LC_MESSAGES/kcm-about-distro.mo share/locale/pt/LC_MESSAGES/kcm_energyinfo.mo share/locale/pt/LC_MESSAGES/kcm_fileindexermonitor.mo share/locale/pt/LC_MESSAGES/kcm_memory.mo share/locale/pt/LC_MESSAGES/kcm_pci.mo share/locale/pt/LC_MESSAGES/kcmdevinfo.mo share/locale/pt/LC_MESSAGES/kcminfo.mo share/locale/pt/LC_MESSAGES/kcmnic.mo share/locale/pt/LC_MESSAGES/kcmopengl.mo share/locale/pt/LC_MESSAGES/kcmsamba.mo share/locale/pt/LC_MESSAGES/kcmusb.mo share/locale/pt/LC_MESSAGES/kcmview1394.mo share/locale/pt/LC_MESSAGES/kinfocenter.mo share/locale/pt_BR/LC_MESSAGES/kcm-about-distro.mo share/locale/pt_BR/LC_MESSAGES/kcm_energyinfo.mo share/locale/pt_BR/LC_MESSAGES/kcm_fileindexermonitor.mo share/locale/pt_BR/LC_MESSAGES/kcm_memory.mo share/locale/pt_BR/LC_MESSAGES/kcm_pci.mo share/locale/pt_BR/LC_MESSAGES/kcmdevinfo.mo share/locale/pt_BR/LC_MESSAGES/kcminfo.mo share/locale/pt_BR/LC_MESSAGES/kcmnic.mo share/locale/pt_BR/LC_MESSAGES/kcmopengl.mo share/locale/pt_BR/LC_MESSAGES/kcmsamba.mo share/locale/pt_BR/LC_MESSAGES/kcmusb.mo share/locale/pt_BR/LC_MESSAGES/kcmview1394.mo share/locale/pt_BR/LC_MESSAGES/kinfocenter.mo share/locale/ro/LC_MESSAGES/kcm-about-distro.mo share/locale/ro/LC_MESSAGES/kcm_energyinfo.mo share/locale/ro/LC_MESSAGES/kcm_memory.mo share/locale/ro/LC_MESSAGES/kcm_pci.mo share/locale/ro/LC_MESSAGES/kcmdevinfo.mo share/locale/ro/LC_MESSAGES/kcminfo.mo share/locale/ro/LC_MESSAGES/kcmnic.mo share/locale/ro/LC_MESSAGES/kcmopengl.mo share/locale/ro/LC_MESSAGES/kcmsamba.mo share/locale/ro/LC_MESSAGES/kcmusb.mo share/locale/ro/LC_MESSAGES/kcmview1394.mo share/locale/ro/LC_MESSAGES/kinfocenter.mo share/locale/ru/LC_MESSAGES/kcm-about-distro.mo share/locale/ru/LC_MESSAGES/kcm_energyinfo.mo share/locale/ru/LC_MESSAGES/kcm_fileindexermonitor.mo share/locale/ru/LC_MESSAGES/kcm_memory.mo share/locale/ru/LC_MESSAGES/kcm_pci.mo share/locale/ru/LC_MESSAGES/kcmdevinfo.mo share/locale/ru/LC_MESSAGES/kcminfo.mo share/locale/ru/LC_MESSAGES/kcmnic.mo share/locale/ru/LC_MESSAGES/kcmopengl.mo share/locale/ru/LC_MESSAGES/kcmsamba.mo share/locale/ru/LC_MESSAGES/kcmusb.mo share/locale/ru/LC_MESSAGES/kcmview1394.mo share/locale/ru/LC_MESSAGES/kinfocenter.mo share/locale/se/LC_MESSAGES/kcminfo.mo share/locale/se/LC_MESSAGES/kcmnic.mo share/locale/se/LC_MESSAGES/kcmsamba.mo share/locale/se/LC_MESSAGES/kcmusb.mo share/locale/se/LC_MESSAGES/kcmview1394.mo share/locale/si/LC_MESSAGES/kcm_memory.mo share/locale/si/LC_MESSAGES/kcm_pci.mo share/locale/si/LC_MESSAGES/kcmdevinfo.mo share/locale/si/LC_MESSAGES/kcminfo.mo share/locale/si/LC_MESSAGES/kcmopengl.mo share/locale/si/LC_MESSAGES/kcmsamba.mo share/locale/si/LC_MESSAGES/kcmusb.mo share/locale/si/LC_MESSAGES/kcmview1394.mo share/locale/si/LC_MESSAGES/kinfocenter.mo share/locale/sk/LC_MESSAGES/kcm-about-distro.mo share/locale/sk/LC_MESSAGES/kcm_energyinfo.mo share/locale/sk/LC_MESSAGES/kcm_fileindexermonitor.mo share/locale/sk/LC_MESSAGES/kcm_memory.mo share/locale/sk/LC_MESSAGES/kcm_pci.mo share/locale/sk/LC_MESSAGES/kcmdevinfo.mo share/locale/sk/LC_MESSAGES/kcminfo.mo share/locale/sk/LC_MESSAGES/kcmnic.mo share/locale/sk/LC_MESSAGES/kcmopengl.mo share/locale/sk/LC_MESSAGES/kcmsamba.mo share/locale/sk/LC_MESSAGES/kcmusb.mo share/locale/sk/LC_MESSAGES/kcmview1394.mo share/locale/sk/LC_MESSAGES/kinfocenter.mo share/locale/sl/LC_MESSAGES/kcm-about-distro.mo share/locale/sl/LC_MESSAGES/kcm_energyinfo.mo share/locale/sl/LC_MESSAGES/kcm_fileindexermonitor.mo share/locale/sl/LC_MESSAGES/kcm_memory.mo share/locale/sl/LC_MESSAGES/kcm_pci.mo share/locale/sl/LC_MESSAGES/kcmdevinfo.mo share/locale/sl/LC_MESSAGES/kcminfo.mo share/locale/sl/LC_MESSAGES/kcmnic.mo share/locale/sl/LC_MESSAGES/kcmopengl.mo share/locale/sl/LC_MESSAGES/kcmsamba.mo share/locale/sl/LC_MESSAGES/kcmusb.mo share/locale/sl/LC_MESSAGES/kcmview1394.mo share/locale/sl/LC_MESSAGES/kinfocenter.mo share/locale/sq/LC_MESSAGES/kcm_memory.mo share/locale/sq/LC_MESSAGES/kcm_pci.mo share/locale/sq/LC_MESSAGES/kcminfo.mo share/locale/sq/LC_MESSAGES/kcmnic.mo share/locale/sq/LC_MESSAGES/kcmopengl.mo share/locale/sq/LC_MESSAGES/kcmsamba.mo share/locale/sq/LC_MESSAGES/kcmusb.mo share/locale/sq/LC_MESSAGES/kcmview1394.mo share/locale/sq/LC_MESSAGES/kinfocenter.mo share/locale/sr/LC_MESSAGES/kcm-about-distro.mo share/locale/sr/LC_MESSAGES/kcm_energyinfo.mo share/locale/sr/LC_MESSAGES/kcm_fileindexermonitor.mo share/locale/sr/LC_MESSAGES/kcm_memory.mo share/locale/sr/LC_MESSAGES/kcm_pci.mo share/locale/sr/LC_MESSAGES/kcmdevinfo.mo share/locale/sr/LC_MESSAGES/kcminfo.mo share/locale/sr/LC_MESSAGES/kcmnic.mo share/locale/sr/LC_MESSAGES/kcmopengl.mo share/locale/sr/LC_MESSAGES/kcmsamba.mo share/locale/sr/LC_MESSAGES/kcmusb.mo share/locale/sr/LC_MESSAGES/kcmview1394.mo share/locale/sr/LC_MESSAGES/kinfocenter.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm-about-distro.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_energyinfo.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_fileindexermonitor.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_memory.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_pci.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmdevinfo.mo share/locale/sr@ijekavian/LC_MESSAGES/kcminfo.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmnic.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmopengl.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmsamba.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmusb.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmview1394.mo share/locale/sr@ijekavian/LC_MESSAGES/kinfocenter.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm-about-distro.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_energyinfo.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_fileindexermonitor.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_memory.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_pci.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmdevinfo.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcminfo.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmnic.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmopengl.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmsamba.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmusb.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmview1394.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kinfocenter.mo share/locale/sr@latin/LC_MESSAGES/kcm-about-distro.mo share/locale/sr@latin/LC_MESSAGES/kcm_energyinfo.mo share/locale/sr@latin/LC_MESSAGES/kcm_fileindexermonitor.mo share/locale/sr@latin/LC_MESSAGES/kcm_memory.mo share/locale/sr@latin/LC_MESSAGES/kcm_pci.mo share/locale/sr@latin/LC_MESSAGES/kcmdevinfo.mo share/locale/sr@latin/LC_MESSAGES/kcminfo.mo share/locale/sr@latin/LC_MESSAGES/kcmnic.mo share/locale/sr@latin/LC_MESSAGES/kcmopengl.mo share/locale/sr@latin/LC_MESSAGES/kcmsamba.mo share/locale/sr@latin/LC_MESSAGES/kcmusb.mo share/locale/sr@latin/LC_MESSAGES/kcmview1394.mo share/locale/sr@latin/LC_MESSAGES/kinfocenter.mo share/locale/sv/LC_MESSAGES/kcm-about-distro.mo share/locale/sv/LC_MESSAGES/kcm_energyinfo.mo share/locale/sv/LC_MESSAGES/kcm_fileindexermonitor.mo share/locale/sv/LC_MESSAGES/kcm_memory.mo share/locale/sv/LC_MESSAGES/kcm_pci.mo share/locale/sv/LC_MESSAGES/kcmdevinfo.mo share/locale/sv/LC_MESSAGES/kcminfo.mo share/locale/sv/LC_MESSAGES/kcmnic.mo share/locale/sv/LC_MESSAGES/kcmopengl.mo share/locale/sv/LC_MESSAGES/kcmsamba.mo share/locale/sv/LC_MESSAGES/kcmusb.mo share/locale/sv/LC_MESSAGES/kcmview1394.mo share/locale/sv/LC_MESSAGES/kinfocenter.mo share/locale/ta/LC_MESSAGES/kcm_memory.mo share/locale/ta/LC_MESSAGES/kcm_pci.mo share/locale/ta/LC_MESSAGES/kcminfo.mo share/locale/ta/LC_MESSAGES/kcmopengl.mo share/locale/ta/LC_MESSAGES/kcmsamba.mo share/locale/ta/LC_MESSAGES/kcmusb.mo share/locale/ta/LC_MESSAGES/kcmview1394.mo share/locale/ta/LC_MESSAGES/kinfocenter.mo share/locale/te/LC_MESSAGES/kcm_memory.mo share/locale/te/LC_MESSAGES/kcm_pci.mo share/locale/te/LC_MESSAGES/kcminfo.mo share/locale/te/LC_MESSAGES/kcmopengl.mo share/locale/te/LC_MESSAGES/kcmsamba.mo share/locale/te/LC_MESSAGES/kcmusb.mo share/locale/te/LC_MESSAGES/kcmview1394.mo share/locale/te/LC_MESSAGES/kinfocenter.mo share/locale/tg/LC_MESSAGES/kcm_memory.mo share/locale/tg/LC_MESSAGES/kcm_pci.mo share/locale/tg/LC_MESSAGES/kcmdevinfo.mo share/locale/tg/LC_MESSAGES/kcminfo.mo share/locale/tg/LC_MESSAGES/kcmnic.mo share/locale/tg/LC_MESSAGES/kcmopengl.mo share/locale/tg/LC_MESSAGES/kcmsamba.mo share/locale/tg/LC_MESSAGES/kcmusb.mo share/locale/tg/LC_MESSAGES/kcmview1394.mo share/locale/tg/LC_MESSAGES/kinfocenter.mo share/locale/th/LC_MESSAGES/kcm_memory.mo share/locale/th/LC_MESSAGES/kcm_pci.mo share/locale/th/LC_MESSAGES/kcmdevinfo.mo share/locale/th/LC_MESSAGES/kcminfo.mo share/locale/th/LC_MESSAGES/kcmnic.mo share/locale/th/LC_MESSAGES/kcmopengl.mo share/locale/th/LC_MESSAGES/kcmsamba.mo share/locale/th/LC_MESSAGES/kcmusb.mo share/locale/th/LC_MESSAGES/kcmview1394.mo share/locale/th/LC_MESSAGES/kinfocenter.mo share/locale/tr/LC_MESSAGES/kcm-about-distro.mo share/locale/tr/LC_MESSAGES/kcm_energyinfo.mo share/locale/tr/LC_MESSAGES/kcm_fileindexermonitor.mo share/locale/tr/LC_MESSAGES/kcm_memory.mo share/locale/tr/LC_MESSAGES/kcm_pci.mo share/locale/tr/LC_MESSAGES/kcmdevinfo.mo share/locale/tr/LC_MESSAGES/kcminfo.mo share/locale/tr/LC_MESSAGES/kcmnic.mo share/locale/tr/LC_MESSAGES/kcmopengl.mo share/locale/tr/LC_MESSAGES/kcmsamba.mo share/locale/tr/LC_MESSAGES/kcmusb.mo share/locale/tr/LC_MESSAGES/kcmview1394.mo share/locale/tr/LC_MESSAGES/kinfocenter.mo share/locale/ug/LC_MESSAGES/kcm-about-distro.mo share/locale/ug/LC_MESSAGES/kcm_memory.mo share/locale/ug/LC_MESSAGES/kcm_pci.mo share/locale/ug/LC_MESSAGES/kcmdevinfo.mo share/locale/ug/LC_MESSAGES/kcminfo.mo share/locale/ug/LC_MESSAGES/kcmnic.mo share/locale/ug/LC_MESSAGES/kcmopengl.mo share/locale/ug/LC_MESSAGES/kcmsamba.mo share/locale/ug/LC_MESSAGES/kcmusb.mo share/locale/ug/LC_MESSAGES/kcmview1394.mo share/locale/ug/LC_MESSAGES/kinfocenter.mo share/locale/uk/LC_MESSAGES/kcm-about-distro.mo share/locale/uk/LC_MESSAGES/kcm_energyinfo.mo share/locale/uk/LC_MESSAGES/kcm_fileindexermonitor.mo share/locale/uk/LC_MESSAGES/kcm_memory.mo share/locale/uk/LC_MESSAGES/kcm_pci.mo share/locale/uk/LC_MESSAGES/kcmdevinfo.mo share/locale/uk/LC_MESSAGES/kcminfo.mo share/locale/uk/LC_MESSAGES/kcmnic.mo share/locale/uk/LC_MESSAGES/kcmopengl.mo share/locale/uk/LC_MESSAGES/kcmsamba.mo share/locale/uk/LC_MESSAGES/kcmusb.mo share/locale/uk/LC_MESSAGES/kcmview1394.mo share/locale/uk/LC_MESSAGES/kinfocenter.mo share/locale/uz/LC_MESSAGES/kcminfo.mo share/locale/uz/LC_MESSAGES/kcmsamba.mo share/locale/uz/LC_MESSAGES/kcmusb.mo share/locale/uz/LC_MESSAGES/kcmview1394.mo share/locale/uz/LC_MESSAGES/kinfocenter.mo share/locale/uz@cyrillic/LC_MESSAGES/kcminfo.mo share/locale/uz@cyrillic/LC_MESSAGES/kcmsamba.mo share/locale/uz@cyrillic/LC_MESSAGES/kcmusb.mo share/locale/uz@cyrillic/LC_MESSAGES/kcmview1394.mo share/locale/uz@cyrillic/LC_MESSAGES/kinfocenter.mo share/locale/vi/LC_MESSAGES/kcminfo.mo share/locale/vi/LC_MESSAGES/kcmsamba.mo share/locale/vi/LC_MESSAGES/kcmusb.mo share/locale/vi/LC_MESSAGES/kcmview1394.mo share/locale/vi/LC_MESSAGES/kinfocenter.mo share/locale/wa/LC_MESSAGES/kcm_memory.mo share/locale/wa/LC_MESSAGES/kcm_pci.mo share/locale/wa/LC_MESSAGES/kcmdevinfo.mo share/locale/wa/LC_MESSAGES/kcminfo.mo share/locale/wa/LC_MESSAGES/kcmnic.mo share/locale/wa/LC_MESSAGES/kcmopengl.mo share/locale/wa/LC_MESSAGES/kcmsamba.mo share/locale/wa/LC_MESSAGES/kcmusb.mo share/locale/wa/LC_MESSAGES/kcmview1394.mo share/locale/wa/LC_MESSAGES/kinfocenter.mo share/locale/xh/LC_MESSAGES/kcminfo.mo share/locale/xh/LC_MESSAGES/kcmsamba.mo share/locale/xh/LC_MESSAGES/kcmusb.mo share/locale/xh/LC_MESSAGES/kinfocenter.mo share/locale/zh_CN/LC_MESSAGES/kcm-about-distro.mo share/locale/zh_CN/LC_MESSAGES/kcm_energyinfo.mo share/locale/zh_CN/LC_MESSAGES/kcm_fileindexermonitor.mo share/locale/zh_CN/LC_MESSAGES/kcm_memory.mo share/locale/zh_CN/LC_MESSAGES/kcm_pci.mo share/locale/zh_CN/LC_MESSAGES/kcmdevinfo.mo share/locale/zh_CN/LC_MESSAGES/kcminfo.mo share/locale/zh_CN/LC_MESSAGES/kcmnic.mo share/locale/zh_CN/LC_MESSAGES/kcmopengl.mo share/locale/zh_CN/LC_MESSAGES/kcmsamba.mo share/locale/zh_CN/LC_MESSAGES/kcmusb.mo share/locale/zh_CN/LC_MESSAGES/kcmview1394.mo share/locale/zh_CN/LC_MESSAGES/kinfocenter.mo share/locale/zh_TW/LC_MESSAGES/kcm-about-distro.mo share/locale/zh_TW/LC_MESSAGES/kcm_energyinfo.mo share/locale/zh_TW/LC_MESSAGES/kcm_fileindexermonitor.mo share/locale/zh_TW/LC_MESSAGES/kcm_memory.mo share/locale/zh_TW/LC_MESSAGES/kcm_pci.mo share/locale/zh_TW/LC_MESSAGES/kcmdevinfo.mo share/locale/zh_TW/LC_MESSAGES/kcminfo.mo share/locale/zh_TW/LC_MESSAGES/kcmnic.mo share/locale/zh_TW/LC_MESSAGES/kcmopengl.mo share/locale/zh_TW/LC_MESSAGES/kcmsamba.mo share/locale/zh_TW/LC_MESSAGES/kcmusb.mo share/locale/zh_TW/LC_MESSAGES/kcmview1394.mo share/locale/zh_TW/LC_MESSAGES/kinfocenter.mo Index: head/sysutils/plasma5-kmenuedit/Makefile =================================================================== --- head/sysutils/plasma5-kmenuedit/Makefile (revision 492810) +++ head/sysutils/plasma5-kmenuedit/Makefile (revision 492811) @@ -1,20 +1,19 @@ # $FreeBSD$ PORTNAME= kmenuedit DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= sysutils kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 menu editor USES= cmake compiler:c++11-lib cpe gettext kde:5 qt:5 tar:xz USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons guiaddons ecm emoticons hotkeys \ i18n iconthemes init itemmodels itemviews jobwidgets \ kdelibs4support kio notifications parts service solid sonnet \ textwidgets unitconversion widgetsaddons windowsystem xmlgui USE_QT= core dbus gui network printsupport widgets xml\ buildtools_build qmake_build .include Index: head/sysutils/plasma5-kmenuedit/distinfo =================================================================== --- head/sysutils/plasma5-kmenuedit/distinfo (revision 492810) +++ head/sysutils/plasma5-kmenuedit/distinfo (revision 492811) @@ -1,3 +1,3 @@ -TIMESTAMP = 1547014607 -SHA256 (KDE/plasma/5.14.5/kmenuedit-5.14.5.tar.xz) = 2d941202a98bd4b5496388109be021ec1be1ff6dae5688107384c0a2cb5044a9 -SIZE (KDE/plasma/5.14.5/kmenuedit-5.14.5.tar.xz) = 771176 +TIMESTAMP = 1549993937 +SHA256 (KDE/plasma/5.15.0/kmenuedit-5.15.0.tar.xz) = 9873ef537a02cdaa26ec3d09829821be8a73c1b381d8623631e9afef1687f443 +SIZE (KDE/plasma/5.15.0/kmenuedit-5.15.0.tar.xz) = 809624 Index: head/sysutils/plasma5-kmenuedit/pkg-plist =================================================================== --- head/sysutils/plasma5-kmenuedit/pkg-plist (revision 492810) +++ head/sysutils/plasma5-kmenuedit/pkg-plist (revision 492811) @@ -1,148 +1,149 @@ bin/kmenuedit +etc/xdg/kmenuedit.categories lib/libkdeinit5_kmenuedit.so share/applications/org.kde.kmenuedit.desktop share/doc/HTML/ca/kmenuedit/done.png share/doc/HTML/ca/kmenuedit/index.cache.bz2 share/doc/HTML/ca/kmenuedit/index.docbook share/doc/HTML/ca/kmenuedit/itemname.png share/doc/HTML/ca/kmenuedit/new.png share/doc/HTML/ca/kmenuedit/reset.png +share/doc/HTML/ca/kmenuedit/selecticon.png share/doc/HTML/ca/kmenuedit/selectinternet.png share/doc/HTML/de/kmenuedit/index.cache.bz2 share/doc/HTML/de/kmenuedit/index.docbook share/doc/HTML/en/kmenuedit/done.png share/doc/HTML/en/kmenuedit/index.cache.bz2 share/doc/HTML/en/kmenuedit/index.docbook share/doc/HTML/en/kmenuedit/itemname.png share/doc/HTML/en/kmenuedit/new.png share/doc/HTML/en/kmenuedit/reset.png share/doc/HTML/en/kmenuedit/selecticon.png share/doc/HTML/en/kmenuedit/selectinternet.png share/doc/HTML/it/kmenuedit/index.cache.bz2 share/doc/HTML/it/kmenuedit/index.docbook share/doc/HTML/nl/kmenuedit/index.cache.bz2 share/doc/HTML/nl/kmenuedit/index.docbook share/doc/HTML/pt/kmenuedit/index.cache.bz2 share/doc/HTML/pt/kmenuedit/index.docbook share/doc/HTML/pt_BR/kmenuedit/done.png share/doc/HTML/pt_BR/kmenuedit/index.cache.bz2 share/doc/HTML/pt_BR/kmenuedit/index.docbook share/doc/HTML/pt_BR/kmenuedit/itemname.png share/doc/HTML/pt_BR/kmenuedit/new.png share/doc/HTML/pt_BR/kmenuedit/reset.png share/doc/HTML/pt_BR/kmenuedit/selecticon.png share/doc/HTML/pt_BR/kmenuedit/selectinternet.png share/doc/HTML/ru/kmenuedit/done.png share/doc/HTML/ru/kmenuedit/index.cache.bz2 share/doc/HTML/ru/kmenuedit/index.docbook share/doc/HTML/ru/kmenuedit/itemname.png share/doc/HTML/ru/kmenuedit/new.png share/doc/HTML/ru/kmenuedit/selecticon.png share/doc/HTML/ru/kmenuedit/selectinternet.png share/doc/HTML/sv/kmenuedit/index.cache.bz2 share/doc/HTML/sv/kmenuedit/index.docbook share/doc/HTML/uk/kmenuedit/done.png share/doc/HTML/uk/kmenuedit/index.cache.bz2 share/doc/HTML/uk/kmenuedit/index.docbook share/doc/HTML/uk/kmenuedit/itemname.png share/doc/HTML/uk/kmenuedit/new.png share/doc/HTML/uk/kmenuedit/selecticon.png share/doc/HTML/uk/kmenuedit/selectinternet.png share/icons/hicolor/16x16/apps/kmenuedit.png share/icons/hicolor/22x22/apps/kmenuedit.png share/icons/hicolor/32x32/apps/kmenuedit.png share/icons/hicolor/48x48/apps/kmenuedit.png %%DATADIR%%/icons/hicolor/22x22/actions/menu_new.png %%DATADIR%%/icons/hicolor/22x22/actions/menu_new_sep.png %%DATADIR%%/icons/hicolor/32x32/actions/menu_new.png %%DATADIR%%/icons/hicolor/32x32/actions/menu_new_sep.png share/kxmlgui5/kmenuedit/kmenueditui.rc share/locale/af/LC_MESSAGES/kmenuedit.mo share/locale/ar/LC_MESSAGES/kmenuedit.mo -share/locale/ast/LC_MESSAGES/kmenuedit.mo share/locale/be/LC_MESSAGES/kmenuedit.mo share/locale/bg/LC_MESSAGES/kmenuedit.mo share/locale/bn/LC_MESSAGES/kmenuedit.mo share/locale/bn_IN/LC_MESSAGES/kmenuedit.mo share/locale/br/LC_MESSAGES/kmenuedit.mo share/locale/bs/LC_MESSAGES/kmenuedit.mo share/locale/ca/LC_MESSAGES/kmenuedit.mo share/locale/ca@valencia/LC_MESSAGES/kmenuedit.mo share/locale/cs/LC_MESSAGES/kmenuedit.mo share/locale/csb/LC_MESSAGES/kmenuedit.mo share/locale/cy/LC_MESSAGES/kmenuedit.mo share/locale/da/LC_MESSAGES/kmenuedit.mo share/locale/de/LC_MESSAGES/kmenuedit.mo share/locale/el/LC_MESSAGES/kmenuedit.mo share/locale/en_GB/LC_MESSAGES/kmenuedit.mo share/locale/eo/LC_MESSAGES/kmenuedit.mo share/locale/es/LC_MESSAGES/kmenuedit.mo share/locale/et/LC_MESSAGES/kmenuedit.mo share/locale/eu/LC_MESSAGES/kmenuedit.mo share/locale/fa/LC_MESSAGES/kmenuedit.mo share/locale/fi/LC_MESSAGES/kmenuedit.mo share/locale/fr/LC_MESSAGES/kmenuedit.mo share/locale/fy/LC_MESSAGES/kmenuedit.mo share/locale/ga/LC_MESSAGES/kmenuedit.mo share/locale/gl/LC_MESSAGES/kmenuedit.mo share/locale/gu/LC_MESSAGES/kmenuedit.mo share/locale/he/LC_MESSAGES/kmenuedit.mo share/locale/hi/LC_MESSAGES/kmenuedit.mo share/locale/hne/LC_MESSAGES/kmenuedit.mo share/locale/hr/LC_MESSAGES/kmenuedit.mo share/locale/hsb/LC_MESSAGES/kmenuedit.mo share/locale/hu/LC_MESSAGES/kmenuedit.mo share/locale/ia/LC_MESSAGES/kmenuedit.mo share/locale/id/LC_MESSAGES/kmenuedit.mo share/locale/is/LC_MESSAGES/kmenuedit.mo share/locale/it/LC_MESSAGES/kmenuedit.mo share/locale/ja/LC_MESSAGES/kmenuedit.mo share/locale/kk/LC_MESSAGES/kmenuedit.mo share/locale/km/LC_MESSAGES/kmenuedit.mo share/locale/kn/LC_MESSAGES/kmenuedit.mo share/locale/ko/LC_MESSAGES/kmenuedit.mo share/locale/ku/LC_MESSAGES/kmenuedit.mo share/locale/lt/LC_MESSAGES/kmenuedit.mo share/locale/lv/LC_MESSAGES/kmenuedit.mo share/locale/mai/LC_MESSAGES/kmenuedit.mo share/locale/mk/LC_MESSAGES/kmenuedit.mo share/locale/ml/LC_MESSAGES/kmenuedit.mo share/locale/mr/LC_MESSAGES/kmenuedit.mo share/locale/ms/LC_MESSAGES/kmenuedit.mo share/locale/nb/LC_MESSAGES/kmenuedit.mo share/locale/nds/LC_MESSAGES/kmenuedit.mo share/locale/ne/LC_MESSAGES/kmenuedit.mo share/locale/nl/LC_MESSAGES/kmenuedit.mo share/locale/nn/LC_MESSAGES/kmenuedit.mo share/locale/oc/LC_MESSAGES/kmenuedit.mo share/locale/or/LC_MESSAGES/kmenuedit.mo share/locale/pa/LC_MESSAGES/kmenuedit.mo share/locale/pl/LC_MESSAGES/kmenuedit.mo share/locale/pt/LC_MESSAGES/kmenuedit.mo share/locale/pt_BR/LC_MESSAGES/kmenuedit.mo share/locale/ro/LC_MESSAGES/kmenuedit.mo share/locale/ru/LC_MESSAGES/kmenuedit.mo share/locale/se/LC_MESSAGES/kmenuedit.mo share/locale/si/LC_MESSAGES/kmenuedit.mo share/locale/sk/LC_MESSAGES/kmenuedit.mo share/locale/sl/LC_MESSAGES/kmenuedit.mo share/locale/sq/LC_MESSAGES/kmenuedit.mo share/locale/sr/LC_MESSAGES/kmenuedit.mo share/locale/sr@ijekavian/LC_MESSAGES/kmenuedit.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kmenuedit.mo share/locale/sr@latin/LC_MESSAGES/kmenuedit.mo share/locale/sv/LC_MESSAGES/kmenuedit.mo share/locale/ta/LC_MESSAGES/kmenuedit.mo share/locale/te/LC_MESSAGES/kmenuedit.mo share/locale/tg/LC_MESSAGES/kmenuedit.mo share/locale/th/LC_MESSAGES/kmenuedit.mo share/locale/tr/LC_MESSAGES/kmenuedit.mo share/locale/ug/LC_MESSAGES/kmenuedit.mo share/locale/uk/LC_MESSAGES/kmenuedit.mo share/locale/uz/LC_MESSAGES/kmenuedit.mo share/locale/uz@cyrillic/LC_MESSAGES/kmenuedit.mo share/locale/vi/LC_MESSAGES/kmenuedit.mo share/locale/wa/LC_MESSAGES/kmenuedit.mo share/locale/xh/LC_MESSAGES/kmenuedit.mo share/locale/zh_CN/LC_MESSAGES/kmenuedit.mo share/locale/zh_TW/LC_MESSAGES/kmenuedit.mo Index: head/sysutils/plasma5-ksysguard/Makefile =================================================================== --- head/sysutils/plasma5-ksysguard/Makefile (revision 492810) +++ head/sysutils/plasma5-ksysguard/Makefile (revision 492811) @@ -1,28 +1,27 @@ # $FreeBSD$ PORTNAME= ksysguard DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= sysutils kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 utility to track and control the running processes USES= cmake compiler:c++11-lib cpe desktop-file-utils \ gettext kde:5 qt:5 tar:xz USE_KDE= attica auth codecs completion config configwidgets coreaddons \ dbusaddons emoticons i18n iconthemes init itemmodels \ itemviews jobwidgets kdelibs4support kio libksysguard \ newstuff notifications service widgetsaddons windowsystem \ xmlgui USE_QT= concurrent core dbus gui network widgets xml \ buildtools_build qmake_build OPTIONS_DEFINE= INOTIFY OPTIONS_DEFAULT=INOTIFY OPTIONS_SUB= yes INOTIFY_DESC= Filesystem alteration notifications using inotify INOTIFY_LIB_DEPENDS= libinotify.so:devel/libinotify .include Index: head/sysutils/plasma5-ksysguard/distinfo =================================================================== --- head/sysutils/plasma5-ksysguard/distinfo (revision 492810) +++ head/sysutils/plasma5-ksysguard/distinfo (revision 492811) @@ -1,3 +1,3 @@ -TIMESTAMP = 1547014608 -SHA256 (KDE/plasma/5.14.5/ksysguard-5.14.5.tar.xz) = 0bdd4d30a400ecb5a562c11801ce49f1a36e006dbe2c92739e192040a9817d79 -SIZE (KDE/plasma/5.14.5/ksysguard-5.14.5.tar.xz) = 501624 +TIMESTAMP = 1549993938 +SHA256 (KDE/plasma/5.15.0/ksysguard-5.15.0.tar.xz) = 41de3fad025acdf9d813ac87c3d1edf12053eb0edaf2ea5b52884bfa0f7744a9 +SIZE (KDE/plasma/5.15.0/ksysguard-5.15.0.tar.xz) = 500640 Index: head/sysutils/plasma5-ksysguard/pkg-plist =================================================================== --- head/sysutils/plasma5-ksysguard/pkg-plist (revision 492810) +++ head/sysutils/plasma5-ksysguard/pkg-plist (revision 492811) @@ -1,132 +1,131 @@ bin/ksysguard bin/ksysguardd etc/ksysguarddrc etc/xdg/ksysguard.knsrc lib/libkdeinit5_ksysguard.so share/applications/org.kde.ksysguard.desktop share/doc/HTML/ca/ksysguard/index.cache.bz2 share/doc/HTML/ca/ksysguard/index.docbook share/doc/HTML/de/ksysguard/index.cache.bz2 share/doc/HTML/de/ksysguard/index.docbook share/doc/HTML/en/ksysguard/index.cache.bz2 share/doc/HTML/en/ksysguard/index.docbook share/doc/HTML/et/ksysguard/index.cache.bz2 share/doc/HTML/et/ksysguard/index.docbook share/doc/HTML/it/ksysguard/index.cache.bz2 share/doc/HTML/it/ksysguard/index.docbook share/doc/HTML/nl/ksysguard/index.cache.bz2 share/doc/HTML/nl/ksysguard/index.docbook share/doc/HTML/pt/ksysguard/index.cache.bz2 share/doc/HTML/pt/ksysguard/index.docbook share/doc/HTML/pt_BR/ksysguard/index.cache.bz2 share/doc/HTML/pt_BR/ksysguard/index.docbook share/doc/HTML/ru/ksysguard/index.cache.bz2 share/doc/HTML/ru/ksysguard/index.docbook share/doc/HTML/sv/ksysguard/index.cache.bz2 share/doc/HTML/sv/ksysguard/index.docbook share/doc/HTML/uk/ksysguard/index.cache.bz2 share/doc/HTML/uk/ksysguard/index.docbook share/icons/hicolor/16x16/apps/computer.png share/icons/hicolor/16x16/apps/daemon.png share/icons/hicolor/16x16/apps/kdeapp.png share/icons/hicolor/16x16/apps/kernel.png share/icons/hicolor/16x16/apps/ksysguardd.png share/icons/hicolor/16x16/apps/running.png share/icons/hicolor/16x16/apps/shell.png share/icons/hicolor/16x16/apps/unknownapp.png share/icons/hicolor/16x16/apps/waiting.png share/knotifications5/ksysguard.notifyrc %%DATADIR%%/ProcessTable.sgrd %%DATADIR%%/SystemLoad2.sgrd share/kxmlgui5/ksysguard/ksysguardui.rc share/locale/af/LC_MESSAGES/ksysguard.mo share/locale/ar/LC_MESSAGES/ksysguard.mo -share/locale/ast/LC_MESSAGES/ksysguard.mo share/locale/be/LC_MESSAGES/ksysguard.mo share/locale/be@latin/LC_MESSAGES/ksysguard.mo share/locale/bg/LC_MESSAGES/ksysguard.mo share/locale/bn/LC_MESSAGES/ksysguard.mo share/locale/bn_IN/LC_MESSAGES/ksysguard.mo share/locale/br/LC_MESSAGES/ksysguard.mo share/locale/bs/LC_MESSAGES/ksysguard.mo share/locale/ca/LC_MESSAGES/ksysguard.mo share/locale/ca@valencia/LC_MESSAGES/ksysguard.mo share/locale/cs/LC_MESSAGES/ksysguard.mo share/locale/csb/LC_MESSAGES/ksysguard.mo share/locale/cy/LC_MESSAGES/ksysguard.mo share/locale/da/LC_MESSAGES/ksysguard.mo share/locale/de/LC_MESSAGES/ksysguard.mo share/locale/el/LC_MESSAGES/ksysguard.mo share/locale/en_GB/LC_MESSAGES/ksysguard.mo share/locale/eo/LC_MESSAGES/ksysguard.mo share/locale/es/LC_MESSAGES/ksysguard.mo share/locale/et/LC_MESSAGES/ksysguard.mo share/locale/eu/LC_MESSAGES/ksysguard.mo share/locale/fa/LC_MESSAGES/ksysguard.mo share/locale/fi/LC_MESSAGES/ksysguard.mo share/locale/fr/LC_MESSAGES/ksysguard.mo share/locale/fy/LC_MESSAGES/ksysguard.mo share/locale/ga/LC_MESSAGES/ksysguard.mo share/locale/gl/LC_MESSAGES/ksysguard.mo share/locale/gu/LC_MESSAGES/ksysguard.mo share/locale/he/LC_MESSAGES/ksysguard.mo share/locale/hi/LC_MESSAGES/ksysguard.mo share/locale/hne/LC_MESSAGES/ksysguard.mo share/locale/hr/LC_MESSAGES/ksysguard.mo share/locale/hsb/LC_MESSAGES/ksysguard.mo share/locale/hu/LC_MESSAGES/ksysguard.mo share/locale/ia/LC_MESSAGES/ksysguard.mo share/locale/id/LC_MESSAGES/ksysguard.mo share/locale/is/LC_MESSAGES/ksysguard.mo share/locale/it/LC_MESSAGES/ksysguard.mo share/locale/ja/LC_MESSAGES/ksysguard.mo share/locale/kk/LC_MESSAGES/ksysguard.mo share/locale/km/LC_MESSAGES/ksysguard.mo share/locale/kn/LC_MESSAGES/ksysguard.mo share/locale/ko/LC_MESSAGES/ksysguard.mo share/locale/ku/LC_MESSAGES/ksysguard.mo share/locale/lt/LC_MESSAGES/ksysguard.mo share/locale/lv/LC_MESSAGES/ksysguard.mo share/locale/mai/LC_MESSAGES/ksysguard.mo share/locale/mk/LC_MESSAGES/ksysguard.mo share/locale/ml/LC_MESSAGES/ksysguard.mo share/locale/mr/LC_MESSAGES/ksysguard.mo share/locale/ms/LC_MESSAGES/ksysguard.mo share/locale/nb/LC_MESSAGES/ksysguard.mo share/locale/nds/LC_MESSAGES/ksysguard.mo share/locale/ne/LC_MESSAGES/ksysguard.mo share/locale/nl/LC_MESSAGES/ksysguard.mo share/locale/nn/LC_MESSAGES/ksysguard.mo share/locale/oc/LC_MESSAGES/ksysguard.mo share/locale/or/LC_MESSAGES/ksysguard.mo share/locale/pa/LC_MESSAGES/ksysguard.mo share/locale/pl/LC_MESSAGES/ksysguard.mo share/locale/pt/LC_MESSAGES/ksysguard.mo share/locale/pt_BR/LC_MESSAGES/ksysguard.mo share/locale/ro/LC_MESSAGES/ksysguard.mo share/locale/ru/LC_MESSAGES/ksysguard.mo share/locale/se/LC_MESSAGES/ksysguard.mo share/locale/si/LC_MESSAGES/ksysguard.mo share/locale/sk/LC_MESSAGES/ksysguard.mo share/locale/sl/LC_MESSAGES/ksysguard.mo share/locale/sq/LC_MESSAGES/ksysguard.mo share/locale/sr/LC_MESSAGES/ksysguard.mo share/locale/sr@ijekavian/LC_MESSAGES/ksysguard.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/ksysguard.mo share/locale/sr@latin/LC_MESSAGES/ksysguard.mo share/locale/sv/LC_MESSAGES/ksysguard.mo share/locale/ta/LC_MESSAGES/ksysguard.mo share/locale/te/LC_MESSAGES/ksysguard.mo share/locale/tg/LC_MESSAGES/ksysguard.mo share/locale/th/LC_MESSAGES/ksysguard.mo share/locale/tr/LC_MESSAGES/ksysguard.mo share/locale/ug/LC_MESSAGES/ksysguard.mo share/locale/uk/LC_MESSAGES/ksysguard.mo share/locale/uz/LC_MESSAGES/ksysguard.mo share/locale/uz@cyrillic/LC_MESSAGES/ksysguard.mo share/locale/vi/LC_MESSAGES/ksysguard.mo share/locale/wa/LC_MESSAGES/ksysguard.mo share/locale/xh/LC_MESSAGES/ksysguard.mo share/locale/zh_CN/LC_MESSAGES/ksysguard.mo share/locale/zh_TW/LC_MESSAGES/ksysguard.mo share/metainfo/org.kde.ksysguard.appdata.xml Index: head/sysutils/plasma5-libksysguard/Makefile =================================================================== --- head/sysutils/plasma5-libksysguard/Makefile (revision 492810) +++ head/sysutils/plasma5-libksysguard/Makefile (revision 492811) @@ -1,18 +1,17 @@ # $FreeBSD$ PORTNAME= libksysguard DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= sysutils kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 library to track and control running processes USES= cmake compiler:c++11-lib cpe gettext kde:5 qt:5 tar:xz -USE_KDE= auth codecs completion config configwidgets coreaddons i18n \ - iconthemes package plasma-framework service widgetsaddons \ - windowsystem +USE_KDE= auth codecs completion config configwidgets coreaddons \ + globalaccel i18n iconthemes jobwidgets kio package \ + plasma-framework service widgetsaddons windowsystem USE_QT= core dbus gui network script webkit widgets x11extras xml \ buildtools_build qmake_build .include Index: head/sysutils/plasma5-libksysguard/distinfo =================================================================== --- head/sysutils/plasma5-libksysguard/distinfo (revision 492810) +++ head/sysutils/plasma5-libksysguard/distinfo (revision 492811) @@ -1,3 +1,3 @@ -TIMESTAMP = 1547014608 -SHA256 (KDE/plasma/5.14.5/libksysguard-5.14.5.tar.xz) = ca571491fbc71a12c39247d25b4474dabd5d08894a1f05b67efb6edcce03df86 -SIZE (KDE/plasma/5.14.5/libksysguard-5.14.5.tar.xz) = 575532 +TIMESTAMP = 1549993939 +SHA256 (KDE/plasma/5.15.0/libksysguard-5.15.0.tar.xz) = ad0073c7db05830837a473a8e5914fcb18646d6e2607b16e4e0063f1ecfa13ab +SIZE (KDE/plasma/5.15.0/libksysguard-5.15.0.tar.xz) = 575728 Index: head/sysutils/plasma5-libksysguard/pkg-plist =================================================================== --- head/sysutils/plasma5-libksysguard/pkg-plist (revision 492810) +++ head/sysutils/plasma5-libksysguard/pkg-plist (revision 492811) @@ -1,325 +1,321 @@ etc/dbus-1/system.d/org.kde.ksysguard.processlisthelper.conf etc/xdg/libksysguard.categories include/ksysguard/ksgrd/SensorAgent.h include/ksysguard/ksgrd/SensorClient.h include/ksysguard/ksgrd/SensorManager.h include/ksysguard/ksgrd/SensorShellAgent.h include/ksysguard/ksgrd/SensorSocketAgent.h include/ksysguard/ksignalplotter.h include/ksysguard/lsof.h include/ksysguard/processcore/process.h include/ksysguard/processcore/processes.h include/ksysguard/processui/KTextEditVT.h include/ksysguard/processui/ProcessFilter.h include/ksysguard/processui/ProcessModel.h include/ksysguard/processui/ksysguardprocesslist.h lib/cmake/KF5SysGuard/KF5SysGuardConfig.cmake lib/cmake/KF5SysGuard/KF5SysGuardConfigVersion.cmake lib/cmake/KF5SysGuard/KF5SysGuardLibraryTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5SysGuard/KF5SysGuardLibraryTargets.cmake lib/libexec/kauth/ksysguardprocesslist_helper lib/libksgrd.so lib/libksgrd.so.%%KDE_PLASMA_VERSION%% lib/libksgrd.so.7 lib/libksignalplotter.so lib/libksignalplotter.so.%%KDE_PLASMA_VERSION%% lib/libksignalplotter.so.7 lib/liblsofui.so lib/liblsofui.so.%%KDE_PLASMA_VERSION%% lib/liblsofui.so.7 lib/libprocesscore.so lib/libprocesscore.so.%%KDE_PLASMA_VERSION%% lib/libprocesscore.so.7 lib/libprocessui.so lib/libprocessui.so.%%KDE_PLASMA_VERSION%% lib/libprocessui.so.7 share/dbus-1/system-services/org.kde.ksysguard.processlisthelper.service share/ksysguard/scripts/README share/ksysguard/scripts/smaps/helper.js share/ksysguard/scripts/smaps/index.html share/ksysguard/scripts/smaps/main.js share/ksysguard/scripts/smaps/smaps.desktop share/ksysguard/scripts/smaps/sorttable.js share/ksysguard/scripts/smaps/style.css share/locale/ar/LC_MESSAGES/ksgrd.mo share/locale/ar/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/ar/LC_MESSAGES/processcore.mo share/locale/ar/LC_MESSAGES/processui.mo share/locale/as/LC_MESSAGES/processui.mo -share/locale/ast/LC_MESSAGES/ksgrd.mo -share/locale/ast/LC_MESSAGES/ksysguardlsofwidgets.mo -share/locale/ast/LC_MESSAGES/processcore.mo -share/locale/ast/LC_MESSAGES/processui.mo share/locale/be/LC_MESSAGES/processcore.mo share/locale/be/LC_MESSAGES/processui.mo share/locale/be@latin/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/bg/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/bg/LC_MESSAGES/processcore.mo share/locale/bg/LC_MESSAGES/processui.mo share/locale/bn_IN/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/bn_IN/LC_MESSAGES/processcore.mo share/locale/bn_IN/LC_MESSAGES/processui.mo share/locale/bs/LC_MESSAGES/ksgrd.mo share/locale/bs/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/bs/LC_MESSAGES/processcore.mo share/locale/bs/LC_MESSAGES/processui.mo share/locale/ca/LC_MESSAGES/ksgrd.mo share/locale/ca/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/ca/LC_MESSAGES/processcore.mo share/locale/ca/LC_MESSAGES/processui.mo share/locale/ca@valencia/LC_MESSAGES/ksgrd.mo share/locale/ca@valencia/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/ca@valencia/LC_MESSAGES/processcore.mo share/locale/ca@valencia/LC_MESSAGES/processui.mo share/locale/cs/LC_MESSAGES/ksgrd.mo share/locale/cs/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/cs/LC_MESSAGES/processcore.mo share/locale/cs/LC_MESSAGES/processui.mo share/locale/csb/LC_MESSAGES/processcore.mo share/locale/csb/LC_MESSAGES/processui.mo share/locale/da/LC_MESSAGES/ksgrd.mo share/locale/da/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/da/LC_MESSAGES/processcore.mo share/locale/da/LC_MESSAGES/processui.mo share/locale/de/LC_MESSAGES/ksgrd.mo share/locale/de/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/de/LC_MESSAGES/processcore.mo share/locale/de/LC_MESSAGES/processui.mo share/locale/el/LC_MESSAGES/ksgrd.mo share/locale/el/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/el/LC_MESSAGES/processcore.mo share/locale/el/LC_MESSAGES/processui.mo share/locale/en_GB/LC_MESSAGES/ksgrd.mo share/locale/en_GB/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/en_GB/LC_MESSAGES/processcore.mo share/locale/en_GB/LC_MESSAGES/processui.mo share/locale/eo/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/eo/LC_MESSAGES/processcore.mo share/locale/eo/LC_MESSAGES/processui.mo share/locale/es/LC_MESSAGES/ksgrd.mo share/locale/es/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/es/LC_MESSAGES/processcore.mo share/locale/es/LC_MESSAGES/processui.mo share/locale/et/LC_MESSAGES/ksgrd.mo share/locale/et/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/et/LC_MESSAGES/processcore.mo share/locale/et/LC_MESSAGES/processui.mo share/locale/eu/LC_MESSAGES/ksgrd.mo share/locale/eu/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/eu/LC_MESSAGES/processcore.mo share/locale/eu/LC_MESSAGES/processui.mo share/locale/fa/LC_MESSAGES/processcore.mo share/locale/fa/LC_MESSAGES/processui.mo share/locale/fi/LC_MESSAGES/ksgrd.mo share/locale/fi/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/fi/LC_MESSAGES/processcore.mo share/locale/fi/LC_MESSAGES/processui.mo share/locale/fr/LC_MESSAGES/ksgrd.mo share/locale/fr/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/fr/LC_MESSAGES/processcore.mo share/locale/fr/LC_MESSAGES/processui.mo share/locale/fy/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/fy/LC_MESSAGES/processcore.mo share/locale/fy/LC_MESSAGES/processui.mo share/locale/ga/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/ga/LC_MESSAGES/processcore.mo share/locale/ga/LC_MESSAGES/processui.mo share/locale/gl/LC_MESSAGES/ksgrd.mo share/locale/gl/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/gl/LC_MESSAGES/processcore.mo share/locale/gl/LC_MESSAGES/processui.mo share/locale/gu/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/gu/LC_MESSAGES/processcore.mo share/locale/gu/LC_MESSAGES/processui.mo share/locale/he/LC_MESSAGES/ksgrd.mo share/locale/he/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/he/LC_MESSAGES/processcore.mo share/locale/he/LC_MESSAGES/processui.mo share/locale/hi/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/hi/LC_MESSAGES/processcore.mo share/locale/hi/LC_MESSAGES/processui.mo share/locale/hne/LC_MESSAGES/processcore.mo share/locale/hr/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/hr/LC_MESSAGES/processcore.mo share/locale/hr/LC_MESSAGES/processui.mo share/locale/hsb/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/hsb/LC_MESSAGES/processcore.mo share/locale/hsb/LC_MESSAGES/processui.mo share/locale/hu/LC_MESSAGES/ksgrd.mo share/locale/hu/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/hu/LC_MESSAGES/processcore.mo share/locale/hu/LC_MESSAGES/processui.mo share/locale/ia/LC_MESSAGES/ksgrd.mo share/locale/ia/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/ia/LC_MESSAGES/processcore.mo share/locale/ia/LC_MESSAGES/processui.mo share/locale/id/LC_MESSAGES/ksgrd.mo share/locale/id/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/id/LC_MESSAGES/processcore.mo share/locale/id/LC_MESSAGES/processui.mo share/locale/is/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/is/LC_MESSAGES/processcore.mo share/locale/is/LC_MESSAGES/processui.mo share/locale/it/LC_MESSAGES/ksgrd.mo share/locale/it/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/it/LC_MESSAGES/processcore.mo share/locale/it/LC_MESSAGES/processui.mo share/locale/ja/LC_MESSAGES/ksgrd.mo share/locale/ja/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/ja/LC_MESSAGES/processcore.mo share/locale/ja/LC_MESSAGES/processui.mo share/locale/kk/LC_MESSAGES/ksgrd.mo share/locale/kk/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/kk/LC_MESSAGES/processcore.mo share/locale/kk/LC_MESSAGES/processui.mo share/locale/km/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/km/LC_MESSAGES/processcore.mo share/locale/km/LC_MESSAGES/processui.mo share/locale/kn/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/ko/LC_MESSAGES/ksgrd.mo share/locale/ko/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/ko/LC_MESSAGES/processcore.mo share/locale/ko/LC_MESSAGES/processui.mo share/locale/ku/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/ku/LC_MESSAGES/processcore.mo share/locale/ku/LC_MESSAGES/processui.mo share/locale/lt/LC_MESSAGES/ksgrd.mo share/locale/lt/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/lt/LC_MESSAGES/processcore.mo share/locale/lt/LC_MESSAGES/processui.mo share/locale/lv/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/lv/LC_MESSAGES/processcore.mo share/locale/lv/LC_MESSAGES/processui.mo share/locale/mai/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/mai/LC_MESSAGES/processcore.mo share/locale/mai/LC_MESSAGES/processui.mo share/locale/mk/LC_MESSAGES/processcore.mo share/locale/mk/LC_MESSAGES/processui.mo share/locale/ml/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/ml/LC_MESSAGES/processcore.mo share/locale/ml/LC_MESSAGES/processui.mo share/locale/mr/LC_MESSAGES/ksgrd.mo share/locale/mr/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/mr/LC_MESSAGES/processcore.mo share/locale/mr/LC_MESSAGES/processui.mo share/locale/ms/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/ms/LC_MESSAGES/processcore.mo share/locale/ms/LC_MESSAGES/processui.mo share/locale/nb/LC_MESSAGES/ksgrd.mo share/locale/nb/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/nb/LC_MESSAGES/processcore.mo share/locale/nb/LC_MESSAGES/processui.mo share/locale/nds/LC_MESSAGES/ksgrd.mo share/locale/nds/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/nds/LC_MESSAGES/processcore.mo share/locale/nds/LC_MESSAGES/processui.mo share/locale/ne/LC_MESSAGES/processcore.mo share/locale/ne/LC_MESSAGES/processui.mo share/locale/nl/LC_MESSAGES/ksgrd.mo share/locale/nl/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/nl/LC_MESSAGES/processcore.mo share/locale/nl/LC_MESSAGES/processui.mo share/locale/nn/LC_MESSAGES/ksgrd.mo share/locale/nn/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/nn/LC_MESSAGES/processcore.mo share/locale/nn/LC_MESSAGES/processui.mo share/locale/oc/LC_MESSAGES/processcore.mo share/locale/oc/LC_MESSAGES/processui.mo share/locale/or/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/or/LC_MESSAGES/processcore.mo share/locale/or/LC_MESSAGES/processui.mo share/locale/pa/LC_MESSAGES/ksgrd.mo share/locale/pa/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/pa/LC_MESSAGES/processcore.mo share/locale/pa/LC_MESSAGES/processui.mo share/locale/pl/LC_MESSAGES/ksgrd.mo share/locale/pl/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/pl/LC_MESSAGES/processcore.mo share/locale/pl/LC_MESSAGES/processui.mo share/locale/pt/LC_MESSAGES/ksgrd.mo share/locale/pt/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/pt/LC_MESSAGES/processcore.mo share/locale/pt/LC_MESSAGES/processui.mo share/locale/pt_BR/LC_MESSAGES/ksgrd.mo share/locale/pt_BR/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/pt_BR/LC_MESSAGES/processcore.mo share/locale/pt_BR/LC_MESSAGES/processui.mo share/locale/ro/LC_MESSAGES/ksgrd.mo share/locale/ro/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/ro/LC_MESSAGES/processcore.mo share/locale/ro/LC_MESSAGES/processui.mo share/locale/ru/LC_MESSAGES/ksgrd.mo share/locale/ru/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/ru/LC_MESSAGES/processcore.mo share/locale/ru/LC_MESSAGES/processui.mo share/locale/se/LC_MESSAGES/processcore.mo share/locale/se/LC_MESSAGES/processui.mo share/locale/si/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/si/LC_MESSAGES/processcore.mo share/locale/si/LC_MESSAGES/processui.mo share/locale/sk/LC_MESSAGES/ksgrd.mo share/locale/sk/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/sk/LC_MESSAGES/processcore.mo share/locale/sk/LC_MESSAGES/processui.mo share/locale/sl/LC_MESSAGES/ksgrd.mo share/locale/sl/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/sl/LC_MESSAGES/processcore.mo share/locale/sl/LC_MESSAGES/processui.mo share/locale/sq/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/sq/LC_MESSAGES/processcore.mo share/locale/sq/LC_MESSAGES/processui.mo share/locale/sr/LC_MESSAGES/ksgrd.mo share/locale/sr/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/sr/LC_MESSAGES/processcore.mo share/locale/sr/LC_MESSAGES/processui.mo share/locale/sr@ijekavian/LC_MESSAGES/ksgrd.mo share/locale/sr@ijekavian/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/sr@ijekavian/LC_MESSAGES/processcore.mo share/locale/sr@ijekavian/LC_MESSAGES/processui.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/ksgrd.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/processcore.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/processui.mo share/locale/sr@latin/LC_MESSAGES/ksgrd.mo share/locale/sr@latin/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/sr@latin/LC_MESSAGES/processcore.mo share/locale/sr@latin/LC_MESSAGES/processui.mo share/locale/sv/LC_MESSAGES/ksgrd.mo share/locale/sv/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/sv/LC_MESSAGES/processcore.mo share/locale/sv/LC_MESSAGES/processui.mo share/locale/ta/LC_MESSAGES/processcore.mo share/locale/ta/LC_MESSAGES/processui.mo share/locale/te/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/te/LC_MESSAGES/processcore.mo share/locale/te/LC_MESSAGES/processui.mo share/locale/tg/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/tg/LC_MESSAGES/processcore.mo share/locale/tg/LC_MESSAGES/processui.mo share/locale/th/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/th/LC_MESSAGES/processcore.mo share/locale/th/LC_MESSAGES/processui.mo share/locale/tr/LC_MESSAGES/ksgrd.mo share/locale/tr/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/tr/LC_MESSAGES/processcore.mo share/locale/tr/LC_MESSAGES/processui.mo share/locale/ug/LC_MESSAGES/ksgrd.mo share/locale/ug/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/ug/LC_MESSAGES/processcore.mo share/locale/ug/LC_MESSAGES/processui.mo share/locale/uk/LC_MESSAGES/ksgrd.mo share/locale/uk/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/uk/LC_MESSAGES/processcore.mo share/locale/uk/LC_MESSAGES/processui.mo share/locale/wa/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/wa/LC_MESSAGES/processcore.mo share/locale/wa/LC_MESSAGES/processui.mo share/locale/zh_CN/LC_MESSAGES/ksgrd.mo share/locale/zh_CN/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/zh_CN/LC_MESSAGES/processcore.mo share/locale/zh_CN/LC_MESSAGES/processui.mo share/locale/zh_TW/LC_MESSAGES/ksgrd.mo share/locale/zh_TW/LC_MESSAGES/ksysguardlsofwidgets.mo share/locale/zh_TW/LC_MESSAGES/processcore.mo share/locale/zh_TW/LC_MESSAGES/processui.mo share/polkit-1/actions/org.kde.ksysguard.processlisthelper.policy Index: head/sysutils/plasma5-polkit-kde-agent-1/Makefile =================================================================== --- head/sysutils/plasma5-polkit-kde-agent-1/Makefile (revision 492810) +++ head/sysutils/plasma5-polkit-kde-agent-1/Makefile (revision 492811) @@ -1,19 +1,18 @@ # $FreeBSD$ PORTNAME= polkit-kde-agent-1 DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= sysutils kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 daemon providing a polkit authentication UI LIB_DEPENDS= libpolkit-qt5-core-1.so:sysutils/polkit-qt@qt5 USES= cmake compiler:c++11-lib cpe gettext kde:5 qt:5 tar:xz USE_KDE= config coreaddons crash dbusaddons ecm i18n iconthemes \ notifications widgetsaddons windowsystem USE_QT= core dbus gui widgets \ buildtools_build qmake_build .include Index: head/sysutils/plasma5-polkit-kde-agent-1/distinfo =================================================================== --- head/sysutils/plasma5-polkit-kde-agent-1/distinfo (revision 492810) +++ head/sysutils/plasma5-polkit-kde-agent-1/distinfo (revision 492811) @@ -1,3 +1,3 @@ -TIMESTAMP = 1547014609 -SHA256 (KDE/plasma/5.14.5/polkit-kde-agent-1-5.14.5.tar.xz) = 4f896546dd0305df990d5603cf9ee3604ce6cd4cb3a01d5e51db6a2ff027fcd3 -SIZE (KDE/plasma/5.14.5/polkit-kde-agent-1-5.14.5.tar.xz) = 42680 +TIMESTAMP = 1549993940 +SHA256 (KDE/plasma/5.15.0/polkit-kde-agent-1-5.15.0.tar.xz) = 8bf195dfeeb0308cf23df5748e08e79beb88b379069c481ecc50c5e0103a3aa1 +SIZE (KDE/plasma/5.15.0/polkit-kde-agent-1-5.15.0.tar.xz) = 42368 Index: head/sysutils/plasma5-polkit-kde-agent-1/pkg-plist =================================================================== --- head/sysutils/plasma5-polkit-kde-agent-1/pkg-plist (revision 492810) +++ head/sysutils/plasma5-polkit-kde-agent-1/pkg-plist (revision 492811) @@ -1,61 +1,60 @@ etc/xdg/autostart/polkit-kde-authentication-agent-1.desktop lib/libexec/polkit-kde-authentication-agent-1 share/applications/org.kde.polkit-kde-authentication-agent-1.desktop share/knotifications5/policykit1-kde.notifyrc share/locale/ar/LC_MESSAGES/polkit-kde-authentication-agent-1.mo -share/locale/ast/LC_MESSAGES/polkit-kde-authentication-agent-1.mo share/locale/bs/LC_MESSAGES/polkit-kde-authentication-agent-1.mo share/locale/ca/LC_MESSAGES/polkit-kde-authentication-agent-1.mo share/locale/ca@valencia/LC_MESSAGES/polkit-kde-authentication-agent-1.mo share/locale/cs/LC_MESSAGES/polkit-kde-authentication-agent-1.mo share/locale/da/LC_MESSAGES/polkit-kde-authentication-agent-1.mo share/locale/de/LC_MESSAGES/polkit-kde-authentication-agent-1.mo share/locale/el/LC_MESSAGES/polkit-kde-authentication-agent-1.mo share/locale/en_GB/LC_MESSAGES/polkit-kde-authentication-agent-1.mo share/locale/eo/LC_MESSAGES/polkit-kde-authentication-agent-1.mo share/locale/es/LC_MESSAGES/polkit-kde-authentication-agent-1.mo share/locale/et/LC_MESSAGES/polkit-kde-authentication-agent-1.mo share/locale/eu/LC_MESSAGES/polkit-kde-authentication-agent-1.mo share/locale/fi/LC_MESSAGES/polkit-kde-authentication-agent-1.mo share/locale/fr/LC_MESSAGES/polkit-kde-authentication-agent-1.mo share/locale/ga/LC_MESSAGES/polkit-kde-authentication-agent-1.mo share/locale/gl/LC_MESSAGES/polkit-kde-authentication-agent-1.mo share/locale/he/LC_MESSAGES/polkit-kde-authentication-agent-1.mo share/locale/hr/LC_MESSAGES/polkit-kde-authentication-agent-1.mo share/locale/hu/LC_MESSAGES/polkit-kde-authentication-agent-1.mo share/locale/ia/LC_MESSAGES/polkit-kde-authentication-agent-1.mo share/locale/id/LC_MESSAGES/polkit-kde-authentication-agent-1.mo share/locale/is/LC_MESSAGES/polkit-kde-authentication-agent-1.mo share/locale/it/LC_MESSAGES/polkit-kde-authentication-agent-1.mo share/locale/ja/LC_MESSAGES/polkit-kde-authentication-agent-1.mo share/locale/kk/LC_MESSAGES/polkit-kde-authentication-agent-1.mo share/locale/km/LC_MESSAGES/polkit-kde-authentication-agent-1.mo share/locale/ko/LC_MESSAGES/polkit-kde-authentication-agent-1.mo share/locale/lt/LC_MESSAGES/polkit-kde-authentication-agent-1.mo share/locale/mai/LC_MESSAGES/polkit-kde-authentication-agent-1.mo share/locale/mr/LC_MESSAGES/polkit-kde-authentication-agent-1.mo share/locale/ms/LC_MESSAGES/polkit-kde-authentication-agent-1.mo share/locale/nb/LC_MESSAGES/polkit-kde-authentication-agent-1.mo share/locale/nds/LC_MESSAGES/polkit-kde-authentication-agent-1.mo share/locale/nl/LC_MESSAGES/polkit-kde-authentication-agent-1.mo share/locale/nn/LC_MESSAGES/polkit-kde-authentication-agent-1.mo share/locale/pa/LC_MESSAGES/polkit-kde-authentication-agent-1.mo share/locale/pl/LC_MESSAGES/polkit-kde-authentication-agent-1.mo share/locale/pt/LC_MESSAGES/polkit-kde-authentication-agent-1.mo share/locale/pt_BR/LC_MESSAGES/polkit-kde-authentication-agent-1.mo share/locale/ro/LC_MESSAGES/polkit-kde-authentication-agent-1.mo share/locale/ru/LC_MESSAGES/polkit-kde-authentication-agent-1.mo share/locale/sk/LC_MESSAGES/polkit-kde-authentication-agent-1.mo share/locale/sl/LC_MESSAGES/polkit-kde-authentication-agent-1.mo share/locale/sr/LC_MESSAGES/polkit-kde-authentication-agent-1.mo share/locale/sr@ijekavian/LC_MESSAGES/polkit-kde-authentication-agent-1.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/polkit-kde-authentication-agent-1.mo share/locale/sr@latin/LC_MESSAGES/polkit-kde-authentication-agent-1.mo share/locale/sv/LC_MESSAGES/polkit-kde-authentication-agent-1.mo share/locale/th/LC_MESSAGES/polkit-kde-authentication-agent-1.mo share/locale/tr/LC_MESSAGES/polkit-kde-authentication-agent-1.mo share/locale/ug/LC_MESSAGES/polkit-kde-authentication-agent-1.mo share/locale/uk/LC_MESSAGES/polkit-kde-authentication-agent-1.mo share/locale/vi/LC_MESSAGES/polkit-kde-authentication-agent-1.mo share/locale/zh_CN/LC_MESSAGES/polkit-kde-authentication-agent-1.mo share/locale/zh_TW/LC_MESSAGES/polkit-kde-authentication-agent-1.mo Index: head/sysutils/plasma5-powerdevil/Makefile =================================================================== --- head/sysutils/plasma5-powerdevil/Makefile (revision 492810) +++ head/sysutils/plasma5-powerdevil/Makefile (revision 492811) @@ -1,25 +1,24 @@ # $FreeBSD$ PORTNAME= powerdevil DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= sysutils kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 tool to manage the power consumption settings RUN_DEPENDS= ${LOCALBASE}/libexec/upowerd:sysutils/upower USES= cmake compiler:c++11-lib cpe gettext kde:5 pkgconfig qt:5 tar:xz USE_KDE= activities auth bookmarks codecs completion configwidgets \ coreaddons crash config dbusaddons ecm emoticons globalaccel \ guiaddons i18n idletime iconthemes init itemmodels itemviews \ jobwidgets kdelibs4support kio libkscreen notifications \ notifyconfig parts plasma-workspace service solid sonnet \ textwidgets unitconversion wayland widgetsaddons windowsystem \ xmlgui USE_QT= core dbus gui network printsupport widgets x11extras xml \ buildtools_build qmake_build USE_XORG= xcb .include Index: head/sysutils/plasma5-powerdevil/distinfo =================================================================== --- head/sysutils/plasma5-powerdevil/distinfo (revision 492810) +++ head/sysutils/plasma5-powerdevil/distinfo (revision 492811) @@ -1,3 +1,3 @@ -TIMESTAMP = 1547014609 -SHA256 (KDE/plasma/5.14.5/powerdevil-5.14.5.tar.xz) = 45627ec4c93806ccb653a1c6d63e901931646cef53a117be8e2cac75a691b965 -SIZE (KDE/plasma/5.14.5/powerdevil-5.14.5.tar.xz) = 599712 +TIMESTAMP = 1549993941 +SHA256 (KDE/plasma/5.15.0/powerdevil-5.15.0.tar.xz) = 1de35dc6d8b82874ec75219e3d15f31bf927f9e5c0ff71f625f2088a824ce413 +SIZE (KDE/plasma/5.15.0/powerdevil-5.15.0.tar.xz) = 599264 Index: head/sysutils/plasma5-powerdevil/pkg-plist =================================================================== --- head/sysutils/plasma5-powerdevil/pkg-plist (revision 492810) +++ head/sysutils/plasma5-powerdevil/pkg-plist (revision 492811) @@ -1,360 +1,355 @@ etc/dbus-1/system.d/org.kde.powerdevil.backlighthelper.conf etc/dbus-1/system.d/org.kde.powerdevil.discretegpuhelper.conf etc/xdg/autostart/powerdevil.desktop lib/libexec/kauth/backlighthelper lib/libexec/kauth/discretegpuhelper lib/libexec/org_kde_powerdevil lib/libpowerdevilconfigcommonprivate.so lib/libpowerdevilconfigcommonprivate.so.5 lib/libpowerdevilconfigcommonprivate.so.%%KDE_PLASMA_VERSION%% lib/libpowerdevilcore.so lib/libpowerdevilcore.so.2 lib/libpowerdevilcore.so.2.0.0 lib/libpowerdevilui.so lib/libpowerdevilui.so.5 lib/libpowerdevilui.so.%%KDE_PLASMA_VERSION%% %%QT_PLUGINDIR%%/kcm_powerdevilactivitiesconfig.so %%QT_PLUGINDIR%%/kcm_powerdevilglobalconfig.so %%QT_PLUGINDIR%%/kcm_powerdevilprofilesconfig.so %%QT_PLUGINDIR%%/kf5/powerdevil/powerdevilupowerbackend.so %%QT_PLUGINDIR%%/powerdevilbrightnesscontrolaction_config.so %%QT_PLUGINDIR%%/powerdevildimdisplayaction_config.so %%QT_PLUGINDIR%%/powerdevildpmsaction.so %%QT_PLUGINDIR%%/powerdevildpmsaction_config.so %%QT_PLUGINDIR%%/powerdevilhandlebuttoneventsaction_config.so %%QT_PLUGINDIR%%/powerdevilkeyboardbrightnesscontrolaction_config.so %%QT_PLUGINDIR%%/powerdevilrunscriptaction_config.so %%QT_PLUGINDIR%%/powerdevilsuspendsessionaction_config.so share/dbus-1/system-services/org.kde.powerdevil.backlighthelper.service share/dbus-1/system-services/org.kde.powerdevil.discretegpuhelper.service share/doc/HTML/ca/kcontrol/powerdevil/index.cache.bz2 share/doc/HTML/ca/kcontrol/powerdevil/index.docbook share/doc/HTML/de/kcontrol/powerdevil/index.cache.bz2 share/doc/HTML/de/kcontrol/powerdevil/index.docbook share/doc/HTML/en/kcontrol/powerdevil/activity.png share/doc/HTML/en/kcontrol/powerdevil/advanced.png share/doc/HTML/en/kcontrol/powerdevil/energy.png share/doc/HTML/en/kcontrol/powerdevil/index.cache.bz2 share/doc/HTML/en/kcontrol/powerdevil/index.docbook share/doc/HTML/et/kcontrol/powerdevil/index.cache.bz2 share/doc/HTML/et/kcontrol/powerdevil/index.docbook share/doc/HTML/it/kcontrol/powerdevil/index.cache.bz2 share/doc/HTML/it/kcontrol/powerdevil/index.docbook share/doc/HTML/nl/kcontrol/powerdevil/index.cache.bz2 share/doc/HTML/nl/kcontrol/powerdevil/index.docbook share/doc/HTML/pt/kcontrol/powerdevil/index.cache.bz2 share/doc/HTML/pt/kcontrol/powerdevil/index.docbook share/doc/HTML/pt_BR/kcontrol/powerdevil/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/powerdevil/index.docbook share/doc/HTML/ru/kcontrol/powerdevil/activity.png share/doc/HTML/ru/kcontrol/powerdevil/advanced.png share/doc/HTML/ru/kcontrol/powerdevil/energy.png share/doc/HTML/ru/kcontrol/powerdevil/index.cache.bz2 share/doc/HTML/ru/kcontrol/powerdevil/index.docbook share/doc/HTML/sv/kcontrol/powerdevil/index.cache.bz2 share/doc/HTML/sv/kcontrol/powerdevil/index.docbook share/doc/HTML/uk/kcontrol/powerdevil/activity.png share/doc/HTML/uk/kcontrol/powerdevil/advanced.png share/doc/HTML/uk/kcontrol/powerdevil/energy.png share/doc/HTML/uk/kcontrol/powerdevil/index.cache.bz2 share/doc/HTML/uk/kcontrol/powerdevil/index.docbook share/knotifications5/powerdevil.notifyrc share/kservices5/powerdevilactivitiesconfig.desktop share/kservices5/powerdevilbrightnesscontrolaction.desktop share/kservices5/powerdevildimdisplayaction.desktop share/kservices5/powerdevildpmsaction.desktop share/kservices5/powerdevilglobalconfig.desktop share/kservices5/powerdevilhandlebuttoneventsaction.desktop share/kservices5/powerdevilkeyboardbrightnesscontrolaction.desktop share/kservices5/powerdevilprofilesconfig.desktop share/kservices5/powerdevilrunscriptaction.desktop share/kservices5/powerdevilsuspendsessionaction.desktop share/kservicetypes5/powerdevilaction.desktop share/locale/ar/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/ar/LC_MESSAGES/powerdevil.mo share/locale/ar/LC_MESSAGES/powerdevilactivitiesconfig.mo share/locale/ar/LC_MESSAGES/powerdevilglobalconfig.mo share/locale/ar/LC_MESSAGES/powerdevilprofilesconfig.mo share/locale/as/LC_MESSAGES/powerdevil.mo -share/locale/ast/LC_MESSAGES/libpowerdevilcommonconfig.mo -share/locale/ast/LC_MESSAGES/powerdevil.mo -share/locale/ast/LC_MESSAGES/powerdevilactivitiesconfig.mo -share/locale/ast/LC_MESSAGES/powerdevilglobalconfig.mo -share/locale/ast/LC_MESSAGES/powerdevilprofilesconfig.mo share/locale/be@latin/LC_MESSAGES/powerdevil.mo share/locale/bg/LC_MESSAGES/powerdevil.mo share/locale/bg/LC_MESSAGES/powerdevilactivitiesconfig.mo share/locale/bg/LC_MESSAGES/powerdevilglobalconfig.mo share/locale/bg/LC_MESSAGES/powerdevilprofilesconfig.mo share/locale/bn/LC_MESSAGES/powerdevil.mo share/locale/bn_IN/LC_MESSAGES/powerdevil.mo share/locale/bs/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/bs/LC_MESSAGES/powerdevil.mo share/locale/bs/LC_MESSAGES/powerdevilactivitiesconfig.mo share/locale/bs/LC_MESSAGES/powerdevilglobalconfig.mo share/locale/bs/LC_MESSAGES/powerdevilprofilesconfig.mo share/locale/ca/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/ca/LC_MESSAGES/powerdevil.mo share/locale/ca/LC_MESSAGES/powerdevilactivitiesconfig.mo share/locale/ca/LC_MESSAGES/powerdevilglobalconfig.mo share/locale/ca/LC_MESSAGES/powerdevilprofilesconfig.mo share/locale/ca@valencia/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/ca@valencia/LC_MESSAGES/powerdevil.mo share/locale/ca@valencia/LC_MESSAGES/powerdevilactivitiesconfig.mo share/locale/ca@valencia/LC_MESSAGES/powerdevilglobalconfig.mo share/locale/ca@valencia/LC_MESSAGES/powerdevilprofilesconfig.mo share/locale/cs/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/cs/LC_MESSAGES/powerdevil.mo share/locale/cs/LC_MESSAGES/powerdevilactivitiesconfig.mo share/locale/cs/LC_MESSAGES/powerdevilglobalconfig.mo share/locale/cs/LC_MESSAGES/powerdevilprofilesconfig.mo share/locale/da/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/da/LC_MESSAGES/powerdevil.mo share/locale/da/LC_MESSAGES/powerdevilactivitiesconfig.mo share/locale/da/LC_MESSAGES/powerdevilglobalconfig.mo share/locale/da/LC_MESSAGES/powerdevilprofilesconfig.mo share/locale/de/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/de/LC_MESSAGES/powerdevil.mo share/locale/de/LC_MESSAGES/powerdevilactivitiesconfig.mo share/locale/de/LC_MESSAGES/powerdevilglobalconfig.mo share/locale/de/LC_MESSAGES/powerdevilprofilesconfig.mo share/locale/el/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/el/LC_MESSAGES/powerdevil.mo share/locale/el/LC_MESSAGES/powerdevilactivitiesconfig.mo share/locale/el/LC_MESSAGES/powerdevilglobalconfig.mo share/locale/el/LC_MESSAGES/powerdevilprofilesconfig.mo share/locale/en_GB/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/en_GB/LC_MESSAGES/powerdevil.mo share/locale/en_GB/LC_MESSAGES/powerdevilactivitiesconfig.mo share/locale/en_GB/LC_MESSAGES/powerdevilglobalconfig.mo share/locale/en_GB/LC_MESSAGES/powerdevilprofilesconfig.mo share/locale/eo/LC_MESSAGES/powerdevil.mo share/locale/es/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/es/LC_MESSAGES/powerdevil.mo share/locale/es/LC_MESSAGES/powerdevilactivitiesconfig.mo share/locale/es/LC_MESSAGES/powerdevilglobalconfig.mo share/locale/es/LC_MESSAGES/powerdevilprofilesconfig.mo share/locale/et/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/et/LC_MESSAGES/powerdevil.mo share/locale/et/LC_MESSAGES/powerdevilactivitiesconfig.mo share/locale/et/LC_MESSAGES/powerdevilglobalconfig.mo share/locale/et/LC_MESSAGES/powerdevilprofilesconfig.mo share/locale/eu/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/eu/LC_MESSAGES/powerdevil.mo share/locale/eu/LC_MESSAGES/powerdevilactivitiesconfig.mo share/locale/eu/LC_MESSAGES/powerdevilglobalconfig.mo share/locale/eu/LC_MESSAGES/powerdevilprofilesconfig.mo share/locale/fi/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/fi/LC_MESSAGES/powerdevil.mo share/locale/fi/LC_MESSAGES/powerdevilactivitiesconfig.mo share/locale/fi/LC_MESSAGES/powerdevilglobalconfig.mo share/locale/fi/LC_MESSAGES/powerdevilprofilesconfig.mo share/locale/fr/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/fr/LC_MESSAGES/powerdevil.mo share/locale/fr/LC_MESSAGES/powerdevilactivitiesconfig.mo share/locale/fr/LC_MESSAGES/powerdevilglobalconfig.mo share/locale/fr/LC_MESSAGES/powerdevilprofilesconfig.mo share/locale/fy/LC_MESSAGES/powerdevil.mo share/locale/ga/LC_MESSAGES/powerdevil.mo share/locale/ga/LC_MESSAGES/powerdevilactivitiesconfig.mo share/locale/ga/LC_MESSAGES/powerdevilglobalconfig.mo share/locale/ga/LC_MESSAGES/powerdevilprofilesconfig.mo share/locale/gl/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/gl/LC_MESSAGES/powerdevil.mo share/locale/gl/LC_MESSAGES/powerdevilactivitiesconfig.mo share/locale/gl/LC_MESSAGES/powerdevilglobalconfig.mo share/locale/gl/LC_MESSAGES/powerdevilprofilesconfig.mo share/locale/gu/LC_MESSAGES/powerdevil.mo share/locale/gu/LC_MESSAGES/powerdevilglobalconfig.mo share/locale/gu/LC_MESSAGES/powerdevilprofilesconfig.mo share/locale/he/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/he/LC_MESSAGES/powerdevil.mo share/locale/he/LC_MESSAGES/powerdevilactivitiesconfig.mo share/locale/he/LC_MESSAGES/powerdevilglobalconfig.mo share/locale/he/LC_MESSAGES/powerdevilprofilesconfig.mo share/locale/hi/LC_MESSAGES/powerdevil.mo share/locale/hr/LC_MESSAGES/powerdevil.mo share/locale/hr/LC_MESSAGES/powerdevilglobalconfig.mo share/locale/hr/LC_MESSAGES/powerdevilprofilesconfig.mo share/locale/hsb/LC_MESSAGES/powerdevil.mo share/locale/hu/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/hu/LC_MESSAGES/powerdevil.mo share/locale/hu/LC_MESSAGES/powerdevilactivitiesconfig.mo share/locale/hu/LC_MESSAGES/powerdevilglobalconfig.mo share/locale/hu/LC_MESSAGES/powerdevilprofilesconfig.mo share/locale/ia/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/ia/LC_MESSAGES/powerdevil.mo share/locale/ia/LC_MESSAGES/powerdevilactivitiesconfig.mo share/locale/ia/LC_MESSAGES/powerdevilglobalconfig.mo share/locale/ia/LC_MESSAGES/powerdevilprofilesconfig.mo share/locale/id/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/id/LC_MESSAGES/powerdevil.mo share/locale/id/LC_MESSAGES/powerdevilactivitiesconfig.mo share/locale/id/LC_MESSAGES/powerdevilglobalconfig.mo share/locale/id/LC_MESSAGES/powerdevilprofilesconfig.mo share/locale/is/LC_MESSAGES/powerdevil.mo share/locale/it/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/it/LC_MESSAGES/powerdevil.mo share/locale/it/LC_MESSAGES/powerdevilactivitiesconfig.mo share/locale/it/LC_MESSAGES/powerdevilglobalconfig.mo share/locale/it/LC_MESSAGES/powerdevilprofilesconfig.mo share/locale/ja/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/ja/LC_MESSAGES/powerdevil.mo share/locale/ja/LC_MESSAGES/powerdevilactivitiesconfig.mo share/locale/ja/LC_MESSAGES/powerdevilglobalconfig.mo share/locale/ja/LC_MESSAGES/powerdevilprofilesconfig.mo share/locale/kk/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/kk/LC_MESSAGES/powerdevil.mo share/locale/kk/LC_MESSAGES/powerdevilactivitiesconfig.mo share/locale/kk/LC_MESSAGES/powerdevilglobalconfig.mo share/locale/kk/LC_MESSAGES/powerdevilprofilesconfig.mo share/locale/km/LC_MESSAGES/powerdevil.mo share/locale/km/LC_MESSAGES/powerdevilactivitiesconfig.mo share/locale/km/LC_MESSAGES/powerdevilglobalconfig.mo share/locale/km/LC_MESSAGES/powerdevilprofilesconfig.mo share/locale/ko/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/ko/LC_MESSAGES/powerdevil.mo share/locale/ko/LC_MESSAGES/powerdevilactivitiesconfig.mo share/locale/ko/LC_MESSAGES/powerdevilglobalconfig.mo share/locale/ko/LC_MESSAGES/powerdevilprofilesconfig.mo share/locale/ku/LC_MESSAGES/powerdevil.mo share/locale/lt/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/lt/LC_MESSAGES/powerdevil.mo share/locale/lt/LC_MESSAGES/powerdevilactivitiesconfig.mo share/locale/lt/LC_MESSAGES/powerdevilglobalconfig.mo share/locale/lt/LC_MESSAGES/powerdevilprofilesconfig.mo share/locale/lv/LC_MESSAGES/powerdevil.mo share/locale/lv/LC_MESSAGES/powerdevilglobalconfig.mo share/locale/lv/LC_MESSAGES/powerdevilprofilesconfig.mo share/locale/mai/LC_MESSAGES/powerdevil.mo share/locale/ml/LC_MESSAGES/powerdevil.mo share/locale/mr/LC_MESSAGES/powerdevil.mo share/locale/mr/LC_MESSAGES/powerdevilactivitiesconfig.mo share/locale/mr/LC_MESSAGES/powerdevilglobalconfig.mo share/locale/mr/LC_MESSAGES/powerdevilprofilesconfig.mo share/locale/ms/LC_MESSAGES/powerdevil.mo share/locale/ms/LC_MESSAGES/powerdevilglobalconfig.mo share/locale/ms/LC_MESSAGES/powerdevilprofilesconfig.mo share/locale/nb/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/nb/LC_MESSAGES/powerdevil.mo share/locale/nb/LC_MESSAGES/powerdevilactivitiesconfig.mo share/locale/nb/LC_MESSAGES/powerdevilglobalconfig.mo share/locale/nb/LC_MESSAGES/powerdevilprofilesconfig.mo share/locale/nds/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/nds/LC_MESSAGES/powerdevil.mo share/locale/nds/LC_MESSAGES/powerdevilactivitiesconfig.mo share/locale/nds/LC_MESSAGES/powerdevilglobalconfig.mo share/locale/nds/LC_MESSAGES/powerdevilprofilesconfig.mo share/locale/nl/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/nl/LC_MESSAGES/powerdevil.mo share/locale/nl/LC_MESSAGES/powerdevilactivitiesconfig.mo share/locale/nl/LC_MESSAGES/powerdevilglobalconfig.mo share/locale/nl/LC_MESSAGES/powerdevilprofilesconfig.mo share/locale/nn/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/nn/LC_MESSAGES/powerdevil.mo share/locale/nn/LC_MESSAGES/powerdevilactivitiesconfig.mo share/locale/nn/LC_MESSAGES/powerdevilglobalconfig.mo share/locale/nn/LC_MESSAGES/powerdevilprofilesconfig.mo share/locale/or/LC_MESSAGES/powerdevil.mo share/locale/pa/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/pa/LC_MESSAGES/powerdevil.mo share/locale/pa/LC_MESSAGES/powerdevilactivitiesconfig.mo share/locale/pa/LC_MESSAGES/powerdevilglobalconfig.mo share/locale/pa/LC_MESSAGES/powerdevilprofilesconfig.mo share/locale/pl/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/pl/LC_MESSAGES/powerdevil.mo share/locale/pl/LC_MESSAGES/powerdevilactivitiesconfig.mo share/locale/pl/LC_MESSAGES/powerdevilglobalconfig.mo share/locale/pl/LC_MESSAGES/powerdevilprofilesconfig.mo share/locale/pt/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/pt/LC_MESSAGES/powerdevil.mo share/locale/pt/LC_MESSAGES/powerdevilactivitiesconfig.mo share/locale/pt/LC_MESSAGES/powerdevilglobalconfig.mo share/locale/pt/LC_MESSAGES/powerdevilprofilesconfig.mo share/locale/pt_BR/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/pt_BR/LC_MESSAGES/powerdevil.mo share/locale/pt_BR/LC_MESSAGES/powerdevilactivitiesconfig.mo share/locale/pt_BR/LC_MESSAGES/powerdevilglobalconfig.mo share/locale/pt_BR/LC_MESSAGES/powerdevilprofilesconfig.mo share/locale/ro/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/ro/LC_MESSAGES/powerdevil.mo share/locale/ro/LC_MESSAGES/powerdevilactivitiesconfig.mo share/locale/ro/LC_MESSAGES/powerdevilglobalconfig.mo share/locale/ro/LC_MESSAGES/powerdevilprofilesconfig.mo share/locale/ru/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/ru/LC_MESSAGES/powerdevil.mo share/locale/ru/LC_MESSAGES/powerdevilactivitiesconfig.mo share/locale/ru/LC_MESSAGES/powerdevilglobalconfig.mo share/locale/ru/LC_MESSAGES/powerdevilprofilesconfig.mo share/locale/si/LC_MESSAGES/powerdevil.mo share/locale/sk/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/sk/LC_MESSAGES/powerdevil.mo share/locale/sk/LC_MESSAGES/powerdevilactivitiesconfig.mo share/locale/sk/LC_MESSAGES/powerdevilglobalconfig.mo share/locale/sk/LC_MESSAGES/powerdevilprofilesconfig.mo share/locale/sl/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/sl/LC_MESSAGES/powerdevil.mo share/locale/sl/LC_MESSAGES/powerdevilactivitiesconfig.mo share/locale/sl/LC_MESSAGES/powerdevilglobalconfig.mo share/locale/sl/LC_MESSAGES/powerdevilprofilesconfig.mo share/locale/sq/LC_MESSAGES/powerdevil.mo share/locale/sr/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/sr/LC_MESSAGES/powerdevil.mo share/locale/sr/LC_MESSAGES/powerdevilactivitiesconfig.mo share/locale/sr/LC_MESSAGES/powerdevilglobalconfig.mo share/locale/sr/LC_MESSAGES/powerdevilprofilesconfig.mo share/locale/sr@ijekavian/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/sr@ijekavian/LC_MESSAGES/powerdevil.mo share/locale/sr@ijekavian/LC_MESSAGES/powerdevilactivitiesconfig.mo share/locale/sr@ijekavian/LC_MESSAGES/powerdevilglobalconfig.mo share/locale/sr@ijekavian/LC_MESSAGES/powerdevilprofilesconfig.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/powerdevil.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/powerdevilactivitiesconfig.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/powerdevilglobalconfig.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/powerdevilprofilesconfig.mo share/locale/sr@latin/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/sr@latin/LC_MESSAGES/powerdevil.mo share/locale/sr@latin/LC_MESSAGES/powerdevilactivitiesconfig.mo share/locale/sr@latin/LC_MESSAGES/powerdevilglobalconfig.mo share/locale/sr@latin/LC_MESSAGES/powerdevilprofilesconfig.mo share/locale/sv/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/sv/LC_MESSAGES/powerdevil.mo share/locale/sv/LC_MESSAGES/powerdevilactivitiesconfig.mo share/locale/sv/LC_MESSAGES/powerdevilglobalconfig.mo share/locale/sv/LC_MESSAGES/powerdevilprofilesconfig.mo share/locale/te/LC_MESSAGES/powerdevil.mo share/locale/tg/LC_MESSAGES/powerdevil.mo share/locale/th/LC_MESSAGES/powerdevil.mo share/locale/th/LC_MESSAGES/powerdevilglobalconfig.mo share/locale/th/LC_MESSAGES/powerdevilprofilesconfig.mo share/locale/tr/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/tr/LC_MESSAGES/powerdevil.mo share/locale/tr/LC_MESSAGES/powerdevilactivitiesconfig.mo share/locale/tr/LC_MESSAGES/powerdevilglobalconfig.mo share/locale/tr/LC_MESSAGES/powerdevilprofilesconfig.mo share/locale/ug/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/ug/LC_MESSAGES/powerdevil.mo share/locale/ug/LC_MESSAGES/powerdevilactivitiesconfig.mo share/locale/ug/LC_MESSAGES/powerdevilglobalconfig.mo share/locale/ug/LC_MESSAGES/powerdevilprofilesconfig.mo share/locale/uk/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/uk/LC_MESSAGES/powerdevil.mo share/locale/uk/LC_MESSAGES/powerdevilactivitiesconfig.mo share/locale/uk/LC_MESSAGES/powerdevilglobalconfig.mo share/locale/uk/LC_MESSAGES/powerdevilprofilesconfig.mo share/locale/wa/LC_MESSAGES/powerdevil.mo share/locale/wa/LC_MESSAGES/powerdevilglobalconfig.mo share/locale/wa/LC_MESSAGES/powerdevilprofilesconfig.mo share/locale/zh_CN/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/zh_CN/LC_MESSAGES/powerdevil.mo share/locale/zh_CN/LC_MESSAGES/powerdevilactivitiesconfig.mo share/locale/zh_CN/LC_MESSAGES/powerdevilglobalconfig.mo share/locale/zh_CN/LC_MESSAGES/powerdevilprofilesconfig.mo share/locale/zh_TW/LC_MESSAGES/libpowerdevilcommonconfig.mo share/locale/zh_TW/LC_MESSAGES/powerdevil.mo share/locale/zh_TW/LC_MESSAGES/powerdevilactivitiesconfig.mo share/locale/zh_TW/LC_MESSAGES/powerdevilglobalconfig.mo share/locale/zh_TW/LC_MESSAGES/powerdevilprofilesconfig.mo share/polkit-1/actions/org.kde.powerdevil.backlighthelper.policy share/polkit-1/actions/org.kde.powerdevil.discretegpuhelper.policy Index: head/sysutils/plasma5-systemsettings/Makefile =================================================================== --- head/sysutils/plasma5-systemsettings/Makefile (revision 492810) +++ head/sysutils/plasma5-systemsettings/Makefile (revision 492811) @@ -1,20 +1,19 @@ # $FreeBSD$ PORTNAME= systemsettings DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= sysutils kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 system settings USES= cmake compiler:c++11-lib cpe gettext kde:5 qt:5 tar:xz USE_KDE= activities activities-stats auth codecs completion config \ configwidgets coreaddons crash dbusaddons doctools ecm i18n \ iconthemes itemviews jobwidgets js kcmutils kdeclarative khtml \ kio kirigami2 package parts plasma-workspace service sonnet textwidgets \ widgetsaddons windowsystem xmlgui USE_QT= concurrent core dbus declarative gui network widgets xml \ buildtools_build qmake_build .include Index: head/sysutils/plasma5-systemsettings/distinfo =================================================================== --- head/sysutils/plasma5-systemsettings/distinfo (revision 492810) +++ head/sysutils/plasma5-systemsettings/distinfo (revision 492811) @@ -1,3 +1,3 @@ -TIMESTAMP = 1547014610 -SHA256 (KDE/plasma/5.14.5/systemsettings-5.14.5.tar.xz) = fca73e90c509f899878170d2ae06751b42c2f3aa7830af88d11ab6b9c98131e0 -SIZE (KDE/plasma/5.14.5/systemsettings-5.14.5.tar.xz) = 179364 +TIMESTAMP = 1549993942 +SHA256 (KDE/plasma/5.15.0/systemsettings-5.15.0.tar.xz) = 2874ba8909acf65a21af371d03eeaa234d82826524e586526620f772680792bc +SIZE (KDE/plasma/5.15.0/systemsettings-5.15.0.tar.xz) = 179212 Index: head/sysutils/plasma5-systemsettings/pkg-plist =================================================================== --- head/sysutils/plasma5-systemsettings/pkg-plist (revision 492810) +++ head/sysutils/plasma5-systemsettings/pkg-plist (revision 492811) @@ -1,164 +1,163 @@ bin/systemsettings5 etc/xdg/systemsettings.categories include/systemsettingsview/BaseData.h include/systemsettingsview/BaseMode.h include/systemsettingsview/MenuItem.h include/systemsettingsview/MenuModel.h include/systemsettingsview/MenuProxyModel.h include/systemsettingsview/ModuleView.h include/systemsettingsview/systemsettingsview_export.h lib/libsystemsettingsview.so lib/libsystemsettingsview.so.3 %%QT_PLUGINDIR%%/classic_mode.so %%QT_PLUGINDIR%%/icon_mode.so %%QT_PLUGINDIR%%/systemsettings_sidebar_mode.so share/applications/kdesystemsettings.desktop share/applications/systemsettings.desktop share/doc/HTML/ca/systemsettings/index.cache.bz2 share/doc/HTML/ca/systemsettings/index.docbook share/doc/HTML/de/systemsettings/index.cache.bz2 share/doc/HTML/de/systemsettings/index.docbook share/doc/HTML/en/systemsettings/index.cache.bz2 share/doc/HTML/en/systemsettings/index.docbook share/doc/HTML/it/systemsettings/index.cache.bz2 share/doc/HTML/it/systemsettings/index.docbook share/doc/HTML/nl/systemsettings/index.cache.bz2 share/doc/HTML/nl/systemsettings/index.docbook share/doc/HTML/pt/systemsettings/index.cache.bz2 share/doc/HTML/pt/systemsettings/index.docbook share/doc/HTML/pt_BR/systemsettings/index.cache.bz2 share/doc/HTML/pt_BR/systemsettings/index.docbook share/doc/HTML/ru/systemsettings/index.cache.bz2 share/doc/HTML/ru/systemsettings/index.docbook share/doc/HTML/sv/systemsettings/index.cache.bz2 share/doc/HTML/sv/systemsettings/index.docbook share/doc/HTML/uk/systemsettings/index.cache.bz2 share/doc/HTML/uk/systemsettings/index.docbook share/kpackage/genericqml/org.kde.systemsettings.sidebar/contents/ui/ActionMenu.qml share/kpackage/genericqml/org.kde.systemsettings.sidebar/contents/ui/CategoriesPage.qml share/kpackage/genericqml/org.kde.systemsettings.sidebar/contents/ui/IntroIcon.qml share/kpackage/genericqml/org.kde.systemsettings.sidebar/contents/ui/SubCategoryPage.qml share/kpackage/genericqml/org.kde.systemsettings.sidebar/contents/ui/introPage.qml share/kpackage/genericqml/org.kde.systemsettings.sidebar/contents/ui/main.qml share/kpackage/genericqml/org.kde.systemsettings.sidebar/metadata.desktop share/kservices5/settings-appearance-applicationstyle.desktop share/kservices5/settings-appearance-color.desktop share/kservices5/settings-appearance-font.desktop share/kservices5/settings-appearance-icons.desktop share/kservices5/settings-appearance-workspacetheme.desktop share/kservices5/settings-appearance.desktop share/kservices5/settings-classic-view.desktop share/kservices5/settings-hardware-display.desktop share/kservices5/settings-hardware-input.desktop share/kservices5/settings-hardware-multimedia.desktop share/kservices5/settings-hardware-peripherals.desktop share/kservices5/settings-hardware-powermanagement.desktop share/kservices5/settings-hardware-removable-storage.desktop share/kservices5/settings-hardware.desktop share/kservices5/settings-icon-view.desktop share/kservices5/settings-network-bluetooth.desktop share/kservices5/settings-network-connectivity.desktop share/kservices5/settings-network-networksettings.desktop share/kservices5/settings-network.desktop share/kservices5/settings-personalization-accessibility.desktop share/kservices5/settings-personalization-accountdetails.desktop share/kservices5/settings-personalization-applications.desktop share/kservices5/settings-personalization-notification.desktop share/kservices5/settings-personalization-regionalsettings.desktop share/kservices5/settings-personalization.desktop share/kservices5/settings-sidebar-view.desktop share/kservices5/settings-workspace-desktopbehavior.desktop share/kservices5/settings-workspace-search.desktop share/kservices5/settings-workspace-session.desktop share/kservices5/settings-workspace-shortcuts.desktop share/kservices5/settings-workspace-windowmanagement.desktop share/kservices5/settings-workspace.desktop share/kservicetypes5/systemsettingscategory.desktop share/kservicetypes5/systemsettingsexternalapp.desktop share/kservicetypes5/systemsettingsview.desktop share/kxmlgui5/systemsettings/systemsettingsui.rc share/locale/ar/LC_MESSAGES/systemsettings.mo -share/locale/ast/LC_MESSAGES/systemsettings.mo share/locale/be/LC_MESSAGES/systemsettings.mo share/locale/be@latin/LC_MESSAGES/systemsettings.mo share/locale/bg/LC_MESSAGES/systemsettings.mo share/locale/bn_IN/LC_MESSAGES/systemsettings.mo share/locale/bs/LC_MESSAGES/systemsettings.mo share/locale/ca/LC_MESSAGES/systemsettings.mo share/locale/ca@valencia/LC_MESSAGES/systemsettings.mo share/locale/cs/LC_MESSAGES/systemsettings.mo share/locale/csb/LC_MESSAGES/systemsettings.mo share/locale/da/LC_MESSAGES/systemsettings.mo share/locale/de/LC_MESSAGES/systemsettings.mo share/locale/el/LC_MESSAGES/systemsettings.mo share/locale/en_GB/LC_MESSAGES/systemsettings.mo share/locale/eo/LC_MESSAGES/systemsettings.mo share/locale/es/LC_MESSAGES/systemsettings.mo share/locale/et/LC_MESSAGES/systemsettings.mo share/locale/eu/LC_MESSAGES/systemsettings.mo share/locale/fa/LC_MESSAGES/systemsettings.mo share/locale/fi/LC_MESSAGES/systemsettings.mo share/locale/fr/LC_MESSAGES/systemsettings.mo share/locale/fy/LC_MESSAGES/systemsettings.mo share/locale/ga/LC_MESSAGES/systemsettings.mo share/locale/gl/LC_MESSAGES/systemsettings.mo share/locale/gu/LC_MESSAGES/systemsettings.mo share/locale/he/LC_MESSAGES/systemsettings.mo share/locale/hi/LC_MESSAGES/systemsettings.mo share/locale/hne/LC_MESSAGES/systemsettings.mo share/locale/hr/LC_MESSAGES/systemsettings.mo share/locale/hsb/LC_MESSAGES/systemsettings.mo share/locale/hu/LC_MESSAGES/systemsettings.mo share/locale/ia/LC_MESSAGES/systemsettings.mo share/locale/id/LC_MESSAGES/systemsettings.mo share/locale/is/LC_MESSAGES/systemsettings.mo share/locale/it/LC_MESSAGES/systemsettings.mo share/locale/ja/LC_MESSAGES/systemsettings.mo share/locale/kk/LC_MESSAGES/systemsettings.mo share/locale/km/LC_MESSAGES/systemsettings.mo share/locale/ko/LC_MESSAGES/systemsettings.mo share/locale/ku/LC_MESSAGES/systemsettings.mo share/locale/lt/LC_MESSAGES/systemsettings.mo share/locale/lv/LC_MESSAGES/systemsettings.mo share/locale/mai/LC_MESSAGES/systemsettings.mo share/locale/mk/LC_MESSAGES/systemsettings.mo share/locale/ml/LC_MESSAGES/systemsettings.mo share/locale/mr/LC_MESSAGES/systemsettings.mo share/locale/ms/LC_MESSAGES/systemsettings.mo share/locale/nb/LC_MESSAGES/systemsettings.mo share/locale/nds/LC_MESSAGES/systemsettings.mo share/locale/ne/LC_MESSAGES/systemsettings.mo share/locale/nl/LC_MESSAGES/systemsettings.mo share/locale/nn/LC_MESSAGES/systemsettings.mo share/locale/oc/LC_MESSAGES/systemsettings.mo share/locale/or/LC_MESSAGES/systemsettings.mo share/locale/pa/LC_MESSAGES/systemsettings.mo share/locale/pl/LC_MESSAGES/systemsettings.mo share/locale/pt/LC_MESSAGES/systemsettings.mo share/locale/pt_BR/LC_MESSAGES/systemsettings.mo share/locale/ro/LC_MESSAGES/systemsettings.mo share/locale/ru/LC_MESSAGES/systemsettings.mo share/locale/se/LC_MESSAGES/systemsettings.mo share/locale/si/LC_MESSAGES/systemsettings.mo share/locale/sk/LC_MESSAGES/systemsettings.mo share/locale/sl/LC_MESSAGES/systemsettings.mo share/locale/sq/LC_MESSAGES/systemsettings.mo share/locale/sr/LC_MESSAGES/systemsettings.mo share/locale/sr@ijekavian/LC_MESSAGES/systemsettings.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/systemsettings.mo share/locale/sr@latin/LC_MESSAGES/systemsettings.mo share/locale/sv/LC_MESSAGES/systemsettings.mo share/locale/ta/LC_MESSAGES/systemsettings.mo share/locale/te/LC_MESSAGES/systemsettings.mo share/locale/tg/LC_MESSAGES/systemsettings.mo share/locale/th/LC_MESSAGES/systemsettings.mo share/locale/tr/LC_MESSAGES/systemsettings.mo share/locale/ug/LC_MESSAGES/systemsettings.mo share/locale/uk/LC_MESSAGES/systemsettings.mo share/locale/vi/LC_MESSAGES/systemsettings.mo share/locale/wa/LC_MESSAGES/systemsettings.mo share/locale/zh_CN/LC_MESSAGES/systemsettings.mo share/locale/zh_TW/LC_MESSAGES/systemsettings.mo %%DATADIR%%/classic/main.html %%DATADIR%%/classic/systemsettings-classic.css %%DATADIR%%/systemsettings.kcfg Index: head/sysutils/plasma5-user-manager/Makefile =================================================================== --- head/sysutils/plasma5-user-manager/Makefile (revision 492810) +++ head/sysutils/plasma5-user-manager/Makefile (revision 492811) @@ -1,25 +1,24 @@ # $FreeBSD$ PORTNAME= user-manager DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= sysutils kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 user manager LIB_DEPENDS= libpwquality.so:security/libpwquality RUN_DEPENDS= accountsservice>=0:sysutils/accountsservice USES= cmake compiler:c++11-lib cpe gettext \ kde:5 pkgconfig qt:5 tar:xz USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons crash ecm emoticons guiaddons i18n iconthemes \ init itemmodels itemviews jobwidgets kcmutils kdelibs4support \ kio notifications parts service solid sonnet textwidgets \ unitconversion widgetsaddons windowsystem xmlgui USE_QT= concurrent core dbus gui network printsupport widgets xml \ buildtools_build qmake_build USE_LDCONFIG= ${QT_PLUGINDIR} .include Index: head/sysutils/plasma5-user-manager/distinfo =================================================================== --- head/sysutils/plasma5-user-manager/distinfo (revision 492810) +++ head/sysutils/plasma5-user-manager/distinfo (revision 492811) @@ -1,3 +1,3 @@ -TIMESTAMP = 1547014611 -SHA256 (KDE/plasma/5.14.5/user-manager-5.14.5.tar.xz) = 5bb2f76b467fdcdaa1f6fdecebd0494534307859d1a6d747fff9909204d0822b -SIZE (KDE/plasma/5.14.5/user-manager-5.14.5.tar.xz) = 546088 +TIMESTAMP = 1549993943 +SHA256 (KDE/plasma/5.15.0/user-manager-5.15.0.tar.xz) = ffb4f74f88c7d29266228f9f118d980eb4fd2d5cecb75434cb6af9a37b0c2a27 +SIZE (KDE/plasma/5.15.0/user-manager-5.15.0.tar.xz) = 545748 Index: head/sysutils/plasma5-user-manager/pkg-plist =================================================================== --- head/sysutils/plasma5-user-manager/pkg-plist (revision 492810) +++ head/sysutils/plasma5-user-manager/pkg-plist (revision 492811) @@ -1,74 +1,74 @@ +etc/xdg/user-manager.categories %%QT_PLUGINDIR%%/user_manager.so share/kservices5/user_manager.desktop %%DATADIR%%/avatars/bluesstyle/Ada Lovelace.png %%DATADIR%%/avatars/bluesstyle/Alice in Wonderland.png %%DATADIR%%/avatars/bluesstyle/Grace Hopper.png %%DATADIR%%/avatars/bluesstyle/Leonardo da Vinci.png %%DATADIR%%/avatars/bluesstyle/Mahatma Gandhi.png %%DATADIR%%/avatars/bluesstyle/Mowgli jungle book.png %%DATADIR%%/avatars/bluesstyle/User.png %%DATADIR%%/avatars/circles/Cat.png %%DATADIR%%/avatars/circles/Female.png %%DATADIR%%/avatars/circles/Konqui.png %%DATADIR%%/avatars/circles/Male.png %%DATADIR%%/avatars/circles/Penguin.png %%DATADIR%%/avatars/circles/Zebra.png %%DATADIR%%/avatars/classic/Blackbox.png %%DATADIR%%/avatars/classic/Bomb.png %%DATADIR%%/avatars/classic/Dragon.png %%DATADIR%%/avatars/classic/Green.png %%DATADIR%%/avatars/classic/Happy.png %%DATADIR%%/avatars/classic/Listening.png %%DATADIR%%/avatars/classic/Notme.png %%DATADIR%%/avatars/classic/TV.png %%DATADIR%%/avatars/konqui/Kati.png %%DATADIR%%/avatars/konqui/Konqui.png %%DATADIR%%/avatars/konqui/Logger.png %%DATADIR%%/avatars/konqui/Parley.png %%DATADIR%%/avatars/konqui/Rekonqui.png share/locale/ar/LC_MESSAGES/user_manager.mo -share/locale/ast/LC_MESSAGES/user_manager.mo share/locale/bs/LC_MESSAGES/user_manager.mo share/locale/ca/LC_MESSAGES/user_manager.mo share/locale/ca@valencia/LC_MESSAGES/user_manager.mo share/locale/cs/LC_MESSAGES/user_manager.mo share/locale/da/LC_MESSAGES/user_manager.mo share/locale/de/LC_MESSAGES/user_manager.mo share/locale/el/LC_MESSAGES/user_manager.mo share/locale/en_GB/LC_MESSAGES/user_manager.mo share/locale/es/LC_MESSAGES/user_manager.mo share/locale/et/LC_MESSAGES/user_manager.mo share/locale/eu/LC_MESSAGES/user_manager.mo share/locale/fi/LC_MESSAGES/user_manager.mo share/locale/fr/LC_MESSAGES/user_manager.mo share/locale/gl/LC_MESSAGES/user_manager.mo share/locale/he/LC_MESSAGES/user_manager.mo share/locale/hu/LC_MESSAGES/user_manager.mo share/locale/ia/LC_MESSAGES/user_manager.mo share/locale/id/LC_MESSAGES/user_manager.mo share/locale/it/LC_MESSAGES/user_manager.mo share/locale/ja/LC_MESSAGES/user_manager.mo share/locale/ko/LC_MESSAGES/user_manager.mo share/locale/lt/LC_MESSAGES/user_manager.mo share/locale/mr/LC_MESSAGES/user_manager.mo share/locale/nb/LC_MESSAGES/user_manager.mo share/locale/nl/LC_MESSAGES/user_manager.mo share/locale/nn/LC_MESSAGES/user_manager.mo share/locale/pa/LC_MESSAGES/user_manager.mo share/locale/pl/LC_MESSAGES/user_manager.mo share/locale/pt/LC_MESSAGES/user_manager.mo share/locale/pt_BR/LC_MESSAGES/user_manager.mo share/locale/ro/LC_MESSAGES/user_manager.mo share/locale/ru/LC_MESSAGES/user_manager.mo share/locale/sk/LC_MESSAGES/user_manager.mo share/locale/sl/LC_MESSAGES/user_manager.mo share/locale/sr/LC_MESSAGES/user_manager.mo share/locale/sr@ijekavian/LC_MESSAGES/user_manager.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/user_manager.mo share/locale/sr@latin/LC_MESSAGES/user_manager.mo share/locale/sv/LC_MESSAGES/user_manager.mo share/locale/tr/LC_MESSAGES/user_manager.mo share/locale/ug/LC_MESSAGES/user_manager.mo share/locale/uk/LC_MESSAGES/user_manager.mo share/locale/zh_CN/LC_MESSAGES/user_manager.mo share/locale/zh_TW/LC_MESSAGES/user_manager.mo Index: head/www/plasma5-plasma-browser-integration/Makefile =================================================================== --- head/www/plasma5-plasma-browser-integration/Makefile (revision 492810) +++ head/www/plasma5-plasma-browser-integration/Makefile (revision 492811) @@ -1,17 +1,17 @@ # $FreeBSD$ PORTNAME= plasma-browser-integration DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= www kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 components to integrate browsers into the desktop USES= compiler:c++11-lang cmake kde:5 qt:5 tar:xz -USE_KDE= activities config coreaddons i18n kio notifications package \ - plasma-framework runner service windowsystem -USE_QT= core dbus gui widgets \ +USE_KDE= activities completion config coreaddons dbusaddons i18n kio \ + notifications package plasma-framework runner service \ + widgetsaddons windowsystem +USE_QT= concurrent core dbus gui network widgets \ buildtools_build qmake_build .include Index: head/www/plasma5-plasma-browser-integration/distinfo =================================================================== --- head/www/plasma5-plasma-browser-integration/distinfo (revision 492810) +++ head/www/plasma5-plasma-browser-integration/distinfo (revision 492811) @@ -1,3 +1,3 @@ -TIMESTAMP = 1547014612 -SHA256 (KDE/plasma/5.14.5/plasma-browser-integration-5.14.5.tar.xz) = 5a44d8c22be7fcf5166be5123760bf2122e281055a9f20199c6b3e007581c088 -SIZE (KDE/plasma/5.14.5/plasma-browser-integration-5.14.5.tar.xz) = 109844 +TIMESTAMP = 1549993944 +SHA256 (KDE/plasma/5.15.0/plasma-browser-integration-5.15.0.tar.xz) = 674d9c47f2ffccc401c3432adcc37d5595782b7bd974d0c7d17481961166e97e +SIZE (KDE/plasma/5.15.0/plasma-browser-integration-5.15.0.tar.xz) = 111712 Index: head/www/plasma5-plasma-browser-integration/pkg-plist =================================================================== --- head/www/plasma5-plasma-browser-integration/pkg-plist (revision 492810) +++ head/www/plasma5-plasma-browser-integration/pkg-plist (revision 492811) @@ -1,64 +1,63 @@ bin/plasma-browser-integration-host etc/chromium/native-messaging-hosts/org.kde.plasma.browser_integration.json etc/opt/chrome/native-messaging-hosts/org.kde.plasma.browser_integration.json lib/mozilla/native-messaging-hosts/org.kde.plasma.browser_integration.json %%QT_PLUGINDIR%%/kf5/kded/browserintegrationreminder.so %%QT_PLUGINDIR%%/krunner_browsertabs.so share/kservices5/plasma-runner-browsertabs.desktop -share/locale/ast/LC_MESSAGES/plasma_runner_browsertabs.mo share/locale/ca/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/ca/LC_MESSAGES/plasma_runner_browsertabs.mo share/locale/ca@valencia/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_browsertabs.mo share/locale/cs/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/cs/LC_MESSAGES/plasma_runner_browsertabs.mo share/locale/da/LC_MESSAGES/plasma_runner_browsertabs.mo share/locale/de/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/de/LC_MESSAGES/plasma_runner_browsertabs.mo share/locale/en_GB/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_browsertabs.mo share/locale/es/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/es/LC_MESSAGES/plasma_runner_browsertabs.mo share/locale/eu/LC_MESSAGES/plasma_runner_browsertabs.mo share/locale/fi/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/fi/LC_MESSAGES/plasma_runner_browsertabs.mo share/locale/fr/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/fr/LC_MESSAGES/plasma_runner_browsertabs.mo share/locale/gl/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/gl/LC_MESSAGES/plasma_runner_browsertabs.mo share/locale/id/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/id/LC_MESSAGES/plasma_runner_browsertabs.mo share/locale/it/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/it/LC_MESSAGES/plasma_runner_browsertabs.mo share/locale/ja/LC_MESSAGES/plasma_runner_browsertabs.mo share/locale/ko/LC_MESSAGES/plasma_runner_browsertabs.mo share/locale/nb/LC_MESSAGES/plasma_runner_browsertabs.mo share/locale/nl/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/nl/LC_MESSAGES/plasma_runner_browsertabs.mo share/locale/nn/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/nn/LC_MESSAGES/plasma_runner_browsertabs.mo share/locale/pa/LC_MESSAGES/plasma_runner_browsertabs.mo share/locale/pl/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/pl/LC_MESSAGES/plasma_runner_browsertabs.mo share/locale/pt/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/pt/LC_MESSAGES/plasma_runner_browsertabs.mo share/locale/pt_BR/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_browsertabs.mo share/locale/ru/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/ru/LC_MESSAGES/plasma_runner_browsertabs.mo share/locale/sk/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/sk/LC_MESSAGES/plasma_runner_browsertabs.mo share/locale/sl/LC_MESSAGES/plasma_runner_browsertabs.mo share/locale/sr/LC_MESSAGES/plasma_runner_browsertabs.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_browsertabs.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_browsertabs.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_browsertabs.mo share/locale/sv/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/sv/LC_MESSAGES/plasma_runner_browsertabs.mo share/locale/tr/LC_MESSAGES/plasma_runner_browsertabs.mo share/locale/uk/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/uk/LC_MESSAGES/plasma_runner_browsertabs.mo share/locale/zh_CN/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_browsertabs.mo share/locale/zh_TW/LC_MESSAGES/plasma-browser-integration-reminder.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_browsertabs.mo Index: head/x11/kf5-kactivities-stats/Makefile =================================================================== --- head/x11/kf5-kactivities-stats/Makefile (revision 492810) +++ head/x11/kf5-kactivities-stats/Makefile (revision 492811) @@ -1,17 +1,18 @@ # $FreeBSD$ PORTNAME= kactivities-stats DISTVERSION= ${KDE_FRAMEWORKS_VERSION} +PORTREVISION= 1 CATEGORIES= x11 kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 statistics for activities LIB_DEPENDS= libboost_system.so:devel/boost-libs -RUN_DEPENDS= kactivitymanagerd:x11/plasma5-kactivitymanagerd USES= cmake compiler:c++11-lib kde:5 pathfix qt:5 tar:xz -USE_KDE= activities config ecm +USE_KDE= activities config ecm \ + activitymanagerd_run USE_QT= buildtools_build core dbus qmake_build sql .include Index: head/x11/plasma5-kactivitymanagerd/Makefile =================================================================== --- head/x11/plasma5-kactivitymanagerd/Makefile (revision 492810) +++ head/x11/plasma5-kactivitymanagerd/Makefile (revision 492811) @@ -1,20 +1,19 @@ # $FreeBSD$ PORTNAME= kactivitymanagerd DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= x11 kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= System service to manage user's activities, track the usage patterns USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs config configwidgets coreaddons dbusaddons ecm \ globalaccel i18n kio service widgetsaddons windowsystem xmlgui USE_QT= concurrent core dbus gui network sql widgets xml \ buildtools_build qmake_build # https://bugs.kde.org/show_bug.cgi?id=305529#c10 CMAKE_ARGS+= -DCMAKE_SHARED_LIBRARY_LINK_CXX_FLAGS=-rdynamic .include Index: head/x11/plasma5-kactivitymanagerd/distinfo =================================================================== --- head/x11/plasma5-kactivitymanagerd/distinfo (revision 492810) +++ head/x11/plasma5-kactivitymanagerd/distinfo (revision 492811) @@ -1,3 +1,3 @@ -TIMESTAMP = 1547014625 -SHA256 (KDE/plasma/5.14.5/kactivitymanagerd-5.14.5.tar.xz) = 87fa3dae3a8383f4e676faef3f5dcdb39de7094c868df497a533031daf4dba7e -SIZE (KDE/plasma/5.14.5/kactivitymanagerd-5.14.5.tar.xz) = 84964 +TIMESTAMP = 1549993988 +SHA256 (KDE/plasma/5.15.0/kactivitymanagerd-5.15.0.tar.xz) = 0d0f43a769d73c4c47574ae0fd0c638a73a1d07a4e5572bfb2e51ea78030d8d6 +SIZE (KDE/plasma/5.15.0/kactivitymanagerd-5.15.0.tar.xz) = 84396 Index: head/x11/plasma5-kactivitymanagerd/pkg-plist =================================================================== --- head/x11/plasma5-kactivitymanagerd/pkg-plist (revision 492810) +++ head/x11/plasma5-kactivitymanagerd/pkg-plist (revision 492811) @@ -1,75 +1,75 @@ -bin/kactivitymanagerd +etc/xdg/kactivitymanagerd.categories +lib/libexec/kactivitymanagerd lib/libkactivitymanagerd_plugin.so share/dbus-1/services/org.kde.activitymanager.service %%QT_PLUGINDIR%%/kactivitymanagerd/1/kactivitymanagerd_plugin_activitytemplates.so %%QT_PLUGINDIR%%/kactivitymanagerd/1/kactivitymanagerd_plugin_eventspy.so %%QT_PLUGINDIR%%/kactivitymanagerd/1/kactivitymanagerd_plugin_globalshortcuts.so %%QT_PLUGINDIR%%/kactivitymanagerd/1/kactivitymanagerd_plugin_runapplication.so %%QT_PLUGINDIR%%/kactivitymanagerd/1/kactivitymanagerd_plugin_slc.so %%QT_PLUGINDIR%%/kactivitymanagerd/1/kactivitymanagerd_plugin_sqlite.so %%QT_PLUGINDIR%%/kactivitymanagerd/1/kactivitymanagerd_plugin_virtualdesktopswitch.so share/kservices5/kactivitymanagerd.desktop share/kservicetypes5/kactivitymanagerd-plugin.desktop share/locale/ar/LC_MESSAGES/kactivities5.mo -share/locale/ast/LC_MESSAGES/kactivities5.mo share/locale/bg/LC_MESSAGES/kactivities5.mo share/locale/bs/LC_MESSAGES/kactivities5.mo share/locale/ca/LC_MESSAGES/kactivities5.mo share/locale/ca@valencia/LC_MESSAGES/kactivities5.mo share/locale/cs/LC_MESSAGES/kactivities5.mo share/locale/da/LC_MESSAGES/kactivities5.mo share/locale/de/LC_MESSAGES/kactivities5.mo share/locale/el/LC_MESSAGES/kactivities5.mo share/locale/en_GB/LC_MESSAGES/kactivities5.mo share/locale/es/LC_MESSAGES/kactivities5.mo share/locale/et/LC_MESSAGES/kactivities5.mo share/locale/eu/LC_MESSAGES/kactivities5.mo share/locale/fi/LC_MESSAGES/kactivities5.mo share/locale/fr/LC_MESSAGES/kactivities5.mo share/locale/ga/LC_MESSAGES/kactivities5.mo share/locale/gd/LC_MESSAGES/kactivities5.mo share/locale/gl/LC_MESSAGES/kactivities5.mo share/locale/gu/LC_MESSAGES/kactivities5.mo share/locale/he/LC_MESSAGES/kactivities5.mo share/locale/hi/LC_MESSAGES/kactivities5.mo share/locale/hr/LC_MESSAGES/kactivities5.mo share/locale/hu/LC_MESSAGES/kactivities5.mo share/locale/ia/LC_MESSAGES/kactivities5.mo share/locale/id/LC_MESSAGES/kactivities5.mo share/locale/is/LC_MESSAGES/kactivities5.mo share/locale/it/LC_MESSAGES/kactivities5.mo share/locale/ja/LC_MESSAGES/kactivities5.mo share/locale/kk/LC_MESSAGES/kactivities5.mo share/locale/km/LC_MESSAGES/kactivities5.mo share/locale/kn/LC_MESSAGES/kactivities5.mo share/locale/ko/LC_MESSAGES/kactivities5.mo share/locale/lt/LC_MESSAGES/kactivities5.mo share/locale/lv/LC_MESSAGES/kactivities5.mo share/locale/mr/LC_MESSAGES/kactivities5.mo share/locale/ms/LC_MESSAGES/kactivities5.mo share/locale/nb/LC_MESSAGES/kactivities5.mo share/locale/nds/LC_MESSAGES/kactivities5.mo share/locale/nl/LC_MESSAGES/kactivities5.mo share/locale/nn/LC_MESSAGES/kactivities5.mo share/locale/pa/LC_MESSAGES/kactivities5.mo share/locale/pl/LC_MESSAGES/kactivities5.mo share/locale/pt/LC_MESSAGES/kactivities5.mo share/locale/pt_BR/LC_MESSAGES/kactivities5.mo share/locale/ro/LC_MESSAGES/kactivities5.mo share/locale/ru/LC_MESSAGES/kactivities5.mo share/locale/se/LC_MESSAGES/kactivities5.mo share/locale/sk/LC_MESSAGES/kactivities5.mo share/locale/sl/LC_MESSAGES/kactivities5.mo share/locale/sr/LC_MESSAGES/kactivities5.mo share/locale/sr@ijekavian/LC_MESSAGES/kactivities5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kactivities5.mo share/locale/sr@latin/LC_MESSAGES/kactivities5.mo share/locale/sv/LC_MESSAGES/kactivities5.mo share/locale/tg/LC_MESSAGES/kactivities5.mo share/locale/th/LC_MESSAGES/kactivities5.mo share/locale/tr/LC_MESSAGES/kactivities5.mo share/locale/ug/LC_MESSAGES/kactivities5.mo share/locale/uk/LC_MESSAGES/kactivities5.mo share/locale/wa/LC_MESSAGES/kactivities5.mo share/locale/zh_CN/LC_MESSAGES/kactivities5.mo share/locale/zh_TW/LC_MESSAGES/kactivities5.mo Index: head/x11/plasma5-kgamma5/Makefile =================================================================== --- head/x11/plasma5-kgamma5/Makefile (revision 492810) +++ head/x11/plasma5-kgamma5/Makefile (revision 492811) @@ -1,22 +1,21 @@ # $FreeBSD$ PORTNAME= kgamma5 DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= x11 kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 monitor's gamma settings USES= cmake compiler:c++11-lang cpe gettext kde:5 qt:5 \ tar:xz USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons crash doctools ecm emoticons guiaddons i18n \ iconthemes init itemmodels itemviews jobwidgets \ kdelibs4support kio notifications parts service solid sonnet \ textwidgets unitconversion widgetsaddons windowsystem xmlgui USE_QT= core dbus gui network printsupport widgets x11extras xml \ buildtools_build qmake_build USE_XORG= ice sm x11 xext xxf86vm .include Index: head/x11/plasma5-kgamma5/distinfo =================================================================== --- head/x11/plasma5-kgamma5/distinfo (revision 492810) +++ head/x11/plasma5-kgamma5/distinfo (revision 492811) @@ -1,3 +1,3 @@ -TIMESTAMP = 1547014625 -SHA256 (KDE/plasma/5.14.5/kgamma5-5.14.5.tar.xz) = c03be017517be1aa291741341f97541c5f47df3c1a4f66dc587652e579cb559f -SIZE (KDE/plasma/5.14.5/kgamma5-5.14.5.tar.xz) = 79228 +TIMESTAMP = 1549993989 +SHA256 (KDE/plasma/5.15.0/kgamma5-5.15.0.tar.xz) = bf2087737b90150f3a84663555ad281644d247cc90006c9f719e551bc275d3c2 +SIZE (KDE/plasma/5.15.0/kgamma5-5.15.0.tar.xz) = 79028 Index: head/x11/plasma5-kgamma5/pkg-plist =================================================================== --- head/x11/plasma5-kgamma5/pkg-plist (revision 492810) +++ head/x11/plasma5-kgamma5/pkg-plist (revision 492811) @@ -1,108 +1,107 @@ %%QT_PLUGINDIR%%/kcm_kgamma.so share/doc/HTML/ca/kcontrol/kgamma5/index.cache.bz2 share/doc/HTML/ca/kcontrol/kgamma5/index.docbook share/doc/HTML/cs/kcontrol/kgamma5/index.cache.bz2 share/doc/HTML/cs/kcontrol/kgamma5/index.docbook share/doc/HTML/de/kcontrol/kgamma5/index.cache.bz2 share/doc/HTML/de/kcontrol/kgamma5/index.docbook share/doc/HTML/en/kcontrol/kgamma5/index.cache.bz2 share/doc/HTML/en/kcontrol/kgamma5/index.docbook share/doc/HTML/es/kcontrol/kgamma5/index.cache.bz2 share/doc/HTML/es/kcontrol/kgamma5/index.docbook share/doc/HTML/et/kcontrol/kgamma5/index.cache.bz2 share/doc/HTML/et/kcontrol/kgamma5/index.docbook share/doc/HTML/it/kcontrol/kgamma5/index.cache.bz2 share/doc/HTML/it/kcontrol/kgamma5/index.docbook share/doc/HTML/nl/kcontrol/kgamma5/index.cache.bz2 share/doc/HTML/nl/kcontrol/kgamma5/index.docbook share/doc/HTML/pt/kcontrol/kgamma5/index.cache.bz2 share/doc/HTML/pt/kcontrol/kgamma5/index.docbook share/doc/HTML/pt_BR/kcontrol/kgamma5/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/kgamma5/index.docbook share/doc/HTML/ru/kcontrol/kgamma5/index.cache.bz2 share/doc/HTML/ru/kcontrol/kgamma5/index.docbook share/doc/HTML/sv/kcontrol/kgamma5/index.cache.bz2 share/doc/HTML/sv/kcontrol/kgamma5/index.docbook share/doc/HTML/uk/kcontrol/kgamma5/index.cache.bz2 share/doc/HTML/uk/kcontrol/kgamma5/index.docbook share/kgamma/pics/background.png share/kgamma/pics/cmyscale.png share/kgamma/pics/darkgrey.png share/kgamma/pics/greyscale.png share/kgamma/pics/lightgrey.png share/kgamma/pics/midgrey.png share/kgamma/pics/rgbscale.png share/kservices5/kgamma.desktop share/locale/ar/LC_MESSAGES/kcmkgamma.mo -share/locale/ast/LC_MESSAGES/kcmkgamma.mo share/locale/be/LC_MESSAGES/kcmkgamma.mo share/locale/bg/LC_MESSAGES/kcmkgamma.mo share/locale/br/LC_MESSAGES/kcmkgamma.mo share/locale/bs/LC_MESSAGES/kcmkgamma.mo share/locale/ca/LC_MESSAGES/kcmkgamma.mo share/locale/ca@valencia/LC_MESSAGES/kcmkgamma.mo share/locale/cs/LC_MESSAGES/kcmkgamma.mo share/locale/cy/LC_MESSAGES/kcmkgamma.mo share/locale/da/LC_MESSAGES/kcmkgamma.mo share/locale/de/LC_MESSAGES/kcmkgamma.mo share/locale/el/LC_MESSAGES/kcmkgamma.mo share/locale/en_GB/LC_MESSAGES/kcmkgamma.mo share/locale/eo/LC_MESSAGES/kcmkgamma.mo share/locale/es/LC_MESSAGES/kcmkgamma.mo share/locale/et/LC_MESSAGES/kcmkgamma.mo share/locale/eu/LC_MESSAGES/kcmkgamma.mo share/locale/fa/LC_MESSAGES/kcmkgamma.mo share/locale/fi/LC_MESSAGES/kcmkgamma.mo share/locale/fr/LC_MESSAGES/kcmkgamma.mo share/locale/fy/LC_MESSAGES/kcmkgamma.mo share/locale/ga/LC_MESSAGES/kcmkgamma.mo share/locale/gl/LC_MESSAGES/kcmkgamma.mo share/locale/he/LC_MESSAGES/kcmkgamma.mo share/locale/hi/LC_MESSAGES/kcmkgamma.mo share/locale/hne/LC_MESSAGES/kcmkgamma.mo share/locale/hr/LC_MESSAGES/kcmkgamma.mo share/locale/hu/LC_MESSAGES/kcmkgamma.mo share/locale/ia/LC_MESSAGES/kcmkgamma.mo share/locale/id/LC_MESSAGES/kcmkgamma.mo share/locale/is/LC_MESSAGES/kcmkgamma.mo share/locale/it/LC_MESSAGES/kcmkgamma.mo share/locale/ja/LC_MESSAGES/kcmkgamma.mo share/locale/kk/LC_MESSAGES/kcmkgamma.mo share/locale/km/LC_MESSAGES/kcmkgamma.mo share/locale/ko/LC_MESSAGES/kcmkgamma.mo share/locale/lt/LC_MESSAGES/kcmkgamma.mo share/locale/lv/LC_MESSAGES/kcmkgamma.mo share/locale/mk/LC_MESSAGES/kcmkgamma.mo share/locale/mr/LC_MESSAGES/kcmkgamma.mo share/locale/ms/LC_MESSAGES/kcmkgamma.mo share/locale/nb/LC_MESSAGES/kcmkgamma.mo share/locale/nds/LC_MESSAGES/kcmkgamma.mo share/locale/ne/LC_MESSAGES/kcmkgamma.mo share/locale/nl/LC_MESSAGES/kcmkgamma.mo share/locale/nn/LC_MESSAGES/kcmkgamma.mo share/locale/oc/LC_MESSAGES/kcmkgamma.mo share/locale/pa/LC_MESSAGES/kcmkgamma.mo share/locale/pl/LC_MESSAGES/kcmkgamma.mo share/locale/pt/LC_MESSAGES/kcmkgamma.mo share/locale/pt_BR/LC_MESSAGES/kcmkgamma.mo share/locale/ro/LC_MESSAGES/kcmkgamma.mo share/locale/ru/LC_MESSAGES/kcmkgamma.mo share/locale/se/LC_MESSAGES/kcmkgamma.mo share/locale/si/LC_MESSAGES/kcmkgamma.mo share/locale/sk/LC_MESSAGES/kcmkgamma.mo share/locale/sl/LC_MESSAGES/kcmkgamma.mo share/locale/sq/LC_MESSAGES/kcmkgamma.mo share/locale/sr/LC_MESSAGES/kcmkgamma.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmkgamma.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmkgamma.mo share/locale/sr@latin/LC_MESSAGES/kcmkgamma.mo share/locale/sv/LC_MESSAGES/kcmkgamma.mo share/locale/ta/LC_MESSAGES/kcmkgamma.mo share/locale/tg/LC_MESSAGES/kcmkgamma.mo share/locale/th/LC_MESSAGES/kcmkgamma.mo share/locale/tr/LC_MESSAGES/kcmkgamma.mo share/locale/ug/LC_MESSAGES/kcmkgamma.mo share/locale/uk/LC_MESSAGES/kcmkgamma.mo share/locale/zh_CN/LC_MESSAGES/kcmkgamma.mo share/locale/zh_HK/LC_MESSAGES/kcmkgamma.mo share/locale/zh_TW/LC_MESSAGES/kcmkgamma.mo Index: head/x11/plasma5-kscreen/Makefile =================================================================== --- head/x11/plasma5-kscreen/Makefile (revision 492810) +++ head/x11/plasma5-kscreen/Makefile (revision 492811) @@ -1,19 +1,18 @@ # $FreeBSD$ PORTNAME= kscreen DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= x11 kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 screen management library USES= cmake compiler:c++11-lang cpe gettext kde:5 qt:5 \ tar:xz USE_KDE= auth codecs config configwidgets coreaddons dbusaddons ecm \ globalaccel i18n kdeclarative libkscreen plasma-framework \ widgetsaddons xmlgui USE_QT= core dbus declarative gui network testlib widgets xml \ buildtools_build qmake_build .include Index: head/x11/plasma5-kscreen/distinfo =================================================================== --- head/x11/plasma5-kscreen/distinfo (revision 492810) +++ head/x11/plasma5-kscreen/distinfo (revision 492811) @@ -1,3 +1,3 @@ -TIMESTAMP = 1547014626 -SHA256 (KDE/plasma/5.14.5/kscreen-5.14.5.tar.xz) = d1239c5ce84d335fdee36ba77c974833bae5b95abd9ae016552f91ce9ef661d9 -SIZE (KDE/plasma/5.14.5/kscreen-5.14.5.tar.xz) = 123964 +TIMESTAMP = 1549993990 +SHA256 (KDE/plasma/5.15.0/kscreen-5.15.0.tar.xz) = 4cfd73fc703b07d547dfc331c176a104758ca3af0b870af5c4adb28ef91bd276 +SIZE (KDE/plasma/5.15.0/kscreen-5.15.0.tar.xz) = 123616 Index: head/x11/plasma5-kscreen/pkg-plist =================================================================== --- head/x11/plasma5-kscreen/pkg-plist (revision 492810) +++ head/x11/plasma5-kscreen/pkg-plist (revision 492811) @@ -1,134 +1,132 @@ bin/kscreen-console etc/xdg/kscreen.categories %%QT_PLUGINDIR%%/kcm_kscreen.so %%QT_PLUGINDIR%%/kf5/kded/kscreen.so %%QT_PLUGINDIR%%/plasma/applets/plasma_applet_kscreen.so share/icons/hicolor/48x48/actions/kdocumentinfo.png share/icons/hicolor/scalable/actions/kdocumentinfo.svgz share/kcm_kscreen/qml/Output.qml share/kcm_kscreen/qml/OutputIdentifier.qml share/kcm_kscreen/qml/Tip.qml share/kcm_kscreen/qml/main.qml share/kded_kscreen/qml/Osd.qml share/kded_kscreen/qml/OsdItem.qml share/kded_kscreen/qml/OsdSelector.qml share/kded_kscreen/qml/OutputIdentifier.qml share/kservices5/kcm_kscreen.desktop share/kservices5/plasma-applet-org.kde.kscreen.desktop share/locale/ar/LC_MESSAGES/kcm_displayconfiguration.mo share/locale/ar/LC_MESSAGES/kscreen.mo -share/locale/ast/LC_MESSAGES/kcm_displayconfiguration.mo -share/locale/ast/LC_MESSAGES/kscreen.mo share/locale/bs/LC_MESSAGES/kcm_displayconfiguration.mo share/locale/bs/LC_MESSAGES/kscreen.mo share/locale/ca/LC_MESSAGES/kcm_displayconfiguration.mo share/locale/ca/LC_MESSAGES/kscreen.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/ca@valencia/LC_MESSAGES/kcm_displayconfiguration.mo share/locale/ca@valencia/LC_MESSAGES/kscreen.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/cs/LC_MESSAGES/kcm_displayconfiguration.mo share/locale/cs/LC_MESSAGES/kscreen.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/da/LC_MESSAGES/kcm_displayconfiguration.mo share/locale/da/LC_MESSAGES/kscreen.mo share/locale/de/LC_MESSAGES/kcm_displayconfiguration.mo share/locale/de/LC_MESSAGES/kscreen.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/el/LC_MESSAGES/kcm_displayconfiguration.mo share/locale/el/LC_MESSAGES/kscreen.mo share/locale/en_GB/LC_MESSAGES/kcm_displayconfiguration.mo share/locale/en_GB/LC_MESSAGES/kscreen.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/es/LC_MESSAGES/kcm_displayconfiguration.mo share/locale/es/LC_MESSAGES/kscreen.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/et/LC_MESSAGES/kcm_displayconfiguration.mo share/locale/et/LC_MESSAGES/kscreen.mo share/locale/eu/LC_MESSAGES/kcm_displayconfiguration.mo share/locale/eu/LC_MESSAGES/kscreen.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/fi/LC_MESSAGES/kcm_displayconfiguration.mo share/locale/fi/LC_MESSAGES/kscreen.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/fr/LC_MESSAGES/kcm_displayconfiguration.mo share/locale/fr/LC_MESSAGES/kscreen.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/gl/LC_MESSAGES/kcm_displayconfiguration.mo share/locale/gl/LC_MESSAGES/kscreen.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/he/LC_MESSAGES/kcm_displayconfiguration.mo share/locale/he/LC_MESSAGES/kscreen.mo share/locale/hu/LC_MESSAGES/kcm_displayconfiguration.mo share/locale/hu/LC_MESSAGES/kscreen.mo share/locale/ia/LC_MESSAGES/kcm_displayconfiguration.mo share/locale/ia/LC_MESSAGES/kscreen.mo share/locale/id/LC_MESSAGES/kcm_displayconfiguration.mo share/locale/id/LC_MESSAGES/kscreen.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/it/LC_MESSAGES/kcm_displayconfiguration.mo share/locale/it/LC_MESSAGES/kscreen.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/ja/LC_MESSAGES/kcm_displayconfiguration.mo share/locale/ja/LC_MESSAGES/kscreen.mo share/locale/ko/LC_MESSAGES/kcm_displayconfiguration.mo share/locale/ko/LC_MESSAGES/kscreen.mo share/locale/lt/LC_MESSAGES/kcm_displayconfiguration.mo share/locale/lt/LC_MESSAGES/kscreen.mo share/locale/nb/LC_MESSAGES/kcm_displayconfiguration.mo share/locale/nb/LC_MESSAGES/kscreen.mo share/locale/nl/LC_MESSAGES/kcm_displayconfiguration.mo share/locale/nl/LC_MESSAGES/kscreen.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/nn/LC_MESSAGES/kcm_displayconfiguration.mo share/locale/nn/LC_MESSAGES/kscreen.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/pa/LC_MESSAGES/kcm_displayconfiguration.mo share/locale/pa/LC_MESSAGES/kscreen.mo share/locale/pl/LC_MESSAGES/kcm_displayconfiguration.mo share/locale/pl/LC_MESSAGES/kscreen.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/pt/LC_MESSAGES/kcm_displayconfiguration.mo share/locale/pt/LC_MESSAGES/kscreen.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/pt_BR/LC_MESSAGES/kcm_displayconfiguration.mo share/locale/pt_BR/LC_MESSAGES/kscreen.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/ro/LC_MESSAGES/kcm_displayconfiguration.mo share/locale/ro/LC_MESSAGES/kscreen.mo share/locale/ru/LC_MESSAGES/kcm_displayconfiguration.mo share/locale/ru/LC_MESSAGES/kscreen.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/sk/LC_MESSAGES/kcm_displayconfiguration.mo share/locale/sk/LC_MESSAGES/kscreen.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/sl/LC_MESSAGES/kcm_displayconfiguration.mo share/locale/sl/LC_MESSAGES/kscreen.mo share/locale/sr/LC_MESSAGES/kcm_displayconfiguration.mo share/locale/sr/LC_MESSAGES/kscreen.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_displayconfiguration.mo share/locale/sr@ijekavian/LC_MESSAGES/kscreen.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_displayconfiguration.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kscreen.mo share/locale/sr@latin/LC_MESSAGES/kcm_displayconfiguration.mo share/locale/sr@latin/LC_MESSAGES/kscreen.mo share/locale/sv/LC_MESSAGES/kcm_displayconfiguration.mo share/locale/sv/LC_MESSAGES/kscreen.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/tr/LC_MESSAGES/kcm_displayconfiguration.mo share/locale/tr/LC_MESSAGES/kscreen.mo share/locale/uk/LC_MESSAGES/kcm_displayconfiguration.mo share/locale/uk/LC_MESSAGES/kscreen.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/zh_CN/LC_MESSAGES/kcm_displayconfiguration.mo share/locale/zh_CN/LC_MESSAGES/kscreen.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/locale/zh_TW/LC_MESSAGES/kcm_displayconfiguration.mo share/locale/zh_TW/LC_MESSAGES/kscreen.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.kscreen.mo share/metainfo/org.kde.kscreen.appdata.xml share/plasma/plasmoids/org.kde.kscreen/contents/ui/PresentationModeItem.qml share/plasma/plasmoids/org.kde.kscreen/contents/ui/ScreenLayoutSelection.qml share/plasma/plasmoids/org.kde.kscreen/contents/ui/main.qml share/plasma/plasmoids/org.kde.kscreen/metadata.desktop share/plasma/plasmoids/org.kde.kscreen/metadata.json Index: head/x11/plasma5-kwayland-integration/Makefile =================================================================== --- head/x11/plasma5-kwayland-integration/Makefile (revision 492810) +++ head/x11/plasma5-kwayland-integration/Makefile (revision 492811) @@ -1,20 +1,19 @@ # $FreeBSD$ PORTNAME= kwayland-integration DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= x11 kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Integration plugins for a Wayland-based desktop LIB_DEPENDS= libepoxy.so:graphics/libepoxy \ libwayland-client.so:graphics/wayland BUILD_DEPENDS= ${LOCALBASE}/include/linux/input.h:devel/evdev-proto USES= cmake compiler:c++11-lib cpe kde:5 qt:5 tar:xz USE_KDE= ecm idletime wayland windowsystem USE_QT= core gui widgets \ buildtools_build qmake_build .include Index: head/x11/plasma5-kwayland-integration/distinfo =================================================================== --- head/x11/plasma5-kwayland-integration/distinfo (revision 492810) +++ head/x11/plasma5-kwayland-integration/distinfo (revision 492811) @@ -1,3 +1,3 @@ -TIMESTAMP = 1547014626 -SHA256 (KDE/plasma/5.14.5/kwayland-integration-5.14.5.tar.xz) = 7400869e31eb397d626d5857dffe91542010721ef0818e62da3dc65116eca065 -SIZE (KDE/plasma/5.14.5/kwayland-integration-5.14.5.tar.xz) = 18704 +TIMESTAMP = 1549993991 +SHA256 (KDE/plasma/5.15.0/kwayland-integration-5.15.0.tar.xz) = 12cf11150d97f7068eb44e879749b81a2b40d111273f4909c55b992f3cafef3e +SIZE (KDE/plasma/5.15.0/kwayland-integration-5.15.0.tar.xz) = 18672 Index: head/x11/plasma5-libkscreen/Makefile =================================================================== --- head/x11/plasma5-libkscreen/Makefile (revision 492810) +++ head/x11/plasma5-libkscreen/Makefile (revision 492811) @@ -1,18 +1,17 @@ # $FreeBSD$ PORTNAME= libkscreen DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= x11 kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 screen management library USES= cmake compiler:c++11-lib cpe kde:5 pathfix \ pkgconfig qt:5 tar:xz USE_KDE= ecm wayland USE_QT= core dbus gui testlib x11extras \ buildtools_build qmake_build USE_XORG= x11 xcb xrandr .include Index: head/x11/plasma5-libkscreen/distinfo =================================================================== --- head/x11/plasma5-libkscreen/distinfo (revision 492810) +++ head/x11/plasma5-libkscreen/distinfo (revision 492811) @@ -1,3 +1,3 @@ -TIMESTAMP = 1547014628 -SHA256 (KDE/plasma/5.14.5/libkscreen-5.14.5.tar.xz) = fee8f08814213575187895572db9056dfa252215c9dbd862e251a7ab0aadcaef -SIZE (KDE/plasma/5.14.5/libkscreen-5.14.5.tar.xz) = 80124 +TIMESTAMP = 1549993992 +SHA256 (KDE/plasma/5.15.0/libkscreen-5.15.0.tar.xz) = ab0edee04179942f3f88832e452112871fecf6bb5b2ba95d809157674c429cb2 +SIZE (KDE/plasma/5.15.0/libkscreen-5.15.0.tar.xz) = 80928 Index: head/x11/plasma5-libkscreen/pkg-plist =================================================================== --- head/x11/plasma5-libkscreen/pkg-plist (revision 492810) +++ head/x11/plasma5-libkscreen/pkg-plist (revision 492811) @@ -1,42 +1,43 @@ bin/kscreen-doctor +etc/xdg/libkscreen.categories include/KF5/KScreen/KScreen/Config include/KF5/KScreen/KScreen/ConfigMonitor include/KF5/KScreen/KScreen/ConfigOperation include/KF5/KScreen/KScreen/EDID include/KF5/KScreen/KScreen/GetConfigOperation include/KF5/KScreen/KScreen/Log include/KF5/KScreen/KScreen/Mode include/KF5/KScreen/KScreen/Output include/KF5/KScreen/KScreen/Screen include/KF5/KScreen/KScreen/SetConfigOperation include/KF5/KScreen/KScreen/Types include/KF5/KScreen/kscreen/backendmanager_p.h include/KF5/KScreen/kscreen/config.h include/KF5/KScreen/kscreen/configmonitor.h include/KF5/KScreen/kscreen/configoperation.h include/KF5/KScreen/kscreen/edid.h include/KF5/KScreen/kscreen/getconfigoperation.h include/KF5/KScreen/kscreen/kscreen_export.h include/KF5/KScreen/kscreen/log.h include/KF5/KScreen/kscreen/mode.h include/KF5/KScreen/kscreen/output.h include/KF5/KScreen/kscreen/screen.h include/KF5/KScreen/kscreen/setconfigoperation.h include/KF5/KScreen/kscreen/types.h include/KF5/kscreen_version.h lib/cmake/KF5Screen/KF5ScreenConfig.cmake lib/cmake/KF5Screen/KF5ScreenConfigVersion.cmake lib/cmake/KF5Screen/KF5ScreenTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5Screen/KF5ScreenTargets.cmake lib/libKF5Screen.so lib/libKF5Screen.so.%%KDE_PLASMA_VERSION%% lib/libKF5Screen.so.7 lib/libexec/kf5/kscreen_backend_launcher %%QT_PLUGINDIR%%/kf5/kscreen/KSC_Fake.so %%QT_PLUGINDIR%%/kf5/kscreen/KSC_KWayland.so %%QT_PLUGINDIR%%/kf5/kscreen/KSC_QScreen.so %%QT_PLUGINDIR%%/kf5/kscreen/KSC_XRandR.so %%QT_PLUGINDIR%%/kf5/kscreen/KSC_XRandR11.so libdata/pkgconfig/kscreen2.pc %%QT_MKSPECDIR%%/modules/qt_KScreen.pri share/dbus-1/services/org.kde.kscreen.service Index: head/x11/plasma5-plasma/Makefile =================================================================== --- head/x11/plasma5-plasma/Makefile (revision 492810) +++ head/x11/plasma5-plasma/Makefile (revision 492811) @@ -1,30 +1,29 @@ # $FreeBSD$ PORTNAME= plasma DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= x11 kde PKGNAMEPREFIX= plasma5- MAINTAINER= kde@FreeBSD.org COMMENT= KDE5 plasma meta port LICENSE= LGPL20 USES= kde:5 metaport qt:5 # remove: # * bluedevil as we do have bluez # * plasma-pa don't depend on plamsa-pa by default # * breeze-kde4 don't pull in qt4 bits USE_KDE= ${_USE_PLASMA_ALL:Nplasma-pa:Nbreeze-kde4} OPTIONS_DEFINE= PHONON PULSEAUDIO OPTIONS_DEFAULT= PHONON # Different from PHONON, because this is about the output plugins PHONON_DESC= Include phonon-gstreamer, for sound output PHONON_RUN_DEPENDS= ${QT_PLUGINDIR}/phonon4qt5_backend/phonon_gstreamer.so:multimedia/phonon-gstreamer@qt5 PULSEAUDIO_USE= KDE=plasma-pa_run .include Index: head/x11/plasma5-plasma-desktop/Makefile =================================================================== --- head/x11/plasma5-plasma-desktop/Makefile (revision 492810) +++ head/x11/plasma5-plasma-desktop/Makefile (revision 492811) @@ -1,71 +1,70 @@ # $FreeBSD$ PORTNAME= plasma-desktop DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= x11 kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 plasma desktop # TODO: update packagekit-qt5 #LIB_DEPENDS= libpackagekit-qt.so:ports-mgmt/packagekit-qt5 LIB_DEPENDS= libboost_system.so:devel/boost-libs \ libfontconfig.so:x11-fonts/fontconfig \ libfreetype.so:print/freetype2 \ libxcb-image.so:x11/xcb-util-image \ libxcb-keysyms.so:x11/xcb-util-keysyms \ libxkbfile.so:x11/libxkbfile RUN_DEPENDS= iso-codes>=0:misc/iso-codes \ xf86-input-evdev>0:x11-drivers/xf86-input-evdev \ xf86-input-libinput>0:x11-drivers/xf86-input-libinput BUILD_DEPENDS= xf86-input-evdev>0:x11-drivers/xf86-input-evdev \ xf86-input-libinput>0:x11-drivers/xf86-input-libinput USES= cmake compiler:c++11-lib cpe desktop-file-utils \ gettext kde:5 pkgconfig qt:5 tar:xz USE_GNOME= glib20 USE_KDE= activities activities-stats archive attica auth baloo \ bookmarks codecs completion config configwidgets coreaddons \ crash dbusaddons doctools ecm emoticons filemetadata \ globalaccel guiaddons i18n iconthemes init itemmodels \ itemviews jobwidgets kcmutils kdeclarative kdelibs4support \ kio newstuff notifications \ notifyconfig package parts people plasma-framework \ plasma-workspace runner service solid \ sonnet textwidgets unitconversion wallet \ widgetsaddons windowsystem xmlgui USE_KDE+= drkonqi_run infocenter_run kde-cli-tools_run kmenuedit_run ksysguard_run \ polkit-kde-agent-1_run systemsettings_run USE_QT= concurrent core dbus declarative gui network phonon4 printsupport \ sql svg widgets x11extras xml \ buildtools_build qmake_build USE_XORG= ice sm x11 xcb xcursor xext xfixes xft xi xrender OPTIONS_DEFINE= SYNAPTICS OPTIONS_SUB= yes OPTIONS_GROUP= IM OPTIONS_GROUP_IM= IBUS SCIM IM_DESC= Input Method Support OPTIONS_DEFAULT= SYNAPTICS SYNAPTICS_DESC= Build touchpad KCM SYNAPTICS_BUILD_DEPENDS= xf86-input-synaptics>0:x11-drivers/xf86-input-synaptics SYNAPTICS_RUN_DEPENDS= xf86-input-synaptics>0:x11-drivers/xf86-input-synaptics SYNAPTICS_CMAKE_BOOL= WANT_SYNAPTICS IBUS_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_IBus IBUS_LIB_DEPENDS= libibus-1.0.so:textproc/ibus IBUS_DESC= Enable IBUS backend for input dialog SCIM_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_SCIM SCIM_LIB_DEPENDS= libscim-1.0.so:textproc/scim SCIM_DESC= Enable SCIM backend for input dialog post-patch: # Set the correct iso-codes directory ${REINPLACE_CMD} -e '/isoCodesXmlDir/ s#/usr/share#${LOCALBASE}/share#g' \ ${PATCH_WRKSRC}/kcms/keyboard/iso_codes.h .include Index: head/x11/plasma5-plasma-desktop/distinfo =================================================================== --- head/x11/plasma5-plasma-desktop/distinfo (revision 492810) +++ head/x11/plasma5-plasma-desktop/distinfo (revision 492811) @@ -1,3 +1,3 @@ -TIMESTAMP = 1547061820 -SHA256 (KDE/plasma/5.14.5/plasma-desktop-5.14.5.tar.xz) = d4da2bcd9752a3b88e93e9b55ded2b925b1b2b598e84ebc89cfb6669c63d205f -SIZE (KDE/plasma/5.14.5/plasma-desktop-5.14.5.tar.xz) = 9149560 +TIMESTAMP = 1549994004 +SHA256 (KDE/plasma/5.15.0/plasma-desktop-5.15.0.tar.xz) = 109f0d376e7fc2b87e445dcb16edd62407a2941bdbc20fd9c9f0719750efe16e +SIZE (KDE/plasma/5.15.0/plasma-desktop-5.15.0.tar.xz) = 9107976 Index: head/x11/plasma5-plasma-desktop/pkg-plist =================================================================== --- head/x11/plasma5-plasma-desktop/pkg-plist (revision 492810) +++ head/x11/plasma5-plasma-desktop/pkg-plist (revision 492811) @@ -1,5241 +1,5123 @@ bin/kaccess bin/kapplymousetheme %%SYNAPTICS%%bin/kcm-touchpad-list-devices bin/kcolorschemeeditor bin/kfontinst bin/kfontview bin/knetattach bin/krdb bin/lookandfeeltool bin/solid-action-desktop-gen etc/dbus-1/system.d/org.kde.fontinst.conf etc/dbus-1/system.d/org.kde.kcontrol.kcmclock.conf etc/xdg/colorschemes.knsrc etc/xdg/emoticons.knsrc etc/xdg/icons.knsrc etc/xdg/kfontinst.knsrc etc/xdg/ksplash.knsrc etc/xdg/lookandfeel.knsrc etc/xdg/plasma-desktop.categories etc/xdg/plasma-themes.knsrc etc/xdg/xcursor.knsrc lib/kconf_update_bin/krdb_clearlibrarypath lib/libexec/kauth/fontinst lib/libexec/kauth/fontinst_helper lib/libexec/kauth/fontinst_x11 lib/libexec/kauth/kcmdatetimehelper lib/libexec/kfontprint %%IBUS%%lib/libexec/kimpanel-ibus-panel %%IBUS%%lib/libexec/kimpanel-ibus-panel-launcher %%SCIM%%lib/libexec/kimpanel-scim-panel lib/libexec/plasma-changeicons lib/libkdeinit5_kaccess.so lib/libkfontinst.so lib/libkfontinst.so.5 lib/libkfontinst.so.%%KDE_PLASMA_VERSION%% lib/libkfontinstui.so lib/libkfontinstui.so.5 lib/libkfontinstui.so.%%KDE_PLASMA_VERSION%% %%QT_PLUGINDIR%%/attica_kde.so %%QT_PLUGINDIR%%/fontthumbnail.so %%QT_PLUGINDIR%%/kcm_access.so %%QT_PLUGINDIR%%/kcm_activities.so %%QT_PLUGINDIR%%/kcm_autostart.so %%QT_PLUGINDIR%%/kcm_baloofile.so %%QT_PLUGINDIR%%/kcm_clock.so %%QT_PLUGINDIR%%/kcm_colors.so %%QT_PLUGINDIR%%/kcm_componentchooser.so %%QT_PLUGINDIR%%/kcm_desktoppaths.so %%QT_PLUGINDIR%%/kcm_emoticons.so %%QT_PLUGINDIR%%/kcm_fontinst.so %%QT_PLUGINDIR%%/kcm_formats.so %%QT_PLUGINDIR%%/kcm_kded.so %%QT_PLUGINDIR%%/kcm_keyboard.so %%QT_PLUGINDIR%%/kcm_keys.so %%QT_PLUGINDIR%%/kcm_knotify.so %%QT_PLUGINDIR%%/kcm_mouse.so %%QT_PLUGINDIR%%/kcm_phonon.so %%QT_PLUGINDIR%%/kcm_plasmasearch.so %%QT_PLUGINDIR%%/kcm_smserver.so %%QT_PLUGINDIR%%/kcm_solid_actions.so %%QT_PLUGINDIR%%/kcm_standard_actions.so %%QT_PLUGINDIR%%/kcm_style.so %%QT_PLUGINDIR%%/kcms/kcm_cursortheme.so %%QT_PLUGINDIR%%/kcms/kcm_desktoptheme.so %%QT_PLUGINDIR%%/kcms/kcm_fonts.so %%QT_PLUGINDIR%%/kcms/kcm_icons.so %%QT_PLUGINDIR%%/kcms/kcm_launchfeedback.so %%QT_PLUGINDIR%%/kcms/kcm_lookandfeel.so %%QT_PLUGINDIR%%/kcms/kcm_nightcolor.so %%QT_PLUGINDIR%%/kcms/kcm_splashscreen.so -%%QT_PLUGINDIR%%/kcms/kcm_translations.so %%QT_PLUGINDIR%%/kcms/kcm_workspace.so %%QT_PLUGINDIR%%/kcmspellchecking.so %%SYNAPTICS%%%%QT_PLUGINDIR%%/kded_touchpad.so %%QT_PLUGINDIR%%/kf5/kded/device_automounter.so %%QT_PLUGINDIR%%/kf5/kded/keyboard.so %%QT_PLUGINDIR%%/kfontviewpart.so %%QT_PLUGINDIR%%/kio_fonts.so %%QT_PLUGINDIR%%/krunner_kwin.so %%QT_PLUGINDIR%%/krunner_plasma-desktop.so %%QT_PLUGINDIR%%/libkcm_device_automounter.so %%QT_PLUGINDIR%%/libkcm_qtquicksettings.so %%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_kimpanel.so %%SYNAPTICS%%%%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_touchpad.so %%QT_QMLDIR%%/org/kde/activities/settings/libkactivitiessettingsplugin.so %%QT_QMLDIR%%/org/kde/activities/settings/qmldir %%QT_QMLDIR%%/org/kde/plasma/activityswitcher/libactivityswitcherextensionplugin.so %%QT_QMLDIR%%/org/kde/plasma/activityswitcher/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/kicker/libkickerplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/kicker/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/kimpanel/libkimpanelplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/kimpanel/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/pager/libpagerplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/pager/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/taskmanager/libtaskmanagerplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/taskmanager/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/trash/libtrashplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/trash/qmldir %%QT_QMLDIR%%/org/kde/private/desktopcontainment/desktop/libdesktopplugin.so %%QT_QMLDIR%%/org/kde/private/desktopcontainment/desktop/qmldir %%QT_QMLDIR%%/org/kde/private/desktopcontainment/folder/libfolderplugin.so %%QT_QMLDIR%%/org/kde/private/desktopcontainment/folder/qmldir share/applications/org.kde.kcolorschemeeditor.desktop share/applications/org.kde.kfontview.desktop share/applications/org.kde.knetattach.desktop share/color-schemes/Honeycomb.colors share/color-schemes/Norway.colors share/color-schemes/ObsidianCoast.colors share/color-schemes/Oxygen.colors share/color-schemes/OxygenCold.colors share/color-schemes/Steel.colors share/color-schemes/WontonSoup.colors share/color-schemes/Zion.colors share/color-schemes/ZionReversed.colors %%SYNAPTICS%%share/config.kcfg/touchpad.kcfg %%SYNAPTICS%%share/config.kcfg/touchpaddaemon.kcfg %%SYNAPTICS%%share/dbus-1/interfaces/org.kde.touchpad.xml share/dbus-1/services/org.kde.fontinst.service share/dbus-1/system-services/org.kde.fontinst.service share/dbus-1/system-services/org.kde.kcontrol.kcmclock.service share/doc/HTML/ca/kcontrol/autostart/index.cache.bz2 share/doc/HTML/ca/kcontrol/autostart/index.docbook share/doc/HTML/ca/kcontrol/baloo/index.cache.bz2 share/doc/HTML/ca/kcontrol/baloo/index.docbook share/doc/HTML/ca/kcontrol/clock/index.cache.bz2 share/doc/HTML/ca/kcontrol/clock/index.docbook share/doc/HTML/ca/kcontrol/colors/index.cache.bz2 share/doc/HTML/ca/kcontrol/colors/index.docbook share/doc/HTML/ca/kcontrol/componentchooser/index.cache.bz2 share/doc/HTML/ca/kcontrol/componentchooser/index.docbook share/doc/HTML/ca/kcontrol/cursortheme/index.cache.bz2 share/doc/HTML/ca/kcontrol/cursortheme/index.docbook share/doc/HTML/ca/kcontrol/desktopthemedetails/index.cache.bz2 share/doc/HTML/ca/kcontrol/desktopthemedetails/index.docbook share/doc/HTML/ca/kcontrol/emoticons/emoticons.png share/doc/HTML/ca/kcontrol/emoticons/index.cache.bz2 share/doc/HTML/ca/kcontrol/emoticons/index.docbook share/doc/HTML/ca/kcontrol/fontinst/index.cache.bz2 share/doc/HTML/ca/kcontrol/fontinst/index.docbook share/doc/HTML/ca/kcontrol/fonts/adjust-all.png -share/doc/HTML/ca/kcontrol/fonts/anti-aliasing.png share/doc/HTML/ca/kcontrol/fonts/index.cache.bz2 share/doc/HTML/ca/kcontrol/fonts/index.docbook share/doc/HTML/ca/kcontrol/fonts/main.png share/doc/HTML/ca/kcontrol/formats/index.cache.bz2 share/doc/HTML/ca/kcontrol/formats/index.docbook -share/doc/HTML/ca/kcontrol/icons/delete-theme.png -share/doc/HTML/ca/kcontrol/icons/effects.png +share/doc/HTML/ca/kcontrol/icons/edit-delete.png +share/doc/HTML/ca/kcontrol/icons/edit-undo.png share/doc/HTML/ca/kcontrol/icons/get-new-theme.png share/doc/HTML/ca/kcontrol/icons/index.cache.bz2 share/doc/HTML/ca/kcontrol/icons/index.docbook -share/doc/HTML/ca/kcontrol/icons/install-theme.png share/doc/HTML/ca/kcontrol/icons/main.png -share/doc/HTML/ca/kcontrol/icons/size.png share/doc/HTML/ca/kcontrol/icons/use-of-icons.png share/doc/HTML/ca/kcontrol/joystick/index.cache.bz2 share/doc/HTML/ca/kcontrol/joystick/index.docbook share/doc/HTML/ca/kcontrol/kcmaccess/index.cache.bz2 share/doc/HTML/ca/kcontrol/kcmaccess/index.docbook share/doc/HTML/ca/kcontrol/kcmlaunchfeedback/index.cache.bz2 share/doc/HTML/ca/kcontrol/kcmlaunchfeedback/index.docbook share/doc/HTML/ca/kcontrol/kcmnotify/index.cache.bz2 share/doc/HTML/ca/kcontrol/kcmnotify/index.docbook share/doc/HTML/ca/kcontrol/kcmsmserver/index.cache.bz2 share/doc/HTML/ca/kcontrol/kcmsmserver/index.docbook share/doc/HTML/ca/kcontrol/kcmstyle/index.cache.bz2 share/doc/HTML/ca/kcontrol/kcmstyle/index.docbook share/doc/HTML/ca/kcontrol/kded/index.cache.bz2 share/doc/HTML/ca/kcontrol/kded/index.docbook share/doc/HTML/ca/kcontrol/keyboard/index.cache.bz2 share/doc/HTML/ca/kcontrol/keyboard/index.docbook share/doc/HTML/ca/kcontrol/keys/index.cache.bz2 share/doc/HTML/ca/kcontrol/keys/index.docbook +share/doc/HTML/ca/kcontrol/keys/list-add.png +share/doc/HTML/ca/kcontrol/keys/remove.png share/doc/HTML/ca/kcontrol/mouse/index.cache.bz2 share/doc/HTML/ca/kcontrol/mouse/index.docbook share/doc/HTML/ca/kcontrol/paths/index.cache.bz2 share/doc/HTML/ca/kcontrol/paths/index.docbook share/doc/HTML/ca/kcontrol/paths/paths.png share/doc/HTML/ca/kcontrol/phonon/index.cache.bz2 share/doc/HTML/ca/kcontrol/phonon/index.docbook share/doc/HTML/ca/kcontrol/solid-actions/add-action.png share/doc/HTML/ca/kcontrol/solid-actions/edit-action.png share/doc/HTML/ca/kcontrol/solid-actions/index.cache.bz2 share/doc/HTML/ca/kcontrol/solid-actions/index.docbook share/doc/HTML/ca/kcontrol/solid-actions/main.png share/doc/HTML/ca/kcontrol/solid-device-automounter/index.cache.bz2 share/doc/HTML/ca/kcontrol/solid-device-automounter/index.docbook share/doc/HTML/ca/kcontrol/spellchecking/index.cache.bz2 share/doc/HTML/ca/kcontrol/spellchecking/index.docbook +share/doc/HTML/ca/kcontrol/splashscreen/get-new-theme.png share/doc/HTML/ca/kcontrol/splashscreen/index.cache.bz2 share/doc/HTML/ca/kcontrol/splashscreen/index.docbook share/doc/HTML/ca/kcontrol/splashscreen/splash-main.png -share/doc/HTML/ca/kcontrol/translations/index.cache.bz2 -share/doc/HTML/ca/kcontrol/translations/index.docbook share/doc/HTML/ca/kcontrol/workspaceoptions/index.cache.bz2 share/doc/HTML/ca/kcontrol/workspaceoptions/index.docbook share/doc/HTML/ca/kfontview/index.cache.bz2 share/doc/HTML/ca/kfontview/index.docbook share/doc/HTML/ca/kfontview/kfontview.png share/doc/HTML/ca/knetattach/index.cache.bz2 share/doc/HTML/ca/knetattach/index.docbook share/doc/HTML/ca/knetattach/screenshot.png share/doc/HTML/ca/knetattach/screenshot1.png share/doc/HTML/ca/knetattach/screenshot2.png share/doc/HTML/ca/knetattach/screenshot3.png share/doc/HTML/ca/knetattach/screenshot4.png share/doc/HTML/ca/plasma-desktop/add-widgets.png share/doc/HTML/ca/plasma-desktop/application-launcher-settings.png share/doc/HTML/ca/plasma-desktop/application-launcher.png share/doc/HTML/ca/plasma-desktop/application-menu.png -share/doc/HTML/ca/plasma-desktop/desktop-settings.png share/doc/HTML/ca/plasma-desktop/device_notifier_widget.png share/doc/HTML/ca/plasma-desktop/device_notifier_widget_actions.png share/doc/HTML/ca/plasma-desktop/folder-view.png share/doc/HTML/ca/plasma-desktop/index.cache.bz2 share/doc/HTML/ca/plasma-desktop/index.docbook share/doc/HTML/ca/plasma-desktop/krunner-configure.png share/doc/HTML/ca/plasma-desktop/krunner-desktop-actions.png -share/doc/HTML/ca/plasma-desktop/krunner.png -share/doc/HTML/ca/plasma-desktop/panel-settings.png share/doc/HTML/ca/plasma-desktop/plasma-desktop-annotated.png share/doc/HTML/ca/plasma-desktop/remove.png -share/doc/HTML/ca/plasma-desktop/system-tray-settings.png share/doc/HTML/ca/plasma-desktop/system-tray-up-arrow.png -share/doc/HTML/ca/plasma-desktop/taskbar-settings.png share/doc/HTML/de/kcontrol/autostart/index.cache.bz2 share/doc/HTML/de/kcontrol/autostart/index.docbook share/doc/HTML/de/kcontrol/baloo/index.cache.bz2 share/doc/HTML/de/kcontrol/baloo/index.docbook share/doc/HTML/de/kcontrol/clock/index.cache.bz2 share/doc/HTML/de/kcontrol/clock/index.docbook share/doc/HTML/de/kcontrol/colors/index.cache.bz2 share/doc/HTML/de/kcontrol/colors/index.docbook share/doc/HTML/de/kcontrol/componentchooser/index.cache.bz2 share/doc/HTML/de/kcontrol/componentchooser/index.docbook share/doc/HTML/de/kcontrol/cursortheme/index.cache.bz2 share/doc/HTML/de/kcontrol/cursortheme/index.docbook share/doc/HTML/de/kcontrol/desktopthemedetails/index.cache.bz2 share/doc/HTML/de/kcontrol/desktopthemedetails/index.docbook share/doc/HTML/de/kcontrol/emoticons/index.cache.bz2 share/doc/HTML/de/kcontrol/emoticons/index.docbook share/doc/HTML/de/kcontrol/fontinst/index.cache.bz2 share/doc/HTML/de/kcontrol/fontinst/index.docbook share/doc/HTML/de/kcontrol/fonts/index.cache.bz2 share/doc/HTML/de/kcontrol/fonts/index.docbook share/doc/HTML/de/kcontrol/formats/index.cache.bz2 share/doc/HTML/de/kcontrol/formats/index.docbook share/doc/HTML/de/kcontrol/icons/index.cache.bz2 share/doc/HTML/de/kcontrol/icons/index.docbook share/doc/HTML/de/kcontrol/joystick/index.cache.bz2 share/doc/HTML/de/kcontrol/joystick/index.docbook share/doc/HTML/de/kcontrol/kcmaccess/index.cache.bz2 share/doc/HTML/de/kcontrol/kcmaccess/index.docbook share/doc/HTML/de/kcontrol/kcmlaunchfeedback/index.cache.bz2 share/doc/HTML/de/kcontrol/kcmlaunchfeedback/index.docbook share/doc/HTML/de/kcontrol/kcmnotify/index.cache.bz2 share/doc/HTML/de/kcontrol/kcmnotify/index.docbook share/doc/HTML/de/kcontrol/kcmsmserver/index.cache.bz2 share/doc/HTML/de/kcontrol/kcmsmserver/index.docbook share/doc/HTML/de/kcontrol/kcmstyle/index.cache.bz2 share/doc/HTML/de/kcontrol/kcmstyle/index.docbook share/doc/HTML/de/kcontrol/kded/index.cache.bz2 share/doc/HTML/de/kcontrol/kded/index.docbook share/doc/HTML/de/kcontrol/keyboard/index.cache.bz2 share/doc/HTML/de/kcontrol/keyboard/index.docbook share/doc/HTML/de/kcontrol/keys/index.cache.bz2 share/doc/HTML/de/kcontrol/keys/index.docbook share/doc/HTML/de/kcontrol/mouse/index.cache.bz2 share/doc/HTML/de/kcontrol/mouse/index.docbook share/doc/HTML/de/kcontrol/paths/index.cache.bz2 share/doc/HTML/de/kcontrol/paths/index.docbook share/doc/HTML/de/kcontrol/phonon/index.cache.bz2 share/doc/HTML/de/kcontrol/phonon/index.docbook share/doc/HTML/de/kcontrol/solid-actions/index.cache.bz2 share/doc/HTML/de/kcontrol/solid-actions/index.docbook share/doc/HTML/de/kcontrol/solid-device-automounter/index.cache.bz2 share/doc/HTML/de/kcontrol/solid-device-automounter/index.docbook share/doc/HTML/de/kcontrol/spellchecking/index.cache.bz2 share/doc/HTML/de/kcontrol/spellchecking/index.docbook share/doc/HTML/de/kcontrol/splashscreen/index.cache.bz2 share/doc/HTML/de/kcontrol/splashscreen/index.docbook -share/doc/HTML/de/kcontrol/translations/index.cache.bz2 -share/doc/HTML/de/kcontrol/translations/index.docbook share/doc/HTML/de/kcontrol/workspaceoptions/index.cache.bz2 share/doc/HTML/de/kcontrol/workspaceoptions/index.docbook share/doc/HTML/de/kfontview/index.cache.bz2 share/doc/HTML/de/kfontview/index.docbook share/doc/HTML/de/knetattach/index.cache.bz2 share/doc/HTML/de/knetattach/index.docbook share/doc/HTML/de/plasma-desktop/index.cache.bz2 share/doc/HTML/de/plasma-desktop/index.docbook share/doc/HTML/en/kcontrol/autostart/index.cache.bz2 share/doc/HTML/en/kcontrol/autostart/index.docbook share/doc/HTML/en/kcontrol/baloo/index.cache.bz2 share/doc/HTML/en/kcontrol/baloo/index.docbook share/doc/HTML/en/kcontrol/clock/index.cache.bz2 share/doc/HTML/en/kcontrol/clock/index.docbook share/doc/HTML/en/kcontrol/colors/index.cache.bz2 share/doc/HTML/en/kcontrol/colors/index.docbook share/doc/HTML/en/kcontrol/componentchooser/index.cache.bz2 share/doc/HTML/en/kcontrol/componentchooser/index.docbook share/doc/HTML/en/kcontrol/cursortheme/index.cache.bz2 share/doc/HTML/en/kcontrol/cursortheme/index.docbook share/doc/HTML/en/kcontrol/desktopthemedetails/index.cache.bz2 share/doc/HTML/en/kcontrol/desktopthemedetails/index.docbook share/doc/HTML/en/kcontrol/emoticons/emoticons.png share/doc/HTML/en/kcontrol/emoticons/index.cache.bz2 share/doc/HTML/en/kcontrol/emoticons/index.docbook share/doc/HTML/en/kcontrol/fontinst/index.cache.bz2 share/doc/HTML/en/kcontrol/fontinst/index.docbook share/doc/HTML/en/kcontrol/fonts/adjust-all.png share/doc/HTML/en/kcontrol/fonts/index.cache.bz2 share/doc/HTML/en/kcontrol/fonts/index.docbook share/doc/HTML/en/kcontrol/fonts/main.png share/doc/HTML/en/kcontrol/formats/index.cache.bz2 share/doc/HTML/en/kcontrol/formats/index.docbook share/doc/HTML/en/kcontrol/icons/edit-delete.png share/doc/HTML/en/kcontrol/icons/edit-undo.png share/doc/HTML/en/kcontrol/icons/get-new-theme.png share/doc/HTML/en/kcontrol/icons/index.cache.bz2 share/doc/HTML/en/kcontrol/icons/index.docbook share/doc/HTML/en/kcontrol/icons/main.png share/doc/HTML/en/kcontrol/icons/use-of-icons.png share/doc/HTML/en/kcontrol/joystick/index.cache.bz2 share/doc/HTML/en/kcontrol/joystick/index.docbook share/doc/HTML/en/kcontrol/joystick/joystick-calibration.png share/doc/HTML/en/kcontrol/joystick/joystick-main.png share/doc/HTML/en/kcontrol/kcmaccess/index.cache.bz2 share/doc/HTML/en/kcontrol/kcmaccess/index.docbook share/doc/HTML/en/kcontrol/kcmlaunchfeedback/index.cache.bz2 share/doc/HTML/en/kcontrol/kcmlaunchfeedback/index.docbook share/doc/HTML/en/kcontrol/kcmnotify/index.cache.bz2 share/doc/HTML/en/kcontrol/kcmnotify/index.docbook share/doc/HTML/en/kcontrol/kcmsmserver/index.cache.bz2 share/doc/HTML/en/kcontrol/kcmsmserver/index.docbook share/doc/HTML/en/kcontrol/kcmstyle/index.cache.bz2 share/doc/HTML/en/kcontrol/kcmstyle/index.docbook share/doc/HTML/en/kcontrol/kded/index.cache.bz2 share/doc/HTML/en/kcontrol/kded/index.docbook share/doc/HTML/en/kcontrol/keyboard/index.cache.bz2 share/doc/HTML/en/kcontrol/keyboard/index.docbook share/doc/HTML/en/kcontrol/keys/index.cache.bz2 share/doc/HTML/en/kcontrol/keys/index.docbook share/doc/HTML/en/kcontrol/keys/list-add.png share/doc/HTML/en/kcontrol/keys/remove.png share/doc/HTML/en/kcontrol/mouse/index.cache.bz2 share/doc/HTML/en/kcontrol/mouse/index.docbook share/doc/HTML/en/kcontrol/paths/index.cache.bz2 share/doc/HTML/en/kcontrol/paths/index.docbook share/doc/HTML/en/kcontrol/paths/paths.png share/doc/HTML/en/kcontrol/phonon/index.cache.bz2 share/doc/HTML/en/kcontrol/phonon/index.docbook share/doc/HTML/en/kcontrol/solid-actions/add-action.png share/doc/HTML/en/kcontrol/solid-actions/edit-action.png share/doc/HTML/en/kcontrol/solid-actions/index.cache.bz2 share/doc/HTML/en/kcontrol/solid-actions/index.docbook share/doc/HTML/en/kcontrol/solid-actions/main.png share/doc/HTML/en/kcontrol/solid-device-automounter/index.cache.bz2 share/doc/HTML/en/kcontrol/solid-device-automounter/index.docbook share/doc/HTML/en/kcontrol/spellchecking/index.cache.bz2 share/doc/HTML/en/kcontrol/spellchecking/index.docbook share/doc/HTML/en/kcontrol/splashscreen/get-new-theme.png share/doc/HTML/en/kcontrol/splashscreen/index.cache.bz2 share/doc/HTML/en/kcontrol/splashscreen/index.docbook share/doc/HTML/en/kcontrol/splashscreen/splash-main.png -share/doc/HTML/en/kcontrol/translations/index.cache.bz2 -share/doc/HTML/en/kcontrol/translations/index.docbook share/doc/HTML/en/kcontrol/workspaceoptions/index.cache.bz2 share/doc/HTML/en/kcontrol/workspaceoptions/index.docbook share/doc/HTML/en/kfontview/index.cache.bz2 share/doc/HTML/en/kfontview/index.docbook share/doc/HTML/en/kfontview/kfontview.png share/doc/HTML/en/knetattach/index.cache.bz2 share/doc/HTML/en/knetattach/index.docbook share/doc/HTML/en/knetattach/screenshot.png share/doc/HTML/en/knetattach/screenshot1.png share/doc/HTML/en/knetattach/screenshot2.png share/doc/HTML/en/knetattach/screenshot3.png share/doc/HTML/en/knetattach/screenshot4.png share/doc/HTML/en/plasma-desktop/add-widgets.png share/doc/HTML/en/plasma-desktop/application-launcher-settings.png share/doc/HTML/en/plasma-desktop/application-launcher.png share/doc/HTML/en/plasma-desktop/application-menu.png share/doc/HTML/en/plasma-desktop/desktop-settings.png share/doc/HTML/en/plasma-desktop/device_notifier_widget.png share/doc/HTML/en/plasma-desktop/device_notifier_widget_actions.png share/doc/HTML/en/plasma-desktop/folder-view.png share/doc/HTML/en/plasma-desktop/index.cache.bz2 share/doc/HTML/en/plasma-desktop/index.docbook share/doc/HTML/en/plasma-desktop/krunner-configure.png share/doc/HTML/en/plasma-desktop/krunner-desktop-actions.png share/doc/HTML/en/plasma-desktop/krunner.png share/doc/HTML/en/plasma-desktop/panel-settings.png share/doc/HTML/en/plasma-desktop/plasma-desktop-annotated.png share/doc/HTML/en/plasma-desktop/remove.png share/doc/HTML/en/plasma-desktop/system-tray-settings.png share/doc/HTML/en/plasma-desktop/system-tray-up-arrow.png share/doc/HTML/en/plasma-desktop/taskbar-settings.png share/doc/HTML/es/kcontrol/autostart/index.cache.bz2 share/doc/HTML/es/kcontrol/autostart/index.docbook +share/doc/HTML/es/kcontrol/baloo/index.cache.bz2 +share/doc/HTML/es/kcontrol/baloo/index.docbook share/doc/HTML/es/kcontrol/clock/index.cache.bz2 share/doc/HTML/es/kcontrol/clock/index.docbook share/doc/HTML/es/kcontrol/componentchooser/index.cache.bz2 share/doc/HTML/es/kcontrol/componentchooser/index.docbook share/doc/HTML/es/kcontrol/cursortheme/index.cache.bz2 share/doc/HTML/es/kcontrol/cursortheme/index.docbook share/doc/HTML/es/kcontrol/desktopthemedetails/index.cache.bz2 share/doc/HTML/es/kcontrol/desktopthemedetails/index.docbook share/doc/HTML/es/kcontrol/emoticons/index.cache.bz2 share/doc/HTML/es/kcontrol/emoticons/index.docbook share/doc/HTML/es/kcontrol/fontinst/index.cache.bz2 share/doc/HTML/es/kcontrol/fontinst/index.docbook share/doc/HTML/es/kcontrol/fonts/index.cache.bz2 share/doc/HTML/es/kcontrol/fonts/index.docbook share/doc/HTML/es/kcontrol/joystick/index.cache.bz2 share/doc/HTML/es/kcontrol/joystick/index.docbook share/doc/HTML/es/kcontrol/kcmlaunchfeedback/index.cache.bz2 share/doc/HTML/es/kcontrol/kcmlaunchfeedback/index.docbook share/doc/HTML/es/kcontrol/kcmnotify/index.cache.bz2 share/doc/HTML/es/kcontrol/kcmnotify/index.docbook share/doc/HTML/es/kcontrol/kcmsmserver/index.cache.bz2 share/doc/HTML/es/kcontrol/kcmsmserver/index.docbook +share/doc/HTML/es/kcontrol/kcmstyle/index.cache.bz2 +share/doc/HTML/es/kcontrol/kcmstyle/index.docbook share/doc/HTML/es/kcontrol/kded/index.cache.bz2 share/doc/HTML/es/kcontrol/kded/index.docbook share/doc/HTML/es/kcontrol/mouse/index.cache.bz2 share/doc/HTML/es/kcontrol/mouse/index.docbook share/doc/HTML/es/kcontrol/paths/index.cache.bz2 share/doc/HTML/es/kcontrol/paths/index.docbook share/doc/HTML/es/kcontrol/phonon/index.cache.bz2 share/doc/HTML/es/kcontrol/phonon/index.docbook share/doc/HTML/es/kcontrol/solid-device-automounter/index.cache.bz2 share/doc/HTML/es/kcontrol/solid-device-automounter/index.docbook share/doc/HTML/es/kfontview/index.cache.bz2 share/doc/HTML/es/kfontview/index.docbook share/doc/HTML/es/knetattach/index.cache.bz2 share/doc/HTML/es/knetattach/index.docbook share/doc/HTML/et/kcontrol/clock/index.cache.bz2 share/doc/HTML/et/kcontrol/clock/index.docbook share/doc/HTML/et/kcontrol/phonon/index.cache.bz2 share/doc/HTML/et/kcontrol/phonon/index.docbook share/doc/HTML/et/kcontrol/solid-actions/index.cache.bz2 share/doc/HTML/et/kcontrol/solid-actions/index.docbook share/doc/HTML/et/kcontrol/solid-device-automounter/index.cache.bz2 share/doc/HTML/et/kcontrol/solid-device-automounter/index.docbook +share/doc/HTML/id/kcontrol/autostart/index.cache.bz2 +share/doc/HTML/id/kcontrol/autostart/index.docbook share/doc/HTML/it/kcontrol/autostart/index.cache.bz2 share/doc/HTML/it/kcontrol/autostart/index.docbook share/doc/HTML/it/kcontrol/baloo/index.cache.bz2 share/doc/HTML/it/kcontrol/baloo/index.docbook share/doc/HTML/it/kcontrol/clock/index.cache.bz2 share/doc/HTML/it/kcontrol/clock/index.docbook share/doc/HTML/it/kcontrol/colors/index.cache.bz2 share/doc/HTML/it/kcontrol/colors/index.docbook share/doc/HTML/it/kcontrol/componentchooser/index.cache.bz2 share/doc/HTML/it/kcontrol/componentchooser/index.docbook share/doc/HTML/it/kcontrol/cursortheme/index.cache.bz2 share/doc/HTML/it/kcontrol/cursortheme/index.docbook share/doc/HTML/it/kcontrol/desktopthemedetails/index.cache.bz2 share/doc/HTML/it/kcontrol/desktopthemedetails/index.docbook share/doc/HTML/it/kcontrol/emoticons/index.cache.bz2 share/doc/HTML/it/kcontrol/emoticons/index.docbook share/doc/HTML/it/kcontrol/fontinst/index.cache.bz2 share/doc/HTML/it/kcontrol/fontinst/index.docbook share/doc/HTML/it/kcontrol/fonts/index.cache.bz2 share/doc/HTML/it/kcontrol/fonts/index.docbook share/doc/HTML/it/kcontrol/formats/index.cache.bz2 share/doc/HTML/it/kcontrol/formats/index.docbook share/doc/HTML/it/kcontrol/icons/index.cache.bz2 share/doc/HTML/it/kcontrol/icons/index.docbook share/doc/HTML/it/kcontrol/joystick/index.cache.bz2 share/doc/HTML/it/kcontrol/joystick/index.docbook share/doc/HTML/it/kcontrol/kcmaccess/index.cache.bz2 share/doc/HTML/it/kcontrol/kcmaccess/index.docbook share/doc/HTML/it/kcontrol/kcmlaunchfeedback/index.cache.bz2 share/doc/HTML/it/kcontrol/kcmlaunchfeedback/index.docbook share/doc/HTML/it/kcontrol/kcmnotify/index.cache.bz2 share/doc/HTML/it/kcontrol/kcmnotify/index.docbook share/doc/HTML/it/kcontrol/kcmsmserver/index.cache.bz2 share/doc/HTML/it/kcontrol/kcmsmserver/index.docbook share/doc/HTML/it/kcontrol/kcmstyle/index.cache.bz2 share/doc/HTML/it/kcontrol/kcmstyle/index.docbook share/doc/HTML/it/kcontrol/kded/index.cache.bz2 share/doc/HTML/it/kcontrol/kded/index.docbook share/doc/HTML/it/kcontrol/keyboard/index.cache.bz2 share/doc/HTML/it/kcontrol/keyboard/index.docbook share/doc/HTML/it/kcontrol/keys/index.cache.bz2 share/doc/HTML/it/kcontrol/keys/index.docbook share/doc/HTML/it/kcontrol/mouse/index.cache.bz2 share/doc/HTML/it/kcontrol/mouse/index.docbook share/doc/HTML/it/kcontrol/paths/index.cache.bz2 share/doc/HTML/it/kcontrol/paths/index.docbook share/doc/HTML/it/kcontrol/phonon/index.cache.bz2 share/doc/HTML/it/kcontrol/phonon/index.docbook share/doc/HTML/it/kcontrol/solid-actions/index.cache.bz2 share/doc/HTML/it/kcontrol/solid-actions/index.docbook share/doc/HTML/it/kcontrol/solid-device-automounter/index.cache.bz2 share/doc/HTML/it/kcontrol/solid-device-automounter/index.docbook share/doc/HTML/it/kcontrol/spellchecking/index.cache.bz2 share/doc/HTML/it/kcontrol/spellchecking/index.docbook share/doc/HTML/it/kcontrol/splashscreen/index.cache.bz2 share/doc/HTML/it/kcontrol/splashscreen/index.docbook -share/doc/HTML/it/kcontrol/translations/index.cache.bz2 -share/doc/HTML/it/kcontrol/translations/index.docbook share/doc/HTML/it/kcontrol/workspaceoptions/index.cache.bz2 share/doc/HTML/it/kcontrol/workspaceoptions/index.docbook share/doc/HTML/it/kfontview/index.cache.bz2 share/doc/HTML/it/kfontview/index.docbook share/doc/HTML/it/knetattach/index.cache.bz2 share/doc/HTML/it/knetattach/index.docbook share/doc/HTML/it/plasma-desktop/index.cache.bz2 share/doc/HTML/it/plasma-desktop/index.docbook share/doc/HTML/nl/kcontrol/autostart/index.cache.bz2 share/doc/HTML/nl/kcontrol/autostart/index.docbook share/doc/HTML/nl/kcontrol/baloo/index.cache.bz2 share/doc/HTML/nl/kcontrol/baloo/index.docbook share/doc/HTML/nl/kcontrol/clock/index.cache.bz2 share/doc/HTML/nl/kcontrol/clock/index.docbook share/doc/HTML/nl/kcontrol/colors/index.cache.bz2 share/doc/HTML/nl/kcontrol/colors/index.docbook share/doc/HTML/nl/kcontrol/componentchooser/index.cache.bz2 share/doc/HTML/nl/kcontrol/componentchooser/index.docbook share/doc/HTML/nl/kcontrol/cursortheme/index.cache.bz2 share/doc/HTML/nl/kcontrol/cursortheme/index.docbook share/doc/HTML/nl/kcontrol/desktopthemedetails/index.cache.bz2 share/doc/HTML/nl/kcontrol/desktopthemedetails/index.docbook share/doc/HTML/nl/kcontrol/emoticons/index.cache.bz2 share/doc/HTML/nl/kcontrol/emoticons/index.docbook share/doc/HTML/nl/kcontrol/fontinst/index.cache.bz2 share/doc/HTML/nl/kcontrol/fontinst/index.docbook share/doc/HTML/nl/kcontrol/fonts/index.cache.bz2 share/doc/HTML/nl/kcontrol/fonts/index.docbook share/doc/HTML/nl/kcontrol/formats/index.cache.bz2 share/doc/HTML/nl/kcontrol/formats/index.docbook share/doc/HTML/nl/kcontrol/icons/index.cache.bz2 share/doc/HTML/nl/kcontrol/icons/index.docbook share/doc/HTML/nl/kcontrol/joystick/index.cache.bz2 share/doc/HTML/nl/kcontrol/joystick/index.docbook share/doc/HTML/nl/kcontrol/kcmaccess/index.cache.bz2 share/doc/HTML/nl/kcontrol/kcmaccess/index.docbook share/doc/HTML/nl/kcontrol/kcmlaunchfeedback/index.cache.bz2 share/doc/HTML/nl/kcontrol/kcmlaunchfeedback/index.docbook share/doc/HTML/nl/kcontrol/kcmnotify/index.cache.bz2 share/doc/HTML/nl/kcontrol/kcmnotify/index.docbook share/doc/HTML/nl/kcontrol/kcmsmserver/index.cache.bz2 share/doc/HTML/nl/kcontrol/kcmsmserver/index.docbook share/doc/HTML/nl/kcontrol/kcmstyle/index.cache.bz2 share/doc/HTML/nl/kcontrol/kcmstyle/index.docbook share/doc/HTML/nl/kcontrol/kded/index.cache.bz2 share/doc/HTML/nl/kcontrol/kded/index.docbook share/doc/HTML/nl/kcontrol/keyboard/index.cache.bz2 share/doc/HTML/nl/kcontrol/keyboard/index.docbook share/doc/HTML/nl/kcontrol/keys/index.cache.bz2 share/doc/HTML/nl/kcontrol/keys/index.docbook share/doc/HTML/nl/kcontrol/mouse/index.cache.bz2 share/doc/HTML/nl/kcontrol/mouse/index.docbook share/doc/HTML/nl/kcontrol/paths/index.cache.bz2 share/doc/HTML/nl/kcontrol/paths/index.docbook share/doc/HTML/nl/kcontrol/phonon/index.cache.bz2 share/doc/HTML/nl/kcontrol/phonon/index.docbook share/doc/HTML/nl/kcontrol/solid-actions/index.cache.bz2 share/doc/HTML/nl/kcontrol/solid-actions/index.docbook share/doc/HTML/nl/kcontrol/solid-device-automounter/index.cache.bz2 share/doc/HTML/nl/kcontrol/solid-device-automounter/index.docbook share/doc/HTML/nl/kcontrol/spellchecking/index.cache.bz2 share/doc/HTML/nl/kcontrol/spellchecking/index.docbook share/doc/HTML/nl/kcontrol/splashscreen/index.cache.bz2 share/doc/HTML/nl/kcontrol/splashscreen/index.docbook -share/doc/HTML/nl/kcontrol/translations/index.cache.bz2 -share/doc/HTML/nl/kcontrol/translations/index.docbook share/doc/HTML/nl/kcontrol/workspaceoptions/index.cache.bz2 share/doc/HTML/nl/kcontrol/workspaceoptions/index.docbook share/doc/HTML/nl/kfontview/index.cache.bz2 share/doc/HTML/nl/kfontview/index.docbook share/doc/HTML/nl/knetattach/index.cache.bz2 share/doc/HTML/nl/knetattach/index.docbook share/doc/HTML/nl/plasma-desktop/index.cache.bz2 share/doc/HTML/nl/plasma-desktop/index.docbook share/doc/HTML/pt/kcontrol/autostart/index.cache.bz2 share/doc/HTML/pt/kcontrol/autostart/index.docbook share/doc/HTML/pt/kcontrol/baloo/index.cache.bz2 share/doc/HTML/pt/kcontrol/baloo/index.docbook share/doc/HTML/pt/kcontrol/clock/index.cache.bz2 share/doc/HTML/pt/kcontrol/clock/index.docbook share/doc/HTML/pt/kcontrol/colors/index.cache.bz2 share/doc/HTML/pt/kcontrol/colors/index.docbook share/doc/HTML/pt/kcontrol/componentchooser/index.cache.bz2 share/doc/HTML/pt/kcontrol/componentchooser/index.docbook share/doc/HTML/pt/kcontrol/cursortheme/index.cache.bz2 share/doc/HTML/pt/kcontrol/cursortheme/index.docbook share/doc/HTML/pt/kcontrol/desktopthemedetails/index.cache.bz2 share/doc/HTML/pt/kcontrol/desktopthemedetails/index.docbook share/doc/HTML/pt/kcontrol/emoticons/index.cache.bz2 share/doc/HTML/pt/kcontrol/emoticons/index.docbook share/doc/HTML/pt/kcontrol/fontinst/index.cache.bz2 share/doc/HTML/pt/kcontrol/fontinst/index.docbook share/doc/HTML/pt/kcontrol/fonts/index.cache.bz2 share/doc/HTML/pt/kcontrol/fonts/index.docbook share/doc/HTML/pt/kcontrol/formats/index.cache.bz2 share/doc/HTML/pt/kcontrol/formats/index.docbook share/doc/HTML/pt/kcontrol/joystick/index.cache.bz2 share/doc/HTML/pt/kcontrol/joystick/index.docbook share/doc/HTML/pt/kcontrol/kcmaccess/index.cache.bz2 share/doc/HTML/pt/kcontrol/kcmaccess/index.docbook share/doc/HTML/pt/kcontrol/kcmlaunchfeedback/index.cache.bz2 share/doc/HTML/pt/kcontrol/kcmlaunchfeedback/index.docbook share/doc/HTML/pt/kcontrol/kcmnotify/index.cache.bz2 share/doc/HTML/pt/kcontrol/kcmnotify/index.docbook share/doc/HTML/pt/kcontrol/kcmsmserver/index.cache.bz2 share/doc/HTML/pt/kcontrol/kcmsmserver/index.docbook share/doc/HTML/pt/kcontrol/kcmstyle/index.cache.bz2 share/doc/HTML/pt/kcontrol/kcmstyle/index.docbook share/doc/HTML/pt/kcontrol/kded/index.cache.bz2 share/doc/HTML/pt/kcontrol/kded/index.docbook share/doc/HTML/pt/kcontrol/keyboard/index.cache.bz2 share/doc/HTML/pt/kcontrol/keyboard/index.docbook share/doc/HTML/pt/kcontrol/keys/index.cache.bz2 share/doc/HTML/pt/kcontrol/keys/index.docbook share/doc/HTML/pt/kcontrol/mouse/index.cache.bz2 share/doc/HTML/pt/kcontrol/mouse/index.docbook share/doc/HTML/pt/kcontrol/paths/index.cache.bz2 share/doc/HTML/pt/kcontrol/paths/index.docbook share/doc/HTML/pt/kcontrol/phonon/index.cache.bz2 share/doc/HTML/pt/kcontrol/phonon/index.docbook share/doc/HTML/pt/kcontrol/solid-actions/index.cache.bz2 share/doc/HTML/pt/kcontrol/solid-actions/index.docbook share/doc/HTML/pt/kcontrol/solid-device-automounter/index.cache.bz2 share/doc/HTML/pt/kcontrol/solid-device-automounter/index.docbook share/doc/HTML/pt/kcontrol/spellchecking/index.cache.bz2 share/doc/HTML/pt/kcontrol/spellchecking/index.docbook share/doc/HTML/pt/kcontrol/splashscreen/index.cache.bz2 share/doc/HTML/pt/kcontrol/splashscreen/index.docbook -share/doc/HTML/pt/kcontrol/translations/index.cache.bz2 -share/doc/HTML/pt/kcontrol/translations/index.docbook share/doc/HTML/pt/kfontview/index.cache.bz2 share/doc/HTML/pt/kfontview/index.docbook share/doc/HTML/pt/knetattach/index.cache.bz2 share/doc/HTML/pt/knetattach/index.docbook share/doc/HTML/pt/plasma-desktop/index.cache.bz2 share/doc/HTML/pt/plasma-desktop/index.docbook share/doc/HTML/pt_BR/kcontrol/autostart/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/autostart/index.docbook share/doc/HTML/pt_BR/kcontrol/baloo/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/baloo/index.docbook share/doc/HTML/pt_BR/kcontrol/clock/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/clock/index.docbook share/doc/HTML/pt_BR/kcontrol/colors/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/colors/index.docbook share/doc/HTML/pt_BR/kcontrol/componentchooser/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/componentchooser/index.docbook share/doc/HTML/pt_BR/kcontrol/cursortheme/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/cursortheme/index.docbook share/doc/HTML/pt_BR/kcontrol/desktopthemedetails/customizing.png share/doc/HTML/pt_BR/kcontrol/desktopthemedetails/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/desktopthemedetails/index.docbook share/doc/HTML/pt_BR/kcontrol/emoticons/emoticons.png share/doc/HTML/pt_BR/kcontrol/emoticons/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/emoticons/index.docbook share/doc/HTML/pt_BR/kcontrol/fontinst/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/fontinst/index.docbook share/doc/HTML/pt_BR/kcontrol/fonts/adjust-all.png share/doc/HTML/pt_BR/kcontrol/fonts/anti-aliasing.png share/doc/HTML/pt_BR/kcontrol/fonts/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/fonts/index.docbook share/doc/HTML/pt_BR/kcontrol/fonts/main.png share/doc/HTML/pt_BR/kcontrol/formats/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/formats/index.docbook share/doc/HTML/pt_BR/kcontrol/icons/effects.png share/doc/HTML/pt_BR/kcontrol/icons/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/icons/index.docbook share/doc/HTML/pt_BR/kcontrol/icons/install-theme.png share/doc/HTML/pt_BR/kcontrol/icons/main.png share/doc/HTML/pt_BR/kcontrol/icons/use-of-icons.png share/doc/HTML/pt_BR/kcontrol/joystick/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/joystick/index.docbook share/doc/HTML/pt_BR/kcontrol/kcmaccess/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/kcmaccess/index.docbook share/doc/HTML/pt_BR/kcontrol/kcmlaunchfeedback/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/kcmlaunchfeedback/index.docbook share/doc/HTML/pt_BR/kcontrol/kcmnotify/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/kcmnotify/index.docbook share/doc/HTML/pt_BR/kcontrol/kcmsmserver/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/kcmsmserver/index.docbook share/doc/HTML/pt_BR/kcontrol/kcmstyle/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/kcmstyle/index.docbook share/doc/HTML/pt_BR/kcontrol/kded/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/kded/index.docbook share/doc/HTML/pt_BR/kcontrol/keyboard/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/keyboard/index.docbook share/doc/HTML/pt_BR/kcontrol/keys/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/keys/index.docbook share/doc/HTML/pt_BR/kcontrol/mouse/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/mouse/index.docbook share/doc/HTML/pt_BR/kcontrol/paths/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/paths/index.docbook share/doc/HTML/pt_BR/kcontrol/phonon/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/phonon/index.docbook share/doc/HTML/pt_BR/kcontrol/solid-actions/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/solid-actions/index.docbook share/doc/HTML/pt_BR/kcontrol/solid-device-automounter/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/solid-device-automounter/index.docbook share/doc/HTML/pt_BR/kcontrol/spellchecking/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/spellchecking/index.docbook share/doc/HTML/pt_BR/kcontrol/splashscreen/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/splashscreen/index.docbook share/doc/HTML/pt_BR/kcontrol/splashscreen/splash-main.png -share/doc/HTML/pt_BR/kcontrol/translations/index.cache.bz2 -share/doc/HTML/pt_BR/kcontrol/translations/index.docbook share/doc/HTML/pt_BR/kfontview/index.cache.bz2 share/doc/HTML/pt_BR/kfontview/index.docbook share/doc/HTML/pt_BR/knetattach/index.cache.bz2 share/doc/HTML/pt_BR/knetattach/index.docbook share/doc/HTML/pt_BR/knetattach/screenshot.png share/doc/HTML/pt_BR/knetattach/screenshot1.png share/doc/HTML/pt_BR/knetattach/screenshot2.png share/doc/HTML/pt_BR/knetattach/screenshot3.png share/doc/HTML/pt_BR/knetattach/screenshot4.png share/doc/HTML/pt_BR/plasma-desktop/add-widgets.png share/doc/HTML/pt_BR/plasma-desktop/desktop-settings.png share/doc/HTML/pt_BR/plasma-desktop/index.cache.bz2 share/doc/HTML/pt_BR/plasma-desktop/index.docbook share/doc/HTML/pt_BR/plasma-desktop/krunner-configure.png share/doc/HTML/pt_BR/plasma-desktop/krunner.png share/doc/HTML/pt_BR/plasma-desktop/panel-settings.png share/doc/HTML/pt_BR/plasma-desktop/system-tray-settings.png share/doc/HTML/pt_BR/plasma-desktop/system-tray-up-arrow.png share/doc/HTML/pt_BR/plasma-desktop/taskbar-settings.png share/doc/HTML/ru/kcontrol/baloo/index.cache.bz2 share/doc/HTML/ru/kcontrol/baloo/index.docbook share/doc/HTML/ru/kcontrol/clock/index.cache.bz2 share/doc/HTML/ru/kcontrol/clock/index.docbook share/doc/HTML/ru/kcontrol/colors/index.cache.bz2 share/doc/HTML/ru/kcontrol/colors/index.docbook share/doc/HTML/ru/kcontrol/componentchooser/index.cache.bz2 share/doc/HTML/ru/kcontrol/componentchooser/index.docbook share/doc/HTML/ru/kcontrol/cursortheme/index.cache.bz2 share/doc/HTML/ru/kcontrol/cursortheme/index.docbook share/doc/HTML/ru/kcontrol/desktopthemedetails/index.cache.bz2 share/doc/HTML/ru/kcontrol/desktopthemedetails/index.docbook share/doc/HTML/ru/kcontrol/emoticons/emoticons.png share/doc/HTML/ru/kcontrol/emoticons/index.cache.bz2 share/doc/HTML/ru/kcontrol/emoticons/index.docbook share/doc/HTML/ru/kcontrol/fontinst/index.cache.bz2 share/doc/HTML/ru/kcontrol/fontinst/index.docbook share/doc/HTML/ru/kcontrol/fonts/adjust-all.png share/doc/HTML/ru/kcontrol/fonts/anti-aliasing.png share/doc/HTML/ru/kcontrol/fonts/index.cache.bz2 share/doc/HTML/ru/kcontrol/fonts/index.docbook share/doc/HTML/ru/kcontrol/fonts/main.png share/doc/HTML/ru/kcontrol/formats/index.cache.bz2 share/doc/HTML/ru/kcontrol/formats/index.docbook share/doc/HTML/ru/kcontrol/icons/delete-theme.png share/doc/HTML/ru/kcontrol/icons/effects.png share/doc/HTML/ru/kcontrol/icons/get-new-theme.png share/doc/HTML/ru/kcontrol/icons/index.cache.bz2 share/doc/HTML/ru/kcontrol/icons/index.docbook share/doc/HTML/ru/kcontrol/icons/install-theme.png share/doc/HTML/ru/kcontrol/icons/main.png share/doc/HTML/ru/kcontrol/icons/size.png share/doc/HTML/ru/kcontrol/icons/use-of-icons.png share/doc/HTML/ru/kcontrol/joystick/index.cache.bz2 share/doc/HTML/ru/kcontrol/joystick/index.docbook share/doc/HTML/ru/kcontrol/joystick/joystick-calibration.png share/doc/HTML/ru/kcontrol/joystick/joystick-main.png share/doc/HTML/ru/kcontrol/kcmaccess/index.cache.bz2 share/doc/HTML/ru/kcontrol/kcmaccess/index.docbook share/doc/HTML/ru/kcontrol/kcmlaunchfeedback/index.cache.bz2 share/doc/HTML/ru/kcontrol/kcmlaunchfeedback/index.docbook share/doc/HTML/ru/kcontrol/kcmnotify/index.cache.bz2 share/doc/HTML/ru/kcontrol/kcmnotify/index.docbook share/doc/HTML/ru/kcontrol/kcmsmserver/index.cache.bz2 share/doc/HTML/ru/kcontrol/kcmsmserver/index.docbook share/doc/HTML/ru/kcontrol/kcmstyle/index.cache.bz2 share/doc/HTML/ru/kcontrol/kcmstyle/index.docbook share/doc/HTML/ru/kcontrol/kded/index.cache.bz2 share/doc/HTML/ru/kcontrol/kded/index.docbook share/doc/HTML/ru/kcontrol/keyboard/index.cache.bz2 share/doc/HTML/ru/kcontrol/keyboard/index.docbook share/doc/HTML/ru/kcontrol/keys/index.cache.bz2 share/doc/HTML/ru/kcontrol/keys/index.docbook share/doc/HTML/ru/kcontrol/mouse/index.cache.bz2 share/doc/HTML/ru/kcontrol/mouse/index.docbook share/doc/HTML/ru/kcontrol/paths/index.cache.bz2 share/doc/HTML/ru/kcontrol/paths/index.docbook share/doc/HTML/ru/kcontrol/paths/paths.png share/doc/HTML/ru/kcontrol/phonon/index.cache.bz2 share/doc/HTML/ru/kcontrol/phonon/index.docbook share/doc/HTML/ru/kcontrol/solid-actions/add-action.png share/doc/HTML/ru/kcontrol/solid-actions/edit-action.png share/doc/HTML/ru/kcontrol/solid-actions/index.cache.bz2 share/doc/HTML/ru/kcontrol/solid-actions/index.docbook share/doc/HTML/ru/kcontrol/solid-actions/main.png share/doc/HTML/ru/kcontrol/solid-device-automounter/index.cache.bz2 share/doc/HTML/ru/kcontrol/solid-device-automounter/index.docbook share/doc/HTML/ru/kcontrol/spellchecking/index.cache.bz2 share/doc/HTML/ru/kcontrol/spellchecking/index.docbook share/doc/HTML/ru/kcontrol/splashscreen/get-new-theme.png share/doc/HTML/ru/kcontrol/splashscreen/index.cache.bz2 share/doc/HTML/ru/kcontrol/splashscreen/index.docbook share/doc/HTML/ru/kcontrol/splashscreen/splash-main.png -share/doc/HTML/ru/kcontrol/translations/index.cache.bz2 -share/doc/HTML/ru/kcontrol/translations/index.docbook share/doc/HTML/ru/knetattach/index.cache.bz2 share/doc/HTML/ru/knetattach/index.docbook share/doc/HTML/ru/plasma-desktop/index.cache.bz2 share/doc/HTML/ru/plasma-desktop/index.docbook share/doc/HTML/sr/kcontrol/autostart/index.cache.bz2 share/doc/HTML/sr/kcontrol/autostart/index.docbook share/doc/HTML/sr/kcontrol/clock/index.cache.bz2 share/doc/HTML/sr/kcontrol/clock/index.docbook share/doc/HTML/sr/kcontrol/emoticons/index.cache.bz2 share/doc/HTML/sr/kcontrol/emoticons/index.docbook share/doc/HTML/sr/kcontrol/icons/index.cache.bz2 share/doc/HTML/sr/kcontrol/icons/index.docbook share/doc/HTML/sr/kcontrol/kcmlaunchfeedback/index.cache.bz2 share/doc/HTML/sr/kcontrol/kcmlaunchfeedback/index.docbook share/doc/HTML/sr/kcontrol/kcmnotify/index.cache.bz2 share/doc/HTML/sr/kcontrol/kcmnotify/index.docbook share/doc/HTML/sr/kcontrol/paths/index.cache.bz2 share/doc/HTML/sr/kcontrol/paths/index.docbook share/doc/HTML/sr/kcontrol/spellchecking/index.cache.bz2 share/doc/HTML/sr/kcontrol/spellchecking/index.docbook share/doc/HTML/sr/knetattach/index.cache.bz2 share/doc/HTML/sr/knetattach/index.docbook share/doc/HTML/sr@latin/kcontrol/autostart/index.cache.bz2 share/doc/HTML/sr@latin/kcontrol/autostart/index.docbook share/doc/HTML/sr@latin/kcontrol/clock/index.cache.bz2 share/doc/HTML/sr@latin/kcontrol/clock/index.docbook share/doc/HTML/sr@latin/kcontrol/emoticons/index.cache.bz2 share/doc/HTML/sr@latin/kcontrol/emoticons/index.docbook share/doc/HTML/sr@latin/kcontrol/icons/index.cache.bz2 share/doc/HTML/sr@latin/kcontrol/icons/index.docbook share/doc/HTML/sr@latin/kcontrol/kcmlaunchfeedback/index.cache.bz2 share/doc/HTML/sr@latin/kcontrol/kcmlaunchfeedback/index.docbook share/doc/HTML/sr@latin/kcontrol/kcmnotify/index.cache.bz2 share/doc/HTML/sr@latin/kcontrol/kcmnotify/index.docbook share/doc/HTML/sr@latin/kcontrol/paths/index.cache.bz2 share/doc/HTML/sr@latin/kcontrol/paths/index.docbook share/doc/HTML/sr@latin/kcontrol/spellchecking/index.cache.bz2 share/doc/HTML/sr@latin/kcontrol/spellchecking/index.docbook share/doc/HTML/sr@latin/knetattach/index.cache.bz2 share/doc/HTML/sr@latin/knetattach/index.docbook share/doc/HTML/sv/kcontrol/autostart/index.cache.bz2 share/doc/HTML/sv/kcontrol/autostart/index.docbook share/doc/HTML/sv/kcontrol/baloo/index.cache.bz2 share/doc/HTML/sv/kcontrol/baloo/index.docbook share/doc/HTML/sv/kcontrol/clock/index.cache.bz2 share/doc/HTML/sv/kcontrol/clock/index.docbook share/doc/HTML/sv/kcontrol/colors/index.cache.bz2 share/doc/HTML/sv/kcontrol/colors/index.docbook share/doc/HTML/sv/kcontrol/componentchooser/index.cache.bz2 share/doc/HTML/sv/kcontrol/componentchooser/index.docbook share/doc/HTML/sv/kcontrol/cursortheme/index.cache.bz2 share/doc/HTML/sv/kcontrol/cursortheme/index.docbook share/doc/HTML/sv/kcontrol/desktopthemedetails/index.cache.bz2 share/doc/HTML/sv/kcontrol/desktopthemedetails/index.docbook share/doc/HTML/sv/kcontrol/emoticons/index.cache.bz2 share/doc/HTML/sv/kcontrol/emoticons/index.docbook share/doc/HTML/sv/kcontrol/fontinst/index.cache.bz2 share/doc/HTML/sv/kcontrol/fontinst/index.docbook share/doc/HTML/sv/kcontrol/fonts/index.cache.bz2 share/doc/HTML/sv/kcontrol/fonts/index.docbook share/doc/HTML/sv/kcontrol/formats/index.cache.bz2 share/doc/HTML/sv/kcontrol/formats/index.docbook share/doc/HTML/sv/kcontrol/icons/index.cache.bz2 share/doc/HTML/sv/kcontrol/icons/index.docbook share/doc/HTML/sv/kcontrol/joystick/index.cache.bz2 share/doc/HTML/sv/kcontrol/joystick/index.docbook share/doc/HTML/sv/kcontrol/kcmaccess/index.cache.bz2 share/doc/HTML/sv/kcontrol/kcmaccess/index.docbook share/doc/HTML/sv/kcontrol/kcmlaunchfeedback/index.cache.bz2 share/doc/HTML/sv/kcontrol/kcmlaunchfeedback/index.docbook share/doc/HTML/sv/kcontrol/kcmnotify/index.cache.bz2 share/doc/HTML/sv/kcontrol/kcmnotify/index.docbook share/doc/HTML/sv/kcontrol/kcmsmserver/index.cache.bz2 share/doc/HTML/sv/kcontrol/kcmsmserver/index.docbook share/doc/HTML/sv/kcontrol/kcmstyle/index.cache.bz2 share/doc/HTML/sv/kcontrol/kcmstyle/index.docbook share/doc/HTML/sv/kcontrol/kded/index.cache.bz2 share/doc/HTML/sv/kcontrol/kded/index.docbook share/doc/HTML/sv/kcontrol/keyboard/index.cache.bz2 share/doc/HTML/sv/kcontrol/keyboard/index.docbook share/doc/HTML/sv/kcontrol/keys/index.cache.bz2 share/doc/HTML/sv/kcontrol/keys/index.docbook share/doc/HTML/sv/kcontrol/mouse/index.cache.bz2 share/doc/HTML/sv/kcontrol/mouse/index.docbook share/doc/HTML/sv/kcontrol/paths/index.cache.bz2 share/doc/HTML/sv/kcontrol/paths/index.docbook share/doc/HTML/sv/kcontrol/phonon/index.cache.bz2 share/doc/HTML/sv/kcontrol/phonon/index.docbook share/doc/HTML/sv/kcontrol/solid-actions/index.cache.bz2 share/doc/HTML/sv/kcontrol/solid-actions/index.docbook share/doc/HTML/sv/kcontrol/solid-device-automounter/index.cache.bz2 share/doc/HTML/sv/kcontrol/solid-device-automounter/index.docbook share/doc/HTML/sv/kcontrol/spellchecking/index.cache.bz2 share/doc/HTML/sv/kcontrol/spellchecking/index.docbook share/doc/HTML/sv/kcontrol/splashscreen/index.cache.bz2 share/doc/HTML/sv/kcontrol/splashscreen/index.docbook -share/doc/HTML/sv/kcontrol/translations/index.cache.bz2 -share/doc/HTML/sv/kcontrol/translations/index.docbook share/doc/HTML/sv/kfontview/index.cache.bz2 share/doc/HTML/sv/kfontview/index.docbook share/doc/HTML/sv/knetattach/index.cache.bz2 share/doc/HTML/sv/knetattach/index.docbook share/doc/HTML/sv/plasma-desktop/index.cache.bz2 share/doc/HTML/sv/plasma-desktop/index.docbook share/doc/HTML/uk/kcontrol/autostart/index.cache.bz2 share/doc/HTML/uk/kcontrol/autostart/index.docbook share/doc/HTML/uk/kcontrol/baloo/index.cache.bz2 share/doc/HTML/uk/kcontrol/baloo/index.docbook share/doc/HTML/uk/kcontrol/clock/index.cache.bz2 share/doc/HTML/uk/kcontrol/clock/index.docbook share/doc/HTML/uk/kcontrol/colors/index.cache.bz2 share/doc/HTML/uk/kcontrol/colors/index.docbook share/doc/HTML/uk/kcontrol/componentchooser/index.cache.bz2 share/doc/HTML/uk/kcontrol/componentchooser/index.docbook share/doc/HTML/uk/kcontrol/cursortheme/index.cache.bz2 share/doc/HTML/uk/kcontrol/cursortheme/index.docbook share/doc/HTML/uk/kcontrol/desktopthemedetails/index.cache.bz2 share/doc/HTML/uk/kcontrol/desktopthemedetails/index.docbook share/doc/HTML/uk/kcontrol/emoticons/index.cache.bz2 share/doc/HTML/uk/kcontrol/emoticons/index.docbook share/doc/HTML/uk/kcontrol/fontinst/index.cache.bz2 share/doc/HTML/uk/kcontrol/fontinst/index.docbook share/doc/HTML/uk/kcontrol/fonts/adjust-all.png share/doc/HTML/uk/kcontrol/fonts/index.cache.bz2 share/doc/HTML/uk/kcontrol/fonts/index.docbook share/doc/HTML/uk/kcontrol/formats/index.cache.bz2 share/doc/HTML/uk/kcontrol/formats/index.docbook share/doc/HTML/uk/kcontrol/icons/delete-theme.png share/doc/HTML/uk/kcontrol/icons/effects.png share/doc/HTML/uk/kcontrol/icons/get-new-theme.png share/doc/HTML/uk/kcontrol/icons/index.cache.bz2 share/doc/HTML/uk/kcontrol/icons/index.docbook share/doc/HTML/uk/kcontrol/icons/install-theme.png share/doc/HTML/uk/kcontrol/icons/main.png share/doc/HTML/uk/kcontrol/icons/size.png share/doc/HTML/uk/kcontrol/icons/use-of-icons.png share/doc/HTML/uk/kcontrol/joystick/index.cache.bz2 share/doc/HTML/uk/kcontrol/joystick/index.docbook share/doc/HTML/uk/kcontrol/kcmaccess/index.cache.bz2 share/doc/HTML/uk/kcontrol/kcmaccess/index.docbook share/doc/HTML/uk/kcontrol/kcmlaunchfeedback/index.cache.bz2 share/doc/HTML/uk/kcontrol/kcmlaunchfeedback/index.docbook share/doc/HTML/uk/kcontrol/kcmnotify/index.cache.bz2 share/doc/HTML/uk/kcontrol/kcmnotify/index.docbook share/doc/HTML/uk/kcontrol/kcmsmserver/index.cache.bz2 share/doc/HTML/uk/kcontrol/kcmsmserver/index.docbook share/doc/HTML/uk/kcontrol/kcmstyle/index.cache.bz2 share/doc/HTML/uk/kcontrol/kcmstyle/index.docbook share/doc/HTML/uk/kcontrol/kded/index.cache.bz2 share/doc/HTML/uk/kcontrol/kded/index.docbook share/doc/HTML/uk/kcontrol/keyboard/index.cache.bz2 share/doc/HTML/uk/kcontrol/keyboard/index.docbook share/doc/HTML/uk/kcontrol/keys/index.cache.bz2 share/doc/HTML/uk/kcontrol/keys/index.docbook share/doc/HTML/uk/kcontrol/mouse/index.cache.bz2 share/doc/HTML/uk/kcontrol/mouse/index.docbook share/doc/HTML/uk/kcontrol/paths/index.cache.bz2 share/doc/HTML/uk/kcontrol/paths/index.docbook share/doc/HTML/uk/kcontrol/paths/paths.png share/doc/HTML/uk/kcontrol/phonon/index.cache.bz2 share/doc/HTML/uk/kcontrol/phonon/index.docbook share/doc/HTML/uk/kcontrol/solid-actions/add-action.png share/doc/HTML/uk/kcontrol/solid-actions/edit-action.png share/doc/HTML/uk/kcontrol/solid-actions/index.cache.bz2 share/doc/HTML/uk/kcontrol/solid-actions/index.docbook share/doc/HTML/uk/kcontrol/solid-actions/main.png share/doc/HTML/uk/kcontrol/solid-device-automounter/index.cache.bz2 share/doc/HTML/uk/kcontrol/solid-device-automounter/index.docbook share/doc/HTML/uk/kcontrol/spellchecking/index.cache.bz2 share/doc/HTML/uk/kcontrol/spellchecking/index.docbook share/doc/HTML/uk/kcontrol/splashscreen/index.cache.bz2 share/doc/HTML/uk/kcontrol/splashscreen/index.docbook share/doc/HTML/uk/kcontrol/splashscreen/splash-main.png -share/doc/HTML/uk/kcontrol/translations/index.cache.bz2 -share/doc/HTML/uk/kcontrol/translations/index.docbook share/doc/HTML/uk/kcontrol/workspaceoptions/index.cache.bz2 share/doc/HTML/uk/kcontrol/workspaceoptions/index.docbook share/doc/HTML/uk/kfontview/index.cache.bz2 share/doc/HTML/uk/kfontview/index.docbook share/doc/HTML/uk/kfontview/kfontview.png share/doc/HTML/uk/knetattach/index.cache.bz2 share/doc/HTML/uk/knetattach/index.docbook share/doc/HTML/uk/plasma-desktop/index.cache.bz2 share/doc/HTML/uk/plasma-desktop/index.docbook %%SYNAPTICS%%share/icons/hicolor/128x128/devices/input-touchpad.png share/icons/hicolor/128x128/mimetypes/fonts-package.png share/icons/hicolor/16x16/apps/kfontview.png %%SYNAPTICS%%share/icons/hicolor/16x16/devices/input-touchpad.png share/icons/hicolor/16x16/mimetypes/fonts-package.png share/icons/hicolor/22x22/apps/kfontview.png %%SYNAPTICS%%share/icons/hicolor/22x22/devices/input-touchpad.png share/icons/hicolor/22x22/mimetypes/fonts-package.png %%SYNAPTICS%%share/icons/hicolor/24x24/devices/input-touchpad.png %%SYNAPTICS%%share/icons/hicolor/256x256/devices/input-touchpad.png share/icons/hicolor/32x32/apps/kfontview.png %%SYNAPTICS%%share/icons/hicolor/32x32/devices/input-touchpad.png share/icons/hicolor/32x32/mimetypes/fonts-package.png share/icons/hicolor/48x48/apps/kfontview.png %%SYNAPTICS%%share/icons/hicolor/48x48/devices/input-touchpad.png share/icons/hicolor/48x48/mimetypes/fonts-package.png share/icons/hicolor/64x64/apps/kfontview.png %%SYNAPTICS%%share/icons/hicolor/64x64/devices/input-touchpad.png share/icons/hicolor/64x64/mimetypes/fonts-package.png %%SYNAPTICS%%share/icons/hicolor/96x96/devices/input-touchpad.png share/icons/hicolor/scalable/apps/preferences-desktop-font-installer.svgz %%SYNAPTICS%%share/icons/hicolor/scalable/devices/input-touchpad.svgz share/kcm_componentchooser/kcm_browser.desktop share/kcm_componentchooser/kcm_filemanager.desktop share/kcm_componentchooser/kcm_kemail.desktop share/kcm_componentchooser/kcm_terminal.desktop share/kcm_phonon/listview-background.png share/kcmkeyboard/pics/epo.png share/kcmkeys/kde3.kksrc share/kcmkeys/kde4.kksrc share/kcmkeys/mac4.kksrc share/kcmkeys/unix3.kksrc share/kcmkeys/win3.kksrc share/kcmkeys/win4.kksrc share/kcmkeys/wm3.kksrc share/kcmmouse/cursor_large_black.pcf.gz share/kcmmouse/cursor_large_white.pcf.gz share/kcmmouse/cursor_small_white.pcf.gz share/kcmmouse/pics/mouse_lh.png share/kcmmouse/pics/mouse_rh.png share/kcmsolidactions/solid-action-template.desktop share/kconf_update/krdb_libpathwipe.upd share/kcontrol/pics/logo.png share/kcontrol/pics/mini-world.png share/kdisplay/app-defaults/AAAAAAGeneral.ad share/kdisplay/app-defaults/AAAMotif.ad share/kdisplay/app-defaults/AAATk.ad share/kdisplay/app-defaults/AAAXaw.ad share/kdisplay/app-defaults/AcroRead.ad share/kdisplay/app-defaults/Editres.ad share/kdisplay/app-defaults/Emacs.ad share/kdisplay/app-defaults/GV.ad share/kdisplay/app-defaults/ML.ad share/kdisplay/app-defaults/Nedit.ad share/kdisplay/app-defaults/Netscape.ad share/kdisplay/app-defaults/RVPlayer.ad share/kdisplay/app-defaults/WPerfect.ad share/kdisplay/app-defaults/XCalc.ad share/kdisplay/app-defaults/XOsview.ad share/kdisplay/app-defaults/XTerm.ad share/kdisplay/app-defaults/XV.ad share/kdisplay/app-defaults/Xawtv.ad share/kdisplay/app-defaults/Xdvi.ad share/kdisplay/app-defaults/Xpdf.ad share/kf5/kactivitymanagerd/workspace/settings/qml/activitiesTab/ActivitiesView.qml share/kf5/kactivitymanagerd/workspace/settings/qml/activitiesTab/main.qml share/kf5/kactivitymanagerd/workspace/settings/qml/activityDialog/GeneralTab.qml share/kf5/kactivitymanagerd/workspace/settings/qml/activityDialog/OtherTab.qml share/kf5/kactivitymanagerd/workspace/settings/qml/activityDialog/components/DialogButtons.qml share/kf5/kactivitymanagerd/workspace/settings/qml/activityDialog/components/IconChooser.qml share/kf5/kactivitymanagerd/workspace/settings/qml/activityDialog/components/LabeledTextField.qml share/kf5/kactivitymanagerd/workspace/settings/qml/activityDialog/components/ShortcutChooser.qml share/kf5/kactivitymanagerd/workspace/settings/qml/privacyTab/BlacklistApplicationView.qml share/kfontinst/icons/hicolor/16x16/actions/addfont.png share/kfontinst/icons/hicolor/16x16/actions/disablefont.png share/kfontinst/icons/hicolor/16x16/actions/enablefont.png share/kfontinst/icons/hicolor/16x16/actions/fontstatus.png share/kfontinst/icons/hicolor/22x22/actions/addfont.png share/kfontinst/icons/hicolor/22x22/actions/disablefont.png share/kfontinst/icons/hicolor/22x22/actions/enablefont.png share/kfontinst/icons/hicolor/22x22/actions/fontstatus.png share/knotifications5/kaccess.notifyrc %%SYNAPTICS%%share/knotifications5/kcm_touchpad.notifyrc share/konqsidebartng/virtual_folders/services/fonts.desktop share/kpackage/kcms/kcm5_icons/contents/ui/IconSizePopup.qml share/kpackage/kcms/kcm5_icons/contents/ui/main.qml share/kpackage/kcms/kcm5_icons/metadata.desktop share/kpackage/kcms/kcm5_icons/metadata.json share/kpackage/kcms/kcm_cursortheme/contents/ui/Delegate.qml share/kpackage/kcms/kcm_cursortheme/contents/ui/main.qml share/kpackage/kcms/kcm_cursortheme/metadata.desktop share/kpackage/kcms/kcm_cursortheme/metadata.json share/kpackage/kcms/kcm_desktoptheme/contents/ui/Hand.qml share/kpackage/kcms/kcm_desktoptheme/contents/ui/ThemePreview.qml share/kpackage/kcms/kcm_desktoptheme/contents/ui/main.qml share/kpackage/kcms/kcm_desktoptheme/metadata.desktop share/kpackage/kcms/kcm_desktoptheme/metadata.json share/kpackage/kcms/kcm_fonts/contents/ui/FontWidget.qml share/kpackage/kcms/kcm_fonts/contents/ui/main.qml share/kpackage/kcms/kcm_fonts/metadata.desktop share/kpackage/kcms/kcm_fonts/metadata.json share/kpackage/kcms/kcm_launchfeedback/contents/ui/main.qml share/kpackage/kcms/kcm_launchfeedback/metadata.desktop share/kpackage/kcms/kcm_launchfeedback/metadata.json share/kpackage/kcms/kcm_lookandfeel/contents/ui/main.qml share/kpackage/kcms/kcm_lookandfeel/metadata.desktop share/kpackage/kcms/kcm_lookandfeel/metadata.json share/kpackage/kcms/kcm_nightcolor/contents/ui/LocationsAutoView.qml share/kpackage/kcms/kcm_nightcolor/contents/ui/LocationsFixedView.qml share/kpackage/kcms/kcm_nightcolor/contents/ui/NumberField.qml share/kpackage/kcms/kcm_nightcolor/contents/ui/TimeField.qml share/kpackage/kcms/kcm_nightcolor/contents/ui/TimingsView.qml share/kpackage/kcms/kcm_nightcolor/contents/ui/main.qml share/kpackage/kcms/kcm_nightcolor/metadata.desktop share/kpackage/kcms/kcm_nightcolor/metadata.json share/kpackage/kcms/kcm_splashscreen/contents/ui/main.qml share/kpackage/kcms/kcm_splashscreen/metadata.desktop share/kpackage/kcms/kcm_splashscreen/metadata.json -share/kpackage/kcms/kcm_translations/contents/ui/main.qml -share/kpackage/kcms/kcm_translations/metadata.desktop -share/kpackage/kcms/kcm_translations/metadata.json share/kpackage/kcms/kcm_workspace/contents/ui/main.qml share/kpackage/kcms/kcm_workspace/metadata.desktop share/kpackage/kcms/kcm_workspace/metadata.json share/kservices5/ServiceMenus/installfont.desktop share/kservices5/autostart.desktop share/kservices5/clock.desktop share/kservices5/colors.desktop share/kservices5/componentchooser.desktop share/kservices5/desktoppath.desktop share/kservices5/device_automounter_kcm.desktop share/kservices5/emoticons.desktop share/kservices5/fontinst.desktop share/kservices5/fonts.protocol share/kservices5/fontthumbnail.desktop share/kservices5/formats.desktop share/kservices5/kaccess.desktop share/kservices5/kcm_activities.desktop share/kservices5/kcm_baloofile.desktop share/kservices5/kcm_cursortheme.desktop share/kservices5/kcm_desktoptheme.desktop share/kservices5/kcm_fonts.desktop share/kservices5/kcm_icons.desktop share/kservices5/kcm_keyboard.desktop share/kservices5/kcm_launchfeedback.desktop share/kservices5/kcm_lookandfeel.desktop share/kservices5/kcm_nightcolor.desktop share/kservices5/kcm_phonon.desktop share/kservices5/kcm_plasmasearch.desktop share/kservices5/kcm_splashscreen.desktop %%SYNAPTICS%%share/kservices5/kcm_touchpad.desktop -share/kservices5/kcm_translations.desktop share/kservices5/kcm_workspace.desktop share/kservices5/kcmaccess.desktop share/kservices5/kcmkded.desktop share/kservices5/kcmnotify.desktop share/kservices5/kcmsmserver.desktop %%SYNAPTICS%%share/kservices5/kded/touchpad.desktop share/kservices5/keys.desktop share/kservices5/kfontviewpart.desktop share/kservices5/mouse.desktop share/kservices5/plasma-applet-org.kde.plasma.icontasks.desktop share/kservices5/plasma-applet-org.kde.plasma.kicker.desktop share/kservices5/plasma-applet-org.kde.plasma.kickoff.desktop share/kservices5/plasma-applet-org.kde.plasma.kimpanel.desktop share/kservices5/plasma-applet-org.kde.plasma.pager.desktop share/kservices5/plasma-applet-org.kde.plasma.showActivityManager.desktop share/kservices5/plasma-applet-org.kde.plasma.taskmanager.desktop share/kservices5/plasma-applet-org.kde.plasma.trash.desktop share/kservices5/plasma-applet-org.kde.plasma.windowlist.desktop %%SYNAPTICS%%share/kservices5/plasma-applet-touchpad.desktop share/kservices5/plasma-containment-org.kde.desktopcontainment.desktop share/kservices5/plasma-containment-org.kde.panel.desktop share/kservices5/plasma-containment-org.kde.plasma.folder.desktop share/kservices5/plasma-dataengine-kimpanel.desktop %%SYNAPTICS%%share/kservices5/plasma-dataengine-touchpad.desktop share/kservices5/plasma-layout-template-org.kde.plasma.desktop.appmenubar.desktop share/kservices5/plasma-layout-template-org.kde.plasma.desktop.defaultPanel.desktop share/kservices5/plasma-layout-template-org.kde.plasma.desktop.emptyPanel.desktop share/kservices5/plasma-package-org.kde.desktoptoolbox.desktop share/kservices5/plasma-package-org.kde.paneltoolbox.desktop share/kservices5/plasma-runner-kwin.desktop share/kservices5/plasma-runner-plasma-desktop.desktop share/kservices5/plasma-shell-org.kde.plasma.desktop.desktop share/kservices5/qtquicksettings.desktop share/kservices5/solid-actions.desktop share/kservices5/spellchecking.desktop share/kservices5/standard_actions.desktop share/kservices5/style.desktop share/kservicetypes5/solid-device-type.desktop share/kxmlgui5/kfontinst/kfontviewpart.rc share/kxmlgui5/kfontview/kfontviewui.rc share/locale/af/LC_MESSAGES/kaccess.mo share/locale/af/LC_MESSAGES/kcm5_componentchooser.mo share/locale/af/LC_MESSAGES/kcm5_icons.mo share/locale/af/LC_MESSAGES/kcm5_joystick.mo share/locale/af/LC_MESSAGES/kcm5_kded.mo share/locale/af/LC_MESSAGES/kcm5_notify.mo share/locale/af/LC_MESSAGES/kcm_cursortheme.mo share/locale/af/LC_MESSAGES/kcm_desktoppaths.mo share/locale/af/LC_MESSAGES/kcm_fonts.mo share/locale/af/LC_MESSAGES/kcm_launchfeedback.mo share/locale/af/LC_MESSAGES/kcmaccess.mo share/locale/af/LC_MESSAGES/kcmcolors.mo share/locale/af/LC_MESSAGES/kcmformats.mo share/locale/af/LC_MESSAGES/kcmkclock.mo share/locale/af/LC_MESSAGES/kcmkeyboard.mo share/locale/af/LC_MESSAGES/kcmkeys.mo share/locale/af/LC_MESSAGES/kcmmouse.mo share/locale/af/LC_MESSAGES/kcmsmserver.mo share/locale/af/LC_MESSAGES/kcmstyle.mo share/locale/af/LC_MESSAGES/kfontinst.mo share/locale/af/LC_MESSAGES/knetattach5.mo share/locale/af/LC_MESSAGES/krdb.mo share/locale/af/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ar/LC_MESSAGES/attica_kde_plugin.mo share/locale/ar/LC_MESSAGES/kaccess.mo share/locale/ar/LC_MESSAGES/kcm5_baloofile.mo share/locale/ar/LC_MESSAGES/kcm5_componentchooser.mo share/locale/ar/LC_MESSAGES/kcm5_device_automounter.mo share/locale/ar/LC_MESSAGES/kcm5_emoticons.mo share/locale/ar/LC_MESSAGES/kcm5_icons.mo share/locale/ar/LC_MESSAGES/kcm5_joystick.mo share/locale/ar/LC_MESSAGES/kcm5_kded.mo share/locale/ar/LC_MESSAGES/kcm5_notify.mo share/locale/ar/LC_MESSAGES/kcm5_phonon.mo share/locale/ar/LC_MESSAGES/kcm_activities5.mo share/locale/ar/LC_MESSAGES/kcm_autostart.mo share/locale/ar/LC_MESSAGES/kcm_cursortheme.mo share/locale/ar/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ar/LC_MESSAGES/kcm_desktoptheme.mo share/locale/ar/LC_MESSAGES/kcm_fonts.mo share/locale/ar/LC_MESSAGES/kcm_launchfeedback.mo share/locale/ar/LC_MESSAGES/kcm_lookandfeel.mo share/locale/ar/LC_MESSAGES/kcm_search.mo share/locale/ar/LC_MESSAGES/kcm_solid_actions.mo share/locale/ar/LC_MESSAGES/kcm_splashscreen.mo share/locale/ar/LC_MESSAGES/kcm_standard_actions.mo share/locale/ar/LC_MESSAGES/kcm_touchpad.mo -share/locale/ar/LC_MESSAGES/kcm_translations.mo share/locale/ar/LC_MESSAGES/kcm_workspace.mo share/locale/ar/LC_MESSAGES/kcmaccess.mo share/locale/ar/LC_MESSAGES/kcmcolors.mo share/locale/ar/LC_MESSAGES/kcmformats.mo share/locale/ar/LC_MESSAGES/kcmkclock.mo share/locale/ar/LC_MESSAGES/kcmkeyboard.mo share/locale/ar/LC_MESSAGES/kcmkeys.mo share/locale/ar/LC_MESSAGES/kcmmouse.mo share/locale/ar/LC_MESSAGES/kcmsmserver.mo share/locale/ar/LC_MESSAGES/kcmstyle.mo share/locale/ar/LC_MESSAGES/kfontinst.mo share/locale/ar/LC_MESSAGES/knetattach5.mo share/locale/ar/LC_MESSAGES/krdb.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/ar/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/ar/LC_MESSAGES/plasma_runner_kwin.mo share/locale/ar/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/ar/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/ar/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/ar/LC_MESSAGES/plasmaactivitymanager.mo share/locale/as/LC_MESSAGES/kcmaccess.mo -share/locale/ast/LC_MESSAGES/attica_kde_plugin.mo -share/locale/ast/LC_MESSAGES/kaccess.mo -share/locale/ast/LC_MESSAGES/kcm5_baloofile.mo -share/locale/ast/LC_MESSAGES/kcm5_componentchooser.mo -share/locale/ast/LC_MESSAGES/kcm5_device_automounter.mo -share/locale/ast/LC_MESSAGES/kcm5_emoticons.mo -share/locale/ast/LC_MESSAGES/kcm5_icons.mo -share/locale/ast/LC_MESSAGES/kcm5_joystick.mo -share/locale/ast/LC_MESSAGES/kcm5_kded.mo -share/locale/ast/LC_MESSAGES/kcm5_notify.mo -share/locale/ast/LC_MESSAGES/kcm5_phonon.mo -share/locale/ast/LC_MESSAGES/kcm_activities5.mo -share/locale/ast/LC_MESSAGES/kcm_autostart.mo -share/locale/ast/LC_MESSAGES/kcm_cursortheme.mo -share/locale/ast/LC_MESSAGES/kcm_desktoppaths.mo -share/locale/ast/LC_MESSAGES/kcm_desktoptheme.mo -share/locale/ast/LC_MESSAGES/kcm_fonts.mo -share/locale/ast/LC_MESSAGES/kcm_launchfeedback.mo -share/locale/ast/LC_MESSAGES/kcm_lookandfeel.mo -share/locale/ast/LC_MESSAGES/kcm_nightcolor.mo -share/locale/ast/LC_MESSAGES/kcm_search.mo -share/locale/ast/LC_MESSAGES/kcm_solid_actions.mo -share/locale/ast/LC_MESSAGES/kcm_splashscreen.mo -share/locale/ast/LC_MESSAGES/kcm_standard_actions.mo -share/locale/ast/LC_MESSAGES/kcm_touchpad.mo -share/locale/ast/LC_MESSAGES/kcm_translations.mo -share/locale/ast/LC_MESSAGES/kcm_workspace.mo -share/locale/ast/LC_MESSAGES/kcmaccess.mo -share/locale/ast/LC_MESSAGES/kcmcolors.mo -share/locale/ast/LC_MESSAGES/kcmformats.mo -share/locale/ast/LC_MESSAGES/kcmkclock.mo -share/locale/ast/LC_MESSAGES/kcmkeyboard.mo -share/locale/ast/LC_MESSAGES/kcmkeys.mo -share/locale/ast/LC_MESSAGES/kcmmouse.mo -share/locale/ast/LC_MESSAGES/kcmqtquicksettings.mo -share/locale/ast/LC_MESSAGES/kcmsmserver.mo -share/locale/ast/LC_MESSAGES/kcmstyle.mo -share/locale/ast/LC_MESSAGES/kfontinst.mo -share/locale/ast/LC_MESSAGES/knetattach5.mo -share/locale/ast/LC_MESSAGES/krdb.mo -share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo -share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo -share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo -share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo -share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo -share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo -share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo -share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo -share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo -share/locale/ast/LC_MESSAGES/plasma_applet_touchpad.mo -share/locale/ast/LC_MESSAGES/plasma_runner_kwin.mo -share/locale/ast/LC_MESSAGES/plasma_runner_plasma-desktop.mo -share/locale/ast/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo -share/locale/ast/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo -share/locale/ast/LC_MESSAGES/plasmaactivitymanager.mo share/locale/be/LC_MESSAGES/kaccess.mo share/locale/be/LC_MESSAGES/kcm5_componentchooser.mo share/locale/be/LC_MESSAGES/kcm5_emoticons.mo share/locale/be/LC_MESSAGES/kcm5_icons.mo share/locale/be/LC_MESSAGES/kcm5_joystick.mo share/locale/be/LC_MESSAGES/kcm5_kded.mo share/locale/be/LC_MESSAGES/kcm5_notify.mo share/locale/be/LC_MESSAGES/kcm5_phonon.mo share/locale/be/LC_MESSAGES/kcm_cursortheme.mo share/locale/be/LC_MESSAGES/kcm_desktoppaths.mo share/locale/be/LC_MESSAGES/kcm_fonts.mo share/locale/be/LC_MESSAGES/kcm_launchfeedback.mo share/locale/be/LC_MESSAGES/kcmaccess.mo share/locale/be/LC_MESSAGES/kcmcolors.mo share/locale/be/LC_MESSAGES/kcmformats.mo share/locale/be/LC_MESSAGES/kcmkclock.mo share/locale/be/LC_MESSAGES/kcmkeyboard.mo share/locale/be/LC_MESSAGES/kcmkeys.mo share/locale/be/LC_MESSAGES/kcmmouse.mo share/locale/be/LC_MESSAGES/kcmsmserver.mo share/locale/be/LC_MESSAGES/kcmstyle.mo share/locale/be/LC_MESSAGES/kfontinst.mo share/locale/be/LC_MESSAGES/knetattach5.mo share/locale/be/LC_MESSAGES/krdb.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/be@latin/LC_MESSAGES/kcm5_icons.mo share/locale/be@latin/LC_MESSAGES/kcm5_phonon.mo share/locale/be@latin/LC_MESSAGES/kcm_autostart.mo share/locale/be@latin/LC_MESSAGES/kcm_desktoppaths.mo share/locale/be@latin/LC_MESSAGES/kcm_standard_actions.mo share/locale/be@latin/LC_MESSAGES/kcmcolors.mo share/locale/be@latin/LC_MESSAGES/kcmformats.mo share/locale/be@latin/LC_MESSAGES/kcmkclock.mo share/locale/be@latin/LC_MESSAGES/kcmkeyboard.mo share/locale/be@latin/LC_MESSAGES/krdb.mo share/locale/be@latin/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/be@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/be@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/be@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/bg/LC_MESSAGES/attica_kde_plugin.mo share/locale/bg/LC_MESSAGES/kaccess.mo share/locale/bg/LC_MESSAGES/kcm5_baloofile.mo share/locale/bg/LC_MESSAGES/kcm5_componentchooser.mo share/locale/bg/LC_MESSAGES/kcm5_device_automounter.mo share/locale/bg/LC_MESSAGES/kcm5_emoticons.mo share/locale/bg/LC_MESSAGES/kcm5_icons.mo share/locale/bg/LC_MESSAGES/kcm5_joystick.mo share/locale/bg/LC_MESSAGES/kcm5_kded.mo share/locale/bg/LC_MESSAGES/kcm5_notify.mo share/locale/bg/LC_MESSAGES/kcm5_phonon.mo share/locale/bg/LC_MESSAGES/kcm_autostart.mo share/locale/bg/LC_MESSAGES/kcm_cursortheme.mo share/locale/bg/LC_MESSAGES/kcm_desktoppaths.mo share/locale/bg/LC_MESSAGES/kcm_desktoptheme.mo share/locale/bg/LC_MESSAGES/kcm_fonts.mo share/locale/bg/LC_MESSAGES/kcm_launchfeedback.mo share/locale/bg/LC_MESSAGES/kcm_solid_actions.mo share/locale/bg/LC_MESSAGES/kcm_standard_actions.mo share/locale/bg/LC_MESSAGES/kcmaccess.mo share/locale/bg/LC_MESSAGES/kcmcolors.mo share/locale/bg/LC_MESSAGES/kcmformats.mo share/locale/bg/LC_MESSAGES/kcmkclock.mo share/locale/bg/LC_MESSAGES/kcmkeyboard.mo share/locale/bg/LC_MESSAGES/kcmkeys.mo share/locale/bg/LC_MESSAGES/kcmmouse.mo share/locale/bg/LC_MESSAGES/kcmsmserver.mo share/locale/bg/LC_MESSAGES/kcmstyle.mo share/locale/bg/LC_MESSAGES/kfontinst.mo share/locale/bg/LC_MESSAGES/knetattach5.mo share/locale/bg/LC_MESSAGES/krdb.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/bg/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/bn/LC_MESSAGES/kaccess.mo share/locale/bn/LC_MESSAGES/kcm5_componentchooser.mo share/locale/bn/LC_MESSAGES/kcm5_icons.mo share/locale/bn/LC_MESSAGES/kcm5_kded.mo share/locale/bn/LC_MESSAGES/kcm5_notify.mo share/locale/bn/LC_MESSAGES/kcm5_phonon.mo share/locale/bn/LC_MESSAGES/kcm_desktoppaths.mo share/locale/bn/LC_MESSAGES/kcm_fonts.mo share/locale/bn/LC_MESSAGES/kcmaccess.mo share/locale/bn/LC_MESSAGES/kcmformats.mo share/locale/bn/LC_MESSAGES/kcmkclock.mo share/locale/bn/LC_MESSAGES/kcmkeyboard.mo share/locale/bn/LC_MESSAGES/kcmsmserver.mo share/locale/bn/LC_MESSAGES/kcmstyle.mo share/locale/bn/LC_MESSAGES/kfontinst.mo share/locale/bn/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/bn_IN/LC_MESSAGES/kaccess.mo share/locale/bn_IN/LC_MESSAGES/kcm5_icons.mo share/locale/bn_IN/LC_MESSAGES/kcm5_kded.mo share/locale/bn_IN/LC_MESSAGES/kcm5_notify.mo share/locale/bn_IN/LC_MESSAGES/kcm5_phonon.mo share/locale/bn_IN/LC_MESSAGES/kcm_autostart.mo share/locale/bn_IN/LC_MESSAGES/kcm_desktoppaths.mo share/locale/bn_IN/LC_MESSAGES/kcm_desktoptheme.mo share/locale/bn_IN/LC_MESSAGES/kcm_standard_actions.mo share/locale/bn_IN/LC_MESSAGES/kcmaccess.mo share/locale/bn_IN/LC_MESSAGES/kcmcolors.mo share/locale/bn_IN/LC_MESSAGES/kcmformats.mo share/locale/bn_IN/LC_MESSAGES/kcmkclock.mo share/locale/bn_IN/LC_MESSAGES/kcmkeyboard.mo share/locale/bn_IN/LC_MESSAGES/kcmkeys.mo share/locale/bn_IN/LC_MESSAGES/kcmsmserver.mo share/locale/bn_IN/LC_MESSAGES/kcmstyle.mo share/locale/bn_IN/LC_MESSAGES/kfontinst.mo share/locale/bn_IN/LC_MESSAGES/knetattach5.mo share/locale/bn_IN/LC_MESSAGES/krdb.mo share/locale/bn_IN/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/bn_IN/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/bn_IN/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/bn_IN/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/br/LC_MESSAGES/kaccess.mo share/locale/br/LC_MESSAGES/kcm5_componentchooser.mo share/locale/br/LC_MESSAGES/kcm5_icons.mo share/locale/br/LC_MESSAGES/kcm5_joystick.mo share/locale/br/LC_MESSAGES/kcm5_kded.mo share/locale/br/LC_MESSAGES/kcm5_notify.mo share/locale/br/LC_MESSAGES/kcm_cursortheme.mo share/locale/br/LC_MESSAGES/kcm_desktoppaths.mo share/locale/br/LC_MESSAGES/kcm_fonts.mo share/locale/br/LC_MESSAGES/kcm_launchfeedback.mo share/locale/br/LC_MESSAGES/kcmaccess.mo share/locale/br/LC_MESSAGES/kcmcolors.mo share/locale/br/LC_MESSAGES/kcmformats.mo share/locale/br/LC_MESSAGES/kcmkclock.mo share/locale/br/LC_MESSAGES/kcmkeyboard.mo share/locale/br/LC_MESSAGES/kcmkeys.mo share/locale/br/LC_MESSAGES/kcmmouse.mo share/locale/br/LC_MESSAGES/kcmsmserver.mo share/locale/br/LC_MESSAGES/kcmstyle.mo share/locale/br/LC_MESSAGES/kfontinst.mo share/locale/br/LC_MESSAGES/knetattach5.mo share/locale/br/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/bs/LC_MESSAGES/attica_kde_plugin.mo share/locale/bs/LC_MESSAGES/kaccess.mo share/locale/bs/LC_MESSAGES/kcm5_baloofile.mo share/locale/bs/LC_MESSAGES/kcm5_componentchooser.mo share/locale/bs/LC_MESSAGES/kcm5_device_automounter.mo share/locale/bs/LC_MESSAGES/kcm5_emoticons.mo share/locale/bs/LC_MESSAGES/kcm5_icons.mo share/locale/bs/LC_MESSAGES/kcm5_joystick.mo share/locale/bs/LC_MESSAGES/kcm5_kded.mo share/locale/bs/LC_MESSAGES/kcm5_notify.mo share/locale/bs/LC_MESSAGES/kcm5_phonon.mo share/locale/bs/LC_MESSAGES/kcm_autostart.mo share/locale/bs/LC_MESSAGES/kcm_cursortheme.mo share/locale/bs/LC_MESSAGES/kcm_desktoppaths.mo share/locale/bs/LC_MESSAGES/kcm_desktoptheme.mo share/locale/bs/LC_MESSAGES/kcm_fonts.mo share/locale/bs/LC_MESSAGES/kcm_launchfeedback.mo share/locale/bs/LC_MESSAGES/kcm_lookandfeel.mo share/locale/bs/LC_MESSAGES/kcm_search.mo share/locale/bs/LC_MESSAGES/kcm_solid_actions.mo share/locale/bs/LC_MESSAGES/kcm_splashscreen.mo share/locale/bs/LC_MESSAGES/kcm_standard_actions.mo share/locale/bs/LC_MESSAGES/kcm_touchpad.mo -share/locale/bs/LC_MESSAGES/kcm_translations.mo share/locale/bs/LC_MESSAGES/kcm_workspace.mo share/locale/bs/LC_MESSAGES/kcmaccess.mo share/locale/bs/LC_MESSAGES/kcmcolors.mo share/locale/bs/LC_MESSAGES/kcmformats.mo share/locale/bs/LC_MESSAGES/kcmkclock.mo share/locale/bs/LC_MESSAGES/kcmkeyboard.mo share/locale/bs/LC_MESSAGES/kcmkeys.mo share/locale/bs/LC_MESSAGES/kcmmouse.mo share/locale/bs/LC_MESSAGES/kcmsmserver.mo share/locale/bs/LC_MESSAGES/kcmstyle.mo share/locale/bs/LC_MESSAGES/kfontinst.mo share/locale/bs/LC_MESSAGES/knetattach5.mo share/locale/bs/LC_MESSAGES/krdb.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/bs/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/bs/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/bs/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/bs/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/ca/LC_MESSAGES/attica_kde_plugin.mo share/locale/ca/LC_MESSAGES/kaccess.mo share/locale/ca/LC_MESSAGES/kcm5_baloofile.mo share/locale/ca/LC_MESSAGES/kcm5_componentchooser.mo share/locale/ca/LC_MESSAGES/kcm5_device_automounter.mo share/locale/ca/LC_MESSAGES/kcm5_emoticons.mo share/locale/ca/LC_MESSAGES/kcm5_icons.mo share/locale/ca/LC_MESSAGES/kcm5_joystick.mo share/locale/ca/LC_MESSAGES/kcm5_kded.mo share/locale/ca/LC_MESSAGES/kcm5_notify.mo share/locale/ca/LC_MESSAGES/kcm5_phonon.mo share/locale/ca/LC_MESSAGES/kcm_activities5.mo share/locale/ca/LC_MESSAGES/kcm_autostart.mo share/locale/ca/LC_MESSAGES/kcm_cursortheme.mo share/locale/ca/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ca/LC_MESSAGES/kcm_desktoptheme.mo share/locale/ca/LC_MESSAGES/kcm_fonts.mo share/locale/ca/LC_MESSAGES/kcm_launchfeedback.mo share/locale/ca/LC_MESSAGES/kcm_lookandfeel.mo share/locale/ca/LC_MESSAGES/kcm_nightcolor.mo share/locale/ca/LC_MESSAGES/kcm_search.mo share/locale/ca/LC_MESSAGES/kcm_solid_actions.mo share/locale/ca/LC_MESSAGES/kcm_splashscreen.mo share/locale/ca/LC_MESSAGES/kcm_standard_actions.mo share/locale/ca/LC_MESSAGES/kcm_touchpad.mo -share/locale/ca/LC_MESSAGES/kcm_translations.mo share/locale/ca/LC_MESSAGES/kcm_workspace.mo share/locale/ca/LC_MESSAGES/kcmaccess.mo share/locale/ca/LC_MESSAGES/kcmcolors.mo share/locale/ca/LC_MESSAGES/kcmformats.mo share/locale/ca/LC_MESSAGES/kcmkclock.mo share/locale/ca/LC_MESSAGES/kcmkeyboard.mo share/locale/ca/LC_MESSAGES/kcmkeys.mo share/locale/ca/LC_MESSAGES/kcmmouse.mo share/locale/ca/LC_MESSAGES/kcmqtquicksettings.mo share/locale/ca/LC_MESSAGES/kcmsmserver.mo share/locale/ca/LC_MESSAGES/kcmstyle.mo share/locale/ca/LC_MESSAGES/kfontinst.mo share/locale/ca/LC_MESSAGES/knetattach5.mo share/locale/ca/LC_MESSAGES/krdb.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/ca/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/ca/LC_MESSAGES/plasma_runner_kwin.mo share/locale/ca/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/ca/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/ca/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/ca/LC_MESSAGES/plasmaactivitymanager.mo share/locale/ca@valencia/LC_MESSAGES/attica_kde_plugin.mo share/locale/ca@valencia/LC_MESSAGES/kaccess.mo share/locale/ca@valencia/LC_MESSAGES/kcm5_baloofile.mo share/locale/ca@valencia/LC_MESSAGES/kcm5_componentchooser.mo share/locale/ca@valencia/LC_MESSAGES/kcm5_device_automounter.mo share/locale/ca@valencia/LC_MESSAGES/kcm5_emoticons.mo share/locale/ca@valencia/LC_MESSAGES/kcm5_icons.mo share/locale/ca@valencia/LC_MESSAGES/kcm5_joystick.mo share/locale/ca@valencia/LC_MESSAGES/kcm5_kded.mo share/locale/ca@valencia/LC_MESSAGES/kcm5_notify.mo share/locale/ca@valencia/LC_MESSAGES/kcm5_phonon.mo share/locale/ca@valencia/LC_MESSAGES/kcm_activities5.mo share/locale/ca@valencia/LC_MESSAGES/kcm_autostart.mo share/locale/ca@valencia/LC_MESSAGES/kcm_cursortheme.mo share/locale/ca@valencia/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ca@valencia/LC_MESSAGES/kcm_desktoptheme.mo share/locale/ca@valencia/LC_MESSAGES/kcm_fonts.mo share/locale/ca@valencia/LC_MESSAGES/kcm_launchfeedback.mo share/locale/ca@valencia/LC_MESSAGES/kcm_lookandfeel.mo share/locale/ca@valencia/LC_MESSAGES/kcm_nightcolor.mo share/locale/ca@valencia/LC_MESSAGES/kcm_search.mo share/locale/ca@valencia/LC_MESSAGES/kcm_solid_actions.mo share/locale/ca@valencia/LC_MESSAGES/kcm_splashscreen.mo share/locale/ca@valencia/LC_MESSAGES/kcm_standard_actions.mo share/locale/ca@valencia/LC_MESSAGES/kcm_touchpad.mo -share/locale/ca@valencia/LC_MESSAGES/kcm_translations.mo share/locale/ca@valencia/LC_MESSAGES/kcm_workspace.mo share/locale/ca@valencia/LC_MESSAGES/kcmaccess.mo share/locale/ca@valencia/LC_MESSAGES/kcmcolors.mo share/locale/ca@valencia/LC_MESSAGES/kcmformats.mo share/locale/ca@valencia/LC_MESSAGES/kcmkclock.mo share/locale/ca@valencia/LC_MESSAGES/kcmkeyboard.mo share/locale/ca@valencia/LC_MESSAGES/kcmkeys.mo share/locale/ca@valencia/LC_MESSAGES/kcmmouse.mo share/locale/ca@valencia/LC_MESSAGES/kcmqtquicksettings.mo share/locale/ca@valencia/LC_MESSAGES/kcmsmserver.mo share/locale/ca@valencia/LC_MESSAGES/kcmstyle.mo share/locale/ca@valencia/LC_MESSAGES/kfontinst.mo share/locale/ca@valencia/LC_MESSAGES/knetattach5.mo share/locale/ca@valencia/LC_MESSAGES/krdb.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_kwin.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/ca@valencia/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/ca@valencia/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/ca@valencia/LC_MESSAGES/plasmaactivitymanager.mo share/locale/cs/LC_MESSAGES/attica_kde_plugin.mo share/locale/cs/LC_MESSAGES/kaccess.mo share/locale/cs/LC_MESSAGES/kcm5_baloofile.mo share/locale/cs/LC_MESSAGES/kcm5_componentchooser.mo share/locale/cs/LC_MESSAGES/kcm5_device_automounter.mo share/locale/cs/LC_MESSAGES/kcm5_emoticons.mo share/locale/cs/LC_MESSAGES/kcm5_icons.mo share/locale/cs/LC_MESSAGES/kcm5_joystick.mo share/locale/cs/LC_MESSAGES/kcm5_kded.mo share/locale/cs/LC_MESSAGES/kcm5_notify.mo share/locale/cs/LC_MESSAGES/kcm5_phonon.mo share/locale/cs/LC_MESSAGES/kcm_activities5.mo share/locale/cs/LC_MESSAGES/kcm_autostart.mo share/locale/cs/LC_MESSAGES/kcm_cursortheme.mo share/locale/cs/LC_MESSAGES/kcm_desktoppaths.mo share/locale/cs/LC_MESSAGES/kcm_desktoptheme.mo share/locale/cs/LC_MESSAGES/kcm_fonts.mo share/locale/cs/LC_MESSAGES/kcm_launchfeedback.mo share/locale/cs/LC_MESSAGES/kcm_lookandfeel.mo share/locale/cs/LC_MESSAGES/kcm_nightcolor.mo share/locale/cs/LC_MESSAGES/kcm_search.mo share/locale/cs/LC_MESSAGES/kcm_solid_actions.mo share/locale/cs/LC_MESSAGES/kcm_splashscreen.mo share/locale/cs/LC_MESSAGES/kcm_standard_actions.mo share/locale/cs/LC_MESSAGES/kcm_touchpad.mo -share/locale/cs/LC_MESSAGES/kcm_translations.mo share/locale/cs/LC_MESSAGES/kcm_workspace.mo share/locale/cs/LC_MESSAGES/kcmaccess.mo share/locale/cs/LC_MESSAGES/kcmcolors.mo share/locale/cs/LC_MESSAGES/kcmformats.mo share/locale/cs/LC_MESSAGES/kcmkclock.mo share/locale/cs/LC_MESSAGES/kcmkeyboard.mo share/locale/cs/LC_MESSAGES/kcmkeys.mo share/locale/cs/LC_MESSAGES/kcmmouse.mo share/locale/cs/LC_MESSAGES/kcmqtquicksettings.mo share/locale/cs/LC_MESSAGES/kcmsmserver.mo share/locale/cs/LC_MESSAGES/kcmstyle.mo share/locale/cs/LC_MESSAGES/kfontinst.mo share/locale/cs/LC_MESSAGES/knetattach5.mo share/locale/cs/LC_MESSAGES/krdb.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/cs/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/cs/LC_MESSAGES/plasma_runner_kwin.mo share/locale/cs/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/cs/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/cs/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/cs/LC_MESSAGES/plasmaactivitymanager.mo share/locale/csb/LC_MESSAGES/kaccess.mo share/locale/csb/LC_MESSAGES/kcm5_componentchooser.mo share/locale/csb/LC_MESSAGES/kcm5_emoticons.mo share/locale/csb/LC_MESSAGES/kcm5_icons.mo share/locale/csb/LC_MESSAGES/kcm5_joystick.mo share/locale/csb/LC_MESSAGES/kcm5_kded.mo share/locale/csb/LC_MESSAGES/kcm5_notify.mo share/locale/csb/LC_MESSAGES/kcm5_phonon.mo share/locale/csb/LC_MESSAGES/kcm_fonts.mo share/locale/csb/LC_MESSAGES/kcm_launchfeedback.mo share/locale/csb/LC_MESSAGES/kcmaccess.mo share/locale/csb/LC_MESSAGES/kcmcolors.mo share/locale/csb/LC_MESSAGES/kcmformats.mo share/locale/csb/LC_MESSAGES/kcmkclock.mo share/locale/csb/LC_MESSAGES/kcmkeyboard.mo share/locale/csb/LC_MESSAGES/kcmsmserver.mo share/locale/csb/LC_MESSAGES/kcmstyle.mo share/locale/csb/LC_MESSAGES/kfontinst.mo share/locale/csb/LC_MESSAGES/knetattach5.mo share/locale/csb/LC_MESSAGES/krdb.mo share/locale/csb/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/csb/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/csb/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/csb/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/csb/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/cy/LC_MESSAGES/kaccess.mo share/locale/cy/LC_MESSAGES/kcm5_componentchooser.mo share/locale/cy/LC_MESSAGES/kcm5_icons.mo share/locale/cy/LC_MESSAGES/kcm5_joystick.mo share/locale/cy/LC_MESSAGES/kcm5_kded.mo share/locale/cy/LC_MESSAGES/kcm5_notify.mo share/locale/cy/LC_MESSAGES/kcm_cursortheme.mo share/locale/cy/LC_MESSAGES/kcm_desktoppaths.mo share/locale/cy/LC_MESSAGES/kcm_fonts.mo share/locale/cy/LC_MESSAGES/kcm_launchfeedback.mo share/locale/cy/LC_MESSAGES/kcmaccess.mo share/locale/cy/LC_MESSAGES/kcmcolors.mo share/locale/cy/LC_MESSAGES/kcmformats.mo share/locale/cy/LC_MESSAGES/kcmkclock.mo share/locale/cy/LC_MESSAGES/kcmkeyboard.mo share/locale/cy/LC_MESSAGES/kcmkeys.mo share/locale/cy/LC_MESSAGES/kcmmouse.mo share/locale/cy/LC_MESSAGES/kcmsmserver.mo share/locale/cy/LC_MESSAGES/kcmstyle.mo share/locale/cy/LC_MESSAGES/kfontinst.mo share/locale/cy/LC_MESSAGES/knetattach5.mo share/locale/cy/LC_MESSAGES/krdb.mo share/locale/cy/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/da/LC_MESSAGES/attica_kde_plugin.mo share/locale/da/LC_MESSAGES/kaccess.mo share/locale/da/LC_MESSAGES/kcm5_baloofile.mo share/locale/da/LC_MESSAGES/kcm5_componentchooser.mo share/locale/da/LC_MESSAGES/kcm5_device_automounter.mo share/locale/da/LC_MESSAGES/kcm5_emoticons.mo share/locale/da/LC_MESSAGES/kcm5_icons.mo share/locale/da/LC_MESSAGES/kcm5_joystick.mo share/locale/da/LC_MESSAGES/kcm5_kded.mo share/locale/da/LC_MESSAGES/kcm5_notify.mo share/locale/da/LC_MESSAGES/kcm5_phonon.mo share/locale/da/LC_MESSAGES/kcm_activities5.mo share/locale/da/LC_MESSAGES/kcm_autostart.mo share/locale/da/LC_MESSAGES/kcm_cursortheme.mo share/locale/da/LC_MESSAGES/kcm_desktoppaths.mo share/locale/da/LC_MESSAGES/kcm_desktoptheme.mo share/locale/da/LC_MESSAGES/kcm_fonts.mo share/locale/da/LC_MESSAGES/kcm_launchfeedback.mo share/locale/da/LC_MESSAGES/kcm_lookandfeel.mo share/locale/da/LC_MESSAGES/kcm_nightcolor.mo share/locale/da/LC_MESSAGES/kcm_search.mo share/locale/da/LC_MESSAGES/kcm_solid_actions.mo share/locale/da/LC_MESSAGES/kcm_splashscreen.mo share/locale/da/LC_MESSAGES/kcm_standard_actions.mo share/locale/da/LC_MESSAGES/kcm_touchpad.mo -share/locale/da/LC_MESSAGES/kcm_translations.mo share/locale/da/LC_MESSAGES/kcm_workspace.mo share/locale/da/LC_MESSAGES/kcmaccess.mo share/locale/da/LC_MESSAGES/kcmcolors.mo share/locale/da/LC_MESSAGES/kcmformats.mo share/locale/da/LC_MESSAGES/kcmkclock.mo share/locale/da/LC_MESSAGES/kcmkeyboard.mo share/locale/da/LC_MESSAGES/kcmkeys.mo share/locale/da/LC_MESSAGES/kcmmouse.mo share/locale/da/LC_MESSAGES/kcmqtquicksettings.mo share/locale/da/LC_MESSAGES/kcmsmserver.mo share/locale/da/LC_MESSAGES/kcmstyle.mo share/locale/da/LC_MESSAGES/kfontinst.mo share/locale/da/LC_MESSAGES/knetattach5.mo share/locale/da/LC_MESSAGES/krdb.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/da/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/da/LC_MESSAGES/plasma_runner_kwin.mo share/locale/da/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/da/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/da/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/da/LC_MESSAGES/plasmaactivitymanager.mo share/locale/de/LC_MESSAGES/attica_kde_plugin.mo share/locale/de/LC_MESSAGES/kaccess.mo share/locale/de/LC_MESSAGES/kcm5_baloofile.mo share/locale/de/LC_MESSAGES/kcm5_componentchooser.mo share/locale/de/LC_MESSAGES/kcm5_device_automounter.mo share/locale/de/LC_MESSAGES/kcm5_emoticons.mo share/locale/de/LC_MESSAGES/kcm5_icons.mo share/locale/de/LC_MESSAGES/kcm5_joystick.mo share/locale/de/LC_MESSAGES/kcm5_kded.mo share/locale/de/LC_MESSAGES/kcm5_notify.mo share/locale/de/LC_MESSAGES/kcm5_phonon.mo share/locale/de/LC_MESSAGES/kcm_activities5.mo share/locale/de/LC_MESSAGES/kcm_autostart.mo share/locale/de/LC_MESSAGES/kcm_cursortheme.mo share/locale/de/LC_MESSAGES/kcm_desktoppaths.mo share/locale/de/LC_MESSAGES/kcm_desktoptheme.mo share/locale/de/LC_MESSAGES/kcm_fonts.mo share/locale/de/LC_MESSAGES/kcm_launchfeedback.mo share/locale/de/LC_MESSAGES/kcm_lookandfeel.mo share/locale/de/LC_MESSAGES/kcm_nightcolor.mo share/locale/de/LC_MESSAGES/kcm_search.mo share/locale/de/LC_MESSAGES/kcm_solid_actions.mo share/locale/de/LC_MESSAGES/kcm_splashscreen.mo share/locale/de/LC_MESSAGES/kcm_standard_actions.mo share/locale/de/LC_MESSAGES/kcm_touchpad.mo -share/locale/de/LC_MESSAGES/kcm_translations.mo share/locale/de/LC_MESSAGES/kcm_workspace.mo share/locale/de/LC_MESSAGES/kcmaccess.mo share/locale/de/LC_MESSAGES/kcmcolors.mo share/locale/de/LC_MESSAGES/kcmformats.mo share/locale/de/LC_MESSAGES/kcmkclock.mo share/locale/de/LC_MESSAGES/kcmkeyboard.mo share/locale/de/LC_MESSAGES/kcmkeys.mo share/locale/de/LC_MESSAGES/kcmmouse.mo share/locale/de/LC_MESSAGES/kcmqtquicksettings.mo share/locale/de/LC_MESSAGES/kcmsmserver.mo share/locale/de/LC_MESSAGES/kcmstyle.mo share/locale/de/LC_MESSAGES/kfontinst.mo share/locale/de/LC_MESSAGES/knetattach5.mo share/locale/de/LC_MESSAGES/krdb.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo +share/locale/de/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo -share/locale/de/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/de/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/de/LC_MESSAGES/plasma_runner_kwin.mo share/locale/de/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/de/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/de/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/de/LC_MESSAGES/plasmaactivitymanager.mo share/locale/el/LC_MESSAGES/attica_kde_plugin.mo share/locale/el/LC_MESSAGES/kaccess.mo share/locale/el/LC_MESSAGES/kcm5_baloofile.mo share/locale/el/LC_MESSAGES/kcm5_componentchooser.mo share/locale/el/LC_MESSAGES/kcm5_device_automounter.mo share/locale/el/LC_MESSAGES/kcm5_emoticons.mo share/locale/el/LC_MESSAGES/kcm5_icons.mo share/locale/el/LC_MESSAGES/kcm5_joystick.mo share/locale/el/LC_MESSAGES/kcm5_kded.mo share/locale/el/LC_MESSAGES/kcm5_notify.mo share/locale/el/LC_MESSAGES/kcm5_phonon.mo share/locale/el/LC_MESSAGES/kcm_activities5.mo share/locale/el/LC_MESSAGES/kcm_autostart.mo share/locale/el/LC_MESSAGES/kcm_cursortheme.mo share/locale/el/LC_MESSAGES/kcm_desktoppaths.mo share/locale/el/LC_MESSAGES/kcm_desktoptheme.mo share/locale/el/LC_MESSAGES/kcm_fonts.mo share/locale/el/LC_MESSAGES/kcm_launchfeedback.mo share/locale/el/LC_MESSAGES/kcm_lookandfeel.mo share/locale/el/LC_MESSAGES/kcm_search.mo share/locale/el/LC_MESSAGES/kcm_solid_actions.mo share/locale/el/LC_MESSAGES/kcm_splashscreen.mo share/locale/el/LC_MESSAGES/kcm_standard_actions.mo share/locale/el/LC_MESSAGES/kcm_touchpad.mo -share/locale/el/LC_MESSAGES/kcm_translations.mo share/locale/el/LC_MESSAGES/kcm_workspace.mo share/locale/el/LC_MESSAGES/kcmaccess.mo share/locale/el/LC_MESSAGES/kcmcolors.mo share/locale/el/LC_MESSAGES/kcmformats.mo share/locale/el/LC_MESSAGES/kcmkclock.mo share/locale/el/LC_MESSAGES/kcmkeyboard.mo share/locale/el/LC_MESSAGES/kcmkeys.mo share/locale/el/LC_MESSAGES/kcmmouse.mo share/locale/el/LC_MESSAGES/kcmsmserver.mo share/locale/el/LC_MESSAGES/kcmstyle.mo share/locale/el/LC_MESSAGES/kfontinst.mo share/locale/el/LC_MESSAGES/knetattach5.mo share/locale/el/LC_MESSAGES/krdb.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/el/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/el/LC_MESSAGES/plasma_runner_kwin.mo share/locale/el/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/el/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/el/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/el/LC_MESSAGES/plasmaactivitymanager.mo share/locale/en_GB/LC_MESSAGES/attica_kde_plugin.mo share/locale/en_GB/LC_MESSAGES/kaccess.mo share/locale/en_GB/LC_MESSAGES/kcm5_baloofile.mo share/locale/en_GB/LC_MESSAGES/kcm5_componentchooser.mo share/locale/en_GB/LC_MESSAGES/kcm5_device_automounter.mo share/locale/en_GB/LC_MESSAGES/kcm5_emoticons.mo share/locale/en_GB/LC_MESSAGES/kcm5_icons.mo share/locale/en_GB/LC_MESSAGES/kcm5_joystick.mo share/locale/en_GB/LC_MESSAGES/kcm5_kded.mo share/locale/en_GB/LC_MESSAGES/kcm5_notify.mo share/locale/en_GB/LC_MESSAGES/kcm5_phonon.mo share/locale/en_GB/LC_MESSAGES/kcm_activities5.mo share/locale/en_GB/LC_MESSAGES/kcm_autostart.mo share/locale/en_GB/LC_MESSAGES/kcm_cursortheme.mo share/locale/en_GB/LC_MESSAGES/kcm_desktoppaths.mo share/locale/en_GB/LC_MESSAGES/kcm_desktoptheme.mo share/locale/en_GB/LC_MESSAGES/kcm_fonts.mo share/locale/en_GB/LC_MESSAGES/kcm_launchfeedback.mo share/locale/en_GB/LC_MESSAGES/kcm_lookandfeel.mo share/locale/en_GB/LC_MESSAGES/kcm_nightcolor.mo share/locale/en_GB/LC_MESSAGES/kcm_search.mo share/locale/en_GB/LC_MESSAGES/kcm_solid_actions.mo share/locale/en_GB/LC_MESSAGES/kcm_splashscreen.mo share/locale/en_GB/LC_MESSAGES/kcm_standard_actions.mo share/locale/en_GB/LC_MESSAGES/kcm_touchpad.mo -share/locale/en_GB/LC_MESSAGES/kcm_translations.mo share/locale/en_GB/LC_MESSAGES/kcm_workspace.mo share/locale/en_GB/LC_MESSAGES/kcmaccess.mo share/locale/en_GB/LC_MESSAGES/kcmcolors.mo share/locale/en_GB/LC_MESSAGES/kcmformats.mo share/locale/en_GB/LC_MESSAGES/kcmkclock.mo share/locale/en_GB/LC_MESSAGES/kcmkeyboard.mo share/locale/en_GB/LC_MESSAGES/kcmkeys.mo share/locale/en_GB/LC_MESSAGES/kcmmouse.mo share/locale/en_GB/LC_MESSAGES/kcmqtquicksettings.mo share/locale/en_GB/LC_MESSAGES/kcmsmserver.mo share/locale/en_GB/LC_MESSAGES/kcmstyle.mo share/locale/en_GB/LC_MESSAGES/kfontinst.mo share/locale/en_GB/LC_MESSAGES/knetattach5.mo share/locale/en_GB/LC_MESSAGES/krdb.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_kwin.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/en_GB/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/en_GB/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/en_GB/LC_MESSAGES/plasmaactivitymanager.mo share/locale/eo/LC_MESSAGES/attica_kde_plugin.mo share/locale/eo/LC_MESSAGES/kaccess.mo share/locale/eo/LC_MESSAGES/kcm5_componentchooser.mo share/locale/eo/LC_MESSAGES/kcm5_device_automounter.mo share/locale/eo/LC_MESSAGES/kcm5_emoticons.mo share/locale/eo/LC_MESSAGES/kcm5_icons.mo share/locale/eo/LC_MESSAGES/kcm5_joystick.mo share/locale/eo/LC_MESSAGES/kcm5_kded.mo share/locale/eo/LC_MESSAGES/kcm5_notify.mo share/locale/eo/LC_MESSAGES/kcm5_phonon.mo share/locale/eo/LC_MESSAGES/kcm_autostart.mo share/locale/eo/LC_MESSAGES/kcm_cursortheme.mo share/locale/eo/LC_MESSAGES/kcm_desktoppaths.mo share/locale/eo/LC_MESSAGES/kcm_desktoptheme.mo share/locale/eo/LC_MESSAGES/kcm_fonts.mo share/locale/eo/LC_MESSAGES/kcm_launchfeedback.mo share/locale/eo/LC_MESSAGES/kcm_solid_actions.mo share/locale/eo/LC_MESSAGES/kcm_standard_actions.mo share/locale/eo/LC_MESSAGES/kcmaccess.mo share/locale/eo/LC_MESSAGES/kcmcolors.mo share/locale/eo/LC_MESSAGES/kcmformats.mo share/locale/eo/LC_MESSAGES/kcmkclock.mo share/locale/eo/LC_MESSAGES/kcmkeyboard.mo share/locale/eo/LC_MESSAGES/kcmkeys.mo share/locale/eo/LC_MESSAGES/kcmmouse.mo share/locale/eo/LC_MESSAGES/kcmsmserver.mo share/locale/eo/LC_MESSAGES/kcmstyle.mo share/locale/eo/LC_MESSAGES/kfontinst.mo share/locale/eo/LC_MESSAGES/knetattach5.mo share/locale/eo/LC_MESSAGES/krdb.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/eo/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/es/LC_MESSAGES/attica_kde_plugin.mo share/locale/es/LC_MESSAGES/kaccess.mo share/locale/es/LC_MESSAGES/kcm5_baloofile.mo share/locale/es/LC_MESSAGES/kcm5_componentchooser.mo share/locale/es/LC_MESSAGES/kcm5_device_automounter.mo share/locale/es/LC_MESSAGES/kcm5_emoticons.mo share/locale/es/LC_MESSAGES/kcm5_icons.mo share/locale/es/LC_MESSAGES/kcm5_joystick.mo share/locale/es/LC_MESSAGES/kcm5_kded.mo share/locale/es/LC_MESSAGES/kcm5_notify.mo share/locale/es/LC_MESSAGES/kcm5_phonon.mo share/locale/es/LC_MESSAGES/kcm_activities5.mo share/locale/es/LC_MESSAGES/kcm_autostart.mo share/locale/es/LC_MESSAGES/kcm_cursortheme.mo share/locale/es/LC_MESSAGES/kcm_desktoppaths.mo share/locale/es/LC_MESSAGES/kcm_desktoptheme.mo share/locale/es/LC_MESSAGES/kcm_fonts.mo share/locale/es/LC_MESSAGES/kcm_launchfeedback.mo share/locale/es/LC_MESSAGES/kcm_lookandfeel.mo share/locale/es/LC_MESSAGES/kcm_nightcolor.mo share/locale/es/LC_MESSAGES/kcm_search.mo share/locale/es/LC_MESSAGES/kcm_solid_actions.mo share/locale/es/LC_MESSAGES/kcm_splashscreen.mo share/locale/es/LC_MESSAGES/kcm_standard_actions.mo share/locale/es/LC_MESSAGES/kcm_touchpad.mo -share/locale/es/LC_MESSAGES/kcm_translations.mo share/locale/es/LC_MESSAGES/kcm_workspace.mo share/locale/es/LC_MESSAGES/kcmaccess.mo share/locale/es/LC_MESSAGES/kcmcolors.mo share/locale/es/LC_MESSAGES/kcmformats.mo share/locale/es/LC_MESSAGES/kcmkclock.mo share/locale/es/LC_MESSAGES/kcmkeyboard.mo share/locale/es/LC_MESSAGES/kcmkeys.mo share/locale/es/LC_MESSAGES/kcmmouse.mo share/locale/es/LC_MESSAGES/kcmqtquicksettings.mo share/locale/es/LC_MESSAGES/kcmsmserver.mo share/locale/es/LC_MESSAGES/kcmstyle.mo share/locale/es/LC_MESSAGES/kfontinst.mo share/locale/es/LC_MESSAGES/knetattach5.mo share/locale/es/LC_MESSAGES/krdb.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/es/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/es/LC_MESSAGES/plasma_runner_kwin.mo share/locale/es/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/es/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/es/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/es/LC_MESSAGES/plasmaactivitymanager.mo share/locale/et/LC_MESSAGES/attica_kde_plugin.mo share/locale/et/LC_MESSAGES/kaccess.mo share/locale/et/LC_MESSAGES/kcm5_baloofile.mo share/locale/et/LC_MESSAGES/kcm5_componentchooser.mo share/locale/et/LC_MESSAGES/kcm5_device_automounter.mo share/locale/et/LC_MESSAGES/kcm5_emoticons.mo share/locale/et/LC_MESSAGES/kcm5_icons.mo share/locale/et/LC_MESSAGES/kcm5_joystick.mo share/locale/et/LC_MESSAGES/kcm5_kded.mo share/locale/et/LC_MESSAGES/kcm5_notify.mo share/locale/et/LC_MESSAGES/kcm5_phonon.mo share/locale/et/LC_MESSAGES/kcm_activities5.mo share/locale/et/LC_MESSAGES/kcm_autostart.mo share/locale/et/LC_MESSAGES/kcm_cursortheme.mo share/locale/et/LC_MESSAGES/kcm_desktoppaths.mo share/locale/et/LC_MESSAGES/kcm_desktoptheme.mo share/locale/et/LC_MESSAGES/kcm_fonts.mo share/locale/et/LC_MESSAGES/kcm_launchfeedback.mo share/locale/et/LC_MESSAGES/kcm_lookandfeel.mo share/locale/et/LC_MESSAGES/kcm_search.mo share/locale/et/LC_MESSAGES/kcm_solid_actions.mo share/locale/et/LC_MESSAGES/kcm_splashscreen.mo share/locale/et/LC_MESSAGES/kcm_standard_actions.mo share/locale/et/LC_MESSAGES/kcm_touchpad.mo -share/locale/et/LC_MESSAGES/kcm_translations.mo share/locale/et/LC_MESSAGES/kcm_workspace.mo share/locale/et/LC_MESSAGES/kcmaccess.mo share/locale/et/LC_MESSAGES/kcmcolors.mo share/locale/et/LC_MESSAGES/kcmformats.mo share/locale/et/LC_MESSAGES/kcmkclock.mo share/locale/et/LC_MESSAGES/kcmkeyboard.mo share/locale/et/LC_MESSAGES/kcmkeys.mo share/locale/et/LC_MESSAGES/kcmmouse.mo share/locale/et/LC_MESSAGES/kcmsmserver.mo share/locale/et/LC_MESSAGES/kcmstyle.mo share/locale/et/LC_MESSAGES/kfontinst.mo share/locale/et/LC_MESSAGES/knetattach5.mo share/locale/et/LC_MESSAGES/krdb.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/et/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/et/LC_MESSAGES/plasma_runner_kwin.mo share/locale/et/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/et/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/et/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/et/LC_MESSAGES/plasmaactivitymanager.mo share/locale/eu/LC_MESSAGES/attica_kde_plugin.mo share/locale/eu/LC_MESSAGES/kaccess.mo share/locale/eu/LC_MESSAGES/kcm5_baloofile.mo share/locale/eu/LC_MESSAGES/kcm5_componentchooser.mo share/locale/eu/LC_MESSAGES/kcm5_device_automounter.mo share/locale/eu/LC_MESSAGES/kcm5_emoticons.mo share/locale/eu/LC_MESSAGES/kcm5_icons.mo share/locale/eu/LC_MESSAGES/kcm5_joystick.mo share/locale/eu/LC_MESSAGES/kcm5_kded.mo share/locale/eu/LC_MESSAGES/kcm5_notify.mo share/locale/eu/LC_MESSAGES/kcm5_phonon.mo share/locale/eu/LC_MESSAGES/kcm_activities5.mo share/locale/eu/LC_MESSAGES/kcm_autostart.mo share/locale/eu/LC_MESSAGES/kcm_cursortheme.mo share/locale/eu/LC_MESSAGES/kcm_desktoppaths.mo share/locale/eu/LC_MESSAGES/kcm_desktoptheme.mo share/locale/eu/LC_MESSAGES/kcm_fonts.mo share/locale/eu/LC_MESSAGES/kcm_launchfeedback.mo share/locale/eu/LC_MESSAGES/kcm_lookandfeel.mo share/locale/eu/LC_MESSAGES/kcm_nightcolor.mo share/locale/eu/LC_MESSAGES/kcm_search.mo share/locale/eu/LC_MESSAGES/kcm_solid_actions.mo share/locale/eu/LC_MESSAGES/kcm_splashscreen.mo share/locale/eu/LC_MESSAGES/kcm_standard_actions.mo share/locale/eu/LC_MESSAGES/kcm_touchpad.mo -share/locale/eu/LC_MESSAGES/kcm_translations.mo share/locale/eu/LC_MESSAGES/kcm_workspace.mo share/locale/eu/LC_MESSAGES/kcmaccess.mo share/locale/eu/LC_MESSAGES/kcmcolors.mo share/locale/eu/LC_MESSAGES/kcmformats.mo share/locale/eu/LC_MESSAGES/kcmkclock.mo share/locale/eu/LC_MESSAGES/kcmkeyboard.mo share/locale/eu/LC_MESSAGES/kcmkeys.mo share/locale/eu/LC_MESSAGES/kcmmouse.mo share/locale/eu/LC_MESSAGES/kcmqtquicksettings.mo share/locale/eu/LC_MESSAGES/kcmsmserver.mo share/locale/eu/LC_MESSAGES/kcmstyle.mo share/locale/eu/LC_MESSAGES/kfontinst.mo share/locale/eu/LC_MESSAGES/knetattach5.mo share/locale/eu/LC_MESSAGES/krdb.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/eu/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/eu/LC_MESSAGES/plasma_runner_kwin.mo share/locale/eu/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/eu/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/eu/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/eu/LC_MESSAGES/plasmaactivitymanager.mo share/locale/fa/LC_MESSAGES/attica_kde_plugin.mo share/locale/fa/LC_MESSAGES/kaccess.mo share/locale/fa/LC_MESSAGES/kcm5_componentchooser.mo share/locale/fa/LC_MESSAGES/kcm5_device_automounter.mo share/locale/fa/LC_MESSAGES/kcm5_emoticons.mo share/locale/fa/LC_MESSAGES/kcm5_icons.mo share/locale/fa/LC_MESSAGES/kcm5_joystick.mo share/locale/fa/LC_MESSAGES/kcm5_kded.mo share/locale/fa/LC_MESSAGES/kcm5_notify.mo share/locale/fa/LC_MESSAGES/kcm5_phonon.mo share/locale/fa/LC_MESSAGES/kcm_autostart.mo share/locale/fa/LC_MESSAGES/kcm_cursortheme.mo share/locale/fa/LC_MESSAGES/kcm_desktoppaths.mo share/locale/fa/LC_MESSAGES/kcm_desktoptheme.mo share/locale/fa/LC_MESSAGES/kcm_fonts.mo share/locale/fa/LC_MESSAGES/kcm_launchfeedback.mo share/locale/fa/LC_MESSAGES/kcm_solid_actions.mo share/locale/fa/LC_MESSAGES/kcm_standard_actions.mo share/locale/fa/LC_MESSAGES/kcmaccess.mo share/locale/fa/LC_MESSAGES/kcmcolors.mo share/locale/fa/LC_MESSAGES/kcmformats.mo share/locale/fa/LC_MESSAGES/kcmkclock.mo share/locale/fa/LC_MESSAGES/kcmkeyboard.mo share/locale/fa/LC_MESSAGES/kcmkeys.mo share/locale/fa/LC_MESSAGES/kcmmouse.mo share/locale/fa/LC_MESSAGES/kcmsmserver.mo share/locale/fa/LC_MESSAGES/kcmstyle.mo share/locale/fa/LC_MESSAGES/kfontinst.mo share/locale/fa/LC_MESSAGES/knetattach5.mo share/locale/fa/LC_MESSAGES/krdb.mo share/locale/fa/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/fa/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/fa/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/fa/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/fi/LC_MESSAGES/attica_kde_plugin.mo share/locale/fi/LC_MESSAGES/kaccess.mo share/locale/fi/LC_MESSAGES/kcm5_baloofile.mo share/locale/fi/LC_MESSAGES/kcm5_componentchooser.mo share/locale/fi/LC_MESSAGES/kcm5_device_automounter.mo share/locale/fi/LC_MESSAGES/kcm5_emoticons.mo share/locale/fi/LC_MESSAGES/kcm5_icons.mo share/locale/fi/LC_MESSAGES/kcm5_joystick.mo share/locale/fi/LC_MESSAGES/kcm5_kded.mo share/locale/fi/LC_MESSAGES/kcm5_notify.mo share/locale/fi/LC_MESSAGES/kcm5_phonon.mo share/locale/fi/LC_MESSAGES/kcm_activities5.mo share/locale/fi/LC_MESSAGES/kcm_autostart.mo share/locale/fi/LC_MESSAGES/kcm_cursortheme.mo share/locale/fi/LC_MESSAGES/kcm_desktoppaths.mo share/locale/fi/LC_MESSAGES/kcm_desktoptheme.mo share/locale/fi/LC_MESSAGES/kcm_fonts.mo share/locale/fi/LC_MESSAGES/kcm_launchfeedback.mo share/locale/fi/LC_MESSAGES/kcm_lookandfeel.mo share/locale/fi/LC_MESSAGES/kcm_nightcolor.mo share/locale/fi/LC_MESSAGES/kcm_search.mo share/locale/fi/LC_MESSAGES/kcm_solid_actions.mo share/locale/fi/LC_MESSAGES/kcm_splashscreen.mo share/locale/fi/LC_MESSAGES/kcm_standard_actions.mo share/locale/fi/LC_MESSAGES/kcm_touchpad.mo -share/locale/fi/LC_MESSAGES/kcm_translations.mo share/locale/fi/LC_MESSAGES/kcm_workspace.mo share/locale/fi/LC_MESSAGES/kcmaccess.mo share/locale/fi/LC_MESSAGES/kcmcolors.mo share/locale/fi/LC_MESSAGES/kcmformats.mo share/locale/fi/LC_MESSAGES/kcmkclock.mo share/locale/fi/LC_MESSAGES/kcmkeyboard.mo share/locale/fi/LC_MESSAGES/kcmkeys.mo share/locale/fi/LC_MESSAGES/kcmmouse.mo share/locale/fi/LC_MESSAGES/kcmqtquicksettings.mo share/locale/fi/LC_MESSAGES/kcmsmserver.mo share/locale/fi/LC_MESSAGES/kcmstyle.mo share/locale/fi/LC_MESSAGES/kfontinst.mo share/locale/fi/LC_MESSAGES/knetattach5.mo share/locale/fi/LC_MESSAGES/krdb.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/fi/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/fi/LC_MESSAGES/plasma_runner_kwin.mo share/locale/fi/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/fi/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/fi/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/fi/LC_MESSAGES/plasmaactivitymanager.mo share/locale/fr/LC_MESSAGES/attica_kde_plugin.mo share/locale/fr/LC_MESSAGES/kaccess.mo share/locale/fr/LC_MESSAGES/kcm5_baloofile.mo share/locale/fr/LC_MESSAGES/kcm5_componentchooser.mo share/locale/fr/LC_MESSAGES/kcm5_device_automounter.mo share/locale/fr/LC_MESSAGES/kcm5_emoticons.mo share/locale/fr/LC_MESSAGES/kcm5_icons.mo share/locale/fr/LC_MESSAGES/kcm5_joystick.mo share/locale/fr/LC_MESSAGES/kcm5_kded.mo share/locale/fr/LC_MESSAGES/kcm5_notify.mo share/locale/fr/LC_MESSAGES/kcm5_phonon.mo share/locale/fr/LC_MESSAGES/kcm_activities5.mo share/locale/fr/LC_MESSAGES/kcm_autostart.mo share/locale/fr/LC_MESSAGES/kcm_cursortheme.mo share/locale/fr/LC_MESSAGES/kcm_desktoppaths.mo share/locale/fr/LC_MESSAGES/kcm_desktoptheme.mo share/locale/fr/LC_MESSAGES/kcm_fonts.mo share/locale/fr/LC_MESSAGES/kcm_launchfeedback.mo share/locale/fr/LC_MESSAGES/kcm_lookandfeel.mo share/locale/fr/LC_MESSAGES/kcm_nightcolor.mo share/locale/fr/LC_MESSAGES/kcm_search.mo share/locale/fr/LC_MESSAGES/kcm_solid_actions.mo share/locale/fr/LC_MESSAGES/kcm_splashscreen.mo share/locale/fr/LC_MESSAGES/kcm_standard_actions.mo share/locale/fr/LC_MESSAGES/kcm_touchpad.mo -share/locale/fr/LC_MESSAGES/kcm_translations.mo share/locale/fr/LC_MESSAGES/kcm_workspace.mo share/locale/fr/LC_MESSAGES/kcmaccess.mo share/locale/fr/LC_MESSAGES/kcmcolors.mo share/locale/fr/LC_MESSAGES/kcmformats.mo share/locale/fr/LC_MESSAGES/kcmkclock.mo share/locale/fr/LC_MESSAGES/kcmkeyboard.mo share/locale/fr/LC_MESSAGES/kcmkeys.mo share/locale/fr/LC_MESSAGES/kcmmouse.mo share/locale/fr/LC_MESSAGES/kcmqtquicksettings.mo share/locale/fr/LC_MESSAGES/kcmsmserver.mo share/locale/fr/LC_MESSAGES/kcmstyle.mo share/locale/fr/LC_MESSAGES/kfontinst.mo share/locale/fr/LC_MESSAGES/knetattach5.mo share/locale/fr/LC_MESSAGES/krdb.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/fr/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/fr/LC_MESSAGES/plasma_runner_kwin.mo share/locale/fr/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/fr/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/fr/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/fr/LC_MESSAGES/plasmaactivitymanager.mo share/locale/fy/LC_MESSAGES/attica_kde_plugin.mo share/locale/fy/LC_MESSAGES/kaccess.mo share/locale/fy/LC_MESSAGES/kcm5_componentchooser.mo share/locale/fy/LC_MESSAGES/kcm5_emoticons.mo share/locale/fy/LC_MESSAGES/kcm5_icons.mo share/locale/fy/LC_MESSAGES/kcm5_joystick.mo share/locale/fy/LC_MESSAGES/kcm5_kded.mo share/locale/fy/LC_MESSAGES/kcm5_notify.mo share/locale/fy/LC_MESSAGES/kcm5_phonon.mo share/locale/fy/LC_MESSAGES/kcm_autostart.mo share/locale/fy/LC_MESSAGES/kcm_cursortheme.mo share/locale/fy/LC_MESSAGES/kcm_desktoppaths.mo share/locale/fy/LC_MESSAGES/kcm_desktoptheme.mo share/locale/fy/LC_MESSAGES/kcm_fonts.mo share/locale/fy/LC_MESSAGES/kcm_launchfeedback.mo share/locale/fy/LC_MESSAGES/kcm_solid_actions.mo share/locale/fy/LC_MESSAGES/kcm_standard_actions.mo share/locale/fy/LC_MESSAGES/kcmaccess.mo share/locale/fy/LC_MESSAGES/kcmcolors.mo share/locale/fy/LC_MESSAGES/kcmformats.mo share/locale/fy/LC_MESSAGES/kcmkclock.mo share/locale/fy/LC_MESSAGES/kcmkeyboard.mo share/locale/fy/LC_MESSAGES/kcmkeys.mo share/locale/fy/LC_MESSAGES/kcmmouse.mo share/locale/fy/LC_MESSAGES/kcmsmserver.mo share/locale/fy/LC_MESSAGES/kcmstyle.mo share/locale/fy/LC_MESSAGES/kfontinst.mo share/locale/fy/LC_MESSAGES/knetattach5.mo share/locale/fy/LC_MESSAGES/krdb.mo share/locale/fy/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/fy/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/fy/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/fy/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ga/LC_MESSAGES/attica_kde_plugin.mo share/locale/ga/LC_MESSAGES/kaccess.mo share/locale/ga/LC_MESSAGES/kcm5_componentchooser.mo share/locale/ga/LC_MESSAGES/kcm5_device_automounter.mo share/locale/ga/LC_MESSAGES/kcm5_emoticons.mo share/locale/ga/LC_MESSAGES/kcm5_icons.mo share/locale/ga/LC_MESSAGES/kcm5_joystick.mo share/locale/ga/LC_MESSAGES/kcm5_kded.mo share/locale/ga/LC_MESSAGES/kcm5_notify.mo share/locale/ga/LC_MESSAGES/kcm5_phonon.mo share/locale/ga/LC_MESSAGES/kcm_autostart.mo share/locale/ga/LC_MESSAGES/kcm_cursortheme.mo share/locale/ga/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ga/LC_MESSAGES/kcm_desktoptheme.mo share/locale/ga/LC_MESSAGES/kcm_fonts.mo share/locale/ga/LC_MESSAGES/kcm_launchfeedback.mo share/locale/ga/LC_MESSAGES/kcm_solid_actions.mo share/locale/ga/LC_MESSAGES/kcm_standard_actions.mo share/locale/ga/LC_MESSAGES/kcmaccess.mo share/locale/ga/LC_MESSAGES/kcmcolors.mo share/locale/ga/LC_MESSAGES/kcmformats.mo share/locale/ga/LC_MESSAGES/kcmkclock.mo share/locale/ga/LC_MESSAGES/kcmkeyboard.mo share/locale/ga/LC_MESSAGES/kcmkeys.mo share/locale/ga/LC_MESSAGES/kcmmouse.mo share/locale/ga/LC_MESSAGES/kcmsmserver.mo share/locale/ga/LC_MESSAGES/kcmstyle.mo share/locale/ga/LC_MESSAGES/kfontinst.mo share/locale/ga/LC_MESSAGES/knetattach5.mo share/locale/ga/LC_MESSAGES/krdb.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/ga/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/gl/LC_MESSAGES/attica_kde_plugin.mo share/locale/gl/LC_MESSAGES/kaccess.mo share/locale/gl/LC_MESSAGES/kcm5_baloofile.mo share/locale/gl/LC_MESSAGES/kcm5_componentchooser.mo share/locale/gl/LC_MESSAGES/kcm5_device_automounter.mo share/locale/gl/LC_MESSAGES/kcm5_emoticons.mo share/locale/gl/LC_MESSAGES/kcm5_icons.mo share/locale/gl/LC_MESSAGES/kcm5_joystick.mo share/locale/gl/LC_MESSAGES/kcm5_kded.mo share/locale/gl/LC_MESSAGES/kcm5_notify.mo share/locale/gl/LC_MESSAGES/kcm5_phonon.mo share/locale/gl/LC_MESSAGES/kcm_activities5.mo share/locale/gl/LC_MESSAGES/kcm_autostart.mo share/locale/gl/LC_MESSAGES/kcm_cursortheme.mo share/locale/gl/LC_MESSAGES/kcm_desktoppaths.mo share/locale/gl/LC_MESSAGES/kcm_desktoptheme.mo share/locale/gl/LC_MESSAGES/kcm_fonts.mo share/locale/gl/LC_MESSAGES/kcm_launchfeedback.mo share/locale/gl/LC_MESSAGES/kcm_lookandfeel.mo share/locale/gl/LC_MESSAGES/kcm_nightcolor.mo share/locale/gl/LC_MESSAGES/kcm_search.mo share/locale/gl/LC_MESSAGES/kcm_solid_actions.mo share/locale/gl/LC_MESSAGES/kcm_splashscreen.mo share/locale/gl/LC_MESSAGES/kcm_standard_actions.mo share/locale/gl/LC_MESSAGES/kcm_touchpad.mo -share/locale/gl/LC_MESSAGES/kcm_translations.mo share/locale/gl/LC_MESSAGES/kcm_workspace.mo share/locale/gl/LC_MESSAGES/kcmaccess.mo share/locale/gl/LC_MESSAGES/kcmcolors.mo share/locale/gl/LC_MESSAGES/kcmformats.mo share/locale/gl/LC_MESSAGES/kcmkclock.mo share/locale/gl/LC_MESSAGES/kcmkeyboard.mo share/locale/gl/LC_MESSAGES/kcmkeys.mo share/locale/gl/LC_MESSAGES/kcmmouse.mo share/locale/gl/LC_MESSAGES/kcmqtquicksettings.mo share/locale/gl/LC_MESSAGES/kcmsmserver.mo share/locale/gl/LC_MESSAGES/kcmstyle.mo share/locale/gl/LC_MESSAGES/kfontinst.mo share/locale/gl/LC_MESSAGES/knetattach5.mo share/locale/gl/LC_MESSAGES/krdb.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo +share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo -share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/gl/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/gl/LC_MESSAGES/plasma_runner_kwin.mo share/locale/gl/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/gl/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/gl/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/gl/LC_MESSAGES/plasmaactivitymanager.mo share/locale/gu/LC_MESSAGES/attica_kde_plugin.mo share/locale/gu/LC_MESSAGES/kaccess.mo share/locale/gu/LC_MESSAGES/kcm5_componentchooser.mo share/locale/gu/LC_MESSAGES/kcm5_device_automounter.mo share/locale/gu/LC_MESSAGES/kcm5_emoticons.mo share/locale/gu/LC_MESSAGES/kcm5_icons.mo share/locale/gu/LC_MESSAGES/kcm5_joystick.mo share/locale/gu/LC_MESSAGES/kcm5_kded.mo share/locale/gu/LC_MESSAGES/kcm5_notify.mo share/locale/gu/LC_MESSAGES/kcm5_phonon.mo share/locale/gu/LC_MESSAGES/kcm_autostart.mo share/locale/gu/LC_MESSAGES/kcm_cursortheme.mo share/locale/gu/LC_MESSAGES/kcm_desktoppaths.mo share/locale/gu/LC_MESSAGES/kcm_desktoptheme.mo share/locale/gu/LC_MESSAGES/kcm_fonts.mo share/locale/gu/LC_MESSAGES/kcm_launchfeedback.mo share/locale/gu/LC_MESSAGES/kcm_solid_actions.mo share/locale/gu/LC_MESSAGES/kcm_standard_actions.mo share/locale/gu/LC_MESSAGES/kcmaccess.mo share/locale/gu/LC_MESSAGES/kcmcolors.mo share/locale/gu/LC_MESSAGES/kcmformats.mo share/locale/gu/LC_MESSAGES/kcmkclock.mo share/locale/gu/LC_MESSAGES/kcmkeyboard.mo share/locale/gu/LC_MESSAGES/kcmkeys.mo share/locale/gu/LC_MESSAGES/kcmmouse.mo share/locale/gu/LC_MESSAGES/kcmsmserver.mo share/locale/gu/LC_MESSAGES/kcmstyle.mo share/locale/gu/LC_MESSAGES/kfontinst.mo share/locale/gu/LC_MESSAGES/knetattach5.mo share/locale/gu/LC_MESSAGES/krdb.mo share/locale/gu/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/gu/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/gu/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/gu/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/gu/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/gu/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/he/LC_MESSAGES/attica_kde_plugin.mo share/locale/he/LC_MESSAGES/kaccess.mo share/locale/he/LC_MESSAGES/kcm5_baloofile.mo share/locale/he/LC_MESSAGES/kcm5_componentchooser.mo share/locale/he/LC_MESSAGES/kcm5_device_automounter.mo share/locale/he/LC_MESSAGES/kcm5_emoticons.mo share/locale/he/LC_MESSAGES/kcm5_icons.mo share/locale/he/LC_MESSAGES/kcm5_joystick.mo share/locale/he/LC_MESSAGES/kcm5_kded.mo share/locale/he/LC_MESSAGES/kcm5_notify.mo share/locale/he/LC_MESSAGES/kcm5_phonon.mo share/locale/he/LC_MESSAGES/kcm_activities5.mo share/locale/he/LC_MESSAGES/kcm_autostart.mo share/locale/he/LC_MESSAGES/kcm_cursortheme.mo share/locale/he/LC_MESSAGES/kcm_desktoppaths.mo share/locale/he/LC_MESSAGES/kcm_desktoptheme.mo share/locale/he/LC_MESSAGES/kcm_fonts.mo share/locale/he/LC_MESSAGES/kcm_launchfeedback.mo share/locale/he/LC_MESSAGES/kcm_lookandfeel.mo share/locale/he/LC_MESSAGES/kcm_search.mo share/locale/he/LC_MESSAGES/kcm_solid_actions.mo share/locale/he/LC_MESSAGES/kcm_splashscreen.mo share/locale/he/LC_MESSAGES/kcm_standard_actions.mo share/locale/he/LC_MESSAGES/kcm_touchpad.mo -share/locale/he/LC_MESSAGES/kcm_translations.mo share/locale/he/LC_MESSAGES/kcm_workspace.mo share/locale/he/LC_MESSAGES/kcmaccess.mo share/locale/he/LC_MESSAGES/kcmcolors.mo share/locale/he/LC_MESSAGES/kcmformats.mo share/locale/he/LC_MESSAGES/kcmkclock.mo share/locale/he/LC_MESSAGES/kcmkeyboard.mo share/locale/he/LC_MESSAGES/kcmkeys.mo share/locale/he/LC_MESSAGES/kcmmouse.mo share/locale/he/LC_MESSAGES/kcmsmserver.mo share/locale/he/LC_MESSAGES/kcmstyle.mo share/locale/he/LC_MESSAGES/kfontinst.mo share/locale/he/LC_MESSAGES/knetattach5.mo share/locale/he/LC_MESSAGES/krdb.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/he/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/he/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/he/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/he/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/he/LC_MESSAGES/plasmaactivitymanager.mo share/locale/hi/LC_MESSAGES/attica_kde_plugin.mo share/locale/hi/LC_MESSAGES/kaccess.mo share/locale/hi/LC_MESSAGES/kcm5_componentchooser.mo share/locale/hi/LC_MESSAGES/kcm5_device_automounter.mo share/locale/hi/LC_MESSAGES/kcm5_emoticons.mo share/locale/hi/LC_MESSAGES/kcm5_icons.mo share/locale/hi/LC_MESSAGES/kcm5_joystick.mo share/locale/hi/LC_MESSAGES/kcm5_kded.mo share/locale/hi/LC_MESSAGES/kcm5_notify.mo share/locale/hi/LC_MESSAGES/kcm5_phonon.mo share/locale/hi/LC_MESSAGES/kcm_autostart.mo share/locale/hi/LC_MESSAGES/kcm_cursortheme.mo share/locale/hi/LC_MESSAGES/kcm_desktoppaths.mo share/locale/hi/LC_MESSAGES/kcm_desktoptheme.mo share/locale/hi/LC_MESSAGES/kcm_fonts.mo share/locale/hi/LC_MESSAGES/kcm_launchfeedback.mo share/locale/hi/LC_MESSAGES/kcm_solid_actions.mo share/locale/hi/LC_MESSAGES/kcmaccess.mo share/locale/hi/LC_MESSAGES/kcmcolors.mo share/locale/hi/LC_MESSAGES/kcmformats.mo share/locale/hi/LC_MESSAGES/kcmkclock.mo share/locale/hi/LC_MESSAGES/kcmkeyboard.mo share/locale/hi/LC_MESSAGES/kcmkeys.mo share/locale/hi/LC_MESSAGES/kcmmouse.mo share/locale/hi/LC_MESSAGES/kcmsmserver.mo share/locale/hi/LC_MESSAGES/kcmstyle.mo share/locale/hi/LC_MESSAGES/kfontinst.mo share/locale/hi/LC_MESSAGES/knetattach5.mo share/locale/hi/LC_MESSAGES/krdb.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/hi/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/hne/LC_MESSAGES/kaccess.mo share/locale/hne/LC_MESSAGES/kcm5_componentchooser.mo share/locale/hne/LC_MESSAGES/kcm5_emoticons.mo share/locale/hne/LC_MESSAGES/kcm5_icons.mo share/locale/hne/LC_MESSAGES/kcm5_joystick.mo share/locale/hne/LC_MESSAGES/kcm5_kded.mo share/locale/hne/LC_MESSAGES/kcm5_notify.mo share/locale/hne/LC_MESSAGES/kcm5_phonon.mo share/locale/hne/LC_MESSAGES/kcm_autostart.mo share/locale/hne/LC_MESSAGES/kcm_cursortheme.mo share/locale/hne/LC_MESSAGES/kcm_desktoppaths.mo share/locale/hne/LC_MESSAGES/kcm_fonts.mo share/locale/hne/LC_MESSAGES/kcm_launchfeedback.mo share/locale/hne/LC_MESSAGES/kcmaccess.mo share/locale/hne/LC_MESSAGES/kcmcolors.mo share/locale/hne/LC_MESSAGES/kcmformats.mo share/locale/hne/LC_MESSAGES/kcmkclock.mo share/locale/hne/LC_MESSAGES/kcmkeyboard.mo share/locale/hne/LC_MESSAGES/kcmkeys.mo share/locale/hne/LC_MESSAGES/kcmmouse.mo share/locale/hne/LC_MESSAGES/kcmsmserver.mo share/locale/hne/LC_MESSAGES/kcmstyle.mo share/locale/hne/LC_MESSAGES/kfontinst.mo share/locale/hne/LC_MESSAGES/knetattach5.mo share/locale/hne/LC_MESSAGES/krdb.mo share/locale/hne/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/hne/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/hne/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/hne/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/hr/LC_MESSAGES/attica_kde_plugin.mo share/locale/hr/LC_MESSAGES/kaccess.mo share/locale/hr/LC_MESSAGES/kcm5_componentchooser.mo share/locale/hr/LC_MESSAGES/kcm5_device_automounter.mo share/locale/hr/LC_MESSAGES/kcm5_emoticons.mo share/locale/hr/LC_MESSAGES/kcm5_icons.mo share/locale/hr/LC_MESSAGES/kcm5_joystick.mo share/locale/hr/LC_MESSAGES/kcm5_kded.mo share/locale/hr/LC_MESSAGES/kcm5_notify.mo share/locale/hr/LC_MESSAGES/kcm5_phonon.mo share/locale/hr/LC_MESSAGES/kcm_autostart.mo share/locale/hr/LC_MESSAGES/kcm_cursortheme.mo share/locale/hr/LC_MESSAGES/kcm_desktoppaths.mo share/locale/hr/LC_MESSAGES/kcm_desktoptheme.mo share/locale/hr/LC_MESSAGES/kcm_fonts.mo share/locale/hr/LC_MESSAGES/kcm_launchfeedback.mo share/locale/hr/LC_MESSAGES/kcm_solid_actions.mo share/locale/hr/LC_MESSAGES/kcm_standard_actions.mo share/locale/hr/LC_MESSAGES/kcmaccess.mo share/locale/hr/LC_MESSAGES/kcmcolors.mo share/locale/hr/LC_MESSAGES/kcmformats.mo share/locale/hr/LC_MESSAGES/kcmkclock.mo share/locale/hr/LC_MESSAGES/kcmkeyboard.mo share/locale/hr/LC_MESSAGES/kcmkeys.mo share/locale/hr/LC_MESSAGES/kcmmouse.mo share/locale/hr/LC_MESSAGES/kcmsmserver.mo share/locale/hr/LC_MESSAGES/kcmstyle.mo share/locale/hr/LC_MESSAGES/kfontinst.mo share/locale/hr/LC_MESSAGES/knetattach5.mo share/locale/hr/LC_MESSAGES/krdb.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/hr/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/hsb/LC_MESSAGES/kaccess.mo share/locale/hsb/LC_MESSAGES/kcm5_componentchooser.mo share/locale/hsb/LC_MESSAGES/kcm5_emoticons.mo share/locale/hsb/LC_MESSAGES/kcm5_icons.mo share/locale/hsb/LC_MESSAGES/kcm5_joystick.mo share/locale/hsb/LC_MESSAGES/kcm5_kded.mo share/locale/hsb/LC_MESSAGES/kcm5_notify.mo share/locale/hsb/LC_MESSAGES/kcm5_phonon.mo share/locale/hsb/LC_MESSAGES/kcm_autostart.mo share/locale/hsb/LC_MESSAGES/kcm_cursortheme.mo share/locale/hsb/LC_MESSAGES/kcm_desktoppaths.mo share/locale/hsb/LC_MESSAGES/kcm_desktoptheme.mo share/locale/hsb/LC_MESSAGES/kcm_fonts.mo share/locale/hsb/LC_MESSAGES/kcm_launchfeedback.mo share/locale/hsb/LC_MESSAGES/kcm_standard_actions.mo share/locale/hsb/LC_MESSAGES/kcmaccess.mo share/locale/hsb/LC_MESSAGES/kcmcolors.mo share/locale/hsb/LC_MESSAGES/kcmformats.mo share/locale/hsb/LC_MESSAGES/kcmkclock.mo share/locale/hsb/LC_MESSAGES/kcmkeyboard.mo share/locale/hsb/LC_MESSAGES/kcmkeys.mo share/locale/hsb/LC_MESSAGES/kcmmouse.mo share/locale/hsb/LC_MESSAGES/kcmsmserver.mo share/locale/hsb/LC_MESSAGES/kcmstyle.mo share/locale/hsb/LC_MESSAGES/kfontinst.mo share/locale/hsb/LC_MESSAGES/knetattach5.mo share/locale/hsb/LC_MESSAGES/krdb.mo share/locale/hsb/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/hsb/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/hsb/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/hsb/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/hu/LC_MESSAGES/attica_kde_plugin.mo share/locale/hu/LC_MESSAGES/kaccess.mo share/locale/hu/LC_MESSAGES/kcm5_baloofile.mo share/locale/hu/LC_MESSAGES/kcm5_componentchooser.mo share/locale/hu/LC_MESSAGES/kcm5_device_automounter.mo share/locale/hu/LC_MESSAGES/kcm5_emoticons.mo share/locale/hu/LC_MESSAGES/kcm5_icons.mo share/locale/hu/LC_MESSAGES/kcm5_joystick.mo share/locale/hu/LC_MESSAGES/kcm5_kded.mo share/locale/hu/LC_MESSAGES/kcm5_notify.mo share/locale/hu/LC_MESSAGES/kcm5_phonon.mo share/locale/hu/LC_MESSAGES/kcm_activities5.mo share/locale/hu/LC_MESSAGES/kcm_autostart.mo share/locale/hu/LC_MESSAGES/kcm_cursortheme.mo share/locale/hu/LC_MESSAGES/kcm_desktoppaths.mo share/locale/hu/LC_MESSAGES/kcm_desktoptheme.mo share/locale/hu/LC_MESSAGES/kcm_fonts.mo share/locale/hu/LC_MESSAGES/kcm_launchfeedback.mo share/locale/hu/LC_MESSAGES/kcm_lookandfeel.mo share/locale/hu/LC_MESSAGES/kcm_search.mo share/locale/hu/LC_MESSAGES/kcm_solid_actions.mo share/locale/hu/LC_MESSAGES/kcm_splashscreen.mo share/locale/hu/LC_MESSAGES/kcm_standard_actions.mo share/locale/hu/LC_MESSAGES/kcm_touchpad.mo -share/locale/hu/LC_MESSAGES/kcm_translations.mo share/locale/hu/LC_MESSAGES/kcm_workspace.mo share/locale/hu/LC_MESSAGES/kcmaccess.mo share/locale/hu/LC_MESSAGES/kcmcolors.mo share/locale/hu/LC_MESSAGES/kcmformats.mo share/locale/hu/LC_MESSAGES/kcmkclock.mo share/locale/hu/LC_MESSAGES/kcmkeyboard.mo share/locale/hu/LC_MESSAGES/kcmkeys.mo share/locale/hu/LC_MESSAGES/kcmmouse.mo share/locale/hu/LC_MESSAGES/kcmsmserver.mo share/locale/hu/LC_MESSAGES/kcmstyle.mo share/locale/hu/LC_MESSAGES/kfontinst.mo share/locale/hu/LC_MESSAGES/knetattach5.mo share/locale/hu/LC_MESSAGES/krdb.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo +share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/hu/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/hu/LC_MESSAGES/plasma_runner_kwin.mo share/locale/hu/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/hu/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/hu/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/hu/LC_MESSAGES/plasmaactivitymanager.mo share/locale/hy/LC_MESSAGES/kfontinst.mo share/locale/ia/LC_MESSAGES/attica_kde_plugin.mo share/locale/ia/LC_MESSAGES/kaccess.mo share/locale/ia/LC_MESSAGES/kcm5_baloofile.mo share/locale/ia/LC_MESSAGES/kcm5_componentchooser.mo share/locale/ia/LC_MESSAGES/kcm5_device_automounter.mo share/locale/ia/LC_MESSAGES/kcm5_emoticons.mo share/locale/ia/LC_MESSAGES/kcm5_icons.mo share/locale/ia/LC_MESSAGES/kcm5_joystick.mo share/locale/ia/LC_MESSAGES/kcm5_kded.mo share/locale/ia/LC_MESSAGES/kcm5_notify.mo share/locale/ia/LC_MESSAGES/kcm5_phonon.mo share/locale/ia/LC_MESSAGES/kcm_activities5.mo share/locale/ia/LC_MESSAGES/kcm_autostart.mo share/locale/ia/LC_MESSAGES/kcm_cursortheme.mo share/locale/ia/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ia/LC_MESSAGES/kcm_desktoptheme.mo share/locale/ia/LC_MESSAGES/kcm_fonts.mo share/locale/ia/LC_MESSAGES/kcm_launchfeedback.mo share/locale/ia/LC_MESSAGES/kcm_lookandfeel.mo share/locale/ia/LC_MESSAGES/kcm_search.mo share/locale/ia/LC_MESSAGES/kcm_solid_actions.mo share/locale/ia/LC_MESSAGES/kcm_splashscreen.mo share/locale/ia/LC_MESSAGES/kcm_standard_actions.mo share/locale/ia/LC_MESSAGES/kcm_touchpad.mo -share/locale/ia/LC_MESSAGES/kcm_translations.mo share/locale/ia/LC_MESSAGES/kcm_workspace.mo share/locale/ia/LC_MESSAGES/kcmaccess.mo share/locale/ia/LC_MESSAGES/kcmcolors.mo share/locale/ia/LC_MESSAGES/kcmformats.mo share/locale/ia/LC_MESSAGES/kcmkclock.mo share/locale/ia/LC_MESSAGES/kcmkeyboard.mo share/locale/ia/LC_MESSAGES/kcmkeys.mo share/locale/ia/LC_MESSAGES/kcmmouse.mo share/locale/ia/LC_MESSAGES/kcmsmserver.mo share/locale/ia/LC_MESSAGES/kcmstyle.mo share/locale/ia/LC_MESSAGES/kfontinst.mo share/locale/ia/LC_MESSAGES/knetattach5.mo share/locale/ia/LC_MESSAGES/krdb.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/ia/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/ia/LC_MESSAGES/plasma_runner_kwin.mo share/locale/ia/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/ia/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/ia/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/ia/LC_MESSAGES/plasmaactivitymanager.mo share/locale/id/LC_MESSAGES/attica_kde_plugin.mo share/locale/id/LC_MESSAGES/kaccess.mo share/locale/id/LC_MESSAGES/kcm5_baloofile.mo share/locale/id/LC_MESSAGES/kcm5_componentchooser.mo share/locale/id/LC_MESSAGES/kcm5_device_automounter.mo share/locale/id/LC_MESSAGES/kcm5_emoticons.mo share/locale/id/LC_MESSAGES/kcm5_icons.mo share/locale/id/LC_MESSAGES/kcm5_joystick.mo share/locale/id/LC_MESSAGES/kcm5_kded.mo share/locale/id/LC_MESSAGES/kcm5_notify.mo share/locale/id/LC_MESSAGES/kcm5_phonon.mo share/locale/id/LC_MESSAGES/kcm_activities5.mo share/locale/id/LC_MESSAGES/kcm_autostart.mo share/locale/id/LC_MESSAGES/kcm_cursortheme.mo share/locale/id/LC_MESSAGES/kcm_desktoppaths.mo share/locale/id/LC_MESSAGES/kcm_desktoptheme.mo share/locale/id/LC_MESSAGES/kcm_fonts.mo share/locale/id/LC_MESSAGES/kcm_launchfeedback.mo share/locale/id/LC_MESSAGES/kcm_lookandfeel.mo share/locale/id/LC_MESSAGES/kcm_nightcolor.mo share/locale/id/LC_MESSAGES/kcm_search.mo share/locale/id/LC_MESSAGES/kcm_solid_actions.mo share/locale/id/LC_MESSAGES/kcm_splashscreen.mo share/locale/id/LC_MESSAGES/kcm_standard_actions.mo share/locale/id/LC_MESSAGES/kcm_touchpad.mo -share/locale/id/LC_MESSAGES/kcm_translations.mo share/locale/id/LC_MESSAGES/kcm_workspace.mo share/locale/id/LC_MESSAGES/kcmaccess.mo share/locale/id/LC_MESSAGES/kcmcolors.mo share/locale/id/LC_MESSAGES/kcmformats.mo share/locale/id/LC_MESSAGES/kcmkclock.mo share/locale/id/LC_MESSAGES/kcmkeyboard.mo share/locale/id/LC_MESSAGES/kcmkeys.mo share/locale/id/LC_MESSAGES/kcmmouse.mo share/locale/id/LC_MESSAGES/kcmqtquicksettings.mo share/locale/id/LC_MESSAGES/kcmsmserver.mo share/locale/id/LC_MESSAGES/kcmstyle.mo share/locale/id/LC_MESSAGES/kfontinst.mo share/locale/id/LC_MESSAGES/knetattach5.mo share/locale/id/LC_MESSAGES/krdb.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/id/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/id/LC_MESSAGES/plasma_runner_kwin.mo share/locale/id/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/id/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/id/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/id/LC_MESSAGES/plasmaactivitymanager.mo share/locale/is/LC_MESSAGES/attica_kde_plugin.mo share/locale/is/LC_MESSAGES/kaccess.mo share/locale/is/LC_MESSAGES/kcm5_componentchooser.mo share/locale/is/LC_MESSAGES/kcm5_device_automounter.mo share/locale/is/LC_MESSAGES/kcm5_emoticons.mo share/locale/is/LC_MESSAGES/kcm5_icons.mo share/locale/is/LC_MESSAGES/kcm5_joystick.mo share/locale/is/LC_MESSAGES/kcm5_kded.mo share/locale/is/LC_MESSAGES/kcm5_notify.mo share/locale/is/LC_MESSAGES/kcm5_phonon.mo share/locale/is/LC_MESSAGES/kcm_autostart.mo share/locale/is/LC_MESSAGES/kcm_cursortheme.mo share/locale/is/LC_MESSAGES/kcm_desktoppaths.mo share/locale/is/LC_MESSAGES/kcm_desktoptheme.mo share/locale/is/LC_MESSAGES/kcm_fonts.mo share/locale/is/LC_MESSAGES/kcm_launchfeedback.mo share/locale/is/LC_MESSAGES/kcm_solid_actions.mo share/locale/is/LC_MESSAGES/kcm_standard_actions.mo share/locale/is/LC_MESSAGES/kcmaccess.mo share/locale/is/LC_MESSAGES/kcmcolors.mo share/locale/is/LC_MESSAGES/kcmformats.mo share/locale/is/LC_MESSAGES/kcmkclock.mo share/locale/is/LC_MESSAGES/kcmkeyboard.mo share/locale/is/LC_MESSAGES/kcmkeys.mo share/locale/is/LC_MESSAGES/kcmmouse.mo share/locale/is/LC_MESSAGES/kcmsmserver.mo share/locale/is/LC_MESSAGES/kcmstyle.mo share/locale/is/LC_MESSAGES/kfontinst.mo share/locale/is/LC_MESSAGES/knetattach5.mo share/locale/is/LC_MESSAGES/krdb.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/is/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/it/LC_MESSAGES/attica_kde_plugin.mo share/locale/it/LC_MESSAGES/kaccess.mo share/locale/it/LC_MESSAGES/kcm5_baloofile.mo share/locale/it/LC_MESSAGES/kcm5_componentchooser.mo share/locale/it/LC_MESSAGES/kcm5_device_automounter.mo share/locale/it/LC_MESSAGES/kcm5_emoticons.mo share/locale/it/LC_MESSAGES/kcm5_icons.mo share/locale/it/LC_MESSAGES/kcm5_joystick.mo share/locale/it/LC_MESSAGES/kcm5_kded.mo share/locale/it/LC_MESSAGES/kcm5_notify.mo share/locale/it/LC_MESSAGES/kcm5_phonon.mo share/locale/it/LC_MESSAGES/kcm_activities5.mo share/locale/it/LC_MESSAGES/kcm_autostart.mo share/locale/it/LC_MESSAGES/kcm_cursortheme.mo share/locale/it/LC_MESSAGES/kcm_desktoppaths.mo share/locale/it/LC_MESSAGES/kcm_desktoptheme.mo share/locale/it/LC_MESSAGES/kcm_fonts.mo share/locale/it/LC_MESSAGES/kcm_launchfeedback.mo share/locale/it/LC_MESSAGES/kcm_lookandfeel.mo share/locale/it/LC_MESSAGES/kcm_nightcolor.mo share/locale/it/LC_MESSAGES/kcm_search.mo share/locale/it/LC_MESSAGES/kcm_solid_actions.mo share/locale/it/LC_MESSAGES/kcm_splashscreen.mo share/locale/it/LC_MESSAGES/kcm_standard_actions.mo share/locale/it/LC_MESSAGES/kcm_touchpad.mo -share/locale/it/LC_MESSAGES/kcm_translations.mo share/locale/it/LC_MESSAGES/kcm_workspace.mo share/locale/it/LC_MESSAGES/kcmaccess.mo share/locale/it/LC_MESSAGES/kcmcolors.mo share/locale/it/LC_MESSAGES/kcmformats.mo share/locale/it/LC_MESSAGES/kcmkclock.mo share/locale/it/LC_MESSAGES/kcmkeyboard.mo share/locale/it/LC_MESSAGES/kcmkeys.mo share/locale/it/LC_MESSAGES/kcmmouse.mo share/locale/it/LC_MESSAGES/kcmqtquicksettings.mo share/locale/it/LC_MESSAGES/kcmsmserver.mo share/locale/it/LC_MESSAGES/kcmstyle.mo share/locale/it/LC_MESSAGES/kfontinst.mo share/locale/it/LC_MESSAGES/knetattach5.mo share/locale/it/LC_MESSAGES/krdb.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/it/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/it/LC_MESSAGES/plasma_runner_kwin.mo share/locale/it/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/it/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/it/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/it/LC_MESSAGES/plasmaactivitymanager.mo share/locale/ja/LC_MESSAGES/attica_kde_plugin.mo share/locale/ja/LC_MESSAGES/kaccess.mo share/locale/ja/LC_MESSAGES/kcm5_baloofile.mo share/locale/ja/LC_MESSAGES/kcm5_componentchooser.mo share/locale/ja/LC_MESSAGES/kcm5_device_automounter.mo share/locale/ja/LC_MESSAGES/kcm5_emoticons.mo share/locale/ja/LC_MESSAGES/kcm5_icons.mo share/locale/ja/LC_MESSAGES/kcm5_joystick.mo share/locale/ja/LC_MESSAGES/kcm5_kded.mo share/locale/ja/LC_MESSAGES/kcm5_notify.mo share/locale/ja/LC_MESSAGES/kcm5_phonon.mo share/locale/ja/LC_MESSAGES/kcm_activities5.mo share/locale/ja/LC_MESSAGES/kcm_autostart.mo share/locale/ja/LC_MESSAGES/kcm_cursortheme.mo share/locale/ja/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ja/LC_MESSAGES/kcm_desktoptheme.mo share/locale/ja/LC_MESSAGES/kcm_fonts.mo share/locale/ja/LC_MESSAGES/kcm_launchfeedback.mo share/locale/ja/LC_MESSAGES/kcm_lookandfeel.mo share/locale/ja/LC_MESSAGES/kcm_nightcolor.mo share/locale/ja/LC_MESSAGES/kcm_search.mo share/locale/ja/LC_MESSAGES/kcm_solid_actions.mo share/locale/ja/LC_MESSAGES/kcm_splashscreen.mo share/locale/ja/LC_MESSAGES/kcm_standard_actions.mo share/locale/ja/LC_MESSAGES/kcm_touchpad.mo -share/locale/ja/LC_MESSAGES/kcm_translations.mo share/locale/ja/LC_MESSAGES/kcm_workspace.mo share/locale/ja/LC_MESSAGES/kcmaccess.mo share/locale/ja/LC_MESSAGES/kcmcolors.mo share/locale/ja/LC_MESSAGES/kcmformats.mo share/locale/ja/LC_MESSAGES/kcmkclock.mo share/locale/ja/LC_MESSAGES/kcmkeyboard.mo share/locale/ja/LC_MESSAGES/kcmkeys.mo share/locale/ja/LC_MESSAGES/kcmmouse.mo share/locale/ja/LC_MESSAGES/kcmsmserver.mo share/locale/ja/LC_MESSAGES/kcmstyle.mo share/locale/ja/LC_MESSAGES/kfontinst.mo share/locale/ja/LC_MESSAGES/knetattach5.mo share/locale/ja/LC_MESSAGES/krdb.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/ja/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/ja/LC_MESSAGES/plasma_runner_kwin.mo share/locale/ja/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/ja/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/ja/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/ja/LC_MESSAGES/plasmaactivitymanager.mo share/locale/kk/LC_MESSAGES/attica_kde_plugin.mo share/locale/kk/LC_MESSAGES/kaccess.mo share/locale/kk/LC_MESSAGES/kcm5_componentchooser.mo share/locale/kk/LC_MESSAGES/kcm5_device_automounter.mo share/locale/kk/LC_MESSAGES/kcm5_emoticons.mo share/locale/kk/LC_MESSAGES/kcm5_icons.mo share/locale/kk/LC_MESSAGES/kcm5_joystick.mo share/locale/kk/LC_MESSAGES/kcm5_kded.mo share/locale/kk/LC_MESSAGES/kcm5_notify.mo share/locale/kk/LC_MESSAGES/kcm5_phonon.mo share/locale/kk/LC_MESSAGES/kcm_autostart.mo share/locale/kk/LC_MESSAGES/kcm_cursortheme.mo share/locale/kk/LC_MESSAGES/kcm_desktoppaths.mo share/locale/kk/LC_MESSAGES/kcm_desktoptheme.mo share/locale/kk/LC_MESSAGES/kcm_fonts.mo share/locale/kk/LC_MESSAGES/kcm_launchfeedback.mo share/locale/kk/LC_MESSAGES/kcm_solid_actions.mo share/locale/kk/LC_MESSAGES/kcm_standard_actions.mo share/locale/kk/LC_MESSAGES/kcmaccess.mo share/locale/kk/LC_MESSAGES/kcmcolors.mo share/locale/kk/LC_MESSAGES/kcmformats.mo share/locale/kk/LC_MESSAGES/kcmkclock.mo share/locale/kk/LC_MESSAGES/kcmkeyboard.mo share/locale/kk/LC_MESSAGES/kcmkeys.mo share/locale/kk/LC_MESSAGES/kcmmouse.mo share/locale/kk/LC_MESSAGES/kcmsmserver.mo share/locale/kk/LC_MESSAGES/kcmstyle.mo share/locale/kk/LC_MESSAGES/kfontinst.mo share/locale/kk/LC_MESSAGES/knetattach5.mo share/locale/kk/LC_MESSAGES/krdb.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/kk/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/kk/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/km/LC_MESSAGES/attica_kde_plugin.mo share/locale/km/LC_MESSAGES/kaccess.mo share/locale/km/LC_MESSAGES/kcm5_componentchooser.mo share/locale/km/LC_MESSAGES/kcm5_device_automounter.mo share/locale/km/LC_MESSAGES/kcm5_emoticons.mo share/locale/km/LC_MESSAGES/kcm5_icons.mo share/locale/km/LC_MESSAGES/kcm5_joystick.mo share/locale/km/LC_MESSAGES/kcm5_kded.mo share/locale/km/LC_MESSAGES/kcm5_notify.mo share/locale/km/LC_MESSAGES/kcm5_phonon.mo share/locale/km/LC_MESSAGES/kcm_autostart.mo share/locale/km/LC_MESSAGES/kcm_cursortheme.mo share/locale/km/LC_MESSAGES/kcm_desktoppaths.mo share/locale/km/LC_MESSAGES/kcm_desktoptheme.mo share/locale/km/LC_MESSAGES/kcm_fonts.mo share/locale/km/LC_MESSAGES/kcm_launchfeedback.mo share/locale/km/LC_MESSAGES/kcm_solid_actions.mo share/locale/km/LC_MESSAGES/kcm_standard_actions.mo share/locale/km/LC_MESSAGES/kcmaccess.mo share/locale/km/LC_MESSAGES/kcmcolors.mo share/locale/km/LC_MESSAGES/kcmformats.mo share/locale/km/LC_MESSAGES/kcmkclock.mo share/locale/km/LC_MESSAGES/kcmkeyboard.mo share/locale/km/LC_MESSAGES/kcmkeys.mo share/locale/km/LC_MESSAGES/kcmmouse.mo share/locale/km/LC_MESSAGES/kcmsmserver.mo share/locale/km/LC_MESSAGES/kcmstyle.mo share/locale/km/LC_MESSAGES/kfontinst.mo share/locale/km/LC_MESSAGES/knetattach5.mo share/locale/km/LC_MESSAGES/krdb.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/km/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/kn/LC_MESSAGES/attica_kde_plugin.mo share/locale/kn/LC_MESSAGES/kaccess.mo share/locale/kn/LC_MESSAGES/kcm5_componentchooser.mo share/locale/kn/LC_MESSAGES/kcm5_device_automounter.mo share/locale/kn/LC_MESSAGES/kcm5_emoticons.mo share/locale/kn/LC_MESSAGES/kcm5_icons.mo share/locale/kn/LC_MESSAGES/kcm5_joystick.mo share/locale/kn/LC_MESSAGES/kcm5_kded.mo share/locale/kn/LC_MESSAGES/kcm5_notify.mo share/locale/kn/LC_MESSAGES/kcm5_phonon.mo share/locale/kn/LC_MESSAGES/kcm_autostart.mo share/locale/kn/LC_MESSAGES/kcm_cursortheme.mo share/locale/kn/LC_MESSAGES/kcm_desktoppaths.mo share/locale/kn/LC_MESSAGES/kcm_desktoptheme.mo share/locale/kn/LC_MESSAGES/kcm_fonts.mo share/locale/kn/LC_MESSAGES/kcm_launchfeedback.mo share/locale/kn/LC_MESSAGES/kcm_standard_actions.mo share/locale/kn/LC_MESSAGES/kcmaccess.mo share/locale/kn/LC_MESSAGES/kcmcolors.mo share/locale/kn/LC_MESSAGES/kcmformats.mo share/locale/kn/LC_MESSAGES/kcmkclock.mo share/locale/kn/LC_MESSAGES/kcmkeyboard.mo share/locale/kn/LC_MESSAGES/kcmkeys.mo share/locale/kn/LC_MESSAGES/kcmmouse.mo share/locale/kn/LC_MESSAGES/kcmsmserver.mo share/locale/kn/LC_MESSAGES/kcmstyle.mo share/locale/kn/LC_MESSAGES/kfontinst.mo share/locale/kn/LC_MESSAGES/knetattach5.mo share/locale/kn/LC_MESSAGES/krdb.mo share/locale/kn/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/kn/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/kn/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/kn/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/kn/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/kn/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/ko/LC_MESSAGES/attica_kde_plugin.mo share/locale/ko/LC_MESSAGES/kaccess.mo share/locale/ko/LC_MESSAGES/kcm5_baloofile.mo share/locale/ko/LC_MESSAGES/kcm5_componentchooser.mo share/locale/ko/LC_MESSAGES/kcm5_device_automounter.mo share/locale/ko/LC_MESSAGES/kcm5_emoticons.mo share/locale/ko/LC_MESSAGES/kcm5_icons.mo share/locale/ko/LC_MESSAGES/kcm5_joystick.mo share/locale/ko/LC_MESSAGES/kcm5_kded.mo share/locale/ko/LC_MESSAGES/kcm5_notify.mo share/locale/ko/LC_MESSAGES/kcm5_phonon.mo share/locale/ko/LC_MESSAGES/kcm_activities5.mo share/locale/ko/LC_MESSAGES/kcm_autostart.mo share/locale/ko/LC_MESSAGES/kcm_cursortheme.mo share/locale/ko/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ko/LC_MESSAGES/kcm_desktoptheme.mo share/locale/ko/LC_MESSAGES/kcm_fonts.mo share/locale/ko/LC_MESSAGES/kcm_launchfeedback.mo share/locale/ko/LC_MESSAGES/kcm_lookandfeel.mo share/locale/ko/LC_MESSAGES/kcm_nightcolor.mo share/locale/ko/LC_MESSAGES/kcm_search.mo share/locale/ko/LC_MESSAGES/kcm_solid_actions.mo share/locale/ko/LC_MESSAGES/kcm_splashscreen.mo share/locale/ko/LC_MESSAGES/kcm_standard_actions.mo share/locale/ko/LC_MESSAGES/kcm_touchpad.mo -share/locale/ko/LC_MESSAGES/kcm_translations.mo share/locale/ko/LC_MESSAGES/kcm_workspace.mo share/locale/ko/LC_MESSAGES/kcmaccess.mo share/locale/ko/LC_MESSAGES/kcmcolors.mo share/locale/ko/LC_MESSAGES/kcmformats.mo share/locale/ko/LC_MESSAGES/kcmkclock.mo share/locale/ko/LC_MESSAGES/kcmkeyboard.mo share/locale/ko/LC_MESSAGES/kcmkeys.mo share/locale/ko/LC_MESSAGES/kcmmouse.mo share/locale/ko/LC_MESSAGES/kcmqtquicksettings.mo share/locale/ko/LC_MESSAGES/kcmsmserver.mo share/locale/ko/LC_MESSAGES/kcmstyle.mo share/locale/ko/LC_MESSAGES/kfontinst.mo share/locale/ko/LC_MESSAGES/knetattach5.mo share/locale/ko/LC_MESSAGES/krdb.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/ko/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/ko/LC_MESSAGES/plasma_runner_kwin.mo share/locale/ko/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/ko/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/ko/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/ko/LC_MESSAGES/plasmaactivitymanager.mo share/locale/ku/LC_MESSAGES/kaccess.mo share/locale/ku/LC_MESSAGES/kcm5_componentchooser.mo share/locale/ku/LC_MESSAGES/kcm5_emoticons.mo share/locale/ku/LC_MESSAGES/kcm5_icons.mo share/locale/ku/LC_MESSAGES/kcm5_joystick.mo share/locale/ku/LC_MESSAGES/kcm5_kded.mo share/locale/ku/LC_MESSAGES/kcm5_notify.mo share/locale/ku/LC_MESSAGES/kcm5_phonon.mo share/locale/ku/LC_MESSAGES/kcm_autostart.mo share/locale/ku/LC_MESSAGES/kcm_cursortheme.mo share/locale/ku/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ku/LC_MESSAGES/kcm_desktoptheme.mo share/locale/ku/LC_MESSAGES/kcm_fonts.mo share/locale/ku/LC_MESSAGES/kcm_launchfeedback.mo share/locale/ku/LC_MESSAGES/kcm_standard_actions.mo share/locale/ku/LC_MESSAGES/kcmaccess.mo share/locale/ku/LC_MESSAGES/kcmcolors.mo share/locale/ku/LC_MESSAGES/kcmformats.mo share/locale/ku/LC_MESSAGES/kcmkclock.mo share/locale/ku/LC_MESSAGES/kcmkeyboard.mo share/locale/ku/LC_MESSAGES/kcmkeys.mo share/locale/ku/LC_MESSAGES/kcmmouse.mo share/locale/ku/LC_MESSAGES/kcmsmserver.mo share/locale/ku/LC_MESSAGES/kcmstyle.mo share/locale/ku/LC_MESSAGES/kfontinst.mo share/locale/ku/LC_MESSAGES/knetattach5.mo share/locale/ku/LC_MESSAGES/krdb.mo share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/lt/LC_MESSAGES/attica_kde_plugin.mo share/locale/lt/LC_MESSAGES/kaccess.mo share/locale/lt/LC_MESSAGES/kcm5_baloofile.mo share/locale/lt/LC_MESSAGES/kcm5_componentchooser.mo share/locale/lt/LC_MESSAGES/kcm5_emoticons.mo share/locale/lt/LC_MESSAGES/kcm5_icons.mo share/locale/lt/LC_MESSAGES/kcm5_joystick.mo share/locale/lt/LC_MESSAGES/kcm5_kded.mo share/locale/lt/LC_MESSAGES/kcm5_notify.mo share/locale/lt/LC_MESSAGES/kcm5_phonon.mo share/locale/lt/LC_MESSAGES/kcm_activities5.mo share/locale/lt/LC_MESSAGES/kcm_autostart.mo share/locale/lt/LC_MESSAGES/kcm_cursortheme.mo share/locale/lt/LC_MESSAGES/kcm_desktoppaths.mo share/locale/lt/LC_MESSAGES/kcm_desktoptheme.mo share/locale/lt/LC_MESSAGES/kcm_fonts.mo share/locale/lt/LC_MESSAGES/kcm_launchfeedback.mo share/locale/lt/LC_MESSAGES/kcm_lookandfeel.mo share/locale/lt/LC_MESSAGES/kcm_search.mo share/locale/lt/LC_MESSAGES/kcm_solid_actions.mo share/locale/lt/LC_MESSAGES/kcm_splashscreen.mo share/locale/lt/LC_MESSAGES/kcm_standard_actions.mo share/locale/lt/LC_MESSAGES/kcm_touchpad.mo -share/locale/lt/LC_MESSAGES/kcm_translations.mo share/locale/lt/LC_MESSAGES/kcm_workspace.mo share/locale/lt/LC_MESSAGES/kcmaccess.mo share/locale/lt/LC_MESSAGES/kcmcolors.mo share/locale/lt/LC_MESSAGES/kcmformats.mo share/locale/lt/LC_MESSAGES/kcmkclock.mo share/locale/lt/LC_MESSAGES/kcmkeyboard.mo share/locale/lt/LC_MESSAGES/kcmkeys.mo share/locale/lt/LC_MESSAGES/kcmmouse.mo share/locale/lt/LC_MESSAGES/kcmsmserver.mo share/locale/lt/LC_MESSAGES/kcmstyle.mo share/locale/lt/LC_MESSAGES/kfontinst.mo share/locale/lt/LC_MESSAGES/knetattach5.mo share/locale/lt/LC_MESSAGES/krdb.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/lt/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/lt/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/lt/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/lt/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/lv/LC_MESSAGES/attica_kde_plugin.mo share/locale/lv/LC_MESSAGES/kaccess.mo share/locale/lv/LC_MESSAGES/kcm5_componentchooser.mo share/locale/lv/LC_MESSAGES/kcm5_device_automounter.mo share/locale/lv/LC_MESSAGES/kcm5_emoticons.mo share/locale/lv/LC_MESSAGES/kcm5_icons.mo share/locale/lv/LC_MESSAGES/kcm5_joystick.mo share/locale/lv/LC_MESSAGES/kcm5_kded.mo share/locale/lv/LC_MESSAGES/kcm5_notify.mo share/locale/lv/LC_MESSAGES/kcm5_phonon.mo share/locale/lv/LC_MESSAGES/kcm_autostart.mo share/locale/lv/LC_MESSAGES/kcm_cursortheme.mo share/locale/lv/LC_MESSAGES/kcm_desktoppaths.mo share/locale/lv/LC_MESSAGES/kcm_desktoptheme.mo share/locale/lv/LC_MESSAGES/kcm_fonts.mo share/locale/lv/LC_MESSAGES/kcm_launchfeedback.mo share/locale/lv/LC_MESSAGES/kcm_solid_actions.mo share/locale/lv/LC_MESSAGES/kcm_standard_actions.mo share/locale/lv/LC_MESSAGES/kcmaccess.mo share/locale/lv/LC_MESSAGES/kcmcolors.mo share/locale/lv/LC_MESSAGES/kcmformats.mo share/locale/lv/LC_MESSAGES/kcmkclock.mo share/locale/lv/LC_MESSAGES/kcmkeyboard.mo share/locale/lv/LC_MESSAGES/kcmkeys.mo share/locale/lv/LC_MESSAGES/kcmmouse.mo share/locale/lv/LC_MESSAGES/kcmsmserver.mo share/locale/lv/LC_MESSAGES/kcmstyle.mo share/locale/lv/LC_MESSAGES/kfontinst.mo share/locale/lv/LC_MESSAGES/knetattach5.mo share/locale/lv/LC_MESSAGES/krdb.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo +share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.panel.mo +share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo +share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/lv/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/mai/LC_MESSAGES/attica_kde_plugin.mo share/locale/mai/LC_MESSAGES/kaccess.mo share/locale/mai/LC_MESSAGES/kcm5_componentchooser.mo share/locale/mai/LC_MESSAGES/kcm5_device_automounter.mo share/locale/mai/LC_MESSAGES/kcm5_emoticons.mo share/locale/mai/LC_MESSAGES/kcm5_icons.mo share/locale/mai/LC_MESSAGES/kcm5_joystick.mo share/locale/mai/LC_MESSAGES/kcm5_kded.mo share/locale/mai/LC_MESSAGES/kcm5_notify.mo share/locale/mai/LC_MESSAGES/kcm5_phonon.mo share/locale/mai/LC_MESSAGES/kcm_autostart.mo share/locale/mai/LC_MESSAGES/kcm_cursortheme.mo share/locale/mai/LC_MESSAGES/kcm_desktoppaths.mo share/locale/mai/LC_MESSAGES/kcm_desktoptheme.mo share/locale/mai/LC_MESSAGES/kcm_fonts.mo share/locale/mai/LC_MESSAGES/kcm_launchfeedback.mo share/locale/mai/LC_MESSAGES/kcm_solid_actions.mo share/locale/mai/LC_MESSAGES/kcm_standard_actions.mo share/locale/mai/LC_MESSAGES/kcmaccess.mo share/locale/mai/LC_MESSAGES/kcmcolors.mo share/locale/mai/LC_MESSAGES/kcmformats.mo share/locale/mai/LC_MESSAGES/kcmkclock.mo share/locale/mai/LC_MESSAGES/kcmkeyboard.mo share/locale/mai/LC_MESSAGES/kcmkeys.mo share/locale/mai/LC_MESSAGES/kcmmouse.mo share/locale/mai/LC_MESSAGES/kcmsmserver.mo share/locale/mai/LC_MESSAGES/kcmstyle.mo share/locale/mai/LC_MESSAGES/kfontinst.mo share/locale/mai/LC_MESSAGES/knetattach5.mo share/locale/mai/LC_MESSAGES/krdb.mo share/locale/mai/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/mai/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/mai/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/mai/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/mai/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/mai/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/mk/LC_MESSAGES/kaccess.mo share/locale/mk/LC_MESSAGES/kcm5_componentchooser.mo share/locale/mk/LC_MESSAGES/kcm5_emoticons.mo share/locale/mk/LC_MESSAGES/kcm5_icons.mo share/locale/mk/LC_MESSAGES/kcm5_joystick.mo share/locale/mk/LC_MESSAGES/kcm5_kded.mo share/locale/mk/LC_MESSAGES/kcm5_notify.mo share/locale/mk/LC_MESSAGES/kcm5_phonon.mo share/locale/mk/LC_MESSAGES/kcm_autostart.mo share/locale/mk/LC_MESSAGES/kcm_cursortheme.mo share/locale/mk/LC_MESSAGES/kcm_desktoppaths.mo share/locale/mk/LC_MESSAGES/kcm_desktoptheme.mo share/locale/mk/LC_MESSAGES/kcm_fonts.mo share/locale/mk/LC_MESSAGES/kcm_launchfeedback.mo share/locale/mk/LC_MESSAGES/kcm_standard_actions.mo share/locale/mk/LC_MESSAGES/kcmaccess.mo share/locale/mk/LC_MESSAGES/kcmcolors.mo share/locale/mk/LC_MESSAGES/kcmformats.mo share/locale/mk/LC_MESSAGES/kcmkclock.mo share/locale/mk/LC_MESSAGES/kcmkeyboard.mo share/locale/mk/LC_MESSAGES/kcmkeys.mo share/locale/mk/LC_MESSAGES/kcmmouse.mo share/locale/mk/LC_MESSAGES/kcmsmserver.mo share/locale/mk/LC_MESSAGES/kcmstyle.mo share/locale/mk/LC_MESSAGES/kfontinst.mo share/locale/mk/LC_MESSAGES/knetattach5.mo share/locale/mk/LC_MESSAGES/krdb.mo share/locale/mk/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/mk/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/mk/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/mk/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ml/LC_MESSAGES/attica_kde_plugin.mo share/locale/ml/LC_MESSAGES/kaccess.mo share/locale/ml/LC_MESSAGES/kcm5_componentchooser.mo share/locale/ml/LC_MESSAGES/kcm5_emoticons.mo share/locale/ml/LC_MESSAGES/kcm5_icons.mo share/locale/ml/LC_MESSAGES/kcm5_joystick.mo share/locale/ml/LC_MESSAGES/kcm5_kded.mo share/locale/ml/LC_MESSAGES/kcm5_notify.mo share/locale/ml/LC_MESSAGES/kcm5_phonon.mo share/locale/ml/LC_MESSAGES/kcm_autostart.mo share/locale/ml/LC_MESSAGES/kcm_cursortheme.mo share/locale/ml/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ml/LC_MESSAGES/kcm_desktoptheme.mo share/locale/ml/LC_MESSAGES/kcm_fonts.mo share/locale/ml/LC_MESSAGES/kcm_launchfeedback.mo share/locale/ml/LC_MESSAGES/kcm_solid_actions.mo share/locale/ml/LC_MESSAGES/kcm_standard_actions.mo share/locale/ml/LC_MESSAGES/kcmaccess.mo share/locale/ml/LC_MESSAGES/kcmcolors.mo share/locale/ml/LC_MESSAGES/kcmformats.mo share/locale/ml/LC_MESSAGES/kcmkclock.mo share/locale/ml/LC_MESSAGES/kcmkeyboard.mo share/locale/ml/LC_MESSAGES/kcmkeys.mo share/locale/ml/LC_MESSAGES/kcmmouse.mo share/locale/ml/LC_MESSAGES/kcmsmserver.mo share/locale/ml/LC_MESSAGES/kcmstyle.mo share/locale/ml/LC_MESSAGES/kfontinst.mo share/locale/ml/LC_MESSAGES/knetattach5.mo share/locale/ml/LC_MESSAGES/krdb.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/mr/LC_MESSAGES/attica_kde_plugin.mo share/locale/mr/LC_MESSAGES/kaccess.mo share/locale/mr/LC_MESSAGES/kcm5_componentchooser.mo share/locale/mr/LC_MESSAGES/kcm5_device_automounter.mo share/locale/mr/LC_MESSAGES/kcm5_emoticons.mo share/locale/mr/LC_MESSAGES/kcm5_icons.mo share/locale/mr/LC_MESSAGES/kcm5_joystick.mo share/locale/mr/LC_MESSAGES/kcm5_kded.mo share/locale/mr/LC_MESSAGES/kcm5_notify.mo share/locale/mr/LC_MESSAGES/kcm5_phonon.mo share/locale/mr/LC_MESSAGES/kcm_autostart.mo share/locale/mr/LC_MESSAGES/kcm_cursortheme.mo share/locale/mr/LC_MESSAGES/kcm_desktoppaths.mo share/locale/mr/LC_MESSAGES/kcm_desktoptheme.mo share/locale/mr/LC_MESSAGES/kcm_fonts.mo share/locale/mr/LC_MESSAGES/kcm_launchfeedback.mo share/locale/mr/LC_MESSAGES/kcm_solid_actions.mo share/locale/mr/LC_MESSAGES/kcm_standard_actions.mo share/locale/mr/LC_MESSAGES/kcmaccess.mo share/locale/mr/LC_MESSAGES/kcmcolors.mo share/locale/mr/LC_MESSAGES/kcmformats.mo share/locale/mr/LC_MESSAGES/kcmkclock.mo share/locale/mr/LC_MESSAGES/kcmkeyboard.mo share/locale/mr/LC_MESSAGES/kcmkeys.mo share/locale/mr/LC_MESSAGES/kcmmouse.mo share/locale/mr/LC_MESSAGES/kcmsmserver.mo share/locale/mr/LC_MESSAGES/kcmstyle.mo share/locale/mr/LC_MESSAGES/kfontinst.mo share/locale/mr/LC_MESSAGES/knetattach5.mo share/locale/mr/LC_MESSAGES/krdb.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/mr/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/mr/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/ms/LC_MESSAGES/attica_kde_plugin.mo share/locale/ms/LC_MESSAGES/kaccess.mo share/locale/ms/LC_MESSAGES/kcm5_componentchooser.mo share/locale/ms/LC_MESSAGES/kcm5_device_automounter.mo share/locale/ms/LC_MESSAGES/kcm5_emoticons.mo share/locale/ms/LC_MESSAGES/kcm5_icons.mo share/locale/ms/LC_MESSAGES/kcm5_joystick.mo share/locale/ms/LC_MESSAGES/kcm5_kded.mo share/locale/ms/LC_MESSAGES/kcm5_notify.mo share/locale/ms/LC_MESSAGES/kcm5_phonon.mo share/locale/ms/LC_MESSAGES/kcm_autostart.mo share/locale/ms/LC_MESSAGES/kcm_cursortheme.mo share/locale/ms/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ms/LC_MESSAGES/kcm_desktoptheme.mo share/locale/ms/LC_MESSAGES/kcm_fonts.mo share/locale/ms/LC_MESSAGES/kcm_launchfeedback.mo share/locale/ms/LC_MESSAGES/kcm_solid_actions.mo share/locale/ms/LC_MESSAGES/kcm_standard_actions.mo share/locale/ms/LC_MESSAGES/kcmaccess.mo share/locale/ms/LC_MESSAGES/kcmcolors.mo share/locale/ms/LC_MESSAGES/kcmformats.mo share/locale/ms/LC_MESSAGES/kcmkclock.mo share/locale/ms/LC_MESSAGES/kcmkeyboard.mo share/locale/ms/LC_MESSAGES/kcmkeys.mo share/locale/ms/LC_MESSAGES/kcmmouse.mo share/locale/ms/LC_MESSAGES/kcmsmserver.mo share/locale/ms/LC_MESSAGES/kcmstyle.mo share/locale/ms/LC_MESSAGES/kfontinst.mo share/locale/ms/LC_MESSAGES/knetattach5.mo share/locale/ms/LC_MESSAGES/krdb.mo share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/ms/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/nb/LC_MESSAGES/attica_kde_plugin.mo share/locale/nb/LC_MESSAGES/kaccess.mo share/locale/nb/LC_MESSAGES/kcm5_baloofile.mo share/locale/nb/LC_MESSAGES/kcm5_componentchooser.mo share/locale/nb/LC_MESSAGES/kcm5_device_automounter.mo share/locale/nb/LC_MESSAGES/kcm5_emoticons.mo share/locale/nb/LC_MESSAGES/kcm5_icons.mo share/locale/nb/LC_MESSAGES/kcm5_joystick.mo share/locale/nb/LC_MESSAGES/kcm5_kded.mo share/locale/nb/LC_MESSAGES/kcm5_notify.mo share/locale/nb/LC_MESSAGES/kcm5_phonon.mo share/locale/nb/LC_MESSAGES/kcm_autostart.mo share/locale/nb/LC_MESSAGES/kcm_cursortheme.mo share/locale/nb/LC_MESSAGES/kcm_desktoppaths.mo share/locale/nb/LC_MESSAGES/kcm_desktoptheme.mo share/locale/nb/LC_MESSAGES/kcm_fonts.mo share/locale/nb/LC_MESSAGES/kcm_launchfeedback.mo share/locale/nb/LC_MESSAGES/kcm_lookandfeel.mo share/locale/nb/LC_MESSAGES/kcm_search.mo share/locale/nb/LC_MESSAGES/kcm_solid_actions.mo share/locale/nb/LC_MESSAGES/kcm_splashscreen.mo share/locale/nb/LC_MESSAGES/kcm_standard_actions.mo share/locale/nb/LC_MESSAGES/kcm_touchpad.mo -share/locale/nb/LC_MESSAGES/kcm_translations.mo share/locale/nb/LC_MESSAGES/kcm_workspace.mo share/locale/nb/LC_MESSAGES/kcmaccess.mo share/locale/nb/LC_MESSAGES/kcmcolors.mo share/locale/nb/LC_MESSAGES/kcmformats.mo share/locale/nb/LC_MESSAGES/kcmkclock.mo share/locale/nb/LC_MESSAGES/kcmkeyboard.mo share/locale/nb/LC_MESSAGES/kcmkeys.mo share/locale/nb/LC_MESSAGES/kcmmouse.mo share/locale/nb/LC_MESSAGES/kcmsmserver.mo share/locale/nb/LC_MESSAGES/kcmstyle.mo share/locale/nb/LC_MESSAGES/kfontinst.mo share/locale/nb/LC_MESSAGES/knetattach5.mo share/locale/nb/LC_MESSAGES/krdb.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/nb/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/nb/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/nb/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/nds/LC_MESSAGES/attica_kde_plugin.mo share/locale/nds/LC_MESSAGES/kaccess.mo share/locale/nds/LC_MESSAGES/kcm5_baloofile.mo share/locale/nds/LC_MESSAGES/kcm5_componentchooser.mo share/locale/nds/LC_MESSAGES/kcm5_device_automounter.mo share/locale/nds/LC_MESSAGES/kcm5_emoticons.mo share/locale/nds/LC_MESSAGES/kcm5_icons.mo share/locale/nds/LC_MESSAGES/kcm5_joystick.mo share/locale/nds/LC_MESSAGES/kcm5_kded.mo share/locale/nds/LC_MESSAGES/kcm5_notify.mo share/locale/nds/LC_MESSAGES/kcm5_phonon.mo share/locale/nds/LC_MESSAGES/kcm_autostart.mo share/locale/nds/LC_MESSAGES/kcm_cursortheme.mo share/locale/nds/LC_MESSAGES/kcm_desktoppaths.mo share/locale/nds/LC_MESSAGES/kcm_desktoptheme.mo share/locale/nds/LC_MESSAGES/kcm_fonts.mo share/locale/nds/LC_MESSAGES/kcm_launchfeedback.mo share/locale/nds/LC_MESSAGES/kcm_lookandfeel.mo share/locale/nds/LC_MESSAGES/kcm_search.mo share/locale/nds/LC_MESSAGES/kcm_solid_actions.mo share/locale/nds/LC_MESSAGES/kcm_splashscreen.mo share/locale/nds/LC_MESSAGES/kcm_standard_actions.mo -share/locale/nds/LC_MESSAGES/kcm_translations.mo share/locale/nds/LC_MESSAGES/kcm_workspace.mo share/locale/nds/LC_MESSAGES/kcmaccess.mo share/locale/nds/LC_MESSAGES/kcmcolors.mo share/locale/nds/LC_MESSAGES/kcmformats.mo share/locale/nds/LC_MESSAGES/kcmkclock.mo share/locale/nds/LC_MESSAGES/kcmkeyboard.mo share/locale/nds/LC_MESSAGES/kcmkeys.mo share/locale/nds/LC_MESSAGES/kcmmouse.mo share/locale/nds/LC_MESSAGES/kcmsmserver.mo share/locale/nds/LC_MESSAGES/kcmstyle.mo share/locale/nds/LC_MESSAGES/kfontinst.mo share/locale/nds/LC_MESSAGES/knetattach5.mo share/locale/nds/LC_MESSAGES/krdb.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/nds/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/nds/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/nds/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/ne/LC_MESSAGES/kaccess.mo share/locale/ne/LC_MESSAGES/kcm5_componentchooser.mo share/locale/ne/LC_MESSAGES/kcm5_icons.mo share/locale/ne/LC_MESSAGES/kcm5_joystick.mo share/locale/ne/LC_MESSAGES/kcm5_kded.mo share/locale/ne/LC_MESSAGES/kcm5_notify.mo share/locale/ne/LC_MESSAGES/kcm5_phonon.mo share/locale/ne/LC_MESSAGES/kcm_cursortheme.mo share/locale/ne/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ne/LC_MESSAGES/kcm_fonts.mo share/locale/ne/LC_MESSAGES/kcm_launchfeedback.mo share/locale/ne/LC_MESSAGES/kcmaccess.mo share/locale/ne/LC_MESSAGES/kcmcolors.mo share/locale/ne/LC_MESSAGES/kcmformats.mo share/locale/ne/LC_MESSAGES/kcmkclock.mo share/locale/ne/LC_MESSAGES/kcmkeyboard.mo share/locale/ne/LC_MESSAGES/kcmkeys.mo share/locale/ne/LC_MESSAGES/kcmmouse.mo share/locale/ne/LC_MESSAGES/kcmsmserver.mo share/locale/ne/LC_MESSAGES/kcmstyle.mo share/locale/ne/LC_MESSAGES/kfontinst.mo share/locale/ne/LC_MESSAGES/knetattach5.mo share/locale/ne/LC_MESSAGES/krdb.mo share/locale/ne/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ne/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/nl/LC_MESSAGES/attica_kde_plugin.mo share/locale/nl/LC_MESSAGES/kaccess.mo share/locale/nl/LC_MESSAGES/kcm5_baloofile.mo share/locale/nl/LC_MESSAGES/kcm5_componentchooser.mo share/locale/nl/LC_MESSAGES/kcm5_device_automounter.mo share/locale/nl/LC_MESSAGES/kcm5_emoticons.mo share/locale/nl/LC_MESSAGES/kcm5_icons.mo share/locale/nl/LC_MESSAGES/kcm5_joystick.mo share/locale/nl/LC_MESSAGES/kcm5_kded.mo share/locale/nl/LC_MESSAGES/kcm5_notify.mo share/locale/nl/LC_MESSAGES/kcm5_phonon.mo share/locale/nl/LC_MESSAGES/kcm_activities5.mo share/locale/nl/LC_MESSAGES/kcm_autostart.mo share/locale/nl/LC_MESSAGES/kcm_cursortheme.mo share/locale/nl/LC_MESSAGES/kcm_desktoppaths.mo share/locale/nl/LC_MESSAGES/kcm_desktoptheme.mo share/locale/nl/LC_MESSAGES/kcm_fonts.mo share/locale/nl/LC_MESSAGES/kcm_launchfeedback.mo share/locale/nl/LC_MESSAGES/kcm_lookandfeel.mo share/locale/nl/LC_MESSAGES/kcm_nightcolor.mo share/locale/nl/LC_MESSAGES/kcm_search.mo share/locale/nl/LC_MESSAGES/kcm_solid_actions.mo share/locale/nl/LC_MESSAGES/kcm_splashscreen.mo share/locale/nl/LC_MESSAGES/kcm_standard_actions.mo share/locale/nl/LC_MESSAGES/kcm_touchpad.mo -share/locale/nl/LC_MESSAGES/kcm_translations.mo share/locale/nl/LC_MESSAGES/kcm_workspace.mo share/locale/nl/LC_MESSAGES/kcmaccess.mo share/locale/nl/LC_MESSAGES/kcmcolors.mo share/locale/nl/LC_MESSAGES/kcmformats.mo share/locale/nl/LC_MESSAGES/kcmkclock.mo share/locale/nl/LC_MESSAGES/kcmkeyboard.mo share/locale/nl/LC_MESSAGES/kcmkeys.mo share/locale/nl/LC_MESSAGES/kcmmouse.mo share/locale/nl/LC_MESSAGES/kcmqtquicksettings.mo share/locale/nl/LC_MESSAGES/kcmsmserver.mo share/locale/nl/LC_MESSAGES/kcmstyle.mo share/locale/nl/LC_MESSAGES/kfontinst.mo share/locale/nl/LC_MESSAGES/knetattach5.mo share/locale/nl/LC_MESSAGES/krdb.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/nl/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/nl/LC_MESSAGES/plasma_runner_kwin.mo share/locale/nl/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/nl/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/nl/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/nl/LC_MESSAGES/plasmaactivitymanager.mo share/locale/nn/LC_MESSAGES/attica_kde_plugin.mo share/locale/nn/LC_MESSAGES/kaccess.mo share/locale/nn/LC_MESSAGES/kcm5_baloofile.mo share/locale/nn/LC_MESSAGES/kcm5_componentchooser.mo share/locale/nn/LC_MESSAGES/kcm5_device_automounter.mo share/locale/nn/LC_MESSAGES/kcm5_emoticons.mo share/locale/nn/LC_MESSAGES/kcm5_icons.mo share/locale/nn/LC_MESSAGES/kcm5_joystick.mo share/locale/nn/LC_MESSAGES/kcm5_kded.mo share/locale/nn/LC_MESSAGES/kcm5_notify.mo share/locale/nn/LC_MESSAGES/kcm5_phonon.mo share/locale/nn/LC_MESSAGES/kcm_activities5.mo share/locale/nn/LC_MESSAGES/kcm_autostart.mo share/locale/nn/LC_MESSAGES/kcm_cursortheme.mo share/locale/nn/LC_MESSAGES/kcm_desktoppaths.mo share/locale/nn/LC_MESSAGES/kcm_desktoptheme.mo share/locale/nn/LC_MESSAGES/kcm_fonts.mo share/locale/nn/LC_MESSAGES/kcm_launchfeedback.mo share/locale/nn/LC_MESSAGES/kcm_lookandfeel.mo share/locale/nn/LC_MESSAGES/kcm_nightcolor.mo share/locale/nn/LC_MESSAGES/kcm_search.mo share/locale/nn/LC_MESSAGES/kcm_solid_actions.mo share/locale/nn/LC_MESSAGES/kcm_splashscreen.mo share/locale/nn/LC_MESSAGES/kcm_standard_actions.mo share/locale/nn/LC_MESSAGES/kcm_touchpad.mo -share/locale/nn/LC_MESSAGES/kcm_translations.mo share/locale/nn/LC_MESSAGES/kcm_workspace.mo share/locale/nn/LC_MESSAGES/kcmaccess.mo share/locale/nn/LC_MESSAGES/kcmcolors.mo share/locale/nn/LC_MESSAGES/kcmformats.mo share/locale/nn/LC_MESSAGES/kcmkclock.mo share/locale/nn/LC_MESSAGES/kcmkeyboard.mo share/locale/nn/LC_MESSAGES/kcmkeys.mo share/locale/nn/LC_MESSAGES/kcmmouse.mo share/locale/nn/LC_MESSAGES/kcmqtquicksettings.mo share/locale/nn/LC_MESSAGES/kcmsmserver.mo share/locale/nn/LC_MESSAGES/kcmstyle.mo share/locale/nn/LC_MESSAGES/kfontinst.mo share/locale/nn/LC_MESSAGES/knetattach5.mo share/locale/nn/LC_MESSAGES/krdb.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/nn/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/nn/LC_MESSAGES/plasma_runner_kwin.mo share/locale/nn/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/nn/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/nn/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/nn/LC_MESSAGES/plasmaactivitymanager.mo share/locale/oc/LC_MESSAGES/kaccess.mo share/locale/oc/LC_MESSAGES/kcm5_componentchooser.mo share/locale/oc/LC_MESSAGES/kcm5_icons.mo share/locale/oc/LC_MESSAGES/kcm5_joystick.mo share/locale/oc/LC_MESSAGES/kcm5_kded.mo share/locale/oc/LC_MESSAGES/kcm5_notify.mo share/locale/oc/LC_MESSAGES/kcm5_phonon.mo share/locale/oc/LC_MESSAGES/kcm_cursortheme.mo share/locale/oc/LC_MESSAGES/kcm_desktoppaths.mo share/locale/oc/LC_MESSAGES/kcm_fonts.mo share/locale/oc/LC_MESSAGES/kcm_launchfeedback.mo share/locale/oc/LC_MESSAGES/kcmaccess.mo share/locale/oc/LC_MESSAGES/kcmcolors.mo share/locale/oc/LC_MESSAGES/kcmkclock.mo share/locale/oc/LC_MESSAGES/kcmkeyboard.mo share/locale/oc/LC_MESSAGES/kcmkeys.mo share/locale/oc/LC_MESSAGES/kcmmouse.mo share/locale/oc/LC_MESSAGES/kcmsmserver.mo share/locale/oc/LC_MESSAGES/kcmstyle.mo share/locale/oc/LC_MESSAGES/kfontinst.mo share/locale/oc/LC_MESSAGES/knetattach5.mo share/locale/oc/LC_MESSAGES/krdb.mo share/locale/oc/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/or/LC_MESSAGES/kaccess.mo share/locale/or/LC_MESSAGES/kcm5_componentchooser.mo share/locale/or/LC_MESSAGES/kcm5_emoticons.mo share/locale/or/LC_MESSAGES/kcm5_icons.mo share/locale/or/LC_MESSAGES/kcm5_joystick.mo share/locale/or/LC_MESSAGES/kcm5_kded.mo share/locale/or/LC_MESSAGES/kcm5_notify.mo share/locale/or/LC_MESSAGES/kcm5_phonon.mo share/locale/or/LC_MESSAGES/kcm_autostart.mo share/locale/or/LC_MESSAGES/kcm_cursortheme.mo share/locale/or/LC_MESSAGES/kcm_desktoppaths.mo share/locale/or/LC_MESSAGES/kcm_desktoptheme.mo share/locale/or/LC_MESSAGES/kcm_fonts.mo share/locale/or/LC_MESSAGES/kcm_launchfeedback.mo share/locale/or/LC_MESSAGES/kcm_standard_actions.mo share/locale/or/LC_MESSAGES/kcmaccess.mo share/locale/or/LC_MESSAGES/kcmcolors.mo share/locale/or/LC_MESSAGES/kcmformats.mo share/locale/or/LC_MESSAGES/kcmkclock.mo share/locale/or/LC_MESSAGES/kcmkeyboard.mo share/locale/or/LC_MESSAGES/kcmkeys.mo share/locale/or/LC_MESSAGES/kcmmouse.mo share/locale/or/LC_MESSAGES/kcmsmserver.mo share/locale/or/LC_MESSAGES/kcmstyle.mo share/locale/or/LC_MESSAGES/kfontinst.mo share/locale/or/LC_MESSAGES/knetattach5.mo share/locale/or/LC_MESSAGES/krdb.mo share/locale/or/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/or/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/or/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/or/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/pa/LC_MESSAGES/attica_kde_plugin.mo share/locale/pa/LC_MESSAGES/kaccess.mo share/locale/pa/LC_MESSAGES/kcm5_baloofile.mo share/locale/pa/LC_MESSAGES/kcm5_componentchooser.mo share/locale/pa/LC_MESSAGES/kcm5_device_automounter.mo share/locale/pa/LC_MESSAGES/kcm5_emoticons.mo share/locale/pa/LC_MESSAGES/kcm5_icons.mo share/locale/pa/LC_MESSAGES/kcm5_joystick.mo share/locale/pa/LC_MESSAGES/kcm5_kded.mo share/locale/pa/LC_MESSAGES/kcm5_notify.mo share/locale/pa/LC_MESSAGES/kcm5_phonon.mo share/locale/pa/LC_MESSAGES/kcm_activities5.mo share/locale/pa/LC_MESSAGES/kcm_autostart.mo share/locale/pa/LC_MESSAGES/kcm_cursortheme.mo share/locale/pa/LC_MESSAGES/kcm_desktoppaths.mo share/locale/pa/LC_MESSAGES/kcm_desktoptheme.mo share/locale/pa/LC_MESSAGES/kcm_fonts.mo share/locale/pa/LC_MESSAGES/kcm_launchfeedback.mo share/locale/pa/LC_MESSAGES/kcm_lookandfeel.mo share/locale/pa/LC_MESSAGES/kcm_search.mo share/locale/pa/LC_MESSAGES/kcm_solid_actions.mo share/locale/pa/LC_MESSAGES/kcm_splashscreen.mo share/locale/pa/LC_MESSAGES/kcm_standard_actions.mo share/locale/pa/LC_MESSAGES/kcm_touchpad.mo -share/locale/pa/LC_MESSAGES/kcm_translations.mo share/locale/pa/LC_MESSAGES/kcm_workspace.mo share/locale/pa/LC_MESSAGES/kcmaccess.mo share/locale/pa/LC_MESSAGES/kcmcolors.mo share/locale/pa/LC_MESSAGES/kcmformats.mo share/locale/pa/LC_MESSAGES/kcmkclock.mo share/locale/pa/LC_MESSAGES/kcmkeyboard.mo share/locale/pa/LC_MESSAGES/kcmkeys.mo share/locale/pa/LC_MESSAGES/kcmmouse.mo share/locale/pa/LC_MESSAGES/kcmsmserver.mo share/locale/pa/LC_MESSAGES/kcmstyle.mo share/locale/pa/LC_MESSAGES/kfontinst.mo share/locale/pa/LC_MESSAGES/knetattach5.mo share/locale/pa/LC_MESSAGES/krdb.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/pa/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/pa/LC_MESSAGES/plasma_runner_kwin.mo share/locale/pa/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/pa/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/pa/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/pa/LC_MESSAGES/plasmaactivitymanager.mo share/locale/pl/LC_MESSAGES/attica_kde_plugin.mo share/locale/pl/LC_MESSAGES/kaccess.mo share/locale/pl/LC_MESSAGES/kcm5_baloofile.mo share/locale/pl/LC_MESSAGES/kcm5_componentchooser.mo share/locale/pl/LC_MESSAGES/kcm5_device_automounter.mo share/locale/pl/LC_MESSAGES/kcm5_emoticons.mo share/locale/pl/LC_MESSAGES/kcm5_icons.mo share/locale/pl/LC_MESSAGES/kcm5_joystick.mo share/locale/pl/LC_MESSAGES/kcm5_kded.mo share/locale/pl/LC_MESSAGES/kcm5_notify.mo share/locale/pl/LC_MESSAGES/kcm5_phonon.mo share/locale/pl/LC_MESSAGES/kcm_activities5.mo share/locale/pl/LC_MESSAGES/kcm_autostart.mo share/locale/pl/LC_MESSAGES/kcm_cursortheme.mo share/locale/pl/LC_MESSAGES/kcm_desktoppaths.mo share/locale/pl/LC_MESSAGES/kcm_desktoptheme.mo share/locale/pl/LC_MESSAGES/kcm_fonts.mo share/locale/pl/LC_MESSAGES/kcm_launchfeedback.mo share/locale/pl/LC_MESSAGES/kcm_lookandfeel.mo share/locale/pl/LC_MESSAGES/kcm_nightcolor.mo share/locale/pl/LC_MESSAGES/kcm_search.mo share/locale/pl/LC_MESSAGES/kcm_solid_actions.mo share/locale/pl/LC_MESSAGES/kcm_splashscreen.mo share/locale/pl/LC_MESSAGES/kcm_standard_actions.mo share/locale/pl/LC_MESSAGES/kcm_touchpad.mo -share/locale/pl/LC_MESSAGES/kcm_translations.mo share/locale/pl/LC_MESSAGES/kcm_workspace.mo share/locale/pl/LC_MESSAGES/kcmaccess.mo share/locale/pl/LC_MESSAGES/kcmcolors.mo share/locale/pl/LC_MESSAGES/kcmformats.mo share/locale/pl/LC_MESSAGES/kcmkclock.mo share/locale/pl/LC_MESSAGES/kcmkeyboard.mo share/locale/pl/LC_MESSAGES/kcmkeys.mo share/locale/pl/LC_MESSAGES/kcmmouse.mo share/locale/pl/LC_MESSAGES/kcmqtquicksettings.mo share/locale/pl/LC_MESSAGES/kcmsmserver.mo share/locale/pl/LC_MESSAGES/kcmstyle.mo share/locale/pl/LC_MESSAGES/kfontinst.mo share/locale/pl/LC_MESSAGES/knetattach5.mo share/locale/pl/LC_MESSAGES/krdb.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/pl/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/pl/LC_MESSAGES/plasma_runner_kwin.mo share/locale/pl/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/pl/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/pl/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/pl/LC_MESSAGES/plasmaactivitymanager.mo share/locale/pt/LC_MESSAGES/attica_kde_plugin.mo share/locale/pt/LC_MESSAGES/kaccess.mo share/locale/pt/LC_MESSAGES/kcm5_baloofile.mo share/locale/pt/LC_MESSAGES/kcm5_componentchooser.mo share/locale/pt/LC_MESSAGES/kcm5_device_automounter.mo share/locale/pt/LC_MESSAGES/kcm5_emoticons.mo share/locale/pt/LC_MESSAGES/kcm5_icons.mo share/locale/pt/LC_MESSAGES/kcm5_joystick.mo share/locale/pt/LC_MESSAGES/kcm5_kded.mo share/locale/pt/LC_MESSAGES/kcm5_notify.mo share/locale/pt/LC_MESSAGES/kcm5_phonon.mo share/locale/pt/LC_MESSAGES/kcm_activities5.mo share/locale/pt/LC_MESSAGES/kcm_autostart.mo share/locale/pt/LC_MESSAGES/kcm_cursortheme.mo share/locale/pt/LC_MESSAGES/kcm_desktoppaths.mo share/locale/pt/LC_MESSAGES/kcm_desktoptheme.mo share/locale/pt/LC_MESSAGES/kcm_fonts.mo share/locale/pt/LC_MESSAGES/kcm_launchfeedback.mo share/locale/pt/LC_MESSAGES/kcm_lookandfeel.mo share/locale/pt/LC_MESSAGES/kcm_nightcolor.mo share/locale/pt/LC_MESSAGES/kcm_search.mo share/locale/pt/LC_MESSAGES/kcm_solid_actions.mo share/locale/pt/LC_MESSAGES/kcm_splashscreen.mo share/locale/pt/LC_MESSAGES/kcm_standard_actions.mo share/locale/pt/LC_MESSAGES/kcm_touchpad.mo -share/locale/pt/LC_MESSAGES/kcm_translations.mo share/locale/pt/LC_MESSAGES/kcm_workspace.mo share/locale/pt/LC_MESSAGES/kcmaccess.mo share/locale/pt/LC_MESSAGES/kcmcolors.mo share/locale/pt/LC_MESSAGES/kcmformats.mo share/locale/pt/LC_MESSAGES/kcmkclock.mo share/locale/pt/LC_MESSAGES/kcmkeyboard.mo share/locale/pt/LC_MESSAGES/kcmkeys.mo share/locale/pt/LC_MESSAGES/kcmmouse.mo share/locale/pt/LC_MESSAGES/kcmqtquicksettings.mo share/locale/pt/LC_MESSAGES/kcmsmserver.mo share/locale/pt/LC_MESSAGES/kcmstyle.mo share/locale/pt/LC_MESSAGES/kfontinst.mo share/locale/pt/LC_MESSAGES/knetattach5.mo share/locale/pt/LC_MESSAGES/krdb.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/pt/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/pt/LC_MESSAGES/plasma_runner_kwin.mo share/locale/pt/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/pt/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/pt/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/pt/LC_MESSAGES/plasmaactivitymanager.mo share/locale/pt_BR/LC_MESSAGES/attica_kde_plugin.mo share/locale/pt_BR/LC_MESSAGES/kaccess.mo share/locale/pt_BR/LC_MESSAGES/kcm5_baloofile.mo share/locale/pt_BR/LC_MESSAGES/kcm5_componentchooser.mo share/locale/pt_BR/LC_MESSAGES/kcm5_device_automounter.mo share/locale/pt_BR/LC_MESSAGES/kcm5_emoticons.mo share/locale/pt_BR/LC_MESSAGES/kcm5_icons.mo share/locale/pt_BR/LC_MESSAGES/kcm5_joystick.mo share/locale/pt_BR/LC_MESSAGES/kcm5_kded.mo share/locale/pt_BR/LC_MESSAGES/kcm5_notify.mo share/locale/pt_BR/LC_MESSAGES/kcm5_phonon.mo share/locale/pt_BR/LC_MESSAGES/kcm_activities5.mo share/locale/pt_BR/LC_MESSAGES/kcm_autostart.mo share/locale/pt_BR/LC_MESSAGES/kcm_cursortheme.mo share/locale/pt_BR/LC_MESSAGES/kcm_desktoppaths.mo share/locale/pt_BR/LC_MESSAGES/kcm_desktoptheme.mo share/locale/pt_BR/LC_MESSAGES/kcm_fonts.mo share/locale/pt_BR/LC_MESSAGES/kcm_launchfeedback.mo share/locale/pt_BR/LC_MESSAGES/kcm_lookandfeel.mo share/locale/pt_BR/LC_MESSAGES/kcm_nightcolor.mo share/locale/pt_BR/LC_MESSAGES/kcm_search.mo share/locale/pt_BR/LC_MESSAGES/kcm_solid_actions.mo share/locale/pt_BR/LC_MESSAGES/kcm_splashscreen.mo share/locale/pt_BR/LC_MESSAGES/kcm_standard_actions.mo share/locale/pt_BR/LC_MESSAGES/kcm_touchpad.mo -share/locale/pt_BR/LC_MESSAGES/kcm_translations.mo share/locale/pt_BR/LC_MESSAGES/kcm_workspace.mo share/locale/pt_BR/LC_MESSAGES/kcmaccess.mo share/locale/pt_BR/LC_MESSAGES/kcmcolors.mo share/locale/pt_BR/LC_MESSAGES/kcmformats.mo share/locale/pt_BR/LC_MESSAGES/kcmkclock.mo share/locale/pt_BR/LC_MESSAGES/kcmkeyboard.mo share/locale/pt_BR/LC_MESSAGES/kcmkeys.mo share/locale/pt_BR/LC_MESSAGES/kcmmouse.mo share/locale/pt_BR/LC_MESSAGES/kcmqtquicksettings.mo share/locale/pt_BR/LC_MESSAGES/kcmsmserver.mo share/locale/pt_BR/LC_MESSAGES/kcmstyle.mo share/locale/pt_BR/LC_MESSAGES/kfontinst.mo share/locale/pt_BR/LC_MESSAGES/knetattach5.mo share/locale/pt_BR/LC_MESSAGES/krdb.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_kwin.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/pt_BR/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/pt_BR/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/pt_BR/LC_MESSAGES/plasmaactivitymanager.mo share/locale/ro/LC_MESSAGES/attica_kde_plugin.mo share/locale/ro/LC_MESSAGES/kaccess.mo share/locale/ro/LC_MESSAGES/kcm5_baloofile.mo share/locale/ro/LC_MESSAGES/kcm5_componentchooser.mo share/locale/ro/LC_MESSAGES/kcm5_device_automounter.mo share/locale/ro/LC_MESSAGES/kcm5_emoticons.mo share/locale/ro/LC_MESSAGES/kcm5_icons.mo share/locale/ro/LC_MESSAGES/kcm5_joystick.mo share/locale/ro/LC_MESSAGES/kcm5_kded.mo share/locale/ro/LC_MESSAGES/kcm5_notify.mo share/locale/ro/LC_MESSAGES/kcm5_phonon.mo share/locale/ro/LC_MESSAGES/kcm_autostart.mo share/locale/ro/LC_MESSAGES/kcm_cursortheme.mo share/locale/ro/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ro/LC_MESSAGES/kcm_desktoptheme.mo share/locale/ro/LC_MESSAGES/kcm_fonts.mo share/locale/ro/LC_MESSAGES/kcm_launchfeedback.mo share/locale/ro/LC_MESSAGES/kcm_lookandfeel.mo share/locale/ro/LC_MESSAGES/kcm_search.mo share/locale/ro/LC_MESSAGES/kcm_solid_actions.mo share/locale/ro/LC_MESSAGES/kcm_splashscreen.mo share/locale/ro/LC_MESSAGES/kcm_standard_actions.mo share/locale/ro/LC_MESSAGES/kcm_touchpad.mo -share/locale/ro/LC_MESSAGES/kcm_translations.mo share/locale/ro/LC_MESSAGES/kcm_workspace.mo share/locale/ro/LC_MESSAGES/kcmaccess.mo share/locale/ro/LC_MESSAGES/kcmcolors.mo share/locale/ro/LC_MESSAGES/kcmformats.mo share/locale/ro/LC_MESSAGES/kcmkclock.mo share/locale/ro/LC_MESSAGES/kcmkeyboard.mo share/locale/ro/LC_MESSAGES/kcmkeys.mo share/locale/ro/LC_MESSAGES/kcmmouse.mo share/locale/ro/LC_MESSAGES/kcmsmserver.mo share/locale/ro/LC_MESSAGES/kcmstyle.mo share/locale/ro/LC_MESSAGES/kfontinst.mo share/locale/ro/LC_MESSAGES/knetattach5.mo share/locale/ro/LC_MESSAGES/krdb.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/ro/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/ro/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/ro/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/ro/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/ru/LC_MESSAGES/attica_kde_plugin.mo share/locale/ru/LC_MESSAGES/kaccess.mo share/locale/ru/LC_MESSAGES/kcm5_baloofile.mo share/locale/ru/LC_MESSAGES/kcm5_componentchooser.mo share/locale/ru/LC_MESSAGES/kcm5_device_automounter.mo share/locale/ru/LC_MESSAGES/kcm5_emoticons.mo share/locale/ru/LC_MESSAGES/kcm5_icons.mo share/locale/ru/LC_MESSAGES/kcm5_joystick.mo share/locale/ru/LC_MESSAGES/kcm5_kded.mo share/locale/ru/LC_MESSAGES/kcm5_notify.mo share/locale/ru/LC_MESSAGES/kcm5_phonon.mo share/locale/ru/LC_MESSAGES/kcm_activities5.mo share/locale/ru/LC_MESSAGES/kcm_autostart.mo share/locale/ru/LC_MESSAGES/kcm_cursortheme.mo share/locale/ru/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ru/LC_MESSAGES/kcm_desktoptheme.mo share/locale/ru/LC_MESSAGES/kcm_fonts.mo share/locale/ru/LC_MESSAGES/kcm_launchfeedback.mo share/locale/ru/LC_MESSAGES/kcm_lookandfeel.mo share/locale/ru/LC_MESSAGES/kcm_nightcolor.mo share/locale/ru/LC_MESSAGES/kcm_search.mo share/locale/ru/LC_MESSAGES/kcm_solid_actions.mo share/locale/ru/LC_MESSAGES/kcm_splashscreen.mo share/locale/ru/LC_MESSAGES/kcm_standard_actions.mo share/locale/ru/LC_MESSAGES/kcm_touchpad.mo -share/locale/ru/LC_MESSAGES/kcm_translations.mo share/locale/ru/LC_MESSAGES/kcm_workspace.mo share/locale/ru/LC_MESSAGES/kcmaccess.mo share/locale/ru/LC_MESSAGES/kcmcolors.mo share/locale/ru/LC_MESSAGES/kcmformats.mo share/locale/ru/LC_MESSAGES/kcmkclock.mo share/locale/ru/LC_MESSAGES/kcmkeyboard.mo share/locale/ru/LC_MESSAGES/kcmkeys.mo share/locale/ru/LC_MESSAGES/kcmmouse.mo share/locale/ru/LC_MESSAGES/kcmqtquicksettings.mo share/locale/ru/LC_MESSAGES/kcmsmserver.mo share/locale/ru/LC_MESSAGES/kcmstyle.mo share/locale/ru/LC_MESSAGES/kfontinst.mo share/locale/ru/LC_MESSAGES/knetattach5.mo share/locale/ru/LC_MESSAGES/krdb.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/ru/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/ru/LC_MESSAGES/plasma_runner_kwin.mo share/locale/ru/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/ru/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/ru/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/ru/LC_MESSAGES/plasmaactivitymanager.mo share/locale/se/LC_MESSAGES/kaccess.mo share/locale/se/LC_MESSAGES/kcm5_componentchooser.mo share/locale/se/LC_MESSAGES/kcm5_icons.mo share/locale/se/LC_MESSAGES/kcm5_joystick.mo share/locale/se/LC_MESSAGES/kcm5_kded.mo share/locale/se/LC_MESSAGES/kcm5_notify.mo share/locale/se/LC_MESSAGES/kcm5_phonon.mo share/locale/se/LC_MESSAGES/kcm_cursortheme.mo share/locale/se/LC_MESSAGES/kcm_desktoppaths.mo share/locale/se/LC_MESSAGES/kcm_fonts.mo share/locale/se/LC_MESSAGES/kcm_launchfeedback.mo share/locale/se/LC_MESSAGES/kcmaccess.mo share/locale/se/LC_MESSAGES/kcmcolors.mo share/locale/se/LC_MESSAGES/kcmformats.mo share/locale/se/LC_MESSAGES/kcmkclock.mo share/locale/se/LC_MESSAGES/kcmkeyboard.mo share/locale/se/LC_MESSAGES/kcmkeys.mo share/locale/se/LC_MESSAGES/kcmmouse.mo share/locale/se/LC_MESSAGES/kcmsmserver.mo share/locale/se/LC_MESSAGES/kcmstyle.mo share/locale/se/LC_MESSAGES/kfontinst.mo share/locale/se/LC_MESSAGES/knetattach5.mo share/locale/se/LC_MESSAGES/krdb.mo share/locale/se/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/se/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/si/LC_MESSAGES/kaccess.mo share/locale/si/LC_MESSAGES/kcm5_componentchooser.mo share/locale/si/LC_MESSAGES/kcm5_device_automounter.mo share/locale/si/LC_MESSAGES/kcm5_emoticons.mo share/locale/si/LC_MESSAGES/kcm5_icons.mo share/locale/si/LC_MESSAGES/kcm5_joystick.mo share/locale/si/LC_MESSAGES/kcm5_kded.mo share/locale/si/LC_MESSAGES/kcm5_notify.mo share/locale/si/LC_MESSAGES/kcm5_phonon.mo share/locale/si/LC_MESSAGES/kcm_autostart.mo share/locale/si/LC_MESSAGES/kcm_cursortheme.mo share/locale/si/LC_MESSAGES/kcm_desktoppaths.mo share/locale/si/LC_MESSAGES/kcm_desktoptheme.mo share/locale/si/LC_MESSAGES/kcm_fonts.mo share/locale/si/LC_MESSAGES/kcm_launchfeedback.mo share/locale/si/LC_MESSAGES/kcm_solid_actions.mo share/locale/si/LC_MESSAGES/kcm_standard_actions.mo share/locale/si/LC_MESSAGES/kcmaccess.mo share/locale/si/LC_MESSAGES/kcmcolors.mo share/locale/si/LC_MESSAGES/kcmformats.mo share/locale/si/LC_MESSAGES/kcmkclock.mo share/locale/si/LC_MESSAGES/kcmkeyboard.mo share/locale/si/LC_MESSAGES/kcmkeys.mo share/locale/si/LC_MESSAGES/kcmmouse.mo share/locale/si/LC_MESSAGES/kcmsmserver.mo share/locale/si/LC_MESSAGES/kcmstyle.mo share/locale/si/LC_MESSAGES/kfontinst.mo share/locale/si/LC_MESSAGES/knetattach5.mo share/locale/si/LC_MESSAGES/krdb.mo share/locale/si/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/si/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/si/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/si/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/si/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/sk/LC_MESSAGES/attica_kde_plugin.mo share/locale/sk/LC_MESSAGES/kaccess.mo share/locale/sk/LC_MESSAGES/kcm5_baloofile.mo share/locale/sk/LC_MESSAGES/kcm5_componentchooser.mo share/locale/sk/LC_MESSAGES/kcm5_device_automounter.mo share/locale/sk/LC_MESSAGES/kcm5_emoticons.mo share/locale/sk/LC_MESSAGES/kcm5_icons.mo share/locale/sk/LC_MESSAGES/kcm5_joystick.mo share/locale/sk/LC_MESSAGES/kcm5_kded.mo share/locale/sk/LC_MESSAGES/kcm5_notify.mo share/locale/sk/LC_MESSAGES/kcm5_phonon.mo share/locale/sk/LC_MESSAGES/kcm_activities5.mo share/locale/sk/LC_MESSAGES/kcm_autostart.mo share/locale/sk/LC_MESSAGES/kcm_cursortheme.mo share/locale/sk/LC_MESSAGES/kcm_desktoppaths.mo share/locale/sk/LC_MESSAGES/kcm_desktoptheme.mo share/locale/sk/LC_MESSAGES/kcm_fonts.mo share/locale/sk/LC_MESSAGES/kcm_launchfeedback.mo share/locale/sk/LC_MESSAGES/kcm_lookandfeel.mo share/locale/sk/LC_MESSAGES/kcm_nightcolor.mo share/locale/sk/LC_MESSAGES/kcm_search.mo share/locale/sk/LC_MESSAGES/kcm_solid_actions.mo share/locale/sk/LC_MESSAGES/kcm_splashscreen.mo share/locale/sk/LC_MESSAGES/kcm_standard_actions.mo share/locale/sk/LC_MESSAGES/kcm_touchpad.mo -share/locale/sk/LC_MESSAGES/kcm_translations.mo share/locale/sk/LC_MESSAGES/kcm_workspace.mo share/locale/sk/LC_MESSAGES/kcmaccess.mo share/locale/sk/LC_MESSAGES/kcmcolors.mo share/locale/sk/LC_MESSAGES/kcmformats.mo share/locale/sk/LC_MESSAGES/kcmkclock.mo share/locale/sk/LC_MESSAGES/kcmkeyboard.mo share/locale/sk/LC_MESSAGES/kcmkeys.mo share/locale/sk/LC_MESSAGES/kcmmouse.mo share/locale/sk/LC_MESSAGES/kcmqtquicksettings.mo share/locale/sk/LC_MESSAGES/kcmsmserver.mo share/locale/sk/LC_MESSAGES/kcmstyle.mo share/locale/sk/LC_MESSAGES/kfontinst.mo share/locale/sk/LC_MESSAGES/knetattach5.mo share/locale/sk/LC_MESSAGES/krdb.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/sk/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/sk/LC_MESSAGES/plasma_runner_kwin.mo share/locale/sk/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/sk/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/sk/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/sk/LC_MESSAGES/plasmaactivitymanager.mo share/locale/sl/LC_MESSAGES/attica_kde_plugin.mo share/locale/sl/LC_MESSAGES/kaccess.mo share/locale/sl/LC_MESSAGES/kcm5_baloofile.mo share/locale/sl/LC_MESSAGES/kcm5_componentchooser.mo share/locale/sl/LC_MESSAGES/kcm5_device_automounter.mo share/locale/sl/LC_MESSAGES/kcm5_emoticons.mo share/locale/sl/LC_MESSAGES/kcm5_icons.mo share/locale/sl/LC_MESSAGES/kcm5_joystick.mo share/locale/sl/LC_MESSAGES/kcm5_kded.mo share/locale/sl/LC_MESSAGES/kcm5_notify.mo share/locale/sl/LC_MESSAGES/kcm5_phonon.mo share/locale/sl/LC_MESSAGES/kcm_activities5.mo share/locale/sl/LC_MESSAGES/kcm_autostart.mo share/locale/sl/LC_MESSAGES/kcm_cursortheme.mo share/locale/sl/LC_MESSAGES/kcm_desktoppaths.mo share/locale/sl/LC_MESSAGES/kcm_desktoptheme.mo share/locale/sl/LC_MESSAGES/kcm_fonts.mo share/locale/sl/LC_MESSAGES/kcm_launchfeedback.mo share/locale/sl/LC_MESSAGES/kcm_lookandfeel.mo share/locale/sl/LC_MESSAGES/kcm_nightcolor.mo share/locale/sl/LC_MESSAGES/kcm_search.mo share/locale/sl/LC_MESSAGES/kcm_solid_actions.mo share/locale/sl/LC_MESSAGES/kcm_splashscreen.mo share/locale/sl/LC_MESSAGES/kcm_standard_actions.mo share/locale/sl/LC_MESSAGES/kcm_touchpad.mo -share/locale/sl/LC_MESSAGES/kcm_translations.mo share/locale/sl/LC_MESSAGES/kcm_workspace.mo share/locale/sl/LC_MESSAGES/kcmaccess.mo share/locale/sl/LC_MESSAGES/kcmcolors.mo share/locale/sl/LC_MESSAGES/kcmformats.mo share/locale/sl/LC_MESSAGES/kcmkclock.mo share/locale/sl/LC_MESSAGES/kcmkeyboard.mo share/locale/sl/LC_MESSAGES/kcmkeys.mo share/locale/sl/LC_MESSAGES/kcmmouse.mo share/locale/sl/LC_MESSAGES/kcmsmserver.mo share/locale/sl/LC_MESSAGES/kcmstyle.mo share/locale/sl/LC_MESSAGES/kfontinst.mo share/locale/sl/LC_MESSAGES/knetattach5.mo share/locale/sl/LC_MESSAGES/krdb.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/sl/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/sl/LC_MESSAGES/plasma_runner_kwin.mo share/locale/sl/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/sl/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/sl/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/sl/LC_MESSAGES/plasmaactivitymanager.mo share/locale/sq/LC_MESSAGES/kaccess.mo share/locale/sq/LC_MESSAGES/kcm5_componentchooser.mo share/locale/sq/LC_MESSAGES/kcm5_emoticons.mo share/locale/sq/LC_MESSAGES/kcm5_icons.mo share/locale/sq/LC_MESSAGES/kcm5_joystick.mo share/locale/sq/LC_MESSAGES/kcm5_kded.mo share/locale/sq/LC_MESSAGES/kcm5_notify.mo share/locale/sq/LC_MESSAGES/kcm5_phonon.mo share/locale/sq/LC_MESSAGES/kcm_autostart.mo share/locale/sq/LC_MESSAGES/kcm_cursortheme.mo share/locale/sq/LC_MESSAGES/kcm_desktoptheme.mo share/locale/sq/LC_MESSAGES/kcm_fonts.mo share/locale/sq/LC_MESSAGES/kcm_launchfeedback.mo share/locale/sq/LC_MESSAGES/kcm_solid_actions.mo share/locale/sq/LC_MESSAGES/kcm_standard_actions.mo share/locale/sq/LC_MESSAGES/kcmaccess.mo share/locale/sq/LC_MESSAGES/kcmcolors.mo share/locale/sq/LC_MESSAGES/kcmformats.mo share/locale/sq/LC_MESSAGES/kcmkclock.mo share/locale/sq/LC_MESSAGES/kcmkeyboard.mo share/locale/sq/LC_MESSAGES/kcmkeys.mo share/locale/sq/LC_MESSAGES/kcmmouse.mo share/locale/sq/LC_MESSAGES/kcmsmserver.mo share/locale/sq/LC_MESSAGES/kcmstyle.mo share/locale/sq/LC_MESSAGES/kfontinst.mo share/locale/sq/LC_MESSAGES/knetattach5.mo share/locale/sq/LC_MESSAGES/krdb.mo share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/sr/LC_MESSAGES/attica_kde_plugin.mo share/locale/sr/LC_MESSAGES/kaccess.mo share/locale/sr/LC_MESSAGES/kcm5_baloofile.mo share/locale/sr/LC_MESSAGES/kcm5_componentchooser.mo share/locale/sr/LC_MESSAGES/kcm5_device_automounter.mo share/locale/sr/LC_MESSAGES/kcm5_emoticons.mo share/locale/sr/LC_MESSAGES/kcm5_icons.mo share/locale/sr/LC_MESSAGES/kcm5_joystick.mo share/locale/sr/LC_MESSAGES/kcm5_kded.mo share/locale/sr/LC_MESSAGES/kcm5_notify.mo share/locale/sr/LC_MESSAGES/kcm5_phonon.mo share/locale/sr/LC_MESSAGES/kcm_activities5.mo share/locale/sr/LC_MESSAGES/kcm_autostart.mo share/locale/sr/LC_MESSAGES/kcm_cursortheme.mo share/locale/sr/LC_MESSAGES/kcm_desktoppaths.mo share/locale/sr/LC_MESSAGES/kcm_desktoptheme.mo share/locale/sr/LC_MESSAGES/kcm_fonts.mo share/locale/sr/LC_MESSAGES/kcm_launchfeedback.mo share/locale/sr/LC_MESSAGES/kcm_lookandfeel.mo share/locale/sr/LC_MESSAGES/kcm_nightcolor.mo share/locale/sr/LC_MESSAGES/kcm_search.mo share/locale/sr/LC_MESSAGES/kcm_solid_actions.mo share/locale/sr/LC_MESSAGES/kcm_splashscreen.mo share/locale/sr/LC_MESSAGES/kcm_standard_actions.mo share/locale/sr/LC_MESSAGES/kcm_touchpad.mo -share/locale/sr/LC_MESSAGES/kcm_translations.mo share/locale/sr/LC_MESSAGES/kcm_workspace.mo share/locale/sr/LC_MESSAGES/kcmaccess.mo share/locale/sr/LC_MESSAGES/kcmcolors.mo share/locale/sr/LC_MESSAGES/kcmformats.mo share/locale/sr/LC_MESSAGES/kcmkclock.mo share/locale/sr/LC_MESSAGES/kcmkeyboard.mo share/locale/sr/LC_MESSAGES/kcmkeys.mo share/locale/sr/LC_MESSAGES/kcmmouse.mo share/locale/sr/LC_MESSAGES/kcmsmserver.mo share/locale/sr/LC_MESSAGES/kcmstyle.mo share/locale/sr/LC_MESSAGES/kfontinst.mo share/locale/sr/LC_MESSAGES/knetattach5.mo share/locale/sr/LC_MESSAGES/krdb.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/sr/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/sr/LC_MESSAGES/plasma_runner_kwin.mo share/locale/sr/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/sr/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/sr/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/sr/LC_MESSAGES/plasmaactivitymanager.mo share/locale/sr/LC_SCRIPTS/kfontinst/kfontinst.js share/locale/sr@ijekavian/LC_MESSAGES/attica_kde_plugin.mo share/locale/sr@ijekavian/LC_MESSAGES/kaccess.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm5_baloofile.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm5_componentchooser.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm5_device_automounter.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm5_emoticons.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm5_icons.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm5_joystick.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm5_kded.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm5_notify.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm5_phonon.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_activities5.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_autostart.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_cursortheme.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_desktoppaths.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_desktoptheme.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_fonts.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_launchfeedback.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_lookandfeel.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_nightcolor.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_search.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_solid_actions.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_splashscreen.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_standard_actions.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_touchpad.mo -share/locale/sr@ijekavian/LC_MESSAGES/kcm_translations.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_workspace.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmaccess.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmcolors.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmformats.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmkclock.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmkeyboard.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmkeys.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmmouse.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmsmserver.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmstyle.mo share/locale/sr@ijekavian/LC_MESSAGES/kfontinst.mo share/locale/sr@ijekavian/LC_MESSAGES/knetattach5.mo share/locale/sr@ijekavian/LC_MESSAGES/krdb.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_kwin.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/sr@ijekavian/LC_MESSAGES/plasmaactivitymanager.mo share/locale/sr@ijekavian/LC_SCRIPTS/kfontinst/kfontinst.js share/locale/sr@ijekavianlatin/LC_MESSAGES/attica_kde_plugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kaccess.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm5_baloofile.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm5_componentchooser.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm5_device_automounter.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm5_emoticons.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm5_icons.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm5_joystick.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm5_kded.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm5_notify.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm5_phonon.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_activities5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_autostart.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_cursortheme.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_desktoppaths.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_desktoptheme.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_fonts.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_launchfeedback.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_lookandfeel.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_nightcolor.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_search.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_solid_actions.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_splashscreen.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_standard_actions.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_touchpad.mo -share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_translations.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_workspace.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmaccess.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmcolors.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmformats.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmkclock.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmkeyboard.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmkeys.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmmouse.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmsmserver.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmstyle.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kfontinst.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/knetattach5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/krdb.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_kwin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasmaactivitymanager.mo share/locale/sr@ijekavianlatin/LC_SCRIPTS/kfontinst/kfontinst.js share/locale/sr@latin/LC_MESSAGES/attica_kde_plugin.mo share/locale/sr@latin/LC_MESSAGES/kaccess.mo share/locale/sr@latin/LC_MESSAGES/kcm5_baloofile.mo share/locale/sr@latin/LC_MESSAGES/kcm5_componentchooser.mo share/locale/sr@latin/LC_MESSAGES/kcm5_device_automounter.mo share/locale/sr@latin/LC_MESSAGES/kcm5_emoticons.mo share/locale/sr@latin/LC_MESSAGES/kcm5_icons.mo share/locale/sr@latin/LC_MESSAGES/kcm5_joystick.mo share/locale/sr@latin/LC_MESSAGES/kcm5_kded.mo share/locale/sr@latin/LC_MESSAGES/kcm5_notify.mo share/locale/sr@latin/LC_MESSAGES/kcm5_phonon.mo share/locale/sr@latin/LC_MESSAGES/kcm_activities5.mo share/locale/sr@latin/LC_MESSAGES/kcm_autostart.mo share/locale/sr@latin/LC_MESSAGES/kcm_cursortheme.mo share/locale/sr@latin/LC_MESSAGES/kcm_desktoppaths.mo share/locale/sr@latin/LC_MESSAGES/kcm_desktoptheme.mo share/locale/sr@latin/LC_MESSAGES/kcm_fonts.mo share/locale/sr@latin/LC_MESSAGES/kcm_launchfeedback.mo share/locale/sr@latin/LC_MESSAGES/kcm_lookandfeel.mo share/locale/sr@latin/LC_MESSAGES/kcm_nightcolor.mo share/locale/sr@latin/LC_MESSAGES/kcm_search.mo share/locale/sr@latin/LC_MESSAGES/kcm_solid_actions.mo share/locale/sr@latin/LC_MESSAGES/kcm_splashscreen.mo share/locale/sr@latin/LC_MESSAGES/kcm_standard_actions.mo share/locale/sr@latin/LC_MESSAGES/kcm_touchpad.mo -share/locale/sr@latin/LC_MESSAGES/kcm_translations.mo share/locale/sr@latin/LC_MESSAGES/kcm_workspace.mo share/locale/sr@latin/LC_MESSAGES/kcmaccess.mo share/locale/sr@latin/LC_MESSAGES/kcmcolors.mo share/locale/sr@latin/LC_MESSAGES/kcmformats.mo share/locale/sr@latin/LC_MESSAGES/kcmkclock.mo share/locale/sr@latin/LC_MESSAGES/kcmkeyboard.mo share/locale/sr@latin/LC_MESSAGES/kcmkeys.mo share/locale/sr@latin/LC_MESSAGES/kcmmouse.mo share/locale/sr@latin/LC_MESSAGES/kcmsmserver.mo share/locale/sr@latin/LC_MESSAGES/kcmstyle.mo share/locale/sr@latin/LC_MESSAGES/kfontinst.mo share/locale/sr@latin/LC_MESSAGES/knetattach5.mo share/locale/sr@latin/LC_MESSAGES/krdb.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_kwin.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/sr@latin/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/sr@latin/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/sr@latin/LC_MESSAGES/plasmaactivitymanager.mo share/locale/sr@latin/LC_SCRIPTS/kfontinst/kfontinst.js share/locale/sv/LC_MESSAGES/attica_kde_plugin.mo share/locale/sv/LC_MESSAGES/kaccess.mo share/locale/sv/LC_MESSAGES/kcm5_baloofile.mo share/locale/sv/LC_MESSAGES/kcm5_componentchooser.mo share/locale/sv/LC_MESSAGES/kcm5_device_automounter.mo share/locale/sv/LC_MESSAGES/kcm5_emoticons.mo share/locale/sv/LC_MESSAGES/kcm5_icons.mo share/locale/sv/LC_MESSAGES/kcm5_joystick.mo share/locale/sv/LC_MESSAGES/kcm5_kded.mo share/locale/sv/LC_MESSAGES/kcm5_notify.mo share/locale/sv/LC_MESSAGES/kcm5_phonon.mo share/locale/sv/LC_MESSAGES/kcm_activities5.mo share/locale/sv/LC_MESSAGES/kcm_autostart.mo share/locale/sv/LC_MESSAGES/kcm_cursortheme.mo share/locale/sv/LC_MESSAGES/kcm_desktoppaths.mo share/locale/sv/LC_MESSAGES/kcm_desktoptheme.mo share/locale/sv/LC_MESSAGES/kcm_fonts.mo share/locale/sv/LC_MESSAGES/kcm_launchfeedback.mo share/locale/sv/LC_MESSAGES/kcm_lookandfeel.mo share/locale/sv/LC_MESSAGES/kcm_nightcolor.mo share/locale/sv/LC_MESSAGES/kcm_search.mo share/locale/sv/LC_MESSAGES/kcm_solid_actions.mo share/locale/sv/LC_MESSAGES/kcm_splashscreen.mo share/locale/sv/LC_MESSAGES/kcm_standard_actions.mo share/locale/sv/LC_MESSAGES/kcm_touchpad.mo -share/locale/sv/LC_MESSAGES/kcm_translations.mo share/locale/sv/LC_MESSAGES/kcm_workspace.mo share/locale/sv/LC_MESSAGES/kcmaccess.mo share/locale/sv/LC_MESSAGES/kcmcolors.mo share/locale/sv/LC_MESSAGES/kcmformats.mo share/locale/sv/LC_MESSAGES/kcmkclock.mo share/locale/sv/LC_MESSAGES/kcmkeyboard.mo share/locale/sv/LC_MESSAGES/kcmkeys.mo share/locale/sv/LC_MESSAGES/kcmmouse.mo share/locale/sv/LC_MESSAGES/kcmqtquicksettings.mo share/locale/sv/LC_MESSAGES/kcmsmserver.mo share/locale/sv/LC_MESSAGES/kcmstyle.mo share/locale/sv/LC_MESSAGES/kfontinst.mo share/locale/sv/LC_MESSAGES/knetattach5.mo share/locale/sv/LC_MESSAGES/krdb.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/sv/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/sv/LC_MESSAGES/plasma_runner_kwin.mo share/locale/sv/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/sv/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/sv/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/sv/LC_MESSAGES/plasmaactivitymanager.mo share/locale/ta/LC_MESSAGES/kaccess.mo share/locale/ta/LC_MESSAGES/kcm5_componentchooser.mo share/locale/ta/LC_MESSAGES/kcm5_emoticons.mo share/locale/ta/LC_MESSAGES/kcm5_icons.mo share/locale/ta/LC_MESSAGES/kcm5_joystick.mo share/locale/ta/LC_MESSAGES/kcm5_kded.mo share/locale/ta/LC_MESSAGES/kcm5_notify.mo share/locale/ta/LC_MESSAGES/kcm5_phonon.mo share/locale/ta/LC_MESSAGES/kcm_autostart.mo share/locale/ta/LC_MESSAGES/kcm_cursortheme.mo share/locale/ta/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ta/LC_MESSAGES/kcm_fonts.mo share/locale/ta/LC_MESSAGES/kcm_launchfeedback.mo share/locale/ta/LC_MESSAGES/kcmaccess.mo share/locale/ta/LC_MESSAGES/kcmcolors.mo share/locale/ta/LC_MESSAGES/kcmformats.mo share/locale/ta/LC_MESSAGES/kcmkclock.mo share/locale/ta/LC_MESSAGES/kcmkeyboard.mo share/locale/ta/LC_MESSAGES/kcmkeys.mo share/locale/ta/LC_MESSAGES/kcmmouse.mo share/locale/ta/LC_MESSAGES/kcmsmserver.mo share/locale/ta/LC_MESSAGES/kcmstyle.mo share/locale/ta/LC_MESSAGES/kfontinst.mo share/locale/ta/LC_MESSAGES/knetattach5.mo share/locale/ta/LC_MESSAGES/krdb.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/te/LC_MESSAGES/kaccess.mo share/locale/te/LC_MESSAGES/kcm5_componentchooser.mo share/locale/te/LC_MESSAGES/kcm5_emoticons.mo share/locale/te/LC_MESSAGES/kcm5_icons.mo share/locale/te/LC_MESSAGES/kcm5_joystick.mo share/locale/te/LC_MESSAGES/kcm5_kded.mo share/locale/te/LC_MESSAGES/kcm5_notify.mo share/locale/te/LC_MESSAGES/kcm5_phonon.mo share/locale/te/LC_MESSAGES/kcm_autostart.mo share/locale/te/LC_MESSAGES/kcm_cursortheme.mo share/locale/te/LC_MESSAGES/kcm_desktoppaths.mo share/locale/te/LC_MESSAGES/kcm_desktoptheme.mo share/locale/te/LC_MESSAGES/kcm_fonts.mo share/locale/te/LC_MESSAGES/kcm_launchfeedback.mo share/locale/te/LC_MESSAGES/kcm_standard_actions.mo share/locale/te/LC_MESSAGES/kcmaccess.mo share/locale/te/LC_MESSAGES/kcmcolors.mo share/locale/te/LC_MESSAGES/kcmformats.mo share/locale/te/LC_MESSAGES/kcmkclock.mo share/locale/te/LC_MESSAGES/kcmkeyboard.mo share/locale/te/LC_MESSAGES/kcmkeys.mo share/locale/te/LC_MESSAGES/kcmmouse.mo share/locale/te/LC_MESSAGES/kcmsmserver.mo share/locale/te/LC_MESSAGES/kcmstyle.mo share/locale/te/LC_MESSAGES/kfontinst.mo share/locale/te/LC_MESSAGES/knetattach5.mo share/locale/te/LC_MESSAGES/krdb.mo share/locale/te/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/te/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/te/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/te/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/tg/LC_MESSAGES/attica_kde_plugin.mo share/locale/tg/LC_MESSAGES/kaccess.mo share/locale/tg/LC_MESSAGES/kcm5_componentchooser.mo share/locale/tg/LC_MESSAGES/kcm5_emoticons.mo share/locale/tg/LC_MESSAGES/kcm5_icons.mo share/locale/tg/LC_MESSAGES/kcm5_joystick.mo share/locale/tg/LC_MESSAGES/kcm5_kded.mo share/locale/tg/LC_MESSAGES/kcm5_notify.mo share/locale/tg/LC_MESSAGES/kcm5_phonon.mo share/locale/tg/LC_MESSAGES/kcm_autostart.mo share/locale/tg/LC_MESSAGES/kcm_cursortheme.mo share/locale/tg/LC_MESSAGES/kcm_desktoppaths.mo share/locale/tg/LC_MESSAGES/kcm_desktoptheme.mo share/locale/tg/LC_MESSAGES/kcm_fonts.mo share/locale/tg/LC_MESSAGES/kcm_launchfeedback.mo share/locale/tg/LC_MESSAGES/kcm_standard_actions.mo share/locale/tg/LC_MESSAGES/kcmaccess.mo share/locale/tg/LC_MESSAGES/kcmcolors.mo share/locale/tg/LC_MESSAGES/kcmformats.mo share/locale/tg/LC_MESSAGES/kcmkclock.mo share/locale/tg/LC_MESSAGES/kcmkeyboard.mo share/locale/tg/LC_MESSAGES/kcmkeys.mo share/locale/tg/LC_MESSAGES/kcmmouse.mo share/locale/tg/LC_MESSAGES/kcmsmserver.mo share/locale/tg/LC_MESSAGES/kcmstyle.mo share/locale/tg/LC_MESSAGES/kfontinst.mo share/locale/tg/LC_MESSAGES/knetattach5.mo share/locale/tg/LC_MESSAGES/krdb.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/th/LC_MESSAGES/attica_kde_plugin.mo share/locale/th/LC_MESSAGES/kaccess.mo share/locale/th/LC_MESSAGES/kcm5_componentchooser.mo share/locale/th/LC_MESSAGES/kcm5_device_automounter.mo share/locale/th/LC_MESSAGES/kcm5_emoticons.mo share/locale/th/LC_MESSAGES/kcm5_icons.mo share/locale/th/LC_MESSAGES/kcm5_joystick.mo share/locale/th/LC_MESSAGES/kcm5_kded.mo share/locale/th/LC_MESSAGES/kcm5_notify.mo share/locale/th/LC_MESSAGES/kcm5_phonon.mo share/locale/th/LC_MESSAGES/kcm_autostart.mo share/locale/th/LC_MESSAGES/kcm_cursortheme.mo share/locale/th/LC_MESSAGES/kcm_desktoppaths.mo share/locale/th/LC_MESSAGES/kcm_desktoptheme.mo share/locale/th/LC_MESSAGES/kcm_fonts.mo share/locale/th/LC_MESSAGES/kcm_launchfeedback.mo share/locale/th/LC_MESSAGES/kcm_solid_actions.mo share/locale/th/LC_MESSAGES/kcm_standard_actions.mo share/locale/th/LC_MESSAGES/kcmaccess.mo share/locale/th/LC_MESSAGES/kcmcolors.mo share/locale/th/LC_MESSAGES/kcmformats.mo share/locale/th/LC_MESSAGES/kcmkclock.mo share/locale/th/LC_MESSAGES/kcmkeyboard.mo share/locale/th/LC_MESSAGES/kcmkeys.mo share/locale/th/LC_MESSAGES/kcmmouse.mo share/locale/th/LC_MESSAGES/kcmsmserver.mo share/locale/th/LC_MESSAGES/kcmstyle.mo share/locale/th/LC_MESSAGES/kfontinst.mo share/locale/th/LC_MESSAGES/knetattach5.mo share/locale/th/LC_MESSAGES/krdb.mo share/locale/th/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/th/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/tr/LC_MESSAGES/attica_kde_plugin.mo share/locale/tr/LC_MESSAGES/kaccess.mo share/locale/tr/LC_MESSAGES/kcm5_baloofile.mo share/locale/tr/LC_MESSAGES/kcm5_componentchooser.mo share/locale/tr/LC_MESSAGES/kcm5_device_automounter.mo share/locale/tr/LC_MESSAGES/kcm5_emoticons.mo share/locale/tr/LC_MESSAGES/kcm5_icons.mo share/locale/tr/LC_MESSAGES/kcm5_joystick.mo share/locale/tr/LC_MESSAGES/kcm5_kded.mo share/locale/tr/LC_MESSAGES/kcm5_notify.mo share/locale/tr/LC_MESSAGES/kcm5_phonon.mo share/locale/tr/LC_MESSAGES/kcm_activities5.mo share/locale/tr/LC_MESSAGES/kcm_autostart.mo share/locale/tr/LC_MESSAGES/kcm_cursortheme.mo share/locale/tr/LC_MESSAGES/kcm_desktoppaths.mo share/locale/tr/LC_MESSAGES/kcm_desktoptheme.mo share/locale/tr/LC_MESSAGES/kcm_fonts.mo share/locale/tr/LC_MESSAGES/kcm_launchfeedback.mo share/locale/tr/LC_MESSAGES/kcm_lookandfeel.mo share/locale/tr/LC_MESSAGES/kcm_search.mo share/locale/tr/LC_MESSAGES/kcm_solid_actions.mo share/locale/tr/LC_MESSAGES/kcm_splashscreen.mo share/locale/tr/LC_MESSAGES/kcm_standard_actions.mo share/locale/tr/LC_MESSAGES/kcm_touchpad.mo -share/locale/tr/LC_MESSAGES/kcm_translations.mo share/locale/tr/LC_MESSAGES/kcm_workspace.mo share/locale/tr/LC_MESSAGES/kcmaccess.mo share/locale/tr/LC_MESSAGES/kcmcolors.mo share/locale/tr/LC_MESSAGES/kcmformats.mo share/locale/tr/LC_MESSAGES/kcmkclock.mo share/locale/tr/LC_MESSAGES/kcmkeyboard.mo share/locale/tr/LC_MESSAGES/kcmkeys.mo share/locale/tr/LC_MESSAGES/kcmmouse.mo share/locale/tr/LC_MESSAGES/kcmsmserver.mo share/locale/tr/LC_MESSAGES/kcmstyle.mo share/locale/tr/LC_MESSAGES/kfontinst.mo share/locale/tr/LC_MESSAGES/knetattach5.mo share/locale/tr/LC_MESSAGES/krdb.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/tr/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/tr/LC_MESSAGES/plasma_runner_kwin.mo share/locale/tr/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/tr/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/tr/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/tr/LC_MESSAGES/plasmaactivitymanager.mo share/locale/ug/LC_MESSAGES/attica_kde_plugin.mo share/locale/ug/LC_MESSAGES/kaccess.mo share/locale/ug/LC_MESSAGES/kcm5_componentchooser.mo share/locale/ug/LC_MESSAGES/kcm5_device_automounter.mo share/locale/ug/LC_MESSAGES/kcm5_emoticons.mo share/locale/ug/LC_MESSAGES/kcm5_icons.mo share/locale/ug/LC_MESSAGES/kcm5_joystick.mo share/locale/ug/LC_MESSAGES/kcm5_kded.mo share/locale/ug/LC_MESSAGES/kcm5_notify.mo share/locale/ug/LC_MESSAGES/kcm5_phonon.mo share/locale/ug/LC_MESSAGES/kcm_autostart.mo share/locale/ug/LC_MESSAGES/kcm_cursortheme.mo share/locale/ug/LC_MESSAGES/kcm_desktoppaths.mo share/locale/ug/LC_MESSAGES/kcm_desktoptheme.mo share/locale/ug/LC_MESSAGES/kcm_fonts.mo share/locale/ug/LC_MESSAGES/kcm_launchfeedback.mo share/locale/ug/LC_MESSAGES/kcm_solid_actions.mo share/locale/ug/LC_MESSAGES/kcm_standard_actions.mo share/locale/ug/LC_MESSAGES/kcmaccess.mo share/locale/ug/LC_MESSAGES/kcmcolors.mo share/locale/ug/LC_MESSAGES/kcmformats.mo share/locale/ug/LC_MESSAGES/kcmkclock.mo share/locale/ug/LC_MESSAGES/kcmkeyboard.mo share/locale/ug/LC_MESSAGES/kcmkeys.mo share/locale/ug/LC_MESSAGES/kcmmouse.mo share/locale/ug/LC_MESSAGES/kcmsmserver.mo share/locale/ug/LC_MESSAGES/kcmstyle.mo share/locale/ug/LC_MESSAGES/kfontinst.mo share/locale/ug/LC_MESSAGES/knetattach5.mo share/locale/ug/LC_MESSAGES/krdb.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/ug/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/ug/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/uk/LC_MESSAGES/attica_kde_plugin.mo share/locale/uk/LC_MESSAGES/kaccess.mo share/locale/uk/LC_MESSAGES/kcm5_baloofile.mo share/locale/uk/LC_MESSAGES/kcm5_componentchooser.mo share/locale/uk/LC_MESSAGES/kcm5_device_automounter.mo share/locale/uk/LC_MESSAGES/kcm5_emoticons.mo share/locale/uk/LC_MESSAGES/kcm5_icons.mo share/locale/uk/LC_MESSAGES/kcm5_joystick.mo share/locale/uk/LC_MESSAGES/kcm5_kded.mo share/locale/uk/LC_MESSAGES/kcm5_notify.mo share/locale/uk/LC_MESSAGES/kcm5_phonon.mo share/locale/uk/LC_MESSAGES/kcm_activities5.mo share/locale/uk/LC_MESSAGES/kcm_autostart.mo share/locale/uk/LC_MESSAGES/kcm_cursortheme.mo share/locale/uk/LC_MESSAGES/kcm_desktoppaths.mo share/locale/uk/LC_MESSAGES/kcm_desktoptheme.mo share/locale/uk/LC_MESSAGES/kcm_fonts.mo share/locale/uk/LC_MESSAGES/kcm_launchfeedback.mo share/locale/uk/LC_MESSAGES/kcm_lookandfeel.mo share/locale/uk/LC_MESSAGES/kcm_nightcolor.mo share/locale/uk/LC_MESSAGES/kcm_search.mo share/locale/uk/LC_MESSAGES/kcm_solid_actions.mo share/locale/uk/LC_MESSAGES/kcm_splashscreen.mo share/locale/uk/LC_MESSAGES/kcm_standard_actions.mo share/locale/uk/LC_MESSAGES/kcm_touchpad.mo -share/locale/uk/LC_MESSAGES/kcm_translations.mo share/locale/uk/LC_MESSAGES/kcm_workspace.mo share/locale/uk/LC_MESSAGES/kcmaccess.mo share/locale/uk/LC_MESSAGES/kcmcolors.mo share/locale/uk/LC_MESSAGES/kcmformats.mo share/locale/uk/LC_MESSAGES/kcmkclock.mo share/locale/uk/LC_MESSAGES/kcmkeyboard.mo share/locale/uk/LC_MESSAGES/kcmkeys.mo share/locale/uk/LC_MESSAGES/kcmmouse.mo share/locale/uk/LC_MESSAGES/kcmqtquicksettings.mo share/locale/uk/LC_MESSAGES/kcmsmserver.mo share/locale/uk/LC_MESSAGES/kcmstyle.mo share/locale/uk/LC_MESSAGES/kfontinst.mo share/locale/uk/LC_MESSAGES/knetattach5.mo share/locale/uk/LC_MESSAGES/krdb.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/uk/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/uk/LC_MESSAGES/plasma_runner_kwin.mo share/locale/uk/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/uk/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/uk/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/uk/LC_MESSAGES/plasmaactivitymanager.mo share/locale/uz/LC_MESSAGES/kaccess.mo share/locale/uz/LC_MESSAGES/kcm5_componentchooser.mo share/locale/uz/LC_MESSAGES/kcm5_icons.mo share/locale/uz/LC_MESSAGES/kcm5_joystick.mo share/locale/uz/LC_MESSAGES/kcm5_kded.mo share/locale/uz/LC_MESSAGES/kcm5_notify.mo share/locale/uz/LC_MESSAGES/kcm_cursortheme.mo share/locale/uz/LC_MESSAGES/kcm_desktoppaths.mo share/locale/uz/LC_MESSAGES/kcm_fonts.mo share/locale/uz/LC_MESSAGES/kcm_launchfeedback.mo share/locale/uz/LC_MESSAGES/kcmaccess.mo share/locale/uz/LC_MESSAGES/kcmcolors.mo share/locale/uz/LC_MESSAGES/kcmformats.mo share/locale/uz/LC_MESSAGES/kcmkclock.mo share/locale/uz/LC_MESSAGES/kcmkeyboard.mo share/locale/uz/LC_MESSAGES/kcmkeys.mo share/locale/uz/LC_MESSAGES/kcmmouse.mo share/locale/uz/LC_MESSAGES/kcmsmserver.mo share/locale/uz/LC_MESSAGES/kcmstyle.mo share/locale/uz/LC_MESSAGES/kfontinst.mo share/locale/uz/LC_MESSAGES/knetattach5.mo share/locale/uz/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/uz@cyrillic/LC_MESSAGES/kaccess.mo share/locale/uz@cyrillic/LC_MESSAGES/kcm5_componentchooser.mo share/locale/uz@cyrillic/LC_MESSAGES/kcm5_icons.mo share/locale/uz@cyrillic/LC_MESSAGES/kcm5_joystick.mo share/locale/uz@cyrillic/LC_MESSAGES/kcm5_kded.mo share/locale/uz@cyrillic/LC_MESSAGES/kcm5_notify.mo share/locale/uz@cyrillic/LC_MESSAGES/kcm_cursortheme.mo share/locale/uz@cyrillic/LC_MESSAGES/kcm_desktoppaths.mo share/locale/uz@cyrillic/LC_MESSAGES/kcm_fonts.mo share/locale/uz@cyrillic/LC_MESSAGES/kcm_launchfeedback.mo share/locale/uz@cyrillic/LC_MESSAGES/kcmaccess.mo share/locale/uz@cyrillic/LC_MESSAGES/kcmcolors.mo share/locale/uz@cyrillic/LC_MESSAGES/kcmformats.mo share/locale/uz@cyrillic/LC_MESSAGES/kcmkclock.mo share/locale/uz@cyrillic/LC_MESSAGES/kcmkeyboard.mo share/locale/uz@cyrillic/LC_MESSAGES/kcmkeys.mo share/locale/uz@cyrillic/LC_MESSAGES/kcmmouse.mo share/locale/uz@cyrillic/LC_MESSAGES/kcmsmserver.mo share/locale/uz@cyrillic/LC_MESSAGES/kcmstyle.mo share/locale/uz@cyrillic/LC_MESSAGES/kfontinst.mo share/locale/uz@cyrillic/LC_MESSAGES/knetattach5.mo share/locale/uz@cyrillic/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/vi/LC_MESSAGES/attica_kde_plugin.mo share/locale/vi/LC_MESSAGES/kaccess.mo share/locale/vi/LC_MESSAGES/kcm5_componentchooser.mo share/locale/vi/LC_MESSAGES/kcm5_emoticons.mo share/locale/vi/LC_MESSAGES/kcm5_icons.mo share/locale/vi/LC_MESSAGES/kcm5_joystick.mo share/locale/vi/LC_MESSAGES/kcm5_kded.mo share/locale/vi/LC_MESSAGES/kcm5_notify.mo share/locale/vi/LC_MESSAGES/kcm5_phonon.mo share/locale/vi/LC_MESSAGES/kcm_cursortheme.mo share/locale/vi/LC_MESSAGES/kcm_desktoppaths.mo share/locale/vi/LC_MESSAGES/kcm_fonts.mo share/locale/vi/LC_MESSAGES/kcm_launchfeedback.mo share/locale/vi/LC_MESSAGES/kcmaccess.mo share/locale/vi/LC_MESSAGES/kcmcolors.mo share/locale/vi/LC_MESSAGES/kcmformats.mo share/locale/vi/LC_MESSAGES/kcmkclock.mo share/locale/vi/LC_MESSAGES/kcmkeyboard.mo share/locale/vi/LC_MESSAGES/kcmkeys.mo share/locale/vi/LC_MESSAGES/kcmmouse.mo share/locale/vi/LC_MESSAGES/kcmsmserver.mo share/locale/vi/LC_MESSAGES/kcmstyle.mo share/locale/vi/LC_MESSAGES/kfontinst.mo share/locale/vi/LC_MESSAGES/knetattach5.mo share/locale/vi/LC_MESSAGES/krdb.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/wa/LC_MESSAGES/attica_kde_plugin.mo share/locale/wa/LC_MESSAGES/kaccess.mo share/locale/wa/LC_MESSAGES/kcm5_componentchooser.mo share/locale/wa/LC_MESSAGES/kcm5_device_automounter.mo share/locale/wa/LC_MESSAGES/kcm5_emoticons.mo share/locale/wa/LC_MESSAGES/kcm5_icons.mo share/locale/wa/LC_MESSAGES/kcm5_joystick.mo share/locale/wa/LC_MESSAGES/kcm5_kded.mo share/locale/wa/LC_MESSAGES/kcm5_notify.mo share/locale/wa/LC_MESSAGES/kcm5_phonon.mo share/locale/wa/LC_MESSAGES/kcm_autostart.mo share/locale/wa/LC_MESSAGES/kcm_cursortheme.mo share/locale/wa/LC_MESSAGES/kcm_desktoppaths.mo share/locale/wa/LC_MESSAGES/kcm_desktoptheme.mo share/locale/wa/LC_MESSAGES/kcm_fonts.mo share/locale/wa/LC_MESSAGES/kcm_launchfeedback.mo share/locale/wa/LC_MESSAGES/kcm_solid_actions.mo share/locale/wa/LC_MESSAGES/kcm_standard_actions.mo share/locale/wa/LC_MESSAGES/kcmaccess.mo share/locale/wa/LC_MESSAGES/kcmcolors.mo share/locale/wa/LC_MESSAGES/kcmformats.mo share/locale/wa/LC_MESSAGES/kcmkclock.mo share/locale/wa/LC_MESSAGES/kcmkeyboard.mo share/locale/wa/LC_MESSAGES/kcmkeys.mo share/locale/wa/LC_MESSAGES/kcmmouse.mo share/locale/wa/LC_MESSAGES/kcmsmserver.mo share/locale/wa/LC_MESSAGES/kcmstyle.mo share/locale/wa/LC_MESSAGES/kfontinst.mo share/locale/wa/LC_MESSAGES/knetattach5.mo share/locale/wa/LC_MESSAGES/krdb.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/wa/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/xh/LC_MESSAGES/kaccess.mo share/locale/xh/LC_MESSAGES/kcm5_componentchooser.mo share/locale/xh/LC_MESSAGES/kcm5_icons.mo share/locale/xh/LC_MESSAGES/kcm5_kded.mo share/locale/xh/LC_MESSAGES/kcm5_notify.mo share/locale/xh/LC_MESSAGES/kcm_cursortheme.mo share/locale/xh/LC_MESSAGES/kcm_desktoppaths.mo share/locale/xh/LC_MESSAGES/kcm_fonts.mo share/locale/xh/LC_MESSAGES/kcm_launchfeedback.mo share/locale/xh/LC_MESSAGES/kcmaccess.mo share/locale/xh/LC_MESSAGES/kcmcolors.mo share/locale/xh/LC_MESSAGES/kcmformats.mo share/locale/xh/LC_MESSAGES/kcmkclock.mo share/locale/xh/LC_MESSAGES/kcmkeyboard.mo share/locale/xh/LC_MESSAGES/kcmkeys.mo share/locale/xh/LC_MESSAGES/kcmmouse.mo share/locale/xh/LC_MESSAGES/kcmsmserver.mo share/locale/xh/LC_MESSAGES/kcmstyle.mo share/locale/xh/LC_MESSAGES/kfontinst.mo share/locale/xh/LC_MESSAGES/krdb.mo share/locale/xh/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/zh_CN/LC_MESSAGES/attica_kde_plugin.mo share/locale/zh_CN/LC_MESSAGES/kaccess.mo share/locale/zh_CN/LC_MESSAGES/kcm5_baloofile.mo share/locale/zh_CN/LC_MESSAGES/kcm5_componentchooser.mo share/locale/zh_CN/LC_MESSAGES/kcm5_device_automounter.mo share/locale/zh_CN/LC_MESSAGES/kcm5_emoticons.mo share/locale/zh_CN/LC_MESSAGES/kcm5_icons.mo share/locale/zh_CN/LC_MESSAGES/kcm5_joystick.mo share/locale/zh_CN/LC_MESSAGES/kcm5_kded.mo share/locale/zh_CN/LC_MESSAGES/kcm5_notify.mo share/locale/zh_CN/LC_MESSAGES/kcm5_phonon.mo share/locale/zh_CN/LC_MESSAGES/kcm_activities5.mo share/locale/zh_CN/LC_MESSAGES/kcm_autostart.mo share/locale/zh_CN/LC_MESSAGES/kcm_cursortheme.mo share/locale/zh_CN/LC_MESSAGES/kcm_desktoppaths.mo share/locale/zh_CN/LC_MESSAGES/kcm_desktoptheme.mo share/locale/zh_CN/LC_MESSAGES/kcm_fonts.mo share/locale/zh_CN/LC_MESSAGES/kcm_launchfeedback.mo share/locale/zh_CN/LC_MESSAGES/kcm_lookandfeel.mo share/locale/zh_CN/LC_MESSAGES/kcm_nightcolor.mo share/locale/zh_CN/LC_MESSAGES/kcm_search.mo share/locale/zh_CN/LC_MESSAGES/kcm_solid_actions.mo share/locale/zh_CN/LC_MESSAGES/kcm_splashscreen.mo share/locale/zh_CN/LC_MESSAGES/kcm_standard_actions.mo share/locale/zh_CN/LC_MESSAGES/kcm_touchpad.mo -share/locale/zh_CN/LC_MESSAGES/kcm_translations.mo share/locale/zh_CN/LC_MESSAGES/kcm_workspace.mo share/locale/zh_CN/LC_MESSAGES/kcmaccess.mo share/locale/zh_CN/LC_MESSAGES/kcmcolors.mo share/locale/zh_CN/LC_MESSAGES/kcmformats.mo share/locale/zh_CN/LC_MESSAGES/kcmkclock.mo share/locale/zh_CN/LC_MESSAGES/kcmkeyboard.mo share/locale/zh_CN/LC_MESSAGES/kcmkeys.mo share/locale/zh_CN/LC_MESSAGES/kcmmouse.mo share/locale/zh_CN/LC_MESSAGES/kcmqtquicksettings.mo share/locale/zh_CN/LC_MESSAGES/kcmsmserver.mo share/locale/zh_CN/LC_MESSAGES/kcmstyle.mo share/locale/zh_CN/LC_MESSAGES/kfontinst.mo share/locale/zh_CN/LC_MESSAGES/knetattach5.mo share/locale/zh_CN/LC_MESSAGES/krdb.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_kwin.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/zh_CN/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/zh_CN/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/zh_CN/LC_MESSAGES/plasmaactivitymanager.mo share/locale/zh_TW/LC_MESSAGES/attica_kde_plugin.mo share/locale/zh_TW/LC_MESSAGES/kaccess.mo share/locale/zh_TW/LC_MESSAGES/kcm5_baloofile.mo share/locale/zh_TW/LC_MESSAGES/kcm5_componentchooser.mo share/locale/zh_TW/LC_MESSAGES/kcm5_device_automounter.mo share/locale/zh_TW/LC_MESSAGES/kcm5_emoticons.mo share/locale/zh_TW/LC_MESSAGES/kcm5_icons.mo share/locale/zh_TW/LC_MESSAGES/kcm5_joystick.mo share/locale/zh_TW/LC_MESSAGES/kcm5_kded.mo share/locale/zh_TW/LC_MESSAGES/kcm5_notify.mo share/locale/zh_TW/LC_MESSAGES/kcm5_phonon.mo share/locale/zh_TW/LC_MESSAGES/kcm_activities5.mo share/locale/zh_TW/LC_MESSAGES/kcm_autostart.mo share/locale/zh_TW/LC_MESSAGES/kcm_cursortheme.mo share/locale/zh_TW/LC_MESSAGES/kcm_desktoppaths.mo share/locale/zh_TW/LC_MESSAGES/kcm_desktoptheme.mo share/locale/zh_TW/LC_MESSAGES/kcm_fonts.mo share/locale/zh_TW/LC_MESSAGES/kcm_launchfeedback.mo share/locale/zh_TW/LC_MESSAGES/kcm_lookandfeel.mo share/locale/zh_TW/LC_MESSAGES/kcm_nightcolor.mo share/locale/zh_TW/LC_MESSAGES/kcm_search.mo share/locale/zh_TW/LC_MESSAGES/kcm_solid_actions.mo share/locale/zh_TW/LC_MESSAGES/kcm_splashscreen.mo share/locale/zh_TW/LC_MESSAGES/kcm_standard_actions.mo share/locale/zh_TW/LC_MESSAGES/kcm_touchpad.mo -share/locale/zh_TW/LC_MESSAGES/kcm_translations.mo share/locale/zh_TW/LC_MESSAGES/kcm_workspace.mo share/locale/zh_TW/LC_MESSAGES/kcmaccess.mo share/locale/zh_TW/LC_MESSAGES/kcmcolors.mo share/locale/zh_TW/LC_MESSAGES/kcmformats.mo share/locale/zh_TW/LC_MESSAGES/kcmkclock.mo share/locale/zh_TW/LC_MESSAGES/kcmkeyboard.mo share/locale/zh_TW/LC_MESSAGES/kcmkeys.mo share/locale/zh_TW/LC_MESSAGES/kcmmouse.mo share/locale/zh_TW/LC_MESSAGES/kcmqtquicksettings.mo share/locale/zh_TW/LC_MESSAGES/kcmsmserver.mo share/locale/zh_TW/LC_MESSAGES/kcmstyle.mo share/locale/zh_TW/LC_MESSAGES/kfontinst.mo share/locale/zh_TW/LC_MESSAGES/knetattach5.mo share/locale/zh_TW/LC_MESSAGES/krdb.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.desktopcontainment.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.kimpanel.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.kicker.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.kickoff.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.pager.mo -share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.panel.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.showActivityManager.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.taskmanager.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.trash.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.windowlist.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_touchpad.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_kwin.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/zh_TW/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/zh_TW/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo share/locale/zh_TW/LC_MESSAGES/plasmaactivitymanager.mo share/metainfo/org.kde.desktopcontainment.appdata.xml share/metainfo/org.kde.desktoptoolbox.appdata.xml share/metainfo/org.kde.paneltoolbox.appdata.xml share/metainfo/org.kde.plasma.desktop.appdata.xml share/metainfo/org.kde.plasma.desktop.appmenubar.appdata.xml share/metainfo/org.kde.plasma.desktop.defaultPanel.appdata.xml share/metainfo/org.kde.plasma.desktop.emptyPanel.appdata.xml share/metainfo/org.kde.plasma.folder.appdata.xml share/metainfo/org.kde.plasma.icontasks.appdata.xml share/metainfo/org.kde.plasma.kicker.appdata.xml share/metainfo/org.kde.plasma.kickoff.appdata.xml share/metainfo/org.kde.plasma.kimpanel.appdata.xml share/metainfo/org.kde.plasma.pager.appdata.xml share/metainfo/org.kde.plasma.showActivityManager.appdata.xml share/metainfo/org.kde.plasma.taskmanager.appdata.xml share/metainfo/org.kde.plasma.trash.appdata.xml share/metainfo/org.kde.plasma.windowlist.appdata.xml share/metainfo/org.kde.plasmashell.metainfo.xml %%SYNAPTICS%%share/plasma/desktoptheme/default/icons/touchpad.svg share/plasma/layout-templates/org.kde.plasma.desktop.appmenubar/contents/layout.js share/plasma/layout-templates/org.kde.plasma.desktop.appmenubar/metadata.desktop share/plasma/layout-templates/org.kde.plasma.desktop.appmenubar/metadata.json share/plasma/layout-templates/org.kde.plasma.desktop.defaultPanel/contents/layout.js share/plasma/layout-templates/org.kde.plasma.desktop.defaultPanel/metadata.desktop share/plasma/layout-templates/org.kde.plasma.desktop.defaultPanel/metadata.json share/plasma/layout-templates/org.kde.plasma.desktop.emptyPanel/contents/layout.js share/plasma/layout-templates/org.kde.plasma.desktop.emptyPanel/metadata.desktop share/plasma/layout-templates/org.kde.plasma.desktop.emptyPanel/metadata.json share/plasma/packages/org.kde.desktoptoolbox/contents/config/main.xml share/plasma/packages/org.kde.desktoptoolbox/contents/ui/ToolBoxButton.qml share/plasma/packages/org.kde.desktoptoolbox/contents/ui/ToolBoxItem.qml share/plasma/packages/org.kde.desktoptoolbox/contents/ui/ToolBoxRoot.qml share/plasma/packages/org.kde.desktoptoolbox/metadata.desktop share/plasma/packages/org.kde.desktoptoolbox/metadata.json share/plasma/packages/org.kde.paneltoolbox/contents/ui/main.qml share/plasma/packages/org.kde.paneltoolbox/metadata.desktop share/plasma/packages/org.kde.paneltoolbox/metadata.json share/plasma/plasmoids/org.kde.desktopcontainment/contents/config/config.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/config/main.xml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/ActionButton.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/AppletAppearance.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/AppletHandle.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/BackButtonItem.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/BusyOverlay.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/CompactRepresentation.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/ConfigFilter.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/ConfigIcons.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/ConfigLocation.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/ConfigTweaks.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/FolderItemActionButton.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/FolderItemDelegate.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/FolderItemPreviewPluginsDialog.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/FolderView.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/FolderViewDialog.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/FolderViewDropArea.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/FolderViewLayer.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/ResizeHandle.qml share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/code/FolderTools.js share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/code/LayoutManager.js share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/main.qml share/plasma/plasmoids/org.kde.desktopcontainment/metadata.desktop share/plasma/plasmoids/org.kde.desktopcontainment/metadata.json share/plasma/plasmoids/org.kde.panel/contents/config/main.xml share/plasma/plasmoids/org.kde.panel/contents/ui/ConfigOverlay.qml share/plasma/plasmoids/org.kde.panel/contents/ui/LayoutManager.js share/plasma/plasmoids/org.kde.panel/contents/ui/main.qml share/plasma/plasmoids/org.kde.panel/metadata.desktop share/plasma/plasmoids/org.kde.panel/metadata.json share/plasma/plasmoids/org.kde.panel/plasma-containment-panel.desktop share/plasma/plasmoids/org.kde.plasma.folder/metadata.desktop share/plasma/plasmoids/org.kde.plasma.folder/metadata.json share/plasma/plasmoids/org.kde.plasma.icontasks/metadata.desktop share/plasma/plasmoids/org.kde.plasma.icontasks/metadata.json share/plasma/plasmoids/org.kde.plasma.kicker/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/ActionMenu.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/CompactRepresentation.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/ConfigGeneral.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/DashboardRepresentation.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/DashboardTabBar.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/DashboardTabButton.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/ItemGridDelegate.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/ItemGridView.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/ItemListDelegate.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/ItemListDialog.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/ItemListView.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/ItemMultiGridView.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/MenuRepresentation.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/RunnerResultsList.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/SideBarItem.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/SideBarSection.qml share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/code/tools.js share/plasma/plasmoids/org.kde.plasma.kicker/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.kicker/metadata.desktop share/plasma/plasmoids/org.kde.plasma.kicker/metadata.json share/plasma/plasmoids/org.kde.plasma.kickoff/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/ActionMenu.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/ApplicationsView.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/BaseView.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/Breadcrumb.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/ComputerView.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/ConfigButtons.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/ConfigGeneral.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/FavoritesView.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/FullRepresentation.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/Header.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/Kickoff.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/KickoffButton.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/KickoffConfigurationButton.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/KickoffHighlight.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/KickoffItem.qml +share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/KickoffListView.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/LeaveView.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/OftenUsedView.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/RecentlyUsedView.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/SearchView.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/SectionDelegate.qml share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/code/tools.js share/plasma/plasmoids/org.kde.plasma.kickoff/metadata.desktop share/plasma/plasmoids/org.kde.plasma.kickoff/metadata.json share/plasma/plasmoids/org.kde.plasma.kimpanel/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.kimpanel/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.kimpanel/contents/ui/ActionMenu.qml share/plasma/plasmoids/org.kde.plasma.kimpanel/contents/ui/CandidateHighlight.qml share/plasma/plasmoids/org.kde.plasma.kimpanel/contents/ui/ConfigAppearance.qml share/plasma/plasmoids/org.kde.plasma.kimpanel/contents/ui/ContextMenu.qml share/plasma/plasmoids/org.kde.plasma.kimpanel/contents/ui/InputPanel.qml share/plasma/plasmoids/org.kde.plasma.kimpanel/contents/ui/StatusIcon.qml share/plasma/plasmoids/org.kde.plasma.kimpanel/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.kimpanel/metadata.desktop share/plasma/plasmoids/org.kde.plasma.kimpanel/metadata.json share/plasma/plasmoids/org.kde.plasma.pager/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.pager/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.pager/contents/ui/configGeneral.qml share/plasma/plasmoids/org.kde.plasma.pager/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.pager/metadata.desktop share/plasma/plasmoids/org.kde.plasma.pager/metadata.json share/plasma/plasmoids/org.kde.plasma.showActivityManager/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.showActivityManager/metadata.desktop share/plasma/plasmoids/org.kde.plasma.showActivityManager/metadata.json share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/AudioStream.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/Badge.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/ConfigGeneral.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/ContextMenu.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/GroupDialog.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/GroupExpanderOverlay.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/MouseHandler.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/PulseAudio.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/Task.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/TaskBadgeOverlay.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/TaskList.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/TaskProgressOverlay.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/ToolTipDelegate.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/ToolTipInstance.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/ToolTipWindowMouseArea.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/code/layout.js share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/code/tools.js share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.taskmanager/metadata.desktop share/plasma/plasmoids/org.kde.plasma.taskmanager/metadata.json share/plasma/plasmoids/org.kde.plasma.trash/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.trash/metadata.desktop share/plasma/plasmoids/org.kde.plasma.trash/metadata.json share/plasma/plasmoids/org.kde.plasma.windowlist/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.windowlist/metadata.desktop share/plasma/plasmoids/org.kde.plasma.windowlist/metadata.json %%SYNAPTICS%%share/plasma/plasmoids/touchpad/contents/ui/touchpad.qml %%SYNAPTICS%%share/plasma/plasmoids/touchpad/metadata.desktop %%SYNAPTICS%%share/plasma/plasmoids/touchpad/metadata.json share/plasma/services/kimpanel.operations %%SYNAPTICS%%share/plasma/services/touchpad.operations share/plasma/shells/org.kde.plasma.desktop/contents/InteractiveConsole.qml share/plasma/shells/org.kde.plasma.desktop/contents/activitymanager/ActivityItem.qml share/plasma/shells/org.kde.plasma.desktop/contents/activitymanager/ActivityList.qml share/plasma/shells/org.kde.plasma.desktop/contents/activitymanager/ActivityManager.qml share/plasma/shells/org.kde.plasma.desktop/contents/activitymanager/Heading.qml share/plasma/shells/org.kde.plasma.desktop/contents/activitymanager/StoppedActivityItem.qml share/plasma/shells/org.kde.plasma.desktop/contents/activitymanager/WindowPreview.qml share/plasma/shells/org.kde.plasma.desktop/contents/activitymanager/static.js share/plasma/shells/org.kde.plasma.desktop/contents/applet/AppletError.qml share/plasma/shells/org.kde.plasma.desktop/contents/applet/CompactApplet.qml share/plasma/shells/org.kde.plasma.desktop/contents/applet/DefaultCompactRepresentation.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/AppletConfiguration.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/ConfigCategoryDelegate.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/ConfigurationContainmentActions.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/ConfigurationContainmentAppearance.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/ConfigurationKcmPage.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/ConfigurationShortcuts.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/ContainmentConfiguration.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/MouseEventInputButton.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/PanelConfiguration.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/panelconfiguration/EdgeHandle.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/panelconfiguration/MoreSettingsMenu.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/panelconfiguration/Ruler.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/panelconfiguration/SizeHandle.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/panelconfiguration/SliderHandle.qml share/plasma/shells/org.kde.plasma.desktop/contents/configuration/panelconfiguration/ToolBar.qml share/plasma/shells/org.kde.plasma.desktop/contents/defaults share/plasma/shells/org.kde.plasma.desktop/contents/explorer/AppletAlternatives.qml share/plasma/shells/org.kde.plasma.desktop/contents/explorer/AppletDelegate.qml share/plasma/shells/org.kde.plasma.desktop/contents/explorer/Tooltip.qml share/plasma/shells/org.kde.plasma.desktop/contents/explorer/WidgetExplorer.qml share/plasma/shells/org.kde.plasma.desktop/contents/layout.js share/plasma/shells/org.kde.plasma.desktop/contents/loader.qml share/plasma/shells/org.kde.plasma.desktop/contents/updates/obsolete_kickoffrc.js share/plasma/shells/org.kde.plasma.desktop/contents/views/Desktop.qml share/plasma/shells/org.kde.plasma.desktop/contents/views/Panel.qml share/plasma/shells/org.kde.plasma.desktop/metadata.desktop share/plasma/shells/org.kde.plasma.desktop/metadata.json share/polkit-1/actions/org.kde.fontinst.policy share/polkit-1/actions/org.kde.kcontrol.kcmclock.policy share/solid/devices/solid-device-Battery.desktop share/solid/devices/solid-device-Block.desktop share/solid/devices/solid-device-Camera.desktop share/solid/devices/solid-device-OpticalDisc.desktop share/solid/devices/solid-device-OpticalDrive.desktop share/solid/devices/solid-device-PortableMediaPlayer.desktop share/solid/devices/solid-device-Processor.desktop share/solid/devices/solid-device-StorageAccess.desktop share/solid/devices/solid-device-StorageDrive.desktop share/solid/devices/solid-device-StorageVolume.desktop Index: head/x11/plasma5-plasma-integration/Makefile =================================================================== --- head/x11/plasma5-plasma-integration/Makefile (revision 492810) +++ head/x11/plasma5-plasma-integration/Makefile (revision 492811) @@ -1,39 +1,38 @@ # $FreeBSD$ PORTNAME= plasma-integration DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= x11 kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Qt Platform Theme integration plugins for the Plasma workspaces RUN_DEPENDS= hack-font>=0:x11-fonts/hack-font USES= cmake compiler:c++11-lib cpe gettext kde:5 pkgconfig \ qt:5 shebangfix tar:xz USE_KDE= auth bookmarks breeze codecs completion config configwidgets \ coreaddons ecm i18n iconthemes itemviews jobwidgets kio \ notifications service solid wayland \ widgetsaddons windowsystem xmlgui USE_QT= concurrent core declarative dbus gui network quickcontrols2 widgets \ x11extras xml \ buildtools_build qmake_build USE_XORG= xcb xcursor SHEBANG_FILES= src/platformtheme/fonts_akregator.pl \ src/platformtheme/fonts_global.pl \ src/platformtheme/fonts_kate.pl \ src/platformtheme/mono_font.pl OPTIONS_SINGLE= NOTO OPTIONS_SINGLE_NOTO= LIGHT BIG OPTIONS_DEFAULT= LIGHT NOTO_DESC= KDE default font LIGHT_DESC= Use noto-light BIG_DESC= Use complete noto LIGHT_RUN_DEPENDS= noto-lite>=0:x11-fonts/noto-lite BIG_RUN_DEPENDS= noto>=0:x11-fonts/noto .include Index: head/x11/plasma5-plasma-integration/distinfo =================================================================== --- head/x11/plasma5-plasma-integration/distinfo (revision 492810) +++ head/x11/plasma5-plasma-integration/distinfo (revision 492811) @@ -1,3 +1,3 @@ -TIMESTAMP = 1547014661 -SHA256 (KDE/plasma/5.14.5/plasma-integration-5.14.5.tar.xz) = ba8d9fec80227c016ee2703dac3b27921ee4045e3d0727c2e992919823cdd096 -SIZE (KDE/plasma/5.14.5/plasma-integration-5.14.5.tar.xz) = 54192 +TIMESTAMP = 1549994005 +SHA256 (KDE/plasma/5.15.0/plasma-integration-5.15.0.tar.xz) = 714c09ab2e4eaaaa0ab6a1b03e3e68039ad65e349fef08b694be82a002be0f51 +SIZE (KDE/plasma/5.15.0/plasma-integration-5.15.0.tar.xz) = 55188 Index: head/x11/plasma5-plasma-integration/pkg-plist =================================================================== --- head/x11/plasma5-plasma-integration/pkg-plist (revision 492810) +++ head/x11/plasma5-plasma-integration/pkg-plist (revision 492811) @@ -1,49 +1,48 @@ %%QT_PLUGINDIR%%/platformthemes/KDEPlasmaPlatformTheme.so share/kconf_update/fonts_akregator.pl share/kconf_update/fonts_akregator.upd share/kconf_update/fonts_global.pl share/kconf_update/fonts_global.upd share/kconf_update/fonts_global_toolbar.upd share/kconf_update/fonts_kate.pl share/kconf_update/fonts_kate.upd share/locale/ar/LC_MESSAGES/plasmaintegration5.mo -share/locale/ast/LC_MESSAGES/plasmaintegration5.mo share/locale/ca/LC_MESSAGES/plasmaintegration5.mo share/locale/ca@valencia/LC_MESSAGES/plasmaintegration5.mo share/locale/cs/LC_MESSAGES/plasmaintegration5.mo share/locale/da/LC_MESSAGES/plasmaintegration5.mo share/locale/de/LC_MESSAGES/plasmaintegration5.mo share/locale/el/LC_MESSAGES/plasmaintegration5.mo share/locale/en_GB/LC_MESSAGES/plasmaintegration5.mo share/locale/es/LC_MESSAGES/plasmaintegration5.mo share/locale/et/LC_MESSAGES/plasmaintegration5.mo share/locale/eu/LC_MESSAGES/plasmaintegration5.mo share/locale/fi/LC_MESSAGES/plasmaintegration5.mo share/locale/fr/LC_MESSAGES/plasmaintegration5.mo share/locale/gl/LC_MESSAGES/plasmaintegration5.mo share/locale/he/LC_MESSAGES/plasmaintegration5.mo share/locale/hu/LC_MESSAGES/plasmaintegration5.mo share/locale/ia/LC_MESSAGES/plasmaintegration5.mo share/locale/id/LC_MESSAGES/plasmaintegration5.mo share/locale/it/LC_MESSAGES/plasmaintegration5.mo share/locale/ja/LC_MESSAGES/plasmaintegration5.mo share/locale/ko/LC_MESSAGES/plasmaintegration5.mo share/locale/nb/LC_MESSAGES/plasmaintegration5.mo share/locale/nl/LC_MESSAGES/plasmaintegration5.mo share/locale/nn/LC_MESSAGES/plasmaintegration5.mo share/locale/pa/LC_MESSAGES/plasmaintegration5.mo share/locale/pl/LC_MESSAGES/plasmaintegration5.mo share/locale/pt/LC_MESSAGES/plasmaintegration5.mo share/locale/pt_BR/LC_MESSAGES/plasmaintegration5.mo share/locale/ru/LC_MESSAGES/plasmaintegration5.mo share/locale/sk/LC_MESSAGES/plasmaintegration5.mo share/locale/sl/LC_MESSAGES/plasmaintegration5.mo share/locale/sr/LC_MESSAGES/plasmaintegration5.mo share/locale/sr@ijekavian/LC_MESSAGES/plasmaintegration5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasmaintegration5.mo share/locale/sr@latin/LC_MESSAGES/plasmaintegration5.mo share/locale/sv/LC_MESSAGES/plasmaintegration5.mo share/locale/tr/LC_MESSAGES/plasmaintegration5.mo share/locale/uk/LC_MESSAGES/plasmaintegration5.mo share/locale/zh_CN/LC_MESSAGES/plasmaintegration5.mo share/locale/zh_TW/LC_MESSAGES/plasmaintegration5.mo Index: head/x11/plasma5-plasma-workspace/Makefile =================================================================== --- head/x11/plasma5-plasma-workspace/Makefile (revision 492810) +++ head/x11/plasma5-plasma-workspace/Makefile (revision 492811) @@ -1,58 +1,57 @@ # $FreeBSD$ PORTNAME= plasma-workspace DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= x11 kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 Plasma workspace LIB_DEPENDS= libcln.so:math/cln \ libdbusmenu-qt5.so:devel/libdbusmenu-qt@qt5 \ libqalculate.so:math/libqalculate \ libxcb-image.so:x11/xcb-util-image \ libxcb-util.so:x11/xcb-util RUN_DEPENDS= ck-launch-session:sysutils/consolekit2\ iceauth:x11/iceauth \ xsetroot:x11/xsetroot \ xset:x11/xset \ xmessage:x11/xmessage \ ${LOCALBASE}/libdata/pkgconfig/xkeyboard-config.pc:x11/xkeyboard-config \ iso-codes>=0:misc/iso-codes USES= cmake compiler:c++11-lib cpe gettext kde:5 pkgconfig \ qt:5 tar:xz USE_KDE= activities activitymanagerd attica auth baloo bookmarks \ codecs completion config configwidgets coreaddons crash \ dbusaddons doctools emoticons filemetadata globalaccel \ guiaddons holidays i18n iconthemes idletime init itemmodels \ itemviews jobwidgets js jsembed kcmutils kdeclarative \ kdelibs4support kdesu kdewebkit kio kscreenlocker \ notifications package pty kwin libkscreen libksysguard \ newstuff notifyconfig parts plasma-framework \ plasma-integration prison runner service solid sonnet \ texteditor textwidgets unitconversion wallet wayland \ widgetsaddons windowsystem xmlgui xmlrpcclient \ breeze_run breeze-icons_run oxygen-icons5_run \ kded_run milou_run USE_QT= concurrent core declarative dbus graphicaleffects gui network phonon4 \ printsupport qdbus quickcontrols_run script sql \ testlib webkit widgets x11extras xml \ paths_run \ buildtools_build qmake_build USE_XORG= ice sm x11 xau xcb xcomposite xext xfixes xft xkbfile xrender xtst CMAKE_OFF= BUILD_TESTING post-patch: # set the paths in startkde ${REINPLACE_CMD} -e 's|%%KDE_PREFIX%%|${KDE_PREFIX}|g' \ -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \ -e 's|%%QT_BINDIR%%|${QT_BINDIR}|g' \ -e 's|%%QT_IMPORTDIR%%|${QT_IMPORTDIR}|g' \ -e 's|%%QT_PLUGINDIR%%|${QT_PLUGINDIR}|g' \ -e 's|%%QT_QMLDIR%%|${QT_QMLDIR}|g' \ ${PATCH_WRKSRC}/startkde/startkde.cmake .include Index: head/x11/plasma5-plasma-workspace/distinfo =================================================================== --- head/x11/plasma5-plasma-workspace/distinfo (revision 492810) +++ head/x11/plasma5-plasma-workspace/distinfo (revision 492811) @@ -1,3 +1,3 @@ -TIMESTAMP = 1547014662 -SHA256 (KDE/plasma/5.14.5/plasma-workspace-5.14.5.tar.xz) = 903ef4dd2ca3040b2be7435d8f170a9df78a6d05f3525cfa8f212e52b5e5a391 -SIZE (KDE/plasma/5.14.5/plasma-workspace-5.14.5.tar.xz) = 4578556 +TIMESTAMP = 1549994006 +SHA256 (KDE/plasma/5.15.0/plasma-workspace-5.15.0.tar.xz) = c9e696b0cb6040c90256709f68ea153da86da97a743c8ca8f96412d744e77b65 +SIZE (KDE/plasma/5.15.0/plasma-workspace-5.15.0.tar.xz) = 4706936 Index: head/x11/plasma5-plasma-workspace/pkg-plist =================================================================== --- head/x11/plasma5-plasma-workspace/pkg-plist (revision 492810) +++ head/x11/plasma5-plasma-workspace/pkg-plist (revision 492811) @@ -1,4768 +1,4772 @@ bin/gmenudbusmenuproxy bin/kcheckrunning bin/kcminit bin/kcminit_startup bin/kdostartupconfig5 bin/klipper bin/krunner bin/ksmserver bin/ksplashqml bin/kstartupconfig5 bin/kuiserver5 bin/plasma_waitforname bin/plasmashell bin/plasmawindowed bin/startkde bin/startplasmacompositor bin/systemmonitor bin/xembedsniproxy etc/xdg/autostart/gmenudbusmenuproxy.desktop etc/xdg/autostart/klipper.desktop etc/xdg/autostart/krunner.desktop etc/xdg/autostart/org.kde.plasmashell.desktop etc/xdg/autostart/xembedsniproxy.desktop etc/xdg/klipper.categories etc/xdg/kuiserver.categories etc/xdg/plasma-workspace.categories etc/xdg/plasmoids.knsrc etc/xdg/taskmanagerrulesrc etc/xdg/wallpaper.knsrc +etc/xdg/wallpaperplugin.knsrc include/colorcorrect/colorcorrect_export.h include/colorcorrect/colorcorrectconstants.h include/colorcorrect/compositorcoloradaptor.h include/colorcorrect/geolocator.h include/kworkspace5/config-libkworkspace.h include/kworkspace5/kdisplaymanager.h include/kworkspace5/kworkspace.h include/kworkspace5/kworkspace_export.h include/plasma/weather/ion.h include/plasma/weather/ion_export.h include/taskmanager/abstracttasksmodel.h include/taskmanager/abstracttasksmodeliface.h include/taskmanager/abstracttasksproxymodeliface.h include/taskmanager/abstractwindowtasksmodel.h include/taskmanager/activityinfo.h include/taskmanager/concatenatetasksproxymodel.h include/taskmanager/flattentaskgroupsproxymodel.h include/taskmanager/launchertasksmodel.h include/taskmanager/startuptasksmodel.h include/taskmanager/taskfilterproxymodel.h include/taskmanager/taskgroupingproxymodel.h include/taskmanager/taskmanager_export.h include/taskmanager/tasksmodel.h include/taskmanager/tasktools.h include/taskmanager/virtualdesktopinfo.h include/taskmanager/waylandtasksmodel.h include/taskmanager/windowtasksmodel.h include/taskmanager/xwindowtasksmodel.h lib/cmake/KRunnerAppDBusInterface/KRunnerAppDBusInterfaceConfig.cmake lib/cmake/KSMServerDBusInterface/KSMServerDBusInterfaceConfig.cmake lib/cmake/LibColorCorrect/LibColorCorrectConfig.cmake lib/cmake/LibColorCorrect/LibColorCorrectConfigVersion.cmake lib/cmake/LibColorCorrect/LibColorCorrectLibraryTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/LibColorCorrect/LibColorCorrectLibraryTargets.cmake lib/cmake/LibKWorkspace/LibKWorkspaceConfig.cmake lib/cmake/LibKWorkspace/LibKWorkspaceConfigVersion.cmake lib/cmake/LibKWorkspace/LibKWorkspaceLibraryTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/LibKWorkspace/LibKWorkspaceLibraryTargets.cmake lib/cmake/LibTaskManager/LibTaskManagerConfig.cmake lib/cmake/LibTaskManager/LibTaskManagerConfigVersion.cmake lib/cmake/LibTaskManager/LibTaskManagerLibraryTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/LibTaskManager/LibTaskManagerLibraryTargets.cmake lib/kconf_update_bin/krunnerplugins lib/libcolorcorrect.so lib/libcolorcorrect.so.5 lib/libcolorcorrect.so.%%KDE_PLASMA_VERSION%% lib/libexec/baloorunner lib/libexec/ksmserver-logout-greeter lib/libexec/ksyncdbusenv lib/libexec/startplasma lib/libkdeinit5_kcminit.so lib/libkdeinit5_kcminit_startup.so lib/libkdeinit5_klipper.so lib/libkdeinit5_ksmserver.so lib/libkdeinit5_kuiserver5.so lib/libkworkspace5.so lib/libkworkspace5.so.5 lib/libkworkspace5.so.%%KDE_PLASMA_VERSION%% lib/libtaskmanager.so lib/libtaskmanager.so.%%KDE_PLASMA_VERSION%% lib/libtaskmanager.so.6 lib/libweather_ion.so lib/libweather_ion.so.7 lib/libweather_ion.so.7.0.0 %%QT_PLUGINDIR%%/kcm_krunner_kill.so +%%QT_PLUGINDIR%%/kcms/kcm_translations.so %%QT_PLUGINDIR%%/kf5/kded/appmenu.so %%QT_PLUGINDIR%%/kf5/kded/colorcorrectlocationupdater.so %%QT_PLUGINDIR%%/kf5/kded/desktopnotifier.so %%QT_PLUGINDIR%%/kf5/kded/freespacenotifier.so %%QT_PLUGINDIR%%/kf5/kded/ksysguard.so %%QT_PLUGINDIR%%/kf5/kded/ktimezoned.so %%QT_PLUGINDIR%%/kf5/kded/solidautoeject.so %%QT_PLUGINDIR%%/kf5/kded/soliduiserver.so %%QT_PLUGINDIR%%/kf5/kded/statusnotifierwatcher.so %%QT_PLUGINDIR%%/kf5/kio/desktop.so %%QT_PLUGINDIR%%/kio_applications.so %%QT_PLUGINDIR%%/kpackage/packagestructure/plasma_packagestructure_layoutemplate.so %%QT_PLUGINDIR%%/kpackage/packagestructure/plasma_packagestructure_lookandfeel.so %%QT_PLUGINDIR%%/kpackage/packagestructure/plasma_packagestructure_plasmashell.so %%QT_PLUGINDIR%%/kpackage/packagestructure/plasma_packagestructure_wallpaper.so %%QT_PLUGINDIR%%/kpackage/packagestructure/plasma_packagestructure_wallpaperimages.so %%QT_PLUGINDIR%%/krunner_activities.so %%QT_PLUGINDIR%%/krunner_bookmarksrunner.so %%QT_PLUGINDIR%%/krunner_calculatorrunner.so %%QT_PLUGINDIR%%/krunner_kill.so %%QT_PLUGINDIR%%/krunner_locations.so %%QT_PLUGINDIR%%/krunner_placesrunner.so %%QT_PLUGINDIR%%/krunner_powerdevil.so %%QT_PLUGINDIR%%/krunner_recentdocuments.so %%QT_PLUGINDIR%%/krunner_services.so %%QT_PLUGINDIR%%/krunner_sessions.so %%QT_PLUGINDIR%%/krunner_shell.so %%QT_PLUGINDIR%%/krunner_webshortcuts.so %%QT_PLUGINDIR%%/krunner_windowedwidgets.so %%QT_PLUGINDIR%%/krunner_windows.so %%QT_PLUGINDIR%%/phonon_platform/kde.so %%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.private.systemtray.so %%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.systemtray.so %%QT_PLUGINDIR%%/plasma/applets/plasma_applet_appmenu.so %%QT_PLUGINDIR%%/plasma/applets/plasma_applet_calendar.so %%QT_PLUGINDIR%%/plasma/applets/plasma_applet_icon.so %%QT_PLUGINDIR%%/plasma/applets/plasma_applet_notifications.so %%QT_PLUGINDIR%%/plasma/dataengine/ion_bbcukmet.so %%QT_PLUGINDIR%%/plasma/dataengine/ion_envcan.so %%QT_PLUGINDIR%%/plasma/dataengine/ion_noaa.so %%QT_PLUGINDIR%%/plasma/dataengine/ion_wettercom.so %%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_activities.so %%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_applicationjobs.so %%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_apps.so %%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_clipboard.so %%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_devicenotifications.so %%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_dict.so %%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_executable.so %%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_favicons.so %%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_filebrowser.so %%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_hotplug.so %%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_keystate.so %%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_mouse.so %%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_mpris2.so %%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_notifications.so %%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_packagekit.so %%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_places.so %%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_powermanagement.so %%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_share.so %%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_soliddevice.so %%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_statusnotifieritem.so %%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_systemmonitor.so %%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_time.so %%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_weather.so %%QT_PLUGINDIR%%/plasma/packagestructure/plasma_packagestructure_share.so %%QT_PLUGINDIR%%/plasma_containmentactions_applauncher.so %%QT_PLUGINDIR%%/plasma_containmentactions_contextmenu.so %%QT_PLUGINDIR%%/plasma_containmentactions_paste.so %%QT_PLUGINDIR%%/plasma_containmentactions_switchactivity.so %%QT_PLUGINDIR%%/plasma_containmentactions_switchdesktop.so %%QT_PLUGINDIR%%/plasma_containmentactions_switchwindow.so %%QT_PLUGINDIR%%/plasmacalendarplugins/holidays/HolidaysConfig.qml %%QT_PLUGINDIR%%/plasmacalendarplugins/holidaysevents.so %%QT_QMLDIR%%/org/kde/colorcorrect/libcolorcorrectplugin.so %%QT_QMLDIR%%/org/kde/colorcorrect/qmldir %%QT_QMLDIR%%/org/kde/holidayeventshelperplugin/libholidayeventshelperplugin.so %%QT_QMLDIR%%/org/kde/holidayeventshelperplugin/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/appmenu/libappmenuplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/appmenu/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/digitalclock/libdigitalclockplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/digitalclock/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/notifications/libnotificationshelperplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/notifications/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/sessions/libsessionsprivateplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/sessions/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/shell/libplasmashellprivateplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/shell/qmldir %%QT_QMLDIR%%/org/kde/plasma/wallpapers/image/libplasma_wallpaper_imageplugin.so %%QT_QMLDIR%%/org/kde/plasma/wallpapers/image/qmldir %%QT_QMLDIR%%/org/kde/plasma/workspace/components/BatteryIcon.qml %%QT_QMLDIR%%/org/kde/plasma/workspace/components/qmldir %%QT_QMLDIR%%/org/kde/plasma/workspace/keyboardlayout/libkeyboardlayoutplugin.so %%QT_QMLDIR%%/org/kde/plasma/workspace/keyboardlayout/qmldir %%QT_QMLDIR%%/org/kde/taskmanager/libtaskmanagerplugin.so %%QT_QMLDIR%%/org/kde/taskmanager/qmldir share/applications/org.kde.klipper.desktop share/applications/org.kde.plasmashell.desktop share/applications/org.kde.systemmonitor.desktop share/applications/plasma-windowed.desktop share/config.kcfg/freespacenotifier.kcfg share/dbus-1/interfaces/com.canonical.AppMenu.Registrar.xml share/dbus-1/interfaces/org.kde.KSMServerInterface.xml share/dbus-1/interfaces/org.kde.KSplash.xml share/dbus-1/interfaces/org.kde.PlasmaShell.xml share/dbus-1/interfaces/org.kde.kappmenu.xml share/dbus-1/interfaces/org.kde.krunner.App.xml share/dbus-1/services/kf5_org.kde.kuiserver.service +share/dbus-1/services/org.kde.LogoutPrompt.service share/dbus-1/services/org.kde.baloorunner.service share/dbus-1/services/org.kde.krunner.service share/dbus-1/services/org.kde.plasma.Notifications.service share/desktop-directories/kf5-development-translation.directory share/desktop-directories/kf5-development-webdevelopment.directory share/desktop-directories/kf5-development.directory share/desktop-directories/kf5-editors.directory share/desktop-directories/kf5-edu-languages.directory share/desktop-directories/kf5-edu-mathematics.directory share/desktop-directories/kf5-edu-miscellaneous.directory share/desktop-directories/kf5-edu-science.directory share/desktop-directories/kf5-edu-tools.directory share/desktop-directories/kf5-education.directory share/desktop-directories/kf5-games-arcade.directory share/desktop-directories/kf5-games-board.directory share/desktop-directories/kf5-games-card.directory share/desktop-directories/kf5-games-kids.directory share/desktop-directories/kf5-games-logic.directory share/desktop-directories/kf5-games-roguelikes.directory share/desktop-directories/kf5-games-strategy.directory share/desktop-directories/kf5-games.directory share/desktop-directories/kf5-graphics.directory share/desktop-directories/kf5-internet-terminal.directory share/desktop-directories/kf5-internet.directory share/desktop-directories/kf5-main.directory share/desktop-directories/kf5-more.directory share/desktop-directories/kf5-multimedia.directory share/desktop-directories/kf5-office.directory share/desktop-directories/kf5-science.directory share/desktop-directories/kf5-settingsmenu.directory share/desktop-directories/kf5-system-terminal.directory share/desktop-directories/kf5-system.directory share/desktop-directories/kf5-toys.directory share/desktop-directories/kf5-unknown.directory share/desktop-directories/kf5-utilities-accessibility.directory share/desktop-directories/kf5-utilities-desktop.directory share/desktop-directories/kf5-utilities-file.directory share/desktop-directories/kf5-utilities-peripherals.directory share/desktop-directories/kf5-utilities-pim.directory share/desktop-directories/kf5-utilities-xutils.directory share/desktop-directories/kf5-utilities.directory share/doc/HTML/ca/kcontrol/screenlocker/index.cache.bz2 share/doc/HTML/ca/kcontrol/screenlocker/index.docbook +share/doc/HTML/ca/kcontrol/translations/index.cache.bz2 +share/doc/HTML/ca/kcontrol/translations/index.docbook share/doc/HTML/ca/klipper/index.cache.bz2 share/doc/HTML/ca/klipper/index.docbook share/doc/HTML/ca/klipper/klipper-widget.png share/doc/HTML/ca/klipper/screenshot.png share/doc/HTML/de/kcontrol/screenlocker/index.cache.bz2 share/doc/HTML/de/kcontrol/screenlocker/index.docbook +share/doc/HTML/de/kcontrol/translations/index.cache.bz2 +share/doc/HTML/de/kcontrol/translations/index.docbook share/doc/HTML/de/klipper/index.cache.bz2 share/doc/HTML/de/klipper/index.docbook share/doc/HTML/en/PolicyKit-kde/authdialog_1.png share/doc/HTML/en/PolicyKit-kde/authdialog_2.png share/doc/HTML/en/PolicyKit-kde/authdialog_3.png share/doc/HTML/en/PolicyKit-kde/authdialog_4.png share/doc/HTML/en/PolicyKit-kde/authdialog_5.png share/doc/HTML/en/PolicyKit-kde/authdialog_6.png share/doc/HTML/en/PolicyKit-kde/authorization.docbook share/doc/HTML/en/PolicyKit-kde/authorization_1.png share/doc/HTML/en/PolicyKit-kde/authorization_2.png share/doc/HTML/en/PolicyKit-kde/authorizationagent.docbook share/doc/HTML/en/PolicyKit-kde/howitworks.docbook share/doc/HTML/en/PolicyKit-kde/index.cache.bz2 share/doc/HTML/en/PolicyKit-kde/index.docbook share/doc/HTML/en/PolicyKit-kde/introduction.docbook share/doc/HTML/en/kcontrol/screenlocker/index.cache.bz2 share/doc/HTML/en/kcontrol/screenlocker/index.docbook +share/doc/HTML/en/kcontrol/translations/index.cache.bz2 +share/doc/HTML/en/kcontrol/translations/index.docbook share/doc/HTML/en/klipper/index.cache.bz2 share/doc/HTML/en/klipper/index.docbook share/doc/HTML/en/klipper/klipper-application.png share/doc/HTML/en/klipper/klipper-widget.png share/doc/HTML/en/klipper/screenshot.png share/doc/HTML/it/kcontrol/screenlocker/index.cache.bz2 share/doc/HTML/it/kcontrol/screenlocker/index.docbook +share/doc/HTML/it/kcontrol/translations/index.cache.bz2 +share/doc/HTML/it/kcontrol/translations/index.docbook share/doc/HTML/it/klipper/index.cache.bz2 share/doc/HTML/it/klipper/index.docbook share/doc/HTML/nl/kcontrol/screenlocker/index.cache.bz2 share/doc/HTML/nl/kcontrol/screenlocker/index.docbook +share/doc/HTML/nl/kcontrol/translations/index.cache.bz2 +share/doc/HTML/nl/kcontrol/translations/index.docbook share/doc/HTML/nl/klipper/index.cache.bz2 share/doc/HTML/nl/klipper/index.docbook share/doc/HTML/pt/kcontrol/screenlocker/index.cache.bz2 share/doc/HTML/pt/kcontrol/screenlocker/index.docbook +share/doc/HTML/pt/kcontrol/translations/index.cache.bz2 +share/doc/HTML/pt/kcontrol/translations/index.docbook share/doc/HTML/pt/klipper/index.cache.bz2 share/doc/HTML/pt/klipper/index.docbook share/doc/HTML/pt_BR/kcontrol/screenlocker/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/screenlocker/index.docbook +share/doc/HTML/pt_BR/kcontrol/translations/index.cache.bz2 +share/doc/HTML/pt_BR/kcontrol/translations/index.docbook share/doc/HTML/pt_BR/klipper/index.cache.bz2 share/doc/HTML/pt_BR/klipper/index.docbook share/doc/HTML/pt_BR/klipper/klipper-application.png share/doc/HTML/pt_BR/klipper/klipper-widget.png share/doc/HTML/pt_BR/klipper/screenshot.png share/doc/HTML/ru/kcontrol/screenlocker/index.cache.bz2 share/doc/HTML/ru/kcontrol/screenlocker/index.docbook +share/doc/HTML/ru/kcontrol/translations/index.cache.bz2 +share/doc/HTML/ru/kcontrol/translations/index.docbook share/doc/HTML/sv/kcontrol/screenlocker/index.cache.bz2 share/doc/HTML/sv/kcontrol/screenlocker/index.docbook +share/doc/HTML/sv/kcontrol/translations/index.cache.bz2 +share/doc/HTML/sv/kcontrol/translations/index.docbook share/doc/HTML/sv/klipper/index.cache.bz2 share/doc/HTML/sv/klipper/index.docbook share/doc/HTML/uk/kcontrol/screenlocker/index.cache.bz2 share/doc/HTML/uk/kcontrol/screenlocker/index.docbook +share/doc/HTML/uk/kcontrol/translations/index.cache.bz2 +share/doc/HTML/uk/kcontrol/translations/index.docbook share/doc/HTML/uk/klipper/index.cache.bz2 share/doc/HTML/uk/klipper/index.docbook share/doc/HTML/uk/klipper/klipper-widget.png share/doc/HTML/uk/klipper/screenshot.png share/kconf_update/krunnerplugins.upd share/kdevappwizard/templates/ion-dataengine.tar.bz2 share/kio_desktop/directory.desktop share/kio_desktop/directory.trash share/knotifications5/freespacenotifier.notifyrc share/knotifications5/phonon.notifyrc +share/kpackage/kcms/kcm_translations/contents/ui/main.qml +share/kpackage/kcms/kcm_translations/metadata.desktop +share/kpackage/kcms/kcm_translations/metadata.json share/kservices5/applications.protocol share/kservices5/desktop.protocol share/kservices5/ion-bbcukmet.desktop share/kservices5/ion-envcan.desktop share/kservices5/ion-noaa.desktop share/kservices5/ion-wettercom.desktop +share/kservices5/kcm_translations.desktop share/kservices5/kuiserver.desktop share/kservices5/plasma-applet-org.kde.plasma.activitybar.desktop share/kservices5/plasma-applet-org.kde.plasma.analogclock.desktop share/kservices5/plasma-applet-org.kde.plasma.appmenu.desktop share/kservices5/plasma-applet-org.kde.plasma.battery.desktop share/kservices5/plasma-applet-org.kde.plasma.calendar.desktop share/kservices5/plasma-applet-org.kde.plasma.clipboard.desktop share/kservices5/plasma-applet-org.kde.plasma.devicenotifier.desktop share/kservices5/plasma-applet-org.kde.plasma.digitalclock.desktop share/kservices5/plasma-applet-org.kde.plasma.icon.desktop share/kservices5/plasma-applet-org.kde.plasma.lock_logout.desktop share/kservices5/plasma-applet-org.kde.plasma.mediacontroller.desktop share/kservices5/plasma-applet-org.kde.plasma.notifications.desktop share/kservices5/plasma-applet-org.kde.plasma.panelspacer.desktop share/kservices5/plasma-applet-org.kde.plasma.private.systemtray.desktop share/kservices5/plasma-applet-org.kde.plasma.systemmonitor.cpu.desktop share/kservices5/plasma-applet-org.kde.plasma.systemmonitor.diskactivity.desktop share/kservices5/plasma-applet-org.kde.plasma.systemmonitor.diskusage.desktop share/kservices5/plasma-applet-org.kde.plasma.systemmonitor.memory.desktop share/kservices5/plasma-applet-org.kde.plasma.systemmonitor.net.desktop share/kservices5/plasma-applet-org.kde.plasma.systemtray.desktop share/kservices5/plasma-containmentactions-applauncher.desktop share/kservices5/plasma-containmentactions-contextmenu.desktop share/kservices5/plasma-containmentactions-paste.desktop share/kservices5/plasma-containmentactions-switchactivity.desktop share/kservices5/plasma-containmentactions-switchdesktop.desktop share/kservices5/plasma-containmentactions-switchwindow.desktop share/kservices5/plasma-dataengine-activities.desktop share/kservices5/plasma-dataengine-applicationjobs.desktop share/kservices5/plasma-dataengine-apps.desktop share/kservices5/plasma-dataengine-clipboard.desktop share/kservices5/plasma-dataengine-devicenotifications.desktop share/kservices5/plasma-dataengine-dict.desktop share/kservices5/plasma-dataengine-executable.desktop share/kservices5/plasma-dataengine-favicons.desktop share/kservices5/plasma-dataengine-filebrowser.desktop share/kservices5/plasma-dataengine-hotplug.desktop share/kservices5/plasma-dataengine-keystate.desktop share/kservices5/plasma-dataengine-mouse.desktop share/kservices5/plasma-dataengine-mpris2.desktop share/kservices5/plasma-dataengine-notifications.desktop share/kservices5/plasma-dataengine-packagekit.desktop share/kservices5/plasma-dataengine-places.desktop share/kservices5/plasma-dataengine-powermanagement.desktop share/kservices5/plasma-dataengine-share-addon-im9.desktop share/kservices5/plasma-dataengine-share-addon-imgsusepasteorg.desktop share/kservices5/plasma-dataengine-share-addon-imgur.desktop share/kservices5/plasma-dataengine-share-addon-kde.desktop share/kservices5/plasma-dataengine-share-addon-pastebincom.desktop share/kservices5/plasma-dataengine-share-addon-pasteopensuseorg.desktop share/kservices5/plasma-dataengine-share-addon-pasteubuntucom.desktop share/kservices5/plasma-dataengine-share-addon-privatepastecom.desktop share/kservices5/plasma-dataengine-share-addon-simplestimagehosting.desktop share/kservices5/plasma-dataengine-share-addon-wklej.desktop share/kservices5/plasma-dataengine-share-addon-wstaw.desktop share/kservices5/plasma-dataengine-share.desktop share/kservices5/plasma-dataengine-soliddevice.desktop share/kservices5/plasma-dataengine-statusnotifieritem.desktop share/kservices5/plasma-dataengine-systemmonitor.desktop share/kservices5/plasma-dataengine-time.desktop share/kservices5/plasma-dataengine-weather.desktop share/kservices5/plasma-lookandfeel-org.kde.breeze.desktop.desktop share/kservices5/plasma-runner-activityrunner.desktop share/kservices5/plasma-runner-baloosearch.desktop share/kservices5/plasma-runner-bookmarks.desktop share/kservices5/plasma-runner-calculator.desktop share/kservices5/plasma-runner-kill.desktop share/kservices5/plasma-runner-kill_config.desktop share/kservices5/plasma-runner-locations.desktop share/kservices5/plasma-runner-places.desktop share/kservices5/plasma-runner-powerdevil.desktop share/kservices5/plasma-runner-recentdocuments.desktop share/kservices5/plasma-runner-services.desktop share/kservices5/plasma-runner-sessions.desktop share/kservices5/plasma-runner-shell.desktop share/kservices5/plasma-runner-webshortcuts.desktop share/kservices5/plasma-runner-webshortcuts_config.desktop share/kservices5/plasma-runner-windowedwidgets.desktop share/kservices5/plasma-runner-windows.desktop share/kservices5/plasma-wallpaper-org.kde.color.desktop share/kservices5/plasma-wallpaper-org.kde.image.desktop share/kservices5/plasma-wallpaper-org.kde.slideshow.desktop share/kservices5/programs.protocol share/kservicetypes5/phononbackend.desktop share/kservicetypes5/plasma-layouttemplate.desktop share/kservicetypes5/plasma_shareprovider.desktop share/ksplash/Themes/Classic/FadeIn.qml share/ksplash/Themes/Classic/Preview.png share/ksplash/Themes/Classic/Theme.rc share/ksplash/Themes/Classic/images/background.png share/ksplash/Themes/Classic/images/icon1.png share/ksplash/Themes/Classic/images/icon2.png share/ksplash/Themes/Classic/images/icon3.png share/ksplash/Themes/Classic/images/icon4.png share/ksplash/Themes/Classic/images/icon5.png share/ksplash/Themes/Classic/images/rectangle.png share/ksplash/Themes/Classic/main.qml share/ksplash/Themes/Minimalistic/Preview.png share/ksplash/Themes/Minimalistic/Theme.rc share/ksplash/Themes/Minimalistic/images/kdegear.png share/ksplash/Themes/Minimalistic/images/kdeletter.png share/ksplash/Themes/Minimalistic/images/kdelogo-contrast.png share/ksplash/Themes/Minimalistic/images/kdelogo.png share/ksplash/Themes/Minimalistic/images/kdemask.png share/ksplash/Themes/Minimalistic/main.qml share/ksplash/Themes/None/Theme.rc share/kstyle/themes/qtcde.themerc share/kstyle/themes/qtcleanlooks.themerc share/kstyle/themes/qtgtk.themerc share/kstyle/themes/qtmotif.themerc share/kstyle/themes/qtplastique.themerc share/kstyle/themes/qtwindows.themerc share/locale/af/LC_MESSAGES/kio5_applications.mo share/locale/af/LC_MESSAGES/klipper.mo share/locale/af/LC_MESSAGES/ksmserver.mo share/locale/ar/LC_MESSAGES/freespacenotifier.mo +share/locale/ar/LC_MESSAGES/kcm_translations.mo share/locale/ar/LC_MESSAGES/kcminit.mo share/locale/ar/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/ar/LC_MESSAGES/kio5_applications.mo share/locale/ar/LC_MESSAGES/klipper.mo share/locale/ar/LC_MESSAGES/krunner.mo share/locale/ar/LC_MESSAGES/ksmserver.mo share/locale/ar/LC_MESSAGES/kuiserver5.mo share/locale/ar/LC_MESSAGES/libkworkspace.mo share/locale/ar/LC_MESSAGES/phonon_kde_plugin.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo share/locale/ar/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/ar/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/ar/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/ar/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/ar/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/ar/LC_MESSAGES/plasma_engine_keystate.mo share/locale/ar/LC_MESSAGES/plasma_engine_mpris2.mo share/locale/ar/LC_MESSAGES/plasma_engine_notifications.mo share/locale/ar/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/ar/LC_MESSAGES/plasma_engine_share.mo share/locale/ar/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/ar/LC_MESSAGES/plasma_engine_time.mo share/locale/ar/LC_MESSAGES/plasma_engine_weather.mo share/locale/ar/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/ar/LC_MESSAGES/plasma_package_plasmashell.mo share/locale/ar/LC_MESSAGES/plasma_runner_activities.mo share/locale/ar/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/ar/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/ar/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/ar/LC_MESSAGES/plasma_runner_kill.mo share/locale/ar/LC_MESSAGES/plasma_runner_locations.mo share/locale/ar/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/ar/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/ar/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/ar/LC_MESSAGES/plasma_runner_services.mo share/locale/ar/LC_MESSAGES/plasma_runner_sessions.mo share/locale/ar/LC_MESSAGES/plasma_runner_shell.mo share/locale/ar/LC_MESSAGES/plasma_runner_solid.mo share/locale/ar/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/ar/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/ar/LC_MESSAGES/plasma_runner_windows.mo share/locale/ar/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/ar/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/ar/LC_MESSAGES/plasmashell.mo share/locale/ar/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/ar/LC_MESSAGES/soliduiserver5.mo share/locale/ar/LC_MESSAGES/systemmonitor.mo -share/locale/ast/LC_MESSAGES/freespacenotifier.mo -share/locale/ast/LC_MESSAGES/kcminit.mo -share/locale/ast/LC_MESSAGES/kholidays_calendar_plugin.mo -share/locale/ast/LC_MESSAGES/kio5_applications.mo -share/locale/ast/LC_MESSAGES/kio_desktop.mo -share/locale/ast/LC_MESSAGES/klipper.mo -share/locale/ast/LC_MESSAGES/krunner.mo -share/locale/ast/LC_MESSAGES/ksmserver.mo -share/locale/ast/LC_MESSAGES/kuiserver5.mo -share/locale/ast/LC_MESSAGES/libkworkspace.mo -share/locale/ast/LC_MESSAGES/phonon_kde_plugin.mo -share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo -share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo -share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo -share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo -share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo -share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo -share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo -share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo -share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo -share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo -share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo -share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo -share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo -share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo -share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo -share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo -share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo -share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo -share/locale/ast/LC_MESSAGES/plasma_containmentactions_applauncher.mo -share/locale/ast/LC_MESSAGES/plasma_containmentactions_contextmenu.mo -share/locale/ast/LC_MESSAGES/plasma_containmentactions_switchwindow.mo -share/locale/ast/LC_MESSAGES/plasma_engine_applicationjobs.mo -share/locale/ast/LC_MESSAGES/plasma_engine_devicenotifications.mo -share/locale/ast/LC_MESSAGES/plasma_engine_dict.mo -share/locale/ast/LC_MESSAGES/plasma_engine_keystate.mo -share/locale/ast/LC_MESSAGES/plasma_engine_mpris2.mo -share/locale/ast/LC_MESSAGES/plasma_engine_notifications.mo -share/locale/ast/LC_MESSAGES/plasma_engine_powermanagement.mo -share/locale/ast/LC_MESSAGES/plasma_engine_share.mo -share/locale/ast/LC_MESSAGES/plasma_engine_soliddevice.mo -share/locale/ast/LC_MESSAGES/plasma_engine_time.mo -share/locale/ast/LC_MESSAGES/plasma_engine_weather.mo -share/locale/ast/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo -share/locale/ast/LC_MESSAGES/plasma_package_plasmashell.mo -share/locale/ast/LC_MESSAGES/plasma_runner_activities.mo -share/locale/ast/LC_MESSAGES/plasma_runner_appstream.mo -share/locale/ast/LC_MESSAGES/plasma_runner_baloosearch5.mo -share/locale/ast/LC_MESSAGES/plasma_runner_bookmarksrunner.mo -share/locale/ast/LC_MESSAGES/plasma_runner_calculatorrunner.mo -share/locale/ast/LC_MESSAGES/plasma_runner_kill.mo -share/locale/ast/LC_MESSAGES/plasma_runner_locations.mo -share/locale/ast/LC_MESSAGES/plasma_runner_placesrunner.mo -share/locale/ast/LC_MESSAGES/plasma_runner_powerdevil.mo -share/locale/ast/LC_MESSAGES/plasma_runner_recentdocuments.mo -share/locale/ast/LC_MESSAGES/plasma_runner_services.mo -share/locale/ast/LC_MESSAGES/plasma_runner_sessions.mo -share/locale/ast/LC_MESSAGES/plasma_runner_shell.mo -share/locale/ast/LC_MESSAGES/plasma_runner_solid.mo -share/locale/ast/LC_MESSAGES/plasma_runner_webshortcuts.mo -share/locale/ast/LC_MESSAGES/plasma_runner_windowedwidgets.mo -share/locale/ast/LC_MESSAGES/plasma_runner_windows.mo -share/locale/ast/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo -share/locale/ast/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo -share/locale/ast/LC_MESSAGES/plasmashell.mo -share/locale/ast/LC_MESSAGES/plasmashellprivateplugin.mo -share/locale/ast/LC_MESSAGES/soliduiserver5.mo -share/locale/ast/LC_MESSAGES/systemmonitor.mo share/locale/be/LC_MESSAGES/kcminit.mo share/locale/be/LC_MESSAGES/kio5_applications.mo share/locale/be/LC_MESSAGES/klipper.mo share/locale/be/LC_MESSAGES/ksmserver.mo share/locale/be/LC_MESSAGES/kuiserver5.mo share/locale/be/LC_MESSAGES/libkworkspace.mo share/locale/be/LC_MESSAGES/phonon_kde_plugin.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/be/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/be/LC_MESSAGES/plasma_engine_weather.mo share/locale/be/LC_MESSAGES/plasma_runner_locations.mo share/locale/be/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/be/LC_MESSAGES/soliduiserver5.mo share/locale/be@latin/LC_MESSAGES/kcminit.mo share/locale/be@latin/LC_MESSAGES/kio5_applications.mo share/locale/be@latin/LC_MESSAGES/klipper.mo share/locale/be@latin/LC_MESSAGES/libkworkspace.mo share/locale/be@latin/LC_MESSAGES/phonon_kde_plugin.mo share/locale/be@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/be@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/be@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/be@latin/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/be@latin/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/be@latin/LC_MESSAGES/soliduiserver5.mo share/locale/bg/LC_MESSAGES/freespacenotifier.mo share/locale/bg/LC_MESSAGES/kcminit.mo share/locale/bg/LC_MESSAGES/kio5_applications.mo share/locale/bg/LC_MESSAGES/klipper.mo share/locale/bg/LC_MESSAGES/ksmserver.mo share/locale/bg/LC_MESSAGES/kuiserver5.mo share/locale/bg/LC_MESSAGES/libkworkspace.mo share/locale/bg/LC_MESSAGES/phonon_kde_plugin.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/bg/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/bg/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/bg/LC_MESSAGES/plasma_engine_notifications.mo share/locale/bg/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/bg/LC_MESSAGES/plasma_engine_weather.mo share/locale/bg/LC_MESSAGES/plasma_runner_activities.mo share/locale/bg/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/bg/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/bg/LC_MESSAGES/plasma_runner_locations.mo share/locale/bg/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/bg/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/bg/LC_MESSAGES/plasma_runner_services.mo share/locale/bg/LC_MESSAGES/plasma_runner_sessions.mo share/locale/bg/LC_MESSAGES/plasma_runner_shell.mo share/locale/bg/LC_MESSAGES/plasma_runner_solid.mo share/locale/bg/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/bg/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/bg/LC_MESSAGES/soliduiserver5.mo share/locale/bn/LC_MESSAGES/klipper.mo share/locale/bn/LC_MESSAGES/ksmserver.mo share/locale/bn/LC_MESSAGES/plasma_engine_weather.mo share/locale/bn_IN/LC_MESSAGES/kcminit.mo share/locale/bn_IN/LC_MESSAGES/kio5_applications.mo share/locale/bn_IN/LC_MESSAGES/klipper.mo share/locale/bn_IN/LC_MESSAGES/ksmserver.mo share/locale/bn_IN/LC_MESSAGES/kuiserver5.mo share/locale/bn_IN/LC_MESSAGES/libkworkspace.mo share/locale/bn_IN/LC_MESSAGES/phonon_kde_plugin.mo share/locale/bn_IN/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/bn_IN/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/bn_IN/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/bn_IN/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/bn_IN/LC_MESSAGES/plasma_engine_weather.mo share/locale/bn_IN/LC_MESSAGES/plasma_runner_locations.mo share/locale/bn_IN/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/bn_IN/LC_MESSAGES/plasma_runner_sessions.mo share/locale/bn_IN/LC_MESSAGES/plasma_runner_shell.mo share/locale/bn_IN/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/bn_IN/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/bn_IN/LC_MESSAGES/soliduiserver5.mo share/locale/br/LC_MESSAGES/kio5_applications.mo share/locale/br/LC_MESSAGES/klipper.mo share/locale/br/LC_MESSAGES/ksmserver.mo share/locale/bs/LC_MESSAGES/freespacenotifier.mo +share/locale/bs/LC_MESSAGES/kcm_translations.mo share/locale/bs/LC_MESSAGES/kcminit.mo share/locale/bs/LC_MESSAGES/kio5_applications.mo share/locale/bs/LC_MESSAGES/klipper.mo share/locale/bs/LC_MESSAGES/krunner.mo share/locale/bs/LC_MESSAGES/ksmserver.mo share/locale/bs/LC_MESSAGES/kuiserver5.mo share/locale/bs/LC_MESSAGES/libkworkspace.mo share/locale/bs/LC_MESSAGES/phonon_kde_plugin.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo share/locale/bs/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/bs/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/bs/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/bs/LC_MESSAGES/plasma_engine_keystate.mo share/locale/bs/LC_MESSAGES/plasma_engine_mpris2.mo share/locale/bs/LC_MESSAGES/plasma_engine_notifications.mo share/locale/bs/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/bs/LC_MESSAGES/plasma_engine_share.mo share/locale/bs/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/bs/LC_MESSAGES/plasma_engine_time.mo share/locale/bs/LC_MESSAGES/plasma_engine_weather.mo share/locale/bs/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/bs/LC_MESSAGES/plasma_package_plasmashell.mo share/locale/bs/LC_MESSAGES/plasma_runner_activities.mo share/locale/bs/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/bs/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/bs/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/bs/LC_MESSAGES/plasma_runner_kill.mo share/locale/bs/LC_MESSAGES/plasma_runner_locations.mo share/locale/bs/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/bs/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/bs/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/bs/LC_MESSAGES/plasma_runner_services.mo share/locale/bs/LC_MESSAGES/plasma_runner_sessions.mo share/locale/bs/LC_MESSAGES/plasma_runner_shell.mo share/locale/bs/LC_MESSAGES/plasma_runner_solid.mo share/locale/bs/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/bs/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/bs/LC_MESSAGES/plasma_runner_windows.mo share/locale/bs/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/bs/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/bs/LC_MESSAGES/plasmashell.mo share/locale/bs/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/bs/LC_MESSAGES/soliduiserver5.mo share/locale/bs/LC_MESSAGES/systemmonitor.mo share/locale/ca/LC_MESSAGES/freespacenotifier.mo +share/locale/ca/LC_MESSAGES/kcm_translations.mo share/locale/ca/LC_MESSAGES/kcminit.mo share/locale/ca/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/ca/LC_MESSAGES/kio5_applications.mo share/locale/ca/LC_MESSAGES/kio_desktop.mo share/locale/ca/LC_MESSAGES/klipper.mo share/locale/ca/LC_MESSAGES/krunner.mo share/locale/ca/LC_MESSAGES/ksmserver.mo share/locale/ca/LC_MESSAGES/kuiserver5.mo share/locale/ca/LC_MESSAGES/libkworkspace.mo share/locale/ca/LC_MESSAGES/phonon_kde_plugin.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo share/locale/ca/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/ca/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/ca/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/ca/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/ca/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/ca/LC_MESSAGES/plasma_engine_dict.mo share/locale/ca/LC_MESSAGES/plasma_engine_keystate.mo share/locale/ca/LC_MESSAGES/plasma_engine_mpris2.mo share/locale/ca/LC_MESSAGES/plasma_engine_notifications.mo share/locale/ca/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/ca/LC_MESSAGES/plasma_engine_share.mo share/locale/ca/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/ca/LC_MESSAGES/plasma_engine_time.mo share/locale/ca/LC_MESSAGES/plasma_engine_weather.mo share/locale/ca/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/ca/LC_MESSAGES/plasma_package_plasmashell.mo share/locale/ca/LC_MESSAGES/plasma_runner_activities.mo share/locale/ca/LC_MESSAGES/plasma_runner_appstream.mo share/locale/ca/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/ca/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/ca/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/ca/LC_MESSAGES/plasma_runner_kill.mo share/locale/ca/LC_MESSAGES/plasma_runner_locations.mo share/locale/ca/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/ca/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/ca/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/ca/LC_MESSAGES/plasma_runner_services.mo share/locale/ca/LC_MESSAGES/plasma_runner_sessions.mo share/locale/ca/LC_MESSAGES/plasma_runner_shell.mo share/locale/ca/LC_MESSAGES/plasma_runner_solid.mo share/locale/ca/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/ca/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/ca/LC_MESSAGES/plasma_runner_windows.mo share/locale/ca/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/ca/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/ca/LC_MESSAGES/plasmashell.mo share/locale/ca/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/ca/LC_MESSAGES/soliduiserver5.mo share/locale/ca/LC_MESSAGES/systemmonitor.mo share/locale/ca@valencia/LC_MESSAGES/freespacenotifier.mo +share/locale/ca@valencia/LC_MESSAGES/kcm_translations.mo share/locale/ca@valencia/LC_MESSAGES/kcminit.mo share/locale/ca@valencia/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/ca@valencia/LC_MESSAGES/kio5_applications.mo share/locale/ca@valencia/LC_MESSAGES/kio_desktop.mo share/locale/ca@valencia/LC_MESSAGES/klipper.mo share/locale/ca@valencia/LC_MESSAGES/krunner.mo share/locale/ca@valencia/LC_MESSAGES/ksmserver.mo share/locale/ca@valencia/LC_MESSAGES/kuiserver5.mo share/locale/ca@valencia/LC_MESSAGES/libkworkspace.mo share/locale/ca@valencia/LC_MESSAGES/phonon_kde_plugin.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo share/locale/ca@valencia/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/ca@valencia/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/ca@valencia/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/ca@valencia/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/ca@valencia/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/ca@valencia/LC_MESSAGES/plasma_engine_dict.mo share/locale/ca@valencia/LC_MESSAGES/plasma_engine_keystate.mo share/locale/ca@valencia/LC_MESSAGES/plasma_engine_mpris2.mo share/locale/ca@valencia/LC_MESSAGES/plasma_engine_notifications.mo share/locale/ca@valencia/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/ca@valencia/LC_MESSAGES/plasma_engine_share.mo share/locale/ca@valencia/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/ca@valencia/LC_MESSAGES/plasma_engine_time.mo share/locale/ca@valencia/LC_MESSAGES/plasma_engine_weather.mo share/locale/ca@valencia/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/ca@valencia/LC_MESSAGES/plasma_package_plasmashell.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_activities.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_appstream.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_kill.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_locations.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_services.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_sessions.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_shell.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_solid.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_windows.mo share/locale/ca@valencia/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/ca@valencia/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/ca@valencia/LC_MESSAGES/plasmashell.mo share/locale/ca@valencia/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/ca@valencia/LC_MESSAGES/soliduiserver5.mo share/locale/ca@valencia/LC_MESSAGES/systemmonitor.mo share/locale/cs/LC_MESSAGES/freespacenotifier.mo +share/locale/cs/LC_MESSAGES/kcm_translations.mo share/locale/cs/LC_MESSAGES/kcminit.mo share/locale/cs/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/cs/LC_MESSAGES/kio5_applications.mo share/locale/cs/LC_MESSAGES/kio_desktop.mo share/locale/cs/LC_MESSAGES/klipper.mo share/locale/cs/LC_MESSAGES/krunner.mo share/locale/cs/LC_MESSAGES/ksmserver.mo share/locale/cs/LC_MESSAGES/kuiserver5.mo share/locale/cs/LC_MESSAGES/libkworkspace.mo share/locale/cs/LC_MESSAGES/phonon_kde_plugin.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo share/locale/cs/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/cs/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/cs/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/cs/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/cs/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/cs/LC_MESSAGES/plasma_engine_dict.mo share/locale/cs/LC_MESSAGES/plasma_engine_keystate.mo share/locale/cs/LC_MESSAGES/plasma_engine_mpris2.mo share/locale/cs/LC_MESSAGES/plasma_engine_notifications.mo share/locale/cs/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/cs/LC_MESSAGES/plasma_engine_share.mo share/locale/cs/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/cs/LC_MESSAGES/plasma_engine_time.mo share/locale/cs/LC_MESSAGES/plasma_engine_weather.mo share/locale/cs/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/cs/LC_MESSAGES/plasma_package_plasmashell.mo share/locale/cs/LC_MESSAGES/plasma_runner_activities.mo share/locale/cs/LC_MESSAGES/plasma_runner_appstream.mo share/locale/cs/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/cs/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/cs/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/cs/LC_MESSAGES/plasma_runner_kill.mo share/locale/cs/LC_MESSAGES/plasma_runner_locations.mo share/locale/cs/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/cs/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/cs/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/cs/LC_MESSAGES/plasma_runner_services.mo share/locale/cs/LC_MESSAGES/plasma_runner_sessions.mo share/locale/cs/LC_MESSAGES/plasma_runner_shell.mo share/locale/cs/LC_MESSAGES/plasma_runner_solid.mo share/locale/cs/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/cs/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/cs/LC_MESSAGES/plasma_runner_windows.mo share/locale/cs/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/cs/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/cs/LC_MESSAGES/plasmashell.mo share/locale/cs/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/cs/LC_MESSAGES/soliduiserver5.mo share/locale/cs/LC_MESSAGES/systemmonitor.mo share/locale/csb/LC_MESSAGES/kcminit.mo share/locale/csb/LC_MESSAGES/kio5_applications.mo share/locale/csb/LC_MESSAGES/klipper.mo share/locale/csb/LC_MESSAGES/ksmserver.mo share/locale/csb/LC_MESSAGES/kuiserver5.mo share/locale/csb/LC_MESSAGES/libkworkspace.mo share/locale/csb/LC_MESSAGES/phonon_kde_plugin.mo share/locale/csb/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/csb/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/csb/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/csb/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/csb/LC_MESSAGES/plasma_engine_notifications.mo share/locale/csb/LC_MESSAGES/plasma_engine_weather.mo share/locale/csb/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/csb/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/csb/LC_MESSAGES/plasma_runner_locations.mo share/locale/csb/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/csb/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/csb/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/csb/LC_MESSAGES/plasma_runner_services.mo share/locale/csb/LC_MESSAGES/plasma_runner_sessions.mo share/locale/csb/LC_MESSAGES/plasma_runner_shell.mo share/locale/csb/LC_MESSAGES/plasma_runner_solid.mo share/locale/csb/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/csb/LC_MESSAGES/plasma_runner_windows.mo share/locale/csb/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/csb/LC_MESSAGES/soliduiserver5.mo share/locale/cy/LC_MESSAGES/kio5_applications.mo share/locale/cy/LC_MESSAGES/klipper.mo share/locale/cy/LC_MESSAGES/ksmserver.mo share/locale/da/LC_MESSAGES/freespacenotifier.mo +share/locale/da/LC_MESSAGES/kcm_translations.mo share/locale/da/LC_MESSAGES/kcminit.mo share/locale/da/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/da/LC_MESSAGES/kio5_applications.mo share/locale/da/LC_MESSAGES/kio_desktop.mo share/locale/da/LC_MESSAGES/klipper.mo share/locale/da/LC_MESSAGES/krunner.mo share/locale/da/LC_MESSAGES/ksmserver.mo share/locale/da/LC_MESSAGES/kuiserver5.mo share/locale/da/LC_MESSAGES/libkworkspace.mo share/locale/da/LC_MESSAGES/phonon_kde_plugin.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo share/locale/da/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/da/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/da/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/da/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/da/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/da/LC_MESSAGES/plasma_engine_dict.mo share/locale/da/LC_MESSAGES/plasma_engine_keystate.mo share/locale/da/LC_MESSAGES/plasma_engine_mpris2.mo share/locale/da/LC_MESSAGES/plasma_engine_notifications.mo share/locale/da/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/da/LC_MESSAGES/plasma_engine_share.mo share/locale/da/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/da/LC_MESSAGES/plasma_engine_time.mo share/locale/da/LC_MESSAGES/plasma_engine_weather.mo share/locale/da/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/da/LC_MESSAGES/plasma_package_plasmashell.mo share/locale/da/LC_MESSAGES/plasma_runner_activities.mo share/locale/da/LC_MESSAGES/plasma_runner_appstream.mo share/locale/da/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/da/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/da/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/da/LC_MESSAGES/plasma_runner_kill.mo share/locale/da/LC_MESSAGES/plasma_runner_locations.mo share/locale/da/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/da/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/da/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/da/LC_MESSAGES/plasma_runner_services.mo share/locale/da/LC_MESSAGES/plasma_runner_sessions.mo share/locale/da/LC_MESSAGES/plasma_runner_shell.mo share/locale/da/LC_MESSAGES/plasma_runner_solid.mo share/locale/da/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/da/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/da/LC_MESSAGES/plasma_runner_windows.mo share/locale/da/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/da/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/da/LC_MESSAGES/plasmashell.mo share/locale/da/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/da/LC_MESSAGES/soliduiserver5.mo share/locale/da/LC_MESSAGES/systemmonitor.mo share/locale/de/LC_MESSAGES/freespacenotifier.mo +share/locale/de/LC_MESSAGES/kcm_translations.mo share/locale/de/LC_MESSAGES/kcminit.mo share/locale/de/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/de/LC_MESSAGES/kio5_applications.mo share/locale/de/LC_MESSAGES/kio_desktop.mo share/locale/de/LC_MESSAGES/klipper.mo share/locale/de/LC_MESSAGES/krunner.mo share/locale/de/LC_MESSAGES/ksmserver.mo share/locale/de/LC_MESSAGES/kuiserver5.mo share/locale/de/LC_MESSAGES/libkworkspace.mo share/locale/de/LC_MESSAGES/phonon_kde_plugin.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo share/locale/de/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/de/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/de/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/de/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/de/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/de/LC_MESSAGES/plasma_engine_dict.mo share/locale/de/LC_MESSAGES/plasma_engine_keystate.mo share/locale/de/LC_MESSAGES/plasma_engine_mpris2.mo share/locale/de/LC_MESSAGES/plasma_engine_notifications.mo share/locale/de/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/de/LC_MESSAGES/plasma_engine_share.mo share/locale/de/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/de/LC_MESSAGES/plasma_engine_time.mo share/locale/de/LC_MESSAGES/plasma_engine_weather.mo share/locale/de/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/de/LC_MESSAGES/plasma_package_plasmashell.mo share/locale/de/LC_MESSAGES/plasma_runner_activities.mo share/locale/de/LC_MESSAGES/plasma_runner_appstream.mo share/locale/de/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/de/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/de/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/de/LC_MESSAGES/plasma_runner_kill.mo share/locale/de/LC_MESSAGES/plasma_runner_locations.mo share/locale/de/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/de/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/de/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/de/LC_MESSAGES/plasma_runner_services.mo share/locale/de/LC_MESSAGES/plasma_runner_sessions.mo share/locale/de/LC_MESSAGES/plasma_runner_shell.mo share/locale/de/LC_MESSAGES/plasma_runner_solid.mo share/locale/de/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/de/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/de/LC_MESSAGES/plasma_runner_windows.mo share/locale/de/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/de/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/de/LC_MESSAGES/plasmashell.mo share/locale/de/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/de/LC_MESSAGES/soliduiserver5.mo share/locale/de/LC_MESSAGES/systemmonitor.mo share/locale/el/LC_MESSAGES/freespacenotifier.mo +share/locale/el/LC_MESSAGES/kcm_translations.mo share/locale/el/LC_MESSAGES/kcminit.mo share/locale/el/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/el/LC_MESSAGES/kio5_applications.mo share/locale/el/LC_MESSAGES/kio_desktop.mo share/locale/el/LC_MESSAGES/klipper.mo share/locale/el/LC_MESSAGES/krunner.mo share/locale/el/LC_MESSAGES/ksmserver.mo share/locale/el/LC_MESSAGES/kuiserver5.mo share/locale/el/LC_MESSAGES/libkworkspace.mo share/locale/el/LC_MESSAGES/phonon_kde_plugin.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo share/locale/el/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/el/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/el/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/el/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/el/LC_MESSAGES/plasma_engine_keystate.mo share/locale/el/LC_MESSAGES/plasma_engine_mpris2.mo share/locale/el/LC_MESSAGES/plasma_engine_notifications.mo share/locale/el/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/el/LC_MESSAGES/plasma_engine_share.mo share/locale/el/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/el/LC_MESSAGES/plasma_engine_time.mo share/locale/el/LC_MESSAGES/plasma_engine_weather.mo share/locale/el/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/el/LC_MESSAGES/plasma_runner_activities.mo share/locale/el/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/el/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/el/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/el/LC_MESSAGES/plasma_runner_kill.mo share/locale/el/LC_MESSAGES/plasma_runner_locations.mo share/locale/el/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/el/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/el/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/el/LC_MESSAGES/plasma_runner_services.mo share/locale/el/LC_MESSAGES/plasma_runner_sessions.mo share/locale/el/LC_MESSAGES/plasma_runner_shell.mo share/locale/el/LC_MESSAGES/plasma_runner_solid.mo share/locale/el/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/el/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/el/LC_MESSAGES/plasma_runner_windows.mo share/locale/el/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/el/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/el/LC_MESSAGES/plasmashell.mo share/locale/el/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/el/LC_MESSAGES/soliduiserver5.mo share/locale/el/LC_MESSAGES/systemmonitor.mo share/locale/en_GB/LC_MESSAGES/freespacenotifier.mo +share/locale/en_GB/LC_MESSAGES/kcm_translations.mo share/locale/en_GB/LC_MESSAGES/kcminit.mo share/locale/en_GB/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/en_GB/LC_MESSAGES/kio5_applications.mo share/locale/en_GB/LC_MESSAGES/kio_desktop.mo share/locale/en_GB/LC_MESSAGES/klipper.mo share/locale/en_GB/LC_MESSAGES/krunner.mo share/locale/en_GB/LC_MESSAGES/ksmserver.mo share/locale/en_GB/LC_MESSAGES/kuiserver5.mo share/locale/en_GB/LC_MESSAGES/libkworkspace.mo share/locale/en_GB/LC_MESSAGES/phonon_kde_plugin.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo share/locale/en_GB/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/en_GB/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/en_GB/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/en_GB/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/en_GB/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/en_GB/LC_MESSAGES/plasma_engine_dict.mo share/locale/en_GB/LC_MESSAGES/plasma_engine_keystate.mo share/locale/en_GB/LC_MESSAGES/plasma_engine_mpris2.mo share/locale/en_GB/LC_MESSAGES/plasma_engine_notifications.mo share/locale/en_GB/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/en_GB/LC_MESSAGES/plasma_engine_share.mo share/locale/en_GB/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/en_GB/LC_MESSAGES/plasma_engine_time.mo share/locale/en_GB/LC_MESSAGES/plasma_engine_weather.mo share/locale/en_GB/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/en_GB/LC_MESSAGES/plasma_package_plasmashell.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_activities.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_appstream.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_kill.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_locations.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_services.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_sessions.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_shell.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_solid.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_windows.mo share/locale/en_GB/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/en_GB/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/en_GB/LC_MESSAGES/plasmashell.mo share/locale/en_GB/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/en_GB/LC_MESSAGES/soliduiserver5.mo share/locale/en_GB/LC_MESSAGES/systemmonitor.mo share/locale/eo/LC_MESSAGES/freespacenotifier.mo share/locale/eo/LC_MESSAGES/kcminit.mo share/locale/eo/LC_MESSAGES/kio5_applications.mo share/locale/eo/LC_MESSAGES/klipper.mo share/locale/eo/LC_MESSAGES/ksmserver.mo share/locale/eo/LC_MESSAGES/kuiserver5.mo share/locale/eo/LC_MESSAGES/libkworkspace.mo share/locale/eo/LC_MESSAGES/phonon_kde_plugin.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/eo/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/eo/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/eo/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/eo/LC_MESSAGES/plasma_engine_keystate.mo share/locale/eo/LC_MESSAGES/plasma_engine_notifications.mo share/locale/eo/LC_MESSAGES/plasma_engine_share.mo share/locale/eo/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/eo/LC_MESSAGES/plasma_engine_weather.mo share/locale/eo/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/eo/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/eo/LC_MESSAGES/plasma_runner_kill.mo share/locale/eo/LC_MESSAGES/plasma_runner_locations.mo share/locale/eo/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/eo/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/eo/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/eo/LC_MESSAGES/plasma_runner_services.mo share/locale/eo/LC_MESSAGES/plasma_runner_sessions.mo share/locale/eo/LC_MESSAGES/plasma_runner_shell.mo share/locale/eo/LC_MESSAGES/plasma_runner_solid.mo share/locale/eo/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/eo/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/eo/LC_MESSAGES/plasma_runner_windows.mo share/locale/eo/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/eo/LC_MESSAGES/soliduiserver5.mo share/locale/es/LC_MESSAGES/freespacenotifier.mo +share/locale/es/LC_MESSAGES/kcm_translations.mo share/locale/es/LC_MESSAGES/kcminit.mo share/locale/es/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/es/LC_MESSAGES/kio5_applications.mo share/locale/es/LC_MESSAGES/kio_desktop.mo share/locale/es/LC_MESSAGES/klipper.mo share/locale/es/LC_MESSAGES/krunner.mo share/locale/es/LC_MESSAGES/ksmserver.mo share/locale/es/LC_MESSAGES/kuiserver5.mo share/locale/es/LC_MESSAGES/libkworkspace.mo share/locale/es/LC_MESSAGES/phonon_kde_plugin.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo share/locale/es/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/es/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/es/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/es/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/es/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/es/LC_MESSAGES/plasma_engine_dict.mo share/locale/es/LC_MESSAGES/plasma_engine_keystate.mo share/locale/es/LC_MESSAGES/plasma_engine_mpris2.mo share/locale/es/LC_MESSAGES/plasma_engine_notifications.mo share/locale/es/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/es/LC_MESSAGES/plasma_engine_share.mo share/locale/es/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/es/LC_MESSAGES/plasma_engine_time.mo share/locale/es/LC_MESSAGES/plasma_engine_weather.mo share/locale/es/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/es/LC_MESSAGES/plasma_package_plasmashell.mo share/locale/es/LC_MESSAGES/plasma_runner_activities.mo share/locale/es/LC_MESSAGES/plasma_runner_appstream.mo share/locale/es/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/es/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/es/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/es/LC_MESSAGES/plasma_runner_kill.mo share/locale/es/LC_MESSAGES/plasma_runner_locations.mo share/locale/es/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/es/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/es/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/es/LC_MESSAGES/plasma_runner_services.mo share/locale/es/LC_MESSAGES/plasma_runner_sessions.mo share/locale/es/LC_MESSAGES/plasma_runner_shell.mo share/locale/es/LC_MESSAGES/plasma_runner_solid.mo share/locale/es/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/es/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/es/LC_MESSAGES/plasma_runner_windows.mo share/locale/es/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/es/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/es/LC_MESSAGES/plasmashell.mo share/locale/es/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/es/LC_MESSAGES/soliduiserver5.mo share/locale/es/LC_MESSAGES/systemmonitor.mo share/locale/et/LC_MESSAGES/freespacenotifier.mo +share/locale/et/LC_MESSAGES/kcm_translations.mo share/locale/et/LC_MESSAGES/kcminit.mo share/locale/et/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/et/LC_MESSAGES/kio5_applications.mo share/locale/et/LC_MESSAGES/klipper.mo share/locale/et/LC_MESSAGES/krunner.mo share/locale/et/LC_MESSAGES/ksmserver.mo share/locale/et/LC_MESSAGES/kuiserver5.mo share/locale/et/LC_MESSAGES/libkworkspace.mo share/locale/et/LC_MESSAGES/phonon_kde_plugin.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo share/locale/et/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/et/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/et/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/et/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/et/LC_MESSAGES/plasma_engine_keystate.mo share/locale/et/LC_MESSAGES/plasma_engine_mpris2.mo share/locale/et/LC_MESSAGES/plasma_engine_notifications.mo share/locale/et/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/et/LC_MESSAGES/plasma_engine_share.mo share/locale/et/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/et/LC_MESSAGES/plasma_engine_time.mo share/locale/et/LC_MESSAGES/plasma_engine_weather.mo share/locale/et/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/et/LC_MESSAGES/plasma_package_plasmashell.mo share/locale/et/LC_MESSAGES/plasma_runner_activities.mo share/locale/et/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/et/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/et/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/et/LC_MESSAGES/plasma_runner_kill.mo share/locale/et/LC_MESSAGES/plasma_runner_locations.mo share/locale/et/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/et/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/et/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/et/LC_MESSAGES/plasma_runner_services.mo share/locale/et/LC_MESSAGES/plasma_runner_sessions.mo share/locale/et/LC_MESSAGES/plasma_runner_shell.mo share/locale/et/LC_MESSAGES/plasma_runner_solid.mo share/locale/et/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/et/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/et/LC_MESSAGES/plasma_runner_windows.mo share/locale/et/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/et/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/et/LC_MESSAGES/plasmashell.mo share/locale/et/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/et/LC_MESSAGES/soliduiserver5.mo share/locale/et/LC_MESSAGES/systemmonitor.mo share/locale/eu/LC_MESSAGES/freespacenotifier.mo +share/locale/eu/LC_MESSAGES/kcm_translations.mo share/locale/eu/LC_MESSAGES/kcminit.mo share/locale/eu/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/eu/LC_MESSAGES/kio5_applications.mo share/locale/eu/LC_MESSAGES/kio_desktop.mo share/locale/eu/LC_MESSAGES/klipper.mo share/locale/eu/LC_MESSAGES/krunner.mo share/locale/eu/LC_MESSAGES/ksmserver.mo share/locale/eu/LC_MESSAGES/kuiserver5.mo share/locale/eu/LC_MESSAGES/libkworkspace.mo share/locale/eu/LC_MESSAGES/phonon_kde_plugin.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo share/locale/eu/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/eu/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/eu/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/eu/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/eu/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/eu/LC_MESSAGES/plasma_engine_dict.mo share/locale/eu/LC_MESSAGES/plasma_engine_keystate.mo share/locale/eu/LC_MESSAGES/plasma_engine_mpris2.mo share/locale/eu/LC_MESSAGES/plasma_engine_notifications.mo share/locale/eu/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/eu/LC_MESSAGES/plasma_engine_share.mo share/locale/eu/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/eu/LC_MESSAGES/plasma_engine_time.mo share/locale/eu/LC_MESSAGES/plasma_engine_weather.mo share/locale/eu/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/eu/LC_MESSAGES/plasma_package_plasmashell.mo share/locale/eu/LC_MESSAGES/plasma_runner_activities.mo share/locale/eu/LC_MESSAGES/plasma_runner_appstream.mo share/locale/eu/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/eu/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/eu/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/eu/LC_MESSAGES/plasma_runner_kill.mo share/locale/eu/LC_MESSAGES/plasma_runner_locations.mo share/locale/eu/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/eu/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/eu/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/eu/LC_MESSAGES/plasma_runner_services.mo share/locale/eu/LC_MESSAGES/plasma_runner_sessions.mo share/locale/eu/LC_MESSAGES/plasma_runner_shell.mo share/locale/eu/LC_MESSAGES/plasma_runner_solid.mo share/locale/eu/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/eu/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/eu/LC_MESSAGES/plasma_runner_windows.mo share/locale/eu/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/eu/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/eu/LC_MESSAGES/plasmashell.mo share/locale/eu/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/eu/LC_MESSAGES/soliduiserver5.mo share/locale/eu/LC_MESSAGES/systemmonitor.mo share/locale/fa/LC_MESSAGES/freespacenotifier.mo share/locale/fa/LC_MESSAGES/kcminit.mo share/locale/fa/LC_MESSAGES/kio5_applications.mo share/locale/fa/LC_MESSAGES/klipper.mo share/locale/fa/LC_MESSAGES/ksmserver.mo share/locale/fa/LC_MESSAGES/kuiserver5.mo share/locale/fa/LC_MESSAGES/libkworkspace.mo share/locale/fa/LC_MESSAGES/phonon_kde_plugin.mo share/locale/fa/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/fa/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/fa/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/fa/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/fa/LC_MESSAGES/plasma_runner_locations.mo share/locale/fa/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/fa/LC_MESSAGES/soliduiserver5.mo share/locale/fi/LC_MESSAGES/freespacenotifier.mo +share/locale/fi/LC_MESSAGES/kcm_translations.mo share/locale/fi/LC_MESSAGES/kcminit.mo share/locale/fi/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/fi/LC_MESSAGES/kio5_applications.mo share/locale/fi/LC_MESSAGES/kio_desktop.mo share/locale/fi/LC_MESSAGES/klipper.mo share/locale/fi/LC_MESSAGES/krunner.mo share/locale/fi/LC_MESSAGES/ksmserver.mo share/locale/fi/LC_MESSAGES/kuiserver5.mo share/locale/fi/LC_MESSAGES/libkworkspace.mo share/locale/fi/LC_MESSAGES/phonon_kde_plugin.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo share/locale/fi/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/fi/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/fi/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/fi/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/fi/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/fi/LC_MESSAGES/plasma_engine_dict.mo share/locale/fi/LC_MESSAGES/plasma_engine_keystate.mo share/locale/fi/LC_MESSAGES/plasma_engine_mpris2.mo share/locale/fi/LC_MESSAGES/plasma_engine_notifications.mo share/locale/fi/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/fi/LC_MESSAGES/plasma_engine_share.mo share/locale/fi/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/fi/LC_MESSAGES/plasma_engine_time.mo share/locale/fi/LC_MESSAGES/plasma_engine_weather.mo share/locale/fi/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/fi/LC_MESSAGES/plasma_package_plasmashell.mo share/locale/fi/LC_MESSAGES/plasma_runner_activities.mo share/locale/fi/LC_MESSAGES/plasma_runner_appstream.mo share/locale/fi/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/fi/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/fi/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/fi/LC_MESSAGES/plasma_runner_kill.mo share/locale/fi/LC_MESSAGES/plasma_runner_locations.mo share/locale/fi/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/fi/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/fi/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/fi/LC_MESSAGES/plasma_runner_services.mo share/locale/fi/LC_MESSAGES/plasma_runner_sessions.mo share/locale/fi/LC_MESSAGES/plasma_runner_shell.mo share/locale/fi/LC_MESSAGES/plasma_runner_solid.mo share/locale/fi/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/fi/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/fi/LC_MESSAGES/plasma_runner_windows.mo share/locale/fi/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/fi/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/fi/LC_MESSAGES/plasmashell.mo share/locale/fi/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/fi/LC_MESSAGES/soliduiserver5.mo share/locale/fi/LC_MESSAGES/systemmonitor.mo share/locale/fr/LC_MESSAGES/freespacenotifier.mo +share/locale/fr/LC_MESSAGES/kcm_translations.mo share/locale/fr/LC_MESSAGES/kcminit.mo share/locale/fr/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/fr/LC_MESSAGES/kio5_applications.mo share/locale/fr/LC_MESSAGES/kio_desktop.mo share/locale/fr/LC_MESSAGES/klipper.mo share/locale/fr/LC_MESSAGES/krunner.mo share/locale/fr/LC_MESSAGES/ksmserver.mo share/locale/fr/LC_MESSAGES/kuiserver5.mo share/locale/fr/LC_MESSAGES/libkworkspace.mo share/locale/fr/LC_MESSAGES/phonon_kde_plugin.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo share/locale/fr/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/fr/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/fr/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/fr/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/fr/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/fr/LC_MESSAGES/plasma_engine_dict.mo share/locale/fr/LC_MESSAGES/plasma_engine_keystate.mo share/locale/fr/LC_MESSAGES/plasma_engine_mpris2.mo share/locale/fr/LC_MESSAGES/plasma_engine_notifications.mo share/locale/fr/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/fr/LC_MESSAGES/plasma_engine_share.mo share/locale/fr/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/fr/LC_MESSAGES/plasma_engine_time.mo share/locale/fr/LC_MESSAGES/plasma_engine_weather.mo share/locale/fr/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/fr/LC_MESSAGES/plasma_package_plasmashell.mo share/locale/fr/LC_MESSAGES/plasma_runner_activities.mo share/locale/fr/LC_MESSAGES/plasma_runner_appstream.mo share/locale/fr/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/fr/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/fr/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/fr/LC_MESSAGES/plasma_runner_kill.mo share/locale/fr/LC_MESSAGES/plasma_runner_locations.mo share/locale/fr/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/fr/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/fr/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/fr/LC_MESSAGES/plasma_runner_services.mo share/locale/fr/LC_MESSAGES/plasma_runner_sessions.mo share/locale/fr/LC_MESSAGES/plasma_runner_shell.mo share/locale/fr/LC_MESSAGES/plasma_runner_solid.mo share/locale/fr/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/fr/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/fr/LC_MESSAGES/plasma_runner_windows.mo share/locale/fr/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/fr/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/fr/LC_MESSAGES/plasmashell.mo share/locale/fr/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/fr/LC_MESSAGES/soliduiserver5.mo share/locale/fr/LC_MESSAGES/systemmonitor.mo share/locale/fy/LC_MESSAGES/kcminit.mo share/locale/fy/LC_MESSAGES/kio5_applications.mo share/locale/fy/LC_MESSAGES/klipper.mo share/locale/fy/LC_MESSAGES/ksmserver.mo share/locale/fy/LC_MESSAGES/kuiserver5.mo share/locale/fy/LC_MESSAGES/libkworkspace.mo share/locale/fy/LC_MESSAGES/phonon_kde_plugin.mo share/locale/fy/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/fy/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/fy/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/fy/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/fy/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/fy/LC_MESSAGES/plasma_engine_keystate.mo share/locale/fy/LC_MESSAGES/plasma_engine_notifications.mo share/locale/fy/LC_MESSAGES/plasma_engine_weather.mo share/locale/fy/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/fy/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/fy/LC_MESSAGES/plasma_runner_locations.mo share/locale/fy/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/fy/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/fy/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/fy/LC_MESSAGES/plasma_runner_services.mo share/locale/fy/LC_MESSAGES/plasma_runner_sessions.mo share/locale/fy/LC_MESSAGES/plasma_runner_shell.mo share/locale/fy/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/fy/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/fy/LC_MESSAGES/soliduiserver5.mo share/locale/ga/LC_MESSAGES/freespacenotifier.mo share/locale/ga/LC_MESSAGES/kcminit.mo share/locale/ga/LC_MESSAGES/kio5_applications.mo share/locale/ga/LC_MESSAGES/klipper.mo share/locale/ga/LC_MESSAGES/ksmserver.mo share/locale/ga/LC_MESSAGES/kuiserver5.mo share/locale/ga/LC_MESSAGES/libkworkspace.mo share/locale/ga/LC_MESSAGES/phonon_kde_plugin.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/ga/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/ga/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/ga/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/ga/LC_MESSAGES/plasma_engine_keystate.mo share/locale/ga/LC_MESSAGES/plasma_engine_mpris2.mo share/locale/ga/LC_MESSAGES/plasma_engine_notifications.mo share/locale/ga/LC_MESSAGES/plasma_engine_share.mo share/locale/ga/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/ga/LC_MESSAGES/plasma_engine_weather.mo share/locale/ga/LC_MESSAGES/plasma_runner_activities.mo share/locale/ga/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/ga/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/ga/LC_MESSAGES/plasma_runner_kill.mo share/locale/ga/LC_MESSAGES/plasma_runner_locations.mo share/locale/ga/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/ga/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/ga/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/ga/LC_MESSAGES/plasma_runner_services.mo share/locale/ga/LC_MESSAGES/plasma_runner_sessions.mo share/locale/ga/LC_MESSAGES/plasma_runner_shell.mo share/locale/ga/LC_MESSAGES/plasma_runner_solid.mo share/locale/ga/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/ga/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/ga/LC_MESSAGES/plasma_runner_windows.mo share/locale/ga/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/ga/LC_MESSAGES/soliduiserver5.mo share/locale/gl/LC_MESSAGES/freespacenotifier.mo +share/locale/gl/LC_MESSAGES/kcm_translations.mo share/locale/gl/LC_MESSAGES/kcminit.mo share/locale/gl/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/gl/LC_MESSAGES/kio5_applications.mo share/locale/gl/LC_MESSAGES/kio_desktop.mo share/locale/gl/LC_MESSAGES/klipper.mo share/locale/gl/LC_MESSAGES/krunner.mo share/locale/gl/LC_MESSAGES/ksmserver.mo share/locale/gl/LC_MESSAGES/kuiserver5.mo share/locale/gl/LC_MESSAGES/libkworkspace.mo share/locale/gl/LC_MESSAGES/phonon_kde_plugin.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo share/locale/gl/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/gl/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/gl/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/gl/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/gl/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/gl/LC_MESSAGES/plasma_engine_dict.mo share/locale/gl/LC_MESSAGES/plasma_engine_keystate.mo share/locale/gl/LC_MESSAGES/plasma_engine_mpris2.mo share/locale/gl/LC_MESSAGES/plasma_engine_notifications.mo share/locale/gl/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/gl/LC_MESSAGES/plasma_engine_share.mo share/locale/gl/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/gl/LC_MESSAGES/plasma_engine_time.mo share/locale/gl/LC_MESSAGES/plasma_engine_weather.mo share/locale/gl/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/gl/LC_MESSAGES/plasma_package_plasmashell.mo share/locale/gl/LC_MESSAGES/plasma_runner_activities.mo share/locale/gl/LC_MESSAGES/plasma_runner_appstream.mo share/locale/gl/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/gl/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/gl/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/gl/LC_MESSAGES/plasma_runner_kill.mo share/locale/gl/LC_MESSAGES/plasma_runner_locations.mo share/locale/gl/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/gl/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/gl/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/gl/LC_MESSAGES/plasma_runner_services.mo share/locale/gl/LC_MESSAGES/plasma_runner_sessions.mo share/locale/gl/LC_MESSAGES/plasma_runner_shell.mo share/locale/gl/LC_MESSAGES/plasma_runner_solid.mo share/locale/gl/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/gl/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/gl/LC_MESSAGES/plasma_runner_windows.mo share/locale/gl/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/gl/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/gl/LC_MESSAGES/plasmashell.mo share/locale/gl/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/gl/LC_MESSAGES/soliduiserver5.mo share/locale/gl/LC_MESSAGES/systemmonitor.mo share/locale/gu/LC_MESSAGES/freespacenotifier.mo share/locale/gu/LC_MESSAGES/kcminit.mo share/locale/gu/LC_MESSAGES/kio5_applications.mo share/locale/gu/LC_MESSAGES/klipper.mo share/locale/gu/LC_MESSAGES/ksmserver.mo share/locale/gu/LC_MESSAGES/kuiserver5.mo share/locale/gu/LC_MESSAGES/libkworkspace.mo share/locale/gu/LC_MESSAGES/phonon_kde_plugin.mo share/locale/gu/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/gu/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/gu/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/gu/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/gu/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/gu/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/gu/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/gu/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/gu/LC_MESSAGES/plasma_engine_keystate.mo share/locale/gu/LC_MESSAGES/plasma_engine_notifications.mo share/locale/gu/LC_MESSAGES/plasma_engine_share.mo share/locale/gu/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/gu/LC_MESSAGES/plasma_engine_weather.mo share/locale/gu/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/gu/LC_MESSAGES/plasma_runner_kill.mo share/locale/gu/LC_MESSAGES/plasma_runner_locations.mo share/locale/gu/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/gu/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/gu/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/gu/LC_MESSAGES/plasma_runner_services.mo share/locale/gu/LC_MESSAGES/plasma_runner_sessions.mo share/locale/gu/LC_MESSAGES/plasma_runner_shell.mo share/locale/gu/LC_MESSAGES/plasma_runner_solid.mo share/locale/gu/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/gu/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/gu/LC_MESSAGES/plasma_runner_windows.mo share/locale/gu/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/gu/LC_MESSAGES/soliduiserver5.mo share/locale/he/LC_MESSAGES/freespacenotifier.mo +share/locale/he/LC_MESSAGES/kcm_translations.mo share/locale/he/LC_MESSAGES/kcminit.mo share/locale/he/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/he/LC_MESSAGES/kio5_applications.mo share/locale/he/LC_MESSAGES/kio_desktop.mo share/locale/he/LC_MESSAGES/klipper.mo share/locale/he/LC_MESSAGES/krunner.mo share/locale/he/LC_MESSAGES/ksmserver.mo share/locale/he/LC_MESSAGES/kuiserver5.mo share/locale/he/LC_MESSAGES/libkworkspace.mo share/locale/he/LC_MESSAGES/phonon_kde_plugin.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo share/locale/he/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/he/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/he/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/he/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/he/LC_MESSAGES/plasma_engine_keystate.mo share/locale/he/LC_MESSAGES/plasma_engine_mpris2.mo share/locale/he/LC_MESSAGES/plasma_engine_notifications.mo share/locale/he/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/he/LC_MESSAGES/plasma_engine_share.mo share/locale/he/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/he/LC_MESSAGES/plasma_engine_time.mo share/locale/he/LC_MESSAGES/plasma_engine_weather.mo share/locale/he/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/he/LC_MESSAGES/plasma_runner_activities.mo share/locale/he/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/he/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/he/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/he/LC_MESSAGES/plasma_runner_kill.mo share/locale/he/LC_MESSAGES/plasma_runner_locations.mo share/locale/he/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/he/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/he/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/he/LC_MESSAGES/plasma_runner_services.mo share/locale/he/LC_MESSAGES/plasma_runner_sessions.mo share/locale/he/LC_MESSAGES/plasma_runner_shell.mo share/locale/he/LC_MESSAGES/plasma_runner_solid.mo share/locale/he/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/he/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/he/LC_MESSAGES/plasma_runner_windows.mo share/locale/he/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/he/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/he/LC_MESSAGES/plasmashell.mo share/locale/he/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/he/LC_MESSAGES/soliduiserver5.mo share/locale/he/LC_MESSAGES/systemmonitor.mo share/locale/hi/LC_MESSAGES/freespacenotifier.mo share/locale/hi/LC_MESSAGES/kcminit.mo share/locale/hi/LC_MESSAGES/kio5_applications.mo share/locale/hi/LC_MESSAGES/klipper.mo share/locale/hi/LC_MESSAGES/ksmserver.mo share/locale/hi/LC_MESSAGES/kuiserver5.mo share/locale/hi/LC_MESSAGES/libkworkspace.mo share/locale/hi/LC_MESSAGES/phonon_kde_plugin.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/hi/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/hi/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/hi/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/hi/LC_MESSAGES/plasma_engine_keystate.mo share/locale/hi/LC_MESSAGES/plasma_engine_notifications.mo share/locale/hi/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/hi/LC_MESSAGES/plasma_engine_weather.mo share/locale/hi/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/hi/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/hi/LC_MESSAGES/plasma_runner_kill.mo share/locale/hi/LC_MESSAGES/plasma_runner_locations.mo share/locale/hi/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/hi/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/hi/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/hi/LC_MESSAGES/plasma_runner_services.mo share/locale/hi/LC_MESSAGES/plasma_runner_sessions.mo share/locale/hi/LC_MESSAGES/plasma_runner_shell.mo share/locale/hi/LC_MESSAGES/plasma_runner_solid.mo share/locale/hi/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/hi/LC_MESSAGES/plasma_runner_windows.mo share/locale/hi/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/hi/LC_MESSAGES/soliduiserver5.mo share/locale/hne/LC_MESSAGES/kcminit.mo share/locale/hne/LC_MESSAGES/kio5_applications.mo share/locale/hne/LC_MESSAGES/ksmserver.mo share/locale/hne/LC_MESSAGES/kuiserver5.mo share/locale/hne/LC_MESSAGES/libkworkspace.mo share/locale/hne/LC_MESSAGES/phonon_kde_plugin.mo share/locale/hne/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/hne/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/hne/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/hne/LC_MESSAGES/plasma_runner_locations.mo share/locale/hne/LC_MESSAGES/plasma_runner_sessions.mo share/locale/hne/LC_MESSAGES/plasma_runner_shell.mo share/locale/hne/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/hne/LC_MESSAGES/soliduiserver5.mo share/locale/hr/LC_MESSAGES/freespacenotifier.mo share/locale/hr/LC_MESSAGES/kcminit.mo share/locale/hr/LC_MESSAGES/kio5_applications.mo share/locale/hr/LC_MESSAGES/klipper.mo share/locale/hr/LC_MESSAGES/ksmserver.mo share/locale/hr/LC_MESSAGES/kuiserver5.mo share/locale/hr/LC_MESSAGES/libkworkspace.mo share/locale/hr/LC_MESSAGES/phonon_kde_plugin.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/hr/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/hr/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/hr/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/hr/LC_MESSAGES/plasma_engine_keystate.mo share/locale/hr/LC_MESSAGES/plasma_engine_notifications.mo share/locale/hr/LC_MESSAGES/plasma_engine_share.mo share/locale/hr/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/hr/LC_MESSAGES/plasma_engine_weather.mo share/locale/hr/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/hr/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/hr/LC_MESSAGES/plasma_runner_kill.mo share/locale/hr/LC_MESSAGES/plasma_runner_locations.mo share/locale/hr/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/hr/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/hr/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/hr/LC_MESSAGES/plasma_runner_services.mo share/locale/hr/LC_MESSAGES/plasma_runner_sessions.mo share/locale/hr/LC_MESSAGES/plasma_runner_shell.mo share/locale/hr/LC_MESSAGES/plasma_runner_solid.mo share/locale/hr/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/hr/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/hr/LC_MESSAGES/plasma_runner_windows.mo share/locale/hr/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/hr/LC_MESSAGES/soliduiserver5.mo share/locale/hsb/LC_MESSAGES/kcminit.mo share/locale/hsb/LC_MESSAGES/kio5_applications.mo share/locale/hsb/LC_MESSAGES/klipper.mo share/locale/hsb/LC_MESSAGES/ksmserver.mo share/locale/hsb/LC_MESSAGES/kuiserver5.mo share/locale/hsb/LC_MESSAGES/libkworkspace.mo share/locale/hsb/LC_MESSAGES/phonon_kde_plugin.mo share/locale/hsb/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/hsb/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/hsb/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/hsb/LC_MESSAGES/plasma_runner_locations.mo share/locale/hsb/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/hsb/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/hsb/LC_MESSAGES/plasma_runner_sessions.mo share/locale/hsb/LC_MESSAGES/plasma_runner_shell.mo share/locale/hsb/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/hsb/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/hsb/LC_MESSAGES/soliduiserver5.mo share/locale/hu/LC_MESSAGES/freespacenotifier.mo +share/locale/hu/LC_MESSAGES/kcm_translations.mo share/locale/hu/LC_MESSAGES/kcminit.mo share/locale/hu/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/hu/LC_MESSAGES/kio5_applications.mo share/locale/hu/LC_MESSAGES/kio_desktop.mo share/locale/hu/LC_MESSAGES/klipper.mo share/locale/hu/LC_MESSAGES/krunner.mo share/locale/hu/LC_MESSAGES/ksmserver.mo share/locale/hu/LC_MESSAGES/kuiserver5.mo share/locale/hu/LC_MESSAGES/libkworkspace.mo share/locale/hu/LC_MESSAGES/phonon_kde_plugin.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo share/locale/hu/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/hu/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/hu/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/hu/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/hu/LC_MESSAGES/plasma_engine_keystate.mo share/locale/hu/LC_MESSAGES/plasma_engine_mpris2.mo share/locale/hu/LC_MESSAGES/plasma_engine_notifications.mo share/locale/hu/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/hu/LC_MESSAGES/plasma_engine_share.mo share/locale/hu/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/hu/LC_MESSAGES/plasma_engine_time.mo share/locale/hu/LC_MESSAGES/plasma_engine_weather.mo share/locale/hu/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/hu/LC_MESSAGES/plasma_package_plasmashell.mo share/locale/hu/LC_MESSAGES/plasma_runner_activities.mo share/locale/hu/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/hu/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/hu/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/hu/LC_MESSAGES/plasma_runner_kill.mo share/locale/hu/LC_MESSAGES/plasma_runner_locations.mo share/locale/hu/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/hu/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/hu/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/hu/LC_MESSAGES/plasma_runner_services.mo share/locale/hu/LC_MESSAGES/plasma_runner_sessions.mo share/locale/hu/LC_MESSAGES/plasma_runner_shell.mo share/locale/hu/LC_MESSAGES/plasma_runner_solid.mo share/locale/hu/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/hu/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/hu/LC_MESSAGES/plasma_runner_windows.mo share/locale/hu/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/hu/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/hu/LC_MESSAGES/plasmashell.mo share/locale/hu/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/hu/LC_MESSAGES/soliduiserver5.mo share/locale/hu/LC_MESSAGES/systemmonitor.mo share/locale/hy/LC_MESSAGES/kcminit.mo share/locale/hy/LC_MESSAGES/phonon_kde_plugin.mo share/locale/hy/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/hy/LC_MESSAGES/plasma_runner_locations.mo share/locale/ia/LC_MESSAGES/freespacenotifier.mo +share/locale/ia/LC_MESSAGES/kcm_translations.mo share/locale/ia/LC_MESSAGES/kcminit.mo share/locale/ia/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/ia/LC_MESSAGES/kio5_applications.mo share/locale/ia/LC_MESSAGES/klipper.mo share/locale/ia/LC_MESSAGES/krunner.mo share/locale/ia/LC_MESSAGES/ksmserver.mo share/locale/ia/LC_MESSAGES/kuiserver5.mo share/locale/ia/LC_MESSAGES/libkworkspace.mo share/locale/ia/LC_MESSAGES/phonon_kde_plugin.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo share/locale/ia/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/ia/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/ia/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/ia/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/ia/LC_MESSAGES/plasma_engine_keystate.mo share/locale/ia/LC_MESSAGES/plasma_engine_mpris2.mo share/locale/ia/LC_MESSAGES/plasma_engine_notifications.mo share/locale/ia/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/ia/LC_MESSAGES/plasma_engine_share.mo share/locale/ia/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/ia/LC_MESSAGES/plasma_engine_time.mo share/locale/ia/LC_MESSAGES/plasma_engine_weather.mo share/locale/ia/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/ia/LC_MESSAGES/plasma_package_plasmashell.mo share/locale/ia/LC_MESSAGES/plasma_runner_activities.mo share/locale/ia/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/ia/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/ia/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/ia/LC_MESSAGES/plasma_runner_kill.mo share/locale/ia/LC_MESSAGES/plasma_runner_locations.mo share/locale/ia/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/ia/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/ia/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/ia/LC_MESSAGES/plasma_runner_services.mo share/locale/ia/LC_MESSAGES/plasma_runner_sessions.mo share/locale/ia/LC_MESSAGES/plasma_runner_shell.mo share/locale/ia/LC_MESSAGES/plasma_runner_solid.mo share/locale/ia/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/ia/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/ia/LC_MESSAGES/plasma_runner_windows.mo share/locale/ia/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/ia/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/ia/LC_MESSAGES/plasmashell.mo share/locale/ia/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/ia/LC_MESSAGES/soliduiserver5.mo share/locale/ia/LC_MESSAGES/systemmonitor.mo share/locale/id/LC_MESSAGES/freespacenotifier.mo +share/locale/id/LC_MESSAGES/kcm_translations.mo share/locale/id/LC_MESSAGES/kcminit.mo share/locale/id/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/id/LC_MESSAGES/kio5_applications.mo share/locale/id/LC_MESSAGES/kio_desktop.mo share/locale/id/LC_MESSAGES/klipper.mo share/locale/id/LC_MESSAGES/krunner.mo share/locale/id/LC_MESSAGES/ksmserver.mo share/locale/id/LC_MESSAGES/kuiserver5.mo share/locale/id/LC_MESSAGES/libkworkspace.mo share/locale/id/LC_MESSAGES/phonon_kde_plugin.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo share/locale/id/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/id/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/id/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/id/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/id/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/id/LC_MESSAGES/plasma_engine_dict.mo share/locale/id/LC_MESSAGES/plasma_engine_keystate.mo share/locale/id/LC_MESSAGES/plasma_engine_mpris2.mo share/locale/id/LC_MESSAGES/plasma_engine_notifications.mo share/locale/id/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/id/LC_MESSAGES/plasma_engine_share.mo share/locale/id/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/id/LC_MESSAGES/plasma_engine_time.mo share/locale/id/LC_MESSAGES/plasma_engine_weather.mo share/locale/id/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/id/LC_MESSAGES/plasma_package_plasmashell.mo share/locale/id/LC_MESSAGES/plasma_runner_activities.mo share/locale/id/LC_MESSAGES/plasma_runner_appstream.mo share/locale/id/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/id/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/id/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/id/LC_MESSAGES/plasma_runner_kill.mo share/locale/id/LC_MESSAGES/plasma_runner_locations.mo share/locale/id/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/id/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/id/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/id/LC_MESSAGES/plasma_runner_services.mo share/locale/id/LC_MESSAGES/plasma_runner_sessions.mo share/locale/id/LC_MESSAGES/plasma_runner_shell.mo share/locale/id/LC_MESSAGES/plasma_runner_solid.mo share/locale/id/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/id/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/id/LC_MESSAGES/plasma_runner_windows.mo share/locale/id/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/id/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/id/LC_MESSAGES/plasmashell.mo share/locale/id/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/id/LC_MESSAGES/soliduiserver5.mo share/locale/id/LC_MESSAGES/systemmonitor.mo share/locale/is/LC_MESSAGES/freespacenotifier.mo share/locale/is/LC_MESSAGES/kcminit.mo share/locale/is/LC_MESSAGES/kio5_applications.mo share/locale/is/LC_MESSAGES/klipper.mo share/locale/is/LC_MESSAGES/ksmserver.mo share/locale/is/LC_MESSAGES/kuiserver5.mo share/locale/is/LC_MESSAGES/libkworkspace.mo share/locale/is/LC_MESSAGES/phonon_kde_plugin.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/is/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/is/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/is/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/is/LC_MESSAGES/plasma_engine_notifications.mo share/locale/is/LC_MESSAGES/plasma_engine_share.mo share/locale/is/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/is/LC_MESSAGES/plasma_engine_weather.mo share/locale/is/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/is/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/is/LC_MESSAGES/plasma_runner_kill.mo share/locale/is/LC_MESSAGES/plasma_runner_locations.mo share/locale/is/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/is/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/is/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/is/LC_MESSAGES/plasma_runner_services.mo share/locale/is/LC_MESSAGES/plasma_runner_sessions.mo share/locale/is/LC_MESSAGES/plasma_runner_shell.mo share/locale/is/LC_MESSAGES/plasma_runner_solid.mo share/locale/is/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/is/LC_MESSAGES/plasma_runner_windows.mo share/locale/is/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/is/LC_MESSAGES/soliduiserver5.mo share/locale/it/LC_MESSAGES/freespacenotifier.mo +share/locale/it/LC_MESSAGES/kcm_translations.mo share/locale/it/LC_MESSAGES/kcminit.mo share/locale/it/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/it/LC_MESSAGES/kio5_applications.mo share/locale/it/LC_MESSAGES/kio_desktop.mo share/locale/it/LC_MESSAGES/klipper.mo share/locale/it/LC_MESSAGES/krunner.mo share/locale/it/LC_MESSAGES/ksmserver.mo share/locale/it/LC_MESSAGES/kuiserver5.mo share/locale/it/LC_MESSAGES/libkworkspace.mo share/locale/it/LC_MESSAGES/phonon_kde_plugin.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo share/locale/it/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/it/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/it/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/it/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/it/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/it/LC_MESSAGES/plasma_engine_dict.mo share/locale/it/LC_MESSAGES/plasma_engine_keystate.mo share/locale/it/LC_MESSAGES/plasma_engine_mpris2.mo share/locale/it/LC_MESSAGES/plasma_engine_notifications.mo share/locale/it/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/it/LC_MESSAGES/plasma_engine_share.mo share/locale/it/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/it/LC_MESSAGES/plasma_engine_time.mo share/locale/it/LC_MESSAGES/plasma_engine_weather.mo share/locale/it/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/it/LC_MESSAGES/plasma_package_plasmashell.mo share/locale/it/LC_MESSAGES/plasma_runner_activities.mo share/locale/it/LC_MESSAGES/plasma_runner_appstream.mo share/locale/it/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/it/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/it/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/it/LC_MESSAGES/plasma_runner_kill.mo share/locale/it/LC_MESSAGES/plasma_runner_locations.mo share/locale/it/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/it/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/it/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/it/LC_MESSAGES/plasma_runner_services.mo share/locale/it/LC_MESSAGES/plasma_runner_sessions.mo share/locale/it/LC_MESSAGES/plasma_runner_shell.mo share/locale/it/LC_MESSAGES/plasma_runner_solid.mo share/locale/it/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/it/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/it/LC_MESSAGES/plasma_runner_windows.mo share/locale/it/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/it/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/it/LC_MESSAGES/plasmashell.mo share/locale/it/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/it/LC_MESSAGES/soliduiserver5.mo share/locale/it/LC_MESSAGES/systemmonitor.mo share/locale/ja/LC_MESSAGES/freespacenotifier.mo +share/locale/ja/LC_MESSAGES/kcm_translations.mo share/locale/ja/LC_MESSAGES/kcminit.mo share/locale/ja/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/ja/LC_MESSAGES/kio5_applications.mo share/locale/ja/LC_MESSAGES/kio_desktop.mo share/locale/ja/LC_MESSAGES/klipper.mo share/locale/ja/LC_MESSAGES/krunner.mo share/locale/ja/LC_MESSAGES/ksmserver.mo share/locale/ja/LC_MESSAGES/kuiserver5.mo share/locale/ja/LC_MESSAGES/libkworkspace.mo share/locale/ja/LC_MESSAGES/phonon_kde_plugin.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo share/locale/ja/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/ja/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/ja/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/ja/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/ja/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/ja/LC_MESSAGES/plasma_engine_dict.mo share/locale/ja/LC_MESSAGES/plasma_engine_keystate.mo share/locale/ja/LC_MESSAGES/plasma_engine_mpris2.mo share/locale/ja/LC_MESSAGES/plasma_engine_notifications.mo share/locale/ja/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/ja/LC_MESSAGES/plasma_engine_share.mo share/locale/ja/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/ja/LC_MESSAGES/plasma_engine_time.mo share/locale/ja/LC_MESSAGES/plasma_engine_weather.mo share/locale/ja/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/ja/LC_MESSAGES/plasma_package_plasmashell.mo share/locale/ja/LC_MESSAGES/plasma_runner_activities.mo share/locale/ja/LC_MESSAGES/plasma_runner_appstream.mo share/locale/ja/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/ja/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/ja/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/ja/LC_MESSAGES/plasma_runner_kill.mo share/locale/ja/LC_MESSAGES/plasma_runner_locations.mo share/locale/ja/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/ja/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/ja/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/ja/LC_MESSAGES/plasma_runner_services.mo share/locale/ja/LC_MESSAGES/plasma_runner_sessions.mo share/locale/ja/LC_MESSAGES/plasma_runner_shell.mo share/locale/ja/LC_MESSAGES/plasma_runner_solid.mo share/locale/ja/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/ja/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/ja/LC_MESSAGES/plasma_runner_windows.mo share/locale/ja/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/ja/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/ja/LC_MESSAGES/plasmashell.mo share/locale/ja/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/ja/LC_MESSAGES/soliduiserver5.mo share/locale/ja/LC_MESSAGES/systemmonitor.mo share/locale/kk/LC_MESSAGES/freespacenotifier.mo share/locale/kk/LC_MESSAGES/kcminit.mo share/locale/kk/LC_MESSAGES/kio5_applications.mo share/locale/kk/LC_MESSAGES/klipper.mo share/locale/kk/LC_MESSAGES/ksmserver.mo share/locale/kk/LC_MESSAGES/kuiserver5.mo share/locale/kk/LC_MESSAGES/libkworkspace.mo share/locale/kk/LC_MESSAGES/phonon_kde_plugin.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/kk/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/kk/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/kk/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/kk/LC_MESSAGES/plasma_engine_keystate.mo share/locale/kk/LC_MESSAGES/plasma_engine_mpris2.mo share/locale/kk/LC_MESSAGES/plasma_engine_notifications.mo share/locale/kk/LC_MESSAGES/plasma_engine_share.mo share/locale/kk/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/kk/LC_MESSAGES/plasma_engine_weather.mo share/locale/kk/LC_MESSAGES/plasma_runner_activities.mo share/locale/kk/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/kk/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/kk/LC_MESSAGES/plasma_runner_kill.mo share/locale/kk/LC_MESSAGES/plasma_runner_locations.mo share/locale/kk/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/kk/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/kk/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/kk/LC_MESSAGES/plasma_runner_services.mo share/locale/kk/LC_MESSAGES/plasma_runner_sessions.mo share/locale/kk/LC_MESSAGES/plasma_runner_shell.mo share/locale/kk/LC_MESSAGES/plasma_runner_solid.mo share/locale/kk/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/kk/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/kk/LC_MESSAGES/plasma_runner_windows.mo share/locale/kk/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/kk/LC_MESSAGES/soliduiserver5.mo share/locale/km/LC_MESSAGES/freespacenotifier.mo share/locale/km/LC_MESSAGES/kcminit.mo share/locale/km/LC_MESSAGES/kio5_applications.mo share/locale/km/LC_MESSAGES/klipper.mo share/locale/km/LC_MESSAGES/ksmserver.mo share/locale/km/LC_MESSAGES/kuiserver5.mo share/locale/km/LC_MESSAGES/libkworkspace.mo share/locale/km/LC_MESSAGES/phonon_kde_plugin.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/km/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/km/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/km/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/km/LC_MESSAGES/plasma_engine_keystate.mo share/locale/km/LC_MESSAGES/plasma_engine_mpris2.mo share/locale/km/LC_MESSAGES/plasma_engine_notifications.mo share/locale/km/LC_MESSAGES/plasma_engine_share.mo share/locale/km/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/km/LC_MESSAGES/plasma_engine_weather.mo share/locale/km/LC_MESSAGES/plasma_runner_activities.mo share/locale/km/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/km/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/km/LC_MESSAGES/plasma_runner_kill.mo share/locale/km/LC_MESSAGES/plasma_runner_locations.mo share/locale/km/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/km/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/km/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/km/LC_MESSAGES/plasma_runner_services.mo share/locale/km/LC_MESSAGES/plasma_runner_sessions.mo share/locale/km/LC_MESSAGES/plasma_runner_shell.mo share/locale/km/LC_MESSAGES/plasma_runner_solid.mo share/locale/km/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/km/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/km/LC_MESSAGES/plasma_runner_windows.mo share/locale/km/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/km/LC_MESSAGES/soliduiserver5.mo share/locale/kn/LC_MESSAGES/freespacenotifier.mo share/locale/kn/LC_MESSAGES/kcminit.mo share/locale/kn/LC_MESSAGES/kio5_applications.mo share/locale/kn/LC_MESSAGES/klipper.mo share/locale/kn/LC_MESSAGES/ksmserver.mo share/locale/kn/LC_MESSAGES/kuiserver5.mo share/locale/kn/LC_MESSAGES/libkworkspace.mo share/locale/kn/LC_MESSAGES/phonon_kde_plugin.mo share/locale/kn/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/kn/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/kn/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/kn/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/kn/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/kn/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/kn/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/kn/LC_MESSAGES/plasma_engine_keystate.mo share/locale/kn/LC_MESSAGES/plasma_engine_notifications.mo share/locale/kn/LC_MESSAGES/plasma_engine_weather.mo share/locale/kn/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/kn/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/kn/LC_MESSAGES/plasma_runner_kill.mo share/locale/kn/LC_MESSAGES/plasma_runner_locations.mo share/locale/kn/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/kn/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/kn/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/kn/LC_MESSAGES/plasma_runner_services.mo share/locale/kn/LC_MESSAGES/plasma_runner_sessions.mo share/locale/kn/LC_MESSAGES/plasma_runner_shell.mo share/locale/kn/LC_MESSAGES/plasma_runner_solid.mo share/locale/kn/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/kn/LC_MESSAGES/plasma_runner_windows.mo share/locale/kn/LC_MESSAGES/soliduiserver5.mo share/locale/ko/LC_MESSAGES/freespacenotifier.mo +share/locale/ko/LC_MESSAGES/kcm_translations.mo share/locale/ko/LC_MESSAGES/kcminit.mo share/locale/ko/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/ko/LC_MESSAGES/kio5_applications.mo share/locale/ko/LC_MESSAGES/kio_desktop.mo share/locale/ko/LC_MESSAGES/klipper.mo share/locale/ko/LC_MESSAGES/krunner.mo share/locale/ko/LC_MESSAGES/ksmserver.mo share/locale/ko/LC_MESSAGES/kuiserver5.mo share/locale/ko/LC_MESSAGES/libkworkspace.mo share/locale/ko/LC_MESSAGES/phonon_kde_plugin.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo share/locale/ko/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/ko/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/ko/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/ko/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/ko/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/ko/LC_MESSAGES/plasma_engine_dict.mo share/locale/ko/LC_MESSAGES/plasma_engine_keystate.mo share/locale/ko/LC_MESSAGES/plasma_engine_mpris2.mo share/locale/ko/LC_MESSAGES/plasma_engine_notifications.mo share/locale/ko/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/ko/LC_MESSAGES/plasma_engine_share.mo share/locale/ko/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/ko/LC_MESSAGES/plasma_engine_time.mo share/locale/ko/LC_MESSAGES/plasma_engine_weather.mo share/locale/ko/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/ko/LC_MESSAGES/plasma_package_plasmashell.mo share/locale/ko/LC_MESSAGES/plasma_runner_activities.mo share/locale/ko/LC_MESSAGES/plasma_runner_appstream.mo share/locale/ko/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/ko/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/ko/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/ko/LC_MESSAGES/plasma_runner_kill.mo share/locale/ko/LC_MESSAGES/plasma_runner_locations.mo share/locale/ko/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/ko/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/ko/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/ko/LC_MESSAGES/plasma_runner_services.mo share/locale/ko/LC_MESSAGES/plasma_runner_sessions.mo share/locale/ko/LC_MESSAGES/plasma_runner_shell.mo share/locale/ko/LC_MESSAGES/plasma_runner_solid.mo share/locale/ko/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/ko/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/ko/LC_MESSAGES/plasma_runner_windows.mo share/locale/ko/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/ko/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/ko/LC_MESSAGES/plasmashell.mo share/locale/ko/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/ko/LC_MESSAGES/soliduiserver5.mo share/locale/ko/LC_MESSAGES/systemmonitor.mo share/locale/ku/LC_MESSAGES/kcminit.mo share/locale/ku/LC_MESSAGES/kio5_applications.mo share/locale/ku/LC_MESSAGES/klipper.mo share/locale/ku/LC_MESSAGES/ksmserver.mo share/locale/ku/LC_MESSAGES/kuiserver5.mo share/locale/ku/LC_MESSAGES/libkworkspace.mo share/locale/ku/LC_MESSAGES/phonon_kde_plugin.mo share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/ku/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/ku/LC_MESSAGES/plasma_runner_locations.mo share/locale/ku/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/ku/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/ku/LC_MESSAGES/plasma_runner_sessions.mo share/locale/ku/LC_MESSAGES/plasma_runner_shell.mo share/locale/ku/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/ku/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/ku/LC_MESSAGES/soliduiserver5.mo share/locale/lb/LC_MESSAGES/kio5_applications.mo share/locale/lt/LC_MESSAGES/freespacenotifier.mo +share/locale/lt/LC_MESSAGES/kcm_translations.mo share/locale/lt/LC_MESSAGES/kcminit.mo share/locale/lt/LC_MESSAGES/kio5_applications.mo share/locale/lt/LC_MESSAGES/klipper.mo share/locale/lt/LC_MESSAGES/krunner.mo share/locale/lt/LC_MESSAGES/ksmserver.mo share/locale/lt/LC_MESSAGES/kuiserver5.mo share/locale/lt/LC_MESSAGES/libkworkspace.mo share/locale/lt/LC_MESSAGES/phonon_kde_plugin.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo share/locale/lt/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/lt/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/lt/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/lt/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/lt/LC_MESSAGES/plasma_engine_keystate.mo share/locale/lt/LC_MESSAGES/plasma_engine_mpris2.mo share/locale/lt/LC_MESSAGES/plasma_engine_notifications.mo share/locale/lt/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/lt/LC_MESSAGES/plasma_engine_share.mo share/locale/lt/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/lt/LC_MESSAGES/plasma_engine_time.mo share/locale/lt/LC_MESSAGES/plasma_engine_weather.mo share/locale/lt/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/lt/LC_MESSAGES/plasma_package_plasmashell.mo share/locale/lt/LC_MESSAGES/plasma_runner_activities.mo share/locale/lt/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/lt/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/lt/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/lt/LC_MESSAGES/plasma_runner_kill.mo share/locale/lt/LC_MESSAGES/plasma_runner_locations.mo share/locale/lt/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/lt/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/lt/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/lt/LC_MESSAGES/plasma_runner_services.mo share/locale/lt/LC_MESSAGES/plasma_runner_sessions.mo share/locale/lt/LC_MESSAGES/plasma_runner_shell.mo share/locale/lt/LC_MESSAGES/plasma_runner_solid.mo share/locale/lt/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/lt/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/lt/LC_MESSAGES/plasma_runner_windows.mo share/locale/lt/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/lt/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/lt/LC_MESSAGES/plasmashell.mo share/locale/lt/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/lt/LC_MESSAGES/soliduiserver5.mo share/locale/lt/LC_MESSAGES/systemmonitor.mo share/locale/lv/LC_MESSAGES/freespacenotifier.mo share/locale/lv/LC_MESSAGES/kcminit.mo share/locale/lv/LC_MESSAGES/kio5_applications.mo share/locale/lv/LC_MESSAGES/klipper.mo share/locale/lv/LC_MESSAGES/ksmserver.mo share/locale/lv/LC_MESSAGES/kuiserver5.mo share/locale/lv/LC_MESSAGES/libkworkspace.mo share/locale/lv/LC_MESSAGES/phonon_kde_plugin.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo +share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/lv/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/lv/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/lv/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/lv/LC_MESSAGES/plasma_engine_keystate.mo share/locale/lv/LC_MESSAGES/plasma_engine_notifications.mo share/locale/lv/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/lv/LC_MESSAGES/plasma_engine_weather.mo share/locale/lv/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/lv/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/lv/LC_MESSAGES/plasma_runner_kill.mo share/locale/lv/LC_MESSAGES/plasma_runner_locations.mo share/locale/lv/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/lv/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/lv/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/lv/LC_MESSAGES/plasma_runner_services.mo share/locale/lv/LC_MESSAGES/plasma_runner_sessions.mo share/locale/lv/LC_MESSAGES/plasma_runner_shell.mo share/locale/lv/LC_MESSAGES/plasma_runner_solid.mo share/locale/lv/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/lv/LC_MESSAGES/plasma_runner_windows.mo share/locale/lv/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/lv/LC_MESSAGES/soliduiserver5.mo share/locale/mai/LC_MESSAGES/freespacenotifier.mo share/locale/mai/LC_MESSAGES/kcminit.mo share/locale/mai/LC_MESSAGES/kio5_applications.mo share/locale/mai/LC_MESSAGES/klipper.mo share/locale/mai/LC_MESSAGES/ksmserver.mo share/locale/mai/LC_MESSAGES/kuiserver5.mo share/locale/mai/LC_MESSAGES/libkworkspace.mo share/locale/mai/LC_MESSAGES/phonon_kde_plugin.mo share/locale/mai/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/mai/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/mai/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/mai/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/mai/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/mai/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/mai/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/mai/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/mai/LC_MESSAGES/plasma_engine_keystate.mo share/locale/mai/LC_MESSAGES/plasma_engine_notifications.mo share/locale/mai/LC_MESSAGES/plasma_engine_share.mo share/locale/mai/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/mai/LC_MESSAGES/plasma_engine_weather.mo share/locale/mai/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/mai/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/mai/LC_MESSAGES/plasma_runner_kill.mo share/locale/mai/LC_MESSAGES/plasma_runner_locations.mo share/locale/mai/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/mai/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/mai/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/mai/LC_MESSAGES/plasma_runner_services.mo share/locale/mai/LC_MESSAGES/plasma_runner_sessions.mo share/locale/mai/LC_MESSAGES/plasma_runner_shell.mo share/locale/mai/LC_MESSAGES/plasma_runner_solid.mo share/locale/mai/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/mai/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/mai/LC_MESSAGES/plasma_runner_windows.mo share/locale/mai/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/mai/LC_MESSAGES/soliduiserver5.mo share/locale/mk/LC_MESSAGES/kcminit.mo share/locale/mk/LC_MESSAGES/kio5_applications.mo share/locale/mk/LC_MESSAGES/klipper.mo share/locale/mk/LC_MESSAGES/ksmserver.mo share/locale/mk/LC_MESSAGES/kuiserver5.mo share/locale/mk/LC_MESSAGES/libkworkspace.mo share/locale/mk/LC_MESSAGES/phonon_kde_plugin.mo share/locale/mk/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/mk/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/mk/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/mk/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/mk/LC_MESSAGES/plasma_runner_locations.mo share/locale/mk/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/mk/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/mk/LC_MESSAGES/plasma_runner_sessions.mo share/locale/mk/LC_MESSAGES/plasma_runner_shell.mo share/locale/mk/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/mk/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/mk/LC_MESSAGES/soliduiserver5.mo share/locale/ml/LC_MESSAGES/freespacenotifier.mo share/locale/ml/LC_MESSAGES/kcminit.mo share/locale/ml/LC_MESSAGES/kio5_applications.mo share/locale/ml/LC_MESSAGES/klipper.mo share/locale/ml/LC_MESSAGES/ksmserver.mo share/locale/ml/LC_MESSAGES/kuiserver5.mo share/locale/ml/LC_MESSAGES/libkworkspace.mo share/locale/ml/LC_MESSAGES/phonon_kde_plugin.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/ml/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/ml/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/ml/LC_MESSAGES/plasma_engine_weather.mo share/locale/ml/LC_MESSAGES/plasma_runner_kill.mo share/locale/ml/LC_MESSAGES/plasma_runner_locations.mo share/locale/ml/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/ml/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/ml/LC_MESSAGES/plasma_runner_sessions.mo share/locale/ml/LC_MESSAGES/plasma_runner_shell.mo share/locale/ml/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/ml/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/ml/LC_MESSAGES/soliduiserver5.mo share/locale/mr/LC_MESSAGES/freespacenotifier.mo share/locale/mr/LC_MESSAGES/kcminit.mo share/locale/mr/LC_MESSAGES/kio5_applications.mo share/locale/mr/LC_MESSAGES/klipper.mo share/locale/mr/LC_MESSAGES/ksmserver.mo share/locale/mr/LC_MESSAGES/kuiserver5.mo share/locale/mr/LC_MESSAGES/libkworkspace.mo share/locale/mr/LC_MESSAGES/phonon_kde_plugin.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/mr/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/mr/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/mr/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/mr/LC_MESSAGES/plasma_engine_keystate.mo share/locale/mr/LC_MESSAGES/plasma_engine_mpris2.mo share/locale/mr/LC_MESSAGES/plasma_engine_notifications.mo share/locale/mr/LC_MESSAGES/plasma_engine_share.mo share/locale/mr/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/mr/LC_MESSAGES/plasma_engine_weather.mo share/locale/mr/LC_MESSAGES/plasma_runner_activities.mo share/locale/mr/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/mr/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/mr/LC_MESSAGES/plasma_runner_kill.mo share/locale/mr/LC_MESSAGES/plasma_runner_locations.mo share/locale/mr/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/mr/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/mr/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/mr/LC_MESSAGES/plasma_runner_services.mo share/locale/mr/LC_MESSAGES/plasma_runner_sessions.mo share/locale/mr/LC_MESSAGES/plasma_runner_shell.mo share/locale/mr/LC_MESSAGES/plasma_runner_solid.mo share/locale/mr/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/mr/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/mr/LC_MESSAGES/plasma_runner_windows.mo share/locale/mr/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/mr/LC_MESSAGES/soliduiserver5.mo share/locale/ms/LC_MESSAGES/freespacenotifier.mo share/locale/ms/LC_MESSAGES/kcminit.mo share/locale/ms/LC_MESSAGES/kio5_applications.mo share/locale/ms/LC_MESSAGES/klipper.mo share/locale/ms/LC_MESSAGES/ksmserver.mo share/locale/ms/LC_MESSAGES/kuiserver5.mo share/locale/ms/LC_MESSAGES/libkworkspace.mo share/locale/ms/LC_MESSAGES/phonon_kde_plugin.mo share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/ms/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/ms/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/ms/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/ms/LC_MESSAGES/plasma_engine_keystate.mo share/locale/ms/LC_MESSAGES/plasma_engine_notifications.mo share/locale/ms/LC_MESSAGES/plasma_engine_share.mo share/locale/ms/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/ms/LC_MESSAGES/plasma_engine_weather.mo share/locale/ms/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/ms/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/ms/LC_MESSAGES/plasma_runner_kill.mo share/locale/ms/LC_MESSAGES/plasma_runner_locations.mo share/locale/ms/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/ms/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/ms/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/ms/LC_MESSAGES/plasma_runner_services.mo share/locale/ms/LC_MESSAGES/plasma_runner_sessions.mo share/locale/ms/LC_MESSAGES/plasma_runner_shell.mo share/locale/ms/LC_MESSAGES/plasma_runner_solid.mo share/locale/ms/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/ms/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/ms/LC_MESSAGES/plasma_runner_windows.mo share/locale/ms/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/ms/LC_MESSAGES/soliduiserver5.mo share/locale/nb/LC_MESSAGES/freespacenotifier.mo +share/locale/nb/LC_MESSAGES/kcm_translations.mo share/locale/nb/LC_MESSAGES/kcminit.mo share/locale/nb/LC_MESSAGES/kio5_applications.mo share/locale/nb/LC_MESSAGES/kio_desktop.mo share/locale/nb/LC_MESSAGES/klipper.mo share/locale/nb/LC_MESSAGES/krunner.mo share/locale/nb/LC_MESSAGES/ksmserver.mo share/locale/nb/LC_MESSAGES/kuiserver5.mo share/locale/nb/LC_MESSAGES/libkworkspace.mo share/locale/nb/LC_MESSAGES/phonon_kde_plugin.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo share/locale/nb/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/nb/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/nb/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/nb/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/nb/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/nb/LC_MESSAGES/plasma_engine_dict.mo share/locale/nb/LC_MESSAGES/plasma_engine_keystate.mo share/locale/nb/LC_MESSAGES/plasma_engine_mpris2.mo share/locale/nb/LC_MESSAGES/plasma_engine_notifications.mo share/locale/nb/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/nb/LC_MESSAGES/plasma_engine_share.mo share/locale/nb/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/nb/LC_MESSAGES/plasma_engine_time.mo share/locale/nb/LC_MESSAGES/plasma_engine_weather.mo share/locale/nb/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/nb/LC_MESSAGES/plasma_package_plasmashell.mo share/locale/nb/LC_MESSAGES/plasma_runner_activities.mo share/locale/nb/LC_MESSAGES/plasma_runner_appstream.mo share/locale/nb/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/nb/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/nb/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/nb/LC_MESSAGES/plasma_runner_kill.mo share/locale/nb/LC_MESSAGES/plasma_runner_locations.mo share/locale/nb/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/nb/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/nb/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/nb/LC_MESSAGES/plasma_runner_services.mo share/locale/nb/LC_MESSAGES/plasma_runner_sessions.mo share/locale/nb/LC_MESSAGES/plasma_runner_shell.mo share/locale/nb/LC_MESSAGES/plasma_runner_solid.mo share/locale/nb/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/nb/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/nb/LC_MESSAGES/plasma_runner_windows.mo share/locale/nb/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/nb/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/nb/LC_MESSAGES/plasmashell.mo share/locale/nb/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/nb/LC_MESSAGES/soliduiserver5.mo share/locale/nb/LC_MESSAGES/systemmonitor.mo share/locale/nds/LC_MESSAGES/freespacenotifier.mo +share/locale/nds/LC_MESSAGES/kcm_translations.mo share/locale/nds/LC_MESSAGES/kcminit.mo share/locale/nds/LC_MESSAGES/kio5_applications.mo share/locale/nds/LC_MESSAGES/klipper.mo share/locale/nds/LC_MESSAGES/krunner.mo share/locale/nds/LC_MESSAGES/ksmserver.mo share/locale/nds/LC_MESSAGES/kuiserver5.mo share/locale/nds/LC_MESSAGES/libkworkspace.mo share/locale/nds/LC_MESSAGES/phonon_kde_plugin.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/nds/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/nds/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/nds/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/nds/LC_MESSAGES/plasma_engine_keystate.mo share/locale/nds/LC_MESSAGES/plasma_engine_mpris2.mo share/locale/nds/LC_MESSAGES/plasma_engine_notifications.mo share/locale/nds/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/nds/LC_MESSAGES/plasma_engine_share.mo share/locale/nds/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/nds/LC_MESSAGES/plasma_engine_time.mo share/locale/nds/LC_MESSAGES/plasma_engine_weather.mo share/locale/nds/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/nds/LC_MESSAGES/plasma_package_plasmashell.mo share/locale/nds/LC_MESSAGES/plasma_runner_activities.mo share/locale/nds/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/nds/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/nds/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/nds/LC_MESSAGES/plasma_runner_kill.mo share/locale/nds/LC_MESSAGES/plasma_runner_locations.mo share/locale/nds/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/nds/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/nds/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/nds/LC_MESSAGES/plasma_runner_services.mo share/locale/nds/LC_MESSAGES/plasma_runner_sessions.mo share/locale/nds/LC_MESSAGES/plasma_runner_shell.mo share/locale/nds/LC_MESSAGES/plasma_runner_solid.mo share/locale/nds/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/nds/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/nds/LC_MESSAGES/plasma_runner_windows.mo share/locale/nds/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/nds/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/nds/LC_MESSAGES/plasmashell.mo share/locale/nds/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/nds/LC_MESSAGES/soliduiserver5.mo share/locale/nds/LC_MESSAGES/systemmonitor.mo share/locale/ne/LC_MESSAGES/kcminit.mo share/locale/ne/LC_MESSAGES/kio5_applications.mo share/locale/ne/LC_MESSAGES/klipper.mo share/locale/ne/LC_MESSAGES/ksmserver.mo share/locale/ne/LC_MESSAGES/kuiserver5.mo share/locale/ne/LC_MESSAGES/libkworkspace.mo share/locale/ne/LC_MESSAGES/phonon_kde_plugin.mo share/locale/ne/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/ne/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/ne/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/ne/LC_MESSAGES/soliduiserver5.mo share/locale/nl/LC_MESSAGES/freespacenotifier.mo +share/locale/nl/LC_MESSAGES/kcm_translations.mo share/locale/nl/LC_MESSAGES/kcminit.mo share/locale/nl/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/nl/LC_MESSAGES/kio5_applications.mo share/locale/nl/LC_MESSAGES/kio_desktop.mo share/locale/nl/LC_MESSAGES/klipper.mo share/locale/nl/LC_MESSAGES/krunner.mo share/locale/nl/LC_MESSAGES/ksmserver.mo share/locale/nl/LC_MESSAGES/kuiserver5.mo share/locale/nl/LC_MESSAGES/libkworkspace.mo share/locale/nl/LC_MESSAGES/phonon_kde_plugin.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo share/locale/nl/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/nl/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/nl/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/nl/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/nl/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/nl/LC_MESSAGES/plasma_engine_dict.mo share/locale/nl/LC_MESSAGES/plasma_engine_keystate.mo share/locale/nl/LC_MESSAGES/plasma_engine_mpris2.mo share/locale/nl/LC_MESSAGES/plasma_engine_notifications.mo share/locale/nl/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/nl/LC_MESSAGES/plasma_engine_share.mo share/locale/nl/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/nl/LC_MESSAGES/plasma_engine_time.mo share/locale/nl/LC_MESSAGES/plasma_engine_weather.mo share/locale/nl/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/nl/LC_MESSAGES/plasma_package_plasmashell.mo share/locale/nl/LC_MESSAGES/plasma_runner_activities.mo share/locale/nl/LC_MESSAGES/plasma_runner_appstream.mo share/locale/nl/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/nl/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/nl/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/nl/LC_MESSAGES/plasma_runner_kill.mo share/locale/nl/LC_MESSAGES/plasma_runner_locations.mo share/locale/nl/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/nl/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/nl/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/nl/LC_MESSAGES/plasma_runner_services.mo share/locale/nl/LC_MESSAGES/plasma_runner_sessions.mo share/locale/nl/LC_MESSAGES/plasma_runner_shell.mo share/locale/nl/LC_MESSAGES/plasma_runner_solid.mo share/locale/nl/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/nl/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/nl/LC_MESSAGES/plasma_runner_windows.mo share/locale/nl/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/nl/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/nl/LC_MESSAGES/plasmashell.mo share/locale/nl/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/nl/LC_MESSAGES/soliduiserver5.mo share/locale/nl/LC_MESSAGES/systemmonitor.mo share/locale/nn/LC_MESSAGES/freespacenotifier.mo +share/locale/nn/LC_MESSAGES/kcm_translations.mo share/locale/nn/LC_MESSAGES/kcminit.mo share/locale/nn/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/nn/LC_MESSAGES/kio5_applications.mo share/locale/nn/LC_MESSAGES/kio_desktop.mo share/locale/nn/LC_MESSAGES/klipper.mo share/locale/nn/LC_MESSAGES/krunner.mo share/locale/nn/LC_MESSAGES/ksmserver.mo share/locale/nn/LC_MESSAGES/kuiserver5.mo share/locale/nn/LC_MESSAGES/libkworkspace.mo share/locale/nn/LC_MESSAGES/phonon_kde_plugin.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo share/locale/nn/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/nn/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/nn/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/nn/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/nn/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/nn/LC_MESSAGES/plasma_engine_dict.mo share/locale/nn/LC_MESSAGES/plasma_engine_keystate.mo share/locale/nn/LC_MESSAGES/plasma_engine_mpris2.mo share/locale/nn/LC_MESSAGES/plasma_engine_notifications.mo share/locale/nn/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/nn/LC_MESSAGES/plasma_engine_share.mo share/locale/nn/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/nn/LC_MESSAGES/plasma_engine_time.mo share/locale/nn/LC_MESSAGES/plasma_engine_weather.mo share/locale/nn/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/nn/LC_MESSAGES/plasma_package_plasmashell.mo share/locale/nn/LC_MESSAGES/plasma_runner_activities.mo share/locale/nn/LC_MESSAGES/plasma_runner_appstream.mo share/locale/nn/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/nn/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/nn/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/nn/LC_MESSAGES/plasma_runner_kill.mo share/locale/nn/LC_MESSAGES/plasma_runner_locations.mo share/locale/nn/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/nn/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/nn/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/nn/LC_MESSAGES/plasma_runner_services.mo share/locale/nn/LC_MESSAGES/plasma_runner_sessions.mo share/locale/nn/LC_MESSAGES/plasma_runner_shell.mo share/locale/nn/LC_MESSAGES/plasma_runner_solid.mo share/locale/nn/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/nn/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/nn/LC_MESSAGES/plasma_runner_windows.mo share/locale/nn/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/nn/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/nn/LC_MESSAGES/plasmashell.mo share/locale/nn/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/nn/LC_MESSAGES/soliduiserver5.mo share/locale/nn/LC_MESSAGES/systemmonitor.mo share/locale/oc/LC_MESSAGES/kcminit.mo share/locale/oc/LC_MESSAGES/kio5_applications.mo share/locale/oc/LC_MESSAGES/klipper.mo share/locale/oc/LC_MESSAGES/ksmserver.mo share/locale/oc/LC_MESSAGES/libkworkspace.mo share/locale/oc/LC_MESSAGES/phonon_kde_plugin.mo share/locale/oc/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/oc/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/oc/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/oc/LC_MESSAGES/soliduiserver5.mo share/locale/or/LC_MESSAGES/kcminit.mo share/locale/or/LC_MESSAGES/kio5_applications.mo share/locale/or/LC_MESSAGES/klipper.mo share/locale/or/LC_MESSAGES/ksmserver.mo share/locale/or/LC_MESSAGES/kuiserver5.mo share/locale/or/LC_MESSAGES/libkworkspace.mo share/locale/or/LC_MESSAGES/phonon_kde_plugin.mo share/locale/or/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/or/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/or/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/or/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/or/LC_MESSAGES/plasma_runner_locations.mo share/locale/or/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/or/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/or/LC_MESSAGES/plasma_runner_sessions.mo share/locale/or/LC_MESSAGES/plasma_runner_shell.mo share/locale/or/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/or/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/or/LC_MESSAGES/soliduiserver5.mo share/locale/pa/LC_MESSAGES/freespacenotifier.mo +share/locale/pa/LC_MESSAGES/kcm_translations.mo share/locale/pa/LC_MESSAGES/kcminit.mo share/locale/pa/LC_MESSAGES/kio5_applications.mo share/locale/pa/LC_MESSAGES/kio_desktop.mo share/locale/pa/LC_MESSAGES/klipper.mo share/locale/pa/LC_MESSAGES/krunner.mo share/locale/pa/LC_MESSAGES/ksmserver.mo share/locale/pa/LC_MESSAGES/kuiserver5.mo share/locale/pa/LC_MESSAGES/libkworkspace.mo share/locale/pa/LC_MESSAGES/phonon_kde_plugin.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo share/locale/pa/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/pa/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/pa/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/pa/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/pa/LC_MESSAGES/plasma_engine_keystate.mo share/locale/pa/LC_MESSAGES/plasma_engine_mpris2.mo share/locale/pa/LC_MESSAGES/plasma_engine_notifications.mo share/locale/pa/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/pa/LC_MESSAGES/plasma_engine_share.mo share/locale/pa/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/pa/LC_MESSAGES/plasma_engine_time.mo share/locale/pa/LC_MESSAGES/plasma_engine_weather.mo share/locale/pa/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/pa/LC_MESSAGES/plasma_package_plasmashell.mo share/locale/pa/LC_MESSAGES/plasma_runner_activities.mo share/locale/pa/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/pa/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/pa/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/pa/LC_MESSAGES/plasma_runner_kill.mo share/locale/pa/LC_MESSAGES/plasma_runner_locations.mo share/locale/pa/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/pa/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/pa/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/pa/LC_MESSAGES/plasma_runner_services.mo share/locale/pa/LC_MESSAGES/plasma_runner_sessions.mo share/locale/pa/LC_MESSAGES/plasma_runner_shell.mo share/locale/pa/LC_MESSAGES/plasma_runner_solid.mo share/locale/pa/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/pa/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/pa/LC_MESSAGES/plasma_runner_windows.mo share/locale/pa/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/pa/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/pa/LC_MESSAGES/plasmashell.mo share/locale/pa/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/pa/LC_MESSAGES/soliduiserver5.mo share/locale/pa/LC_MESSAGES/systemmonitor.mo share/locale/pl/LC_MESSAGES/freespacenotifier.mo +share/locale/pl/LC_MESSAGES/kcm_translations.mo share/locale/pl/LC_MESSAGES/kcminit.mo share/locale/pl/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/pl/LC_MESSAGES/kio5_applications.mo share/locale/pl/LC_MESSAGES/kio_desktop.mo share/locale/pl/LC_MESSAGES/klipper.mo share/locale/pl/LC_MESSAGES/krunner.mo share/locale/pl/LC_MESSAGES/ksmserver.mo share/locale/pl/LC_MESSAGES/kuiserver5.mo share/locale/pl/LC_MESSAGES/libkworkspace.mo share/locale/pl/LC_MESSAGES/phonon_kde_plugin.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo share/locale/pl/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/pl/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/pl/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/pl/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/pl/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/pl/LC_MESSAGES/plasma_engine_dict.mo share/locale/pl/LC_MESSAGES/plasma_engine_keystate.mo share/locale/pl/LC_MESSAGES/plasma_engine_mpris2.mo share/locale/pl/LC_MESSAGES/plasma_engine_notifications.mo share/locale/pl/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/pl/LC_MESSAGES/plasma_engine_share.mo share/locale/pl/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/pl/LC_MESSAGES/plasma_engine_time.mo share/locale/pl/LC_MESSAGES/plasma_engine_weather.mo share/locale/pl/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/pl/LC_MESSAGES/plasma_package_plasmashell.mo share/locale/pl/LC_MESSAGES/plasma_runner_activities.mo share/locale/pl/LC_MESSAGES/plasma_runner_appstream.mo share/locale/pl/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/pl/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/pl/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/pl/LC_MESSAGES/plasma_runner_kill.mo share/locale/pl/LC_MESSAGES/plasma_runner_locations.mo share/locale/pl/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/pl/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/pl/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/pl/LC_MESSAGES/plasma_runner_services.mo share/locale/pl/LC_MESSAGES/plasma_runner_sessions.mo share/locale/pl/LC_MESSAGES/plasma_runner_shell.mo share/locale/pl/LC_MESSAGES/plasma_runner_solid.mo share/locale/pl/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/pl/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/pl/LC_MESSAGES/plasma_runner_windows.mo share/locale/pl/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/pl/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/pl/LC_MESSAGES/plasmashell.mo share/locale/pl/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/pl/LC_MESSAGES/soliduiserver5.mo share/locale/pl/LC_MESSAGES/systemmonitor.mo share/locale/pt/LC_MESSAGES/freespacenotifier.mo +share/locale/pt/LC_MESSAGES/kcm_translations.mo share/locale/pt/LC_MESSAGES/kcminit.mo share/locale/pt/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/pt/LC_MESSAGES/kio5_applications.mo share/locale/pt/LC_MESSAGES/kio_desktop.mo share/locale/pt/LC_MESSAGES/klipper.mo share/locale/pt/LC_MESSAGES/krunner.mo share/locale/pt/LC_MESSAGES/ksmserver.mo share/locale/pt/LC_MESSAGES/kuiserver5.mo share/locale/pt/LC_MESSAGES/libkworkspace.mo share/locale/pt/LC_MESSAGES/phonon_kde_plugin.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo share/locale/pt/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/pt/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/pt/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/pt/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/pt/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/pt/LC_MESSAGES/plasma_engine_dict.mo share/locale/pt/LC_MESSAGES/plasma_engine_keystate.mo share/locale/pt/LC_MESSAGES/plasma_engine_mpris2.mo share/locale/pt/LC_MESSAGES/plasma_engine_notifications.mo share/locale/pt/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/pt/LC_MESSAGES/plasma_engine_share.mo share/locale/pt/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/pt/LC_MESSAGES/plasma_engine_time.mo share/locale/pt/LC_MESSAGES/plasma_engine_weather.mo share/locale/pt/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/pt/LC_MESSAGES/plasma_package_plasmashell.mo share/locale/pt/LC_MESSAGES/plasma_runner_activities.mo share/locale/pt/LC_MESSAGES/plasma_runner_appstream.mo share/locale/pt/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/pt/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/pt/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/pt/LC_MESSAGES/plasma_runner_kill.mo share/locale/pt/LC_MESSAGES/plasma_runner_locations.mo share/locale/pt/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/pt/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/pt/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/pt/LC_MESSAGES/plasma_runner_services.mo share/locale/pt/LC_MESSAGES/plasma_runner_sessions.mo share/locale/pt/LC_MESSAGES/plasma_runner_shell.mo share/locale/pt/LC_MESSAGES/plasma_runner_solid.mo share/locale/pt/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/pt/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/pt/LC_MESSAGES/plasma_runner_windows.mo share/locale/pt/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/pt/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/pt/LC_MESSAGES/plasmashell.mo share/locale/pt/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/pt/LC_MESSAGES/soliduiserver5.mo share/locale/pt/LC_MESSAGES/systemmonitor.mo share/locale/pt_BR/LC_MESSAGES/freespacenotifier.mo +share/locale/pt_BR/LC_MESSAGES/kcm_translations.mo share/locale/pt_BR/LC_MESSAGES/kcminit.mo share/locale/pt_BR/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/pt_BR/LC_MESSAGES/kio5_applications.mo share/locale/pt_BR/LC_MESSAGES/kio_desktop.mo share/locale/pt_BR/LC_MESSAGES/klipper.mo share/locale/pt_BR/LC_MESSAGES/krunner.mo share/locale/pt_BR/LC_MESSAGES/ksmserver.mo share/locale/pt_BR/LC_MESSAGES/kuiserver5.mo share/locale/pt_BR/LC_MESSAGES/libkworkspace.mo share/locale/pt_BR/LC_MESSAGES/phonon_kde_plugin.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo share/locale/pt_BR/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/pt_BR/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/pt_BR/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/pt_BR/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/pt_BR/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/pt_BR/LC_MESSAGES/plasma_engine_dict.mo share/locale/pt_BR/LC_MESSAGES/plasma_engine_keystate.mo share/locale/pt_BR/LC_MESSAGES/plasma_engine_mpris2.mo share/locale/pt_BR/LC_MESSAGES/plasma_engine_notifications.mo share/locale/pt_BR/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/pt_BR/LC_MESSAGES/plasma_engine_share.mo share/locale/pt_BR/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/pt_BR/LC_MESSAGES/plasma_engine_time.mo share/locale/pt_BR/LC_MESSAGES/plasma_engine_weather.mo share/locale/pt_BR/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/pt_BR/LC_MESSAGES/plasma_package_plasmashell.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_activities.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_appstream.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_kill.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_locations.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_services.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_sessions.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_shell.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_solid.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_windows.mo share/locale/pt_BR/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/pt_BR/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/pt_BR/LC_MESSAGES/plasmashell.mo share/locale/pt_BR/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/pt_BR/LC_MESSAGES/soliduiserver5.mo share/locale/pt_BR/LC_MESSAGES/systemmonitor.mo share/locale/ro/LC_MESSAGES/freespacenotifier.mo +share/locale/ro/LC_MESSAGES/kcm_translations.mo share/locale/ro/LC_MESSAGES/kcminit.mo share/locale/ro/LC_MESSAGES/kio5_applications.mo share/locale/ro/LC_MESSAGES/klipper.mo share/locale/ro/LC_MESSAGES/krunner.mo share/locale/ro/LC_MESSAGES/ksmserver.mo share/locale/ro/LC_MESSAGES/kuiserver5.mo share/locale/ro/LC_MESSAGES/libkworkspace.mo share/locale/ro/LC_MESSAGES/phonon_kde_plugin.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo share/locale/ro/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/ro/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/ro/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/ro/LC_MESSAGES/plasma_engine_keystate.mo share/locale/ro/LC_MESSAGES/plasma_engine_mpris2.mo share/locale/ro/LC_MESSAGES/plasma_engine_notifications.mo share/locale/ro/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/ro/LC_MESSAGES/plasma_engine_share.mo share/locale/ro/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/ro/LC_MESSAGES/plasma_engine_time.mo share/locale/ro/LC_MESSAGES/plasma_engine_weather.mo share/locale/ro/LC_MESSAGES/plasma_runner_activities.mo share/locale/ro/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/ro/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/ro/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/ro/LC_MESSAGES/plasma_runner_kill.mo share/locale/ro/LC_MESSAGES/plasma_runner_locations.mo share/locale/ro/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/ro/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/ro/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/ro/LC_MESSAGES/plasma_runner_services.mo share/locale/ro/LC_MESSAGES/plasma_runner_sessions.mo share/locale/ro/LC_MESSAGES/plasma_runner_shell.mo share/locale/ro/LC_MESSAGES/plasma_runner_solid.mo share/locale/ro/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/ro/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/ro/LC_MESSAGES/plasma_runner_windows.mo share/locale/ro/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/ro/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/ro/LC_MESSAGES/plasmashell.mo share/locale/ro/LC_MESSAGES/soliduiserver5.mo share/locale/ro/LC_MESSAGES/systemmonitor.mo share/locale/ru/LC_MESSAGES/freespacenotifier.mo +share/locale/ru/LC_MESSAGES/kcm_translations.mo share/locale/ru/LC_MESSAGES/kcminit.mo share/locale/ru/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/ru/LC_MESSAGES/kio5_applications.mo share/locale/ru/LC_MESSAGES/kio_desktop.mo share/locale/ru/LC_MESSAGES/klipper.mo share/locale/ru/LC_MESSAGES/krunner.mo share/locale/ru/LC_MESSAGES/ksmserver.mo share/locale/ru/LC_MESSAGES/kuiserver5.mo share/locale/ru/LC_MESSAGES/libkworkspace.mo share/locale/ru/LC_MESSAGES/phonon_kde_plugin.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo share/locale/ru/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/ru/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/ru/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/ru/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/ru/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/ru/LC_MESSAGES/plasma_engine_dict.mo share/locale/ru/LC_MESSAGES/plasma_engine_keystate.mo share/locale/ru/LC_MESSAGES/plasma_engine_mpris2.mo share/locale/ru/LC_MESSAGES/plasma_engine_notifications.mo share/locale/ru/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/ru/LC_MESSAGES/plasma_engine_share.mo share/locale/ru/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/ru/LC_MESSAGES/plasma_engine_time.mo share/locale/ru/LC_MESSAGES/plasma_engine_weather.mo share/locale/ru/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/ru/LC_MESSAGES/plasma_package_plasmashell.mo share/locale/ru/LC_MESSAGES/plasma_runner_activities.mo share/locale/ru/LC_MESSAGES/plasma_runner_appstream.mo share/locale/ru/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/ru/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/ru/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/ru/LC_MESSAGES/plasma_runner_kill.mo share/locale/ru/LC_MESSAGES/plasma_runner_locations.mo share/locale/ru/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/ru/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/ru/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/ru/LC_MESSAGES/plasma_runner_services.mo share/locale/ru/LC_MESSAGES/plasma_runner_sessions.mo share/locale/ru/LC_MESSAGES/plasma_runner_shell.mo share/locale/ru/LC_MESSAGES/plasma_runner_solid.mo share/locale/ru/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/ru/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/ru/LC_MESSAGES/plasma_runner_windows.mo share/locale/ru/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/ru/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/ru/LC_MESSAGES/plasmashell.mo share/locale/ru/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/ru/LC_MESSAGES/soliduiserver5.mo share/locale/ru/LC_MESSAGES/systemmonitor.mo share/locale/se/LC_MESSAGES/kcminit.mo share/locale/se/LC_MESSAGES/kio5_applications.mo share/locale/se/LC_MESSAGES/klipper.mo share/locale/se/LC_MESSAGES/krunner.mo share/locale/se/LC_MESSAGES/ksmserver.mo share/locale/se/LC_MESSAGES/kuiserver5.mo share/locale/se/LC_MESSAGES/libkworkspace.mo share/locale/se/LC_MESSAGES/phonon_kde_plugin.mo share/locale/se/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/se/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/se/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/se/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/se/LC_MESSAGES/soliduiserver5.mo share/locale/si/LC_MESSAGES/kcminit.mo share/locale/si/LC_MESSAGES/kio5_applications.mo share/locale/si/LC_MESSAGES/klipper.mo share/locale/si/LC_MESSAGES/ksmserver.mo share/locale/si/LC_MESSAGES/kuiserver5.mo share/locale/si/LC_MESSAGES/libkworkspace.mo share/locale/si/LC_MESSAGES/phonon_kde_plugin.mo share/locale/si/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/si/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/si/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/si/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/si/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/si/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/si/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/si/LC_MESSAGES/plasma_engine_keystate.mo share/locale/si/LC_MESSAGES/plasma_engine_notifications.mo share/locale/si/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/si/LC_MESSAGES/plasma_engine_weather.mo share/locale/si/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/si/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/si/LC_MESSAGES/plasma_runner_locations.mo share/locale/si/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/si/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/si/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/si/LC_MESSAGES/plasma_runner_sessions.mo share/locale/si/LC_MESSAGES/plasma_runner_shell.mo share/locale/si/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/si/LC_MESSAGES/plasma_runner_windows.mo share/locale/si/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/si/LC_MESSAGES/soliduiserver5.mo share/locale/sk/LC_MESSAGES/freespacenotifier.mo +share/locale/sk/LC_MESSAGES/kcm_translations.mo share/locale/sk/LC_MESSAGES/kcminit.mo share/locale/sk/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/sk/LC_MESSAGES/kio5_applications.mo share/locale/sk/LC_MESSAGES/kio_desktop.mo share/locale/sk/LC_MESSAGES/klipper.mo share/locale/sk/LC_MESSAGES/krunner.mo share/locale/sk/LC_MESSAGES/ksmserver.mo share/locale/sk/LC_MESSAGES/kuiserver5.mo share/locale/sk/LC_MESSAGES/libkworkspace.mo share/locale/sk/LC_MESSAGES/phonon_kde_plugin.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo share/locale/sk/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/sk/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/sk/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/sk/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/sk/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/sk/LC_MESSAGES/plasma_engine_dict.mo share/locale/sk/LC_MESSAGES/plasma_engine_keystate.mo share/locale/sk/LC_MESSAGES/plasma_engine_mpris2.mo share/locale/sk/LC_MESSAGES/plasma_engine_notifications.mo share/locale/sk/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/sk/LC_MESSAGES/plasma_engine_share.mo share/locale/sk/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/sk/LC_MESSAGES/plasma_engine_time.mo share/locale/sk/LC_MESSAGES/plasma_engine_weather.mo share/locale/sk/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/sk/LC_MESSAGES/plasma_package_plasmashell.mo share/locale/sk/LC_MESSAGES/plasma_runner_activities.mo share/locale/sk/LC_MESSAGES/plasma_runner_appstream.mo share/locale/sk/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/sk/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/sk/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/sk/LC_MESSAGES/plasma_runner_kill.mo share/locale/sk/LC_MESSAGES/plasma_runner_locations.mo share/locale/sk/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/sk/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/sk/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/sk/LC_MESSAGES/plasma_runner_services.mo share/locale/sk/LC_MESSAGES/plasma_runner_sessions.mo share/locale/sk/LC_MESSAGES/plasma_runner_shell.mo share/locale/sk/LC_MESSAGES/plasma_runner_solid.mo share/locale/sk/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/sk/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/sk/LC_MESSAGES/plasma_runner_windows.mo share/locale/sk/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/sk/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/sk/LC_MESSAGES/plasmashell.mo share/locale/sk/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/sk/LC_MESSAGES/soliduiserver5.mo share/locale/sk/LC_MESSAGES/systemmonitor.mo share/locale/sl/LC_MESSAGES/freespacenotifier.mo +share/locale/sl/LC_MESSAGES/kcm_translations.mo share/locale/sl/LC_MESSAGES/kcminit.mo share/locale/sl/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/sl/LC_MESSAGES/kio5_applications.mo share/locale/sl/LC_MESSAGES/kio_desktop.mo share/locale/sl/LC_MESSAGES/klipper.mo share/locale/sl/LC_MESSAGES/krunner.mo share/locale/sl/LC_MESSAGES/ksmserver.mo share/locale/sl/LC_MESSAGES/kuiserver5.mo share/locale/sl/LC_MESSAGES/libkworkspace.mo share/locale/sl/LC_MESSAGES/phonon_kde_plugin.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo share/locale/sl/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/sl/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/sl/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/sl/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/sl/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/sl/LC_MESSAGES/plasma_engine_dict.mo share/locale/sl/LC_MESSAGES/plasma_engine_keystate.mo share/locale/sl/LC_MESSAGES/plasma_engine_mpris2.mo share/locale/sl/LC_MESSAGES/plasma_engine_notifications.mo share/locale/sl/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/sl/LC_MESSAGES/plasma_engine_share.mo share/locale/sl/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/sl/LC_MESSAGES/plasma_engine_time.mo share/locale/sl/LC_MESSAGES/plasma_engine_weather.mo share/locale/sl/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/sl/LC_MESSAGES/plasma_package_plasmashell.mo share/locale/sl/LC_MESSAGES/plasma_runner_activities.mo share/locale/sl/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/sl/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/sl/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/sl/LC_MESSAGES/plasma_runner_kill.mo share/locale/sl/LC_MESSAGES/plasma_runner_locations.mo share/locale/sl/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/sl/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/sl/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/sl/LC_MESSAGES/plasma_runner_services.mo share/locale/sl/LC_MESSAGES/plasma_runner_sessions.mo share/locale/sl/LC_MESSAGES/plasma_runner_shell.mo share/locale/sl/LC_MESSAGES/plasma_runner_solid.mo share/locale/sl/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/sl/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/sl/LC_MESSAGES/plasma_runner_windows.mo share/locale/sl/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/sl/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/sl/LC_MESSAGES/plasmashell.mo share/locale/sl/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/sl/LC_MESSAGES/soliduiserver5.mo share/locale/sl/LC_MESSAGES/systemmonitor.mo share/locale/sq/LC_MESSAGES/kcminit.mo share/locale/sq/LC_MESSAGES/kio5_applications.mo share/locale/sq/LC_MESSAGES/klipper.mo share/locale/sq/LC_MESSAGES/ksmserver.mo share/locale/sq/LC_MESSAGES/kuiserver5.mo share/locale/sq/LC_MESSAGES/libkworkspace.mo share/locale/sq/LC_MESSAGES/phonon_kde_plugin.mo share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/sq/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/sq/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/sq/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/sq/LC_MESSAGES/plasma_engine_keystate.mo share/locale/sq/LC_MESSAGES/plasma_engine_notifications.mo share/locale/sq/LC_MESSAGES/plasma_engine_weather.mo share/locale/sq/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/sq/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/sq/LC_MESSAGES/plasma_runner_locations.mo share/locale/sq/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/sq/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/sq/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/sq/LC_MESSAGES/plasma_runner_services.mo share/locale/sq/LC_MESSAGES/plasma_runner_sessions.mo share/locale/sq/LC_MESSAGES/plasma_runner_shell.mo share/locale/sq/LC_MESSAGES/plasma_runner_solid.mo share/locale/sq/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/sq/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/sq/LC_MESSAGES/soliduiserver5.mo share/locale/sr/LC_MESSAGES/freespacenotifier.mo +share/locale/sr/LC_MESSAGES/kcm_translations.mo share/locale/sr/LC_MESSAGES/kcminit.mo share/locale/sr/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/sr/LC_MESSAGES/kio5_applications.mo share/locale/sr/LC_MESSAGES/kio_desktop.mo share/locale/sr/LC_MESSAGES/klipper.mo share/locale/sr/LC_MESSAGES/krunner.mo share/locale/sr/LC_MESSAGES/ksmserver.mo share/locale/sr/LC_MESSAGES/kuiserver5.mo share/locale/sr/LC_MESSAGES/libkworkspace.mo share/locale/sr/LC_MESSAGES/phonon_kde_plugin.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo share/locale/sr/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/sr/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/sr/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/sr/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/sr/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/sr/LC_MESSAGES/plasma_engine_dict.mo share/locale/sr/LC_MESSAGES/plasma_engine_keystate.mo share/locale/sr/LC_MESSAGES/plasma_engine_mpris2.mo share/locale/sr/LC_MESSAGES/plasma_engine_notifications.mo share/locale/sr/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/sr/LC_MESSAGES/plasma_engine_share.mo share/locale/sr/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/sr/LC_MESSAGES/plasma_engine_time.mo share/locale/sr/LC_MESSAGES/plasma_engine_weather.mo share/locale/sr/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/sr/LC_MESSAGES/plasma_package_plasmashell.mo share/locale/sr/LC_MESSAGES/plasma_runner_activities.mo share/locale/sr/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/sr/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/sr/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/sr/LC_MESSAGES/plasma_runner_kill.mo share/locale/sr/LC_MESSAGES/plasma_runner_locations.mo share/locale/sr/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/sr/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/sr/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/sr/LC_MESSAGES/plasma_runner_services.mo share/locale/sr/LC_MESSAGES/plasma_runner_sessions.mo share/locale/sr/LC_MESSAGES/plasma_runner_shell.mo share/locale/sr/LC_MESSAGES/plasma_runner_solid.mo share/locale/sr/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/sr/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/sr/LC_MESSAGES/plasma_runner_windows.mo share/locale/sr/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/sr/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/sr/LC_MESSAGES/plasmashell.mo share/locale/sr/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/sr/LC_MESSAGES/soliduiserver5.mo share/locale/sr/LC_MESSAGES/systemmonitor.mo share/locale/sr@ijekavian/LC_MESSAGES/freespacenotifier.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcm_translations.mo share/locale/sr@ijekavian/LC_MESSAGES/kcminit.mo share/locale/sr@ijekavian/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/sr@ijekavian/LC_MESSAGES/kio5_applications.mo share/locale/sr@ijekavian/LC_MESSAGES/kio_desktop.mo share/locale/sr@ijekavian/LC_MESSAGES/klipper.mo share/locale/sr@ijekavian/LC_MESSAGES/krunner.mo share/locale/sr@ijekavian/LC_MESSAGES/ksmserver.mo share/locale/sr@ijekavian/LC_MESSAGES/kuiserver5.mo share/locale/sr@ijekavian/LC_MESSAGES/libkworkspace.mo share/locale/sr@ijekavian/LC_MESSAGES/phonon_kde_plugin.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_engine_dict.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_engine_keystate.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_engine_mpris2.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_engine_notifications.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_engine_share.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_engine_time.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_engine_weather.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_package_plasmashell.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_activities.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_kill.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_locations.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_services.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_sessions.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_shell.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_solid.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_windows.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/sr@ijekavian/LC_MESSAGES/plasmashell.mo share/locale/sr@ijekavian/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/sr@ijekavian/LC_MESSAGES/soliduiserver5.mo share/locale/sr@ijekavian/LC_MESSAGES/systemmonitor.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/freespacenotifier.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_translations.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcminit.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kio5_applications.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kio_desktop.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/klipper.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/krunner.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/ksmserver.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kuiserver5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libkworkspace.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/phonon_kde_plugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_engine_dict.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_engine_keystate.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_engine_mpris2.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_engine_notifications.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_engine_share.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_engine_time.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_engine_weather.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_package_plasmashell.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_activities.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_kill.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_locations.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_services.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_sessions.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_shell.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_solid.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_windows.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasmashell.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/soliduiserver5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/systemmonitor.mo share/locale/sr@latin/LC_MESSAGES/freespacenotifier.mo +share/locale/sr@latin/LC_MESSAGES/kcm_translations.mo share/locale/sr@latin/LC_MESSAGES/kcminit.mo share/locale/sr@latin/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/sr@latin/LC_MESSAGES/kio5_applications.mo share/locale/sr@latin/LC_MESSAGES/kio_desktop.mo share/locale/sr@latin/LC_MESSAGES/klipper.mo share/locale/sr@latin/LC_MESSAGES/krunner.mo share/locale/sr@latin/LC_MESSAGES/ksmserver.mo share/locale/sr@latin/LC_MESSAGES/kuiserver5.mo share/locale/sr@latin/LC_MESSAGES/libkworkspace.mo share/locale/sr@latin/LC_MESSAGES/phonon_kde_plugin.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo share/locale/sr@latin/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/sr@latin/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/sr@latin/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/sr@latin/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/sr@latin/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/sr@latin/LC_MESSAGES/plasma_engine_dict.mo share/locale/sr@latin/LC_MESSAGES/plasma_engine_keystate.mo share/locale/sr@latin/LC_MESSAGES/plasma_engine_mpris2.mo share/locale/sr@latin/LC_MESSAGES/plasma_engine_notifications.mo share/locale/sr@latin/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/sr@latin/LC_MESSAGES/plasma_engine_share.mo share/locale/sr@latin/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/sr@latin/LC_MESSAGES/plasma_engine_time.mo share/locale/sr@latin/LC_MESSAGES/plasma_engine_weather.mo share/locale/sr@latin/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/sr@latin/LC_MESSAGES/plasma_package_plasmashell.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_activities.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_kill.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_locations.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_services.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_sessions.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_shell.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_solid.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_windows.mo share/locale/sr@latin/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/sr@latin/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/sr@latin/LC_MESSAGES/plasmashell.mo share/locale/sr@latin/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/sr@latin/LC_MESSAGES/soliduiserver5.mo share/locale/sr@latin/LC_MESSAGES/systemmonitor.mo share/locale/sv/LC_MESSAGES/freespacenotifier.mo +share/locale/sv/LC_MESSAGES/kcm_translations.mo share/locale/sv/LC_MESSAGES/kcminit.mo share/locale/sv/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/sv/LC_MESSAGES/kio5_applications.mo share/locale/sv/LC_MESSAGES/kio_desktop.mo share/locale/sv/LC_MESSAGES/klipper.mo share/locale/sv/LC_MESSAGES/krunner.mo share/locale/sv/LC_MESSAGES/ksmserver.mo share/locale/sv/LC_MESSAGES/kuiserver5.mo share/locale/sv/LC_MESSAGES/libkworkspace.mo share/locale/sv/LC_MESSAGES/phonon_kde_plugin.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo share/locale/sv/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/sv/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/sv/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/sv/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/sv/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/sv/LC_MESSAGES/plasma_engine_dict.mo share/locale/sv/LC_MESSAGES/plasma_engine_keystate.mo share/locale/sv/LC_MESSAGES/plasma_engine_mpris2.mo share/locale/sv/LC_MESSAGES/plasma_engine_notifications.mo share/locale/sv/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/sv/LC_MESSAGES/plasma_engine_share.mo share/locale/sv/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/sv/LC_MESSAGES/plasma_engine_time.mo share/locale/sv/LC_MESSAGES/plasma_engine_weather.mo share/locale/sv/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/sv/LC_MESSAGES/plasma_package_plasmashell.mo share/locale/sv/LC_MESSAGES/plasma_runner_activities.mo share/locale/sv/LC_MESSAGES/plasma_runner_appstream.mo share/locale/sv/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/sv/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/sv/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/sv/LC_MESSAGES/plasma_runner_kill.mo share/locale/sv/LC_MESSAGES/plasma_runner_locations.mo share/locale/sv/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/sv/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/sv/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/sv/LC_MESSAGES/plasma_runner_services.mo share/locale/sv/LC_MESSAGES/plasma_runner_sessions.mo share/locale/sv/LC_MESSAGES/plasma_runner_shell.mo share/locale/sv/LC_MESSAGES/plasma_runner_solid.mo share/locale/sv/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/sv/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/sv/LC_MESSAGES/plasma_runner_windows.mo share/locale/sv/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/sv/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/sv/LC_MESSAGES/plasmashell.mo share/locale/sv/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/sv/LC_MESSAGES/soliduiserver5.mo share/locale/sv/LC_MESSAGES/systemmonitor.mo share/locale/ta/LC_MESSAGES/kcminit.mo share/locale/ta/LC_MESSAGES/kio5_applications.mo share/locale/ta/LC_MESSAGES/klipper.mo share/locale/ta/LC_MESSAGES/ksmserver.mo share/locale/ta/LC_MESSAGES/kuiserver5.mo share/locale/ta/LC_MESSAGES/libkworkspace.mo share/locale/ta/LC_MESSAGES/phonon_kde_plugin.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/ta/LC_MESSAGES/plasma_runner_locations.mo share/locale/ta/LC_MESSAGES/plasma_runner_shell.mo share/locale/ta/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/ta/LC_MESSAGES/soliduiserver5.mo share/locale/te/LC_MESSAGES/kcminit.mo share/locale/te/LC_MESSAGES/kio5_applications.mo share/locale/te/LC_MESSAGES/klipper.mo share/locale/te/LC_MESSAGES/ksmserver.mo share/locale/te/LC_MESSAGES/kuiserver5.mo share/locale/te/LC_MESSAGES/libkworkspace.mo share/locale/te/LC_MESSAGES/phonon_kde_plugin.mo share/locale/te/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/te/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/te/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/te/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/te/LC_MESSAGES/plasma_runner_locations.mo share/locale/te/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/te/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/te/LC_MESSAGES/plasma_runner_sessions.mo share/locale/te/LC_MESSAGES/plasma_runner_shell.mo share/locale/te/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/te/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/te/LC_MESSAGES/soliduiserver5.mo share/locale/tg/LC_MESSAGES/freespacenotifier.mo share/locale/tg/LC_MESSAGES/kcminit.mo share/locale/tg/LC_MESSAGES/kio5_applications.mo share/locale/tg/LC_MESSAGES/klipper.mo share/locale/tg/LC_MESSAGES/ksmserver.mo share/locale/tg/LC_MESSAGES/kuiserver5.mo share/locale/tg/LC_MESSAGES/libkworkspace.mo share/locale/tg/LC_MESSAGES/phonon_kde_plugin.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/tg/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/tg/LC_MESSAGES/plasma_runner_locations.mo share/locale/tg/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/tg/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/tg/LC_MESSAGES/plasma_runner_sessions.mo share/locale/tg/LC_MESSAGES/plasma_runner_shell.mo share/locale/tg/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/tg/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/tg/LC_MESSAGES/soliduiserver5.mo share/locale/th/LC_MESSAGES/freespacenotifier.mo share/locale/th/LC_MESSAGES/kcminit.mo share/locale/th/LC_MESSAGES/kio5_applications.mo share/locale/th/LC_MESSAGES/klipper.mo share/locale/th/LC_MESSAGES/ksmserver.mo share/locale/th/LC_MESSAGES/kuiserver5.mo share/locale/th/LC_MESSAGES/libkworkspace.mo share/locale/th/LC_MESSAGES/phonon_kde_plugin.mo share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/th/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/th/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/th/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/th/LC_MESSAGES/plasma_engine_keystate.mo share/locale/th/LC_MESSAGES/plasma_engine_notifications.mo share/locale/th/LC_MESSAGES/plasma_engine_share.mo share/locale/th/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/th/LC_MESSAGES/plasma_engine_weather.mo share/locale/th/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/th/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/th/LC_MESSAGES/plasma_runner_kill.mo share/locale/th/LC_MESSAGES/plasma_runner_locations.mo share/locale/th/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/th/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/th/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/th/LC_MESSAGES/plasma_runner_services.mo share/locale/th/LC_MESSAGES/plasma_runner_sessions.mo share/locale/th/LC_MESSAGES/plasma_runner_shell.mo share/locale/th/LC_MESSAGES/plasma_runner_solid.mo share/locale/th/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/th/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/th/LC_MESSAGES/plasma_runner_windows.mo share/locale/th/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/th/LC_MESSAGES/soliduiserver5.mo share/locale/tr/LC_MESSAGES/freespacenotifier.mo +share/locale/tr/LC_MESSAGES/kcm_translations.mo share/locale/tr/LC_MESSAGES/kcminit.mo share/locale/tr/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/tr/LC_MESSAGES/kio5_applications.mo share/locale/tr/LC_MESSAGES/kio_desktop.mo share/locale/tr/LC_MESSAGES/klipper.mo share/locale/tr/LC_MESSAGES/krunner.mo share/locale/tr/LC_MESSAGES/ksmserver.mo share/locale/tr/LC_MESSAGES/kuiserver5.mo share/locale/tr/LC_MESSAGES/libkworkspace.mo share/locale/tr/LC_MESSAGES/phonon_kde_plugin.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo share/locale/tr/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/tr/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/tr/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/tr/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/tr/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/tr/LC_MESSAGES/plasma_engine_keystate.mo share/locale/tr/LC_MESSAGES/plasma_engine_mpris2.mo share/locale/tr/LC_MESSAGES/plasma_engine_notifications.mo share/locale/tr/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/tr/LC_MESSAGES/plasma_engine_share.mo share/locale/tr/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/tr/LC_MESSAGES/plasma_engine_time.mo share/locale/tr/LC_MESSAGES/plasma_engine_weather.mo share/locale/tr/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/tr/LC_MESSAGES/plasma_package_plasmashell.mo share/locale/tr/LC_MESSAGES/plasma_runner_activities.mo share/locale/tr/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/tr/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/tr/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/tr/LC_MESSAGES/plasma_runner_kill.mo share/locale/tr/LC_MESSAGES/plasma_runner_locations.mo share/locale/tr/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/tr/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/tr/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/tr/LC_MESSAGES/plasma_runner_services.mo share/locale/tr/LC_MESSAGES/plasma_runner_sessions.mo share/locale/tr/LC_MESSAGES/plasma_runner_shell.mo share/locale/tr/LC_MESSAGES/plasma_runner_solid.mo share/locale/tr/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/tr/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/tr/LC_MESSAGES/plasma_runner_windows.mo share/locale/tr/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/tr/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/tr/LC_MESSAGES/plasmashell.mo share/locale/tr/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/tr/LC_MESSAGES/soliduiserver5.mo share/locale/tr/LC_MESSAGES/systemmonitor.mo share/locale/ug/LC_MESSAGES/freespacenotifier.mo share/locale/ug/LC_MESSAGES/kcminit.mo share/locale/ug/LC_MESSAGES/kio5_applications.mo share/locale/ug/LC_MESSAGES/klipper.mo share/locale/ug/LC_MESSAGES/ksmserver.mo share/locale/ug/LC_MESSAGES/kuiserver5.mo share/locale/ug/LC_MESSAGES/libkworkspace.mo share/locale/ug/LC_MESSAGES/phonon_kde_plugin.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/ug/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/ug/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/ug/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/ug/LC_MESSAGES/plasma_engine_keystate.mo share/locale/ug/LC_MESSAGES/plasma_engine_mpris2.mo share/locale/ug/LC_MESSAGES/plasma_engine_notifications.mo share/locale/ug/LC_MESSAGES/plasma_engine_share.mo share/locale/ug/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/ug/LC_MESSAGES/plasma_engine_weather.mo share/locale/ug/LC_MESSAGES/plasma_runner_activities.mo share/locale/ug/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/ug/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/ug/LC_MESSAGES/plasma_runner_kill.mo share/locale/ug/LC_MESSAGES/plasma_runner_locations.mo share/locale/ug/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/ug/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/ug/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/ug/LC_MESSAGES/plasma_runner_services.mo share/locale/ug/LC_MESSAGES/plasma_runner_sessions.mo share/locale/ug/LC_MESSAGES/plasma_runner_shell.mo share/locale/ug/LC_MESSAGES/plasma_runner_solid.mo share/locale/ug/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/ug/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/ug/LC_MESSAGES/plasma_runner_windows.mo share/locale/ug/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/ug/LC_MESSAGES/soliduiserver5.mo share/locale/uk/LC_MESSAGES/freespacenotifier.mo +share/locale/uk/LC_MESSAGES/kcm_translations.mo share/locale/uk/LC_MESSAGES/kcminit.mo share/locale/uk/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/uk/LC_MESSAGES/kio5_applications.mo share/locale/uk/LC_MESSAGES/kio_desktop.mo share/locale/uk/LC_MESSAGES/klipper.mo share/locale/uk/LC_MESSAGES/krunner.mo share/locale/uk/LC_MESSAGES/ksmserver.mo share/locale/uk/LC_MESSAGES/kuiserver5.mo share/locale/uk/LC_MESSAGES/libkworkspace.mo share/locale/uk/LC_MESSAGES/phonon_kde_plugin.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo share/locale/uk/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/uk/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/uk/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/uk/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/uk/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/uk/LC_MESSAGES/plasma_engine_dict.mo share/locale/uk/LC_MESSAGES/plasma_engine_keystate.mo share/locale/uk/LC_MESSAGES/plasma_engine_mpris2.mo share/locale/uk/LC_MESSAGES/plasma_engine_notifications.mo share/locale/uk/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/uk/LC_MESSAGES/plasma_engine_share.mo share/locale/uk/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/uk/LC_MESSAGES/plasma_engine_time.mo share/locale/uk/LC_MESSAGES/plasma_engine_weather.mo share/locale/uk/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/uk/LC_MESSAGES/plasma_package_plasmashell.mo share/locale/uk/LC_MESSAGES/plasma_runner_activities.mo share/locale/uk/LC_MESSAGES/plasma_runner_appstream.mo share/locale/uk/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/uk/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/uk/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/uk/LC_MESSAGES/plasma_runner_kill.mo share/locale/uk/LC_MESSAGES/plasma_runner_locations.mo share/locale/uk/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/uk/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/uk/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/uk/LC_MESSAGES/plasma_runner_services.mo share/locale/uk/LC_MESSAGES/plasma_runner_sessions.mo share/locale/uk/LC_MESSAGES/plasma_runner_shell.mo share/locale/uk/LC_MESSAGES/plasma_runner_solid.mo share/locale/uk/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/uk/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/uk/LC_MESSAGES/plasma_runner_windows.mo share/locale/uk/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/uk/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/uk/LC_MESSAGES/plasmashell.mo share/locale/uk/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/uk/LC_MESSAGES/soliduiserver5.mo share/locale/uk/LC_MESSAGES/systemmonitor.mo share/locale/uz/LC_MESSAGES/kio5_applications.mo share/locale/uz/LC_MESSAGES/klipper.mo share/locale/uz/LC_MESSAGES/ksmserver.mo share/locale/uz@cyrillic/LC_MESSAGES/kio5_applications.mo share/locale/uz@cyrillic/LC_MESSAGES/klipper.mo share/locale/uz@cyrillic/LC_MESSAGES/ksmserver.mo share/locale/uz@cyrillic/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/vi/LC_MESSAGES/kio5_applications.mo share/locale/vi/LC_MESSAGES/klipper.mo share/locale/vi/LC_MESSAGES/ksmserver.mo share/locale/vi/LC_MESSAGES/libkworkspace.mo share/locale/vi/LC_MESSAGES/phonon_kde_plugin.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/vi/LC_MESSAGES/soliduiserver5.mo share/locale/wa/LC_MESSAGES/freespacenotifier.mo share/locale/wa/LC_MESSAGES/kcminit.mo share/locale/wa/LC_MESSAGES/kio5_applications.mo share/locale/wa/LC_MESSAGES/klipper.mo share/locale/wa/LC_MESSAGES/ksmserver.mo share/locale/wa/LC_MESSAGES/kuiserver5.mo share/locale/wa/LC_MESSAGES/libkworkspace.mo share/locale/wa/LC_MESSAGES/phonon_kde_plugin.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/wa/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/wa/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/wa/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/wa/LC_MESSAGES/plasma_engine_keystate.mo share/locale/wa/LC_MESSAGES/plasma_engine_notifications.mo share/locale/wa/LC_MESSAGES/plasma_engine_share.mo share/locale/wa/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/wa/LC_MESSAGES/plasma_engine_weather.mo share/locale/wa/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/wa/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/wa/LC_MESSAGES/plasma_runner_kill.mo share/locale/wa/LC_MESSAGES/plasma_runner_locations.mo share/locale/wa/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/wa/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/wa/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/wa/LC_MESSAGES/plasma_runner_services.mo share/locale/wa/LC_MESSAGES/plasma_runner_sessions.mo share/locale/wa/LC_MESSAGES/plasma_runner_shell.mo share/locale/wa/LC_MESSAGES/plasma_runner_solid.mo share/locale/wa/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/wa/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/wa/LC_MESSAGES/plasma_runner_windows.mo share/locale/wa/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/wa/LC_MESSAGES/soliduiserver5.mo share/locale/xh/LC_MESSAGES/klipper.mo share/locale/xh/LC_MESSAGES/ksmserver.mo share/locale/zh_CN/LC_MESSAGES/freespacenotifier.mo +share/locale/zh_CN/LC_MESSAGES/kcm_translations.mo share/locale/zh_CN/LC_MESSAGES/kcminit.mo share/locale/zh_CN/LC_MESSAGES/kholidays_calendar_plugin.mo share/locale/zh_CN/LC_MESSAGES/kio5_applications.mo share/locale/zh_CN/LC_MESSAGES/kio_desktop.mo share/locale/zh_CN/LC_MESSAGES/klipper.mo share/locale/zh_CN/LC_MESSAGES/krunner.mo share/locale/zh_CN/LC_MESSAGES/ksmserver.mo share/locale/zh_CN/LC_MESSAGES/kuiserver5.mo share/locale/zh_CN/LC_MESSAGES/libkworkspace.mo share/locale/zh_CN/LC_MESSAGES/phonon_kde_plugin.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo share/locale/zh_CN/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/zh_CN/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/zh_CN/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/zh_CN/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/zh_CN/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/zh_CN/LC_MESSAGES/plasma_engine_dict.mo share/locale/zh_CN/LC_MESSAGES/plasma_engine_keystate.mo share/locale/zh_CN/LC_MESSAGES/plasma_engine_mpris2.mo share/locale/zh_CN/LC_MESSAGES/plasma_engine_notifications.mo share/locale/zh_CN/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/zh_CN/LC_MESSAGES/plasma_engine_share.mo share/locale/zh_CN/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/zh_CN/LC_MESSAGES/plasma_engine_time.mo share/locale/zh_CN/LC_MESSAGES/plasma_engine_weather.mo share/locale/zh_CN/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/zh_CN/LC_MESSAGES/plasma_package_plasmashell.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_activities.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_appstream.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_kill.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_locations.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_services.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_sessions.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_shell.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_solid.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_windows.mo share/locale/zh_CN/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/zh_CN/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/zh_CN/LC_MESSAGES/plasmashell.mo share/locale/zh_CN/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/zh_CN/LC_MESSAGES/soliduiserver5.mo share/locale/zh_CN/LC_MESSAGES/systemmonitor.mo share/locale/zh_TW/LC_MESSAGES/freespacenotifier.mo +share/locale/zh_TW/LC_MESSAGES/kcm_translations.mo share/locale/zh_TW/LC_MESSAGES/kcminit.mo share/locale/zh_TW/LC_MESSAGES/kholidays_calendar_plugin.mo -share/locale/zh_TW/LC_MESSAGES/kio_desktop.mo share/locale/zh_TW/LC_MESSAGES/kio5_applications.mo +share/locale/zh_TW/LC_MESSAGES/kio_desktop.mo share/locale/zh_TW/LC_MESSAGES/klipper.mo share/locale/zh_TW/LC_MESSAGES/krunner.mo share/locale/zh_TW/LC_MESSAGES/ksmserver.mo share/locale/zh_TW/LC_MESSAGES/kuiserver5.mo share/locale/zh_TW/LC_MESSAGES/libkworkspace.mo share/locale/zh_TW/LC_MESSAGES/phonon_kde_plugin.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.analogclock.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.appmenu.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.battery.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.calendar.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.clipboard.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.devicenotifier.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.digitalclock.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.icon.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.lock_logout.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.mediacontroller.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.notifications.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.panelspacer.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.private.systemtray.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.cpu.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskactivity.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.diskusage.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.memory.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.systemmonitor.net.mo share/locale/zh_TW/LC_MESSAGES/plasma_containmentactions_applauncher.mo share/locale/zh_TW/LC_MESSAGES/plasma_containmentactions_contextmenu.mo share/locale/zh_TW/LC_MESSAGES/plasma_containmentactions_switchwindow.mo share/locale/zh_TW/LC_MESSAGES/plasma_engine_applicationjobs.mo share/locale/zh_TW/LC_MESSAGES/plasma_engine_devicenotifications.mo share/locale/zh_TW/LC_MESSAGES/plasma_engine_dict.mo share/locale/zh_TW/LC_MESSAGES/plasma_engine_keystate.mo share/locale/zh_TW/LC_MESSAGES/plasma_engine_mpris2.mo share/locale/zh_TW/LC_MESSAGES/plasma_engine_notifications.mo share/locale/zh_TW/LC_MESSAGES/plasma_engine_powermanagement.mo share/locale/zh_TW/LC_MESSAGES/plasma_engine_share.mo share/locale/zh_TW/LC_MESSAGES/plasma_engine_soliddevice.mo share/locale/zh_TW/LC_MESSAGES/plasma_engine_time.mo share/locale/zh_TW/LC_MESSAGES/plasma_engine_weather.mo share/locale/zh_TW/LC_MESSAGES/plasma_lookandfeel_org.kde.lookandfeel.mo share/locale/zh_TW/LC_MESSAGES/plasma_package_plasmashell.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_activities.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_appstream.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_baloosearch5.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_bookmarksrunner.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_calculatorrunner.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_kill.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_locations.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_placesrunner.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_powerdevil.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_recentdocuments.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_services.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_sessions.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_shell.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_solid.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_webshortcuts.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_windowedwidgets.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_windows.mo share/locale/zh_TW/LC_MESSAGES/plasma_wallpaper_org.kde.color.mo share/locale/zh_TW/LC_MESSAGES/plasma_wallpaper_org.kde.image.mo share/locale/zh_TW/LC_MESSAGES/plasmashell.mo share/locale/zh_TW/LC_MESSAGES/plasmashellprivateplugin.mo share/locale/zh_TW/LC_MESSAGES/soliduiserver5.mo share/locale/zh_TW/LC_MESSAGES/systemmonitor.mo share/metainfo/org.kde.breeze.desktop.appdata.xml share/metainfo/org.kde.color.appdata.xml share/metainfo/org.kde.image.appdata.xml share/metainfo/org.kde.plasma.activitybar.appdata.xml share/metainfo/org.kde.plasma.analogclock.appdata.xml share/metainfo/org.kde.plasma.appmenu.appdata.xml share/metainfo/org.kde.plasma.battery.appdata.xml share/metainfo/org.kde.plasma.calendar.appdata.xml share/metainfo/org.kde.plasma.clipboard.appdata.xml share/metainfo/org.kde.plasma.devicenotifier.appdata.xml share/metainfo/org.kde.plasma.digitalclock.appdata.xml share/metainfo/org.kde.plasma.lock_logout.appdata.xml share/metainfo/org.kde.plasma.mediacontroller.appdata.xml share/metainfo/org.kde.plasma.notifications.appdata.xml share/metainfo/org.kde.plasma.systemmonitor.cpu.appdata.xml share/metainfo/org.kde.plasma.systemmonitor.diskactivity.appdata.xml share/metainfo/org.kde.plasma.systemmonitor.diskusage.appdata.xml share/metainfo/org.kde.plasma.systemmonitor.memory.appdata.xml share/metainfo/org.kde.plasma.systemmonitor.net.appdata.xml share/metainfo/org.kde.plasma.systemtray.appdata.xml share/metainfo/org.kde.slideshow.appdata.xml share/plasma/look-and-feel/org.kde.breeze.desktop/contents/components/ActionButton.qml share/plasma/look-and-feel/org.kde.breeze.desktop/contents/components/Battery.qml share/plasma/look-and-feel/org.kde.breeze.desktop/contents/components/Clock.qml share/plasma/look-and-feel/org.kde.breeze.desktop/contents/components/KeyboardLayoutButton.qml share/plasma/look-and-feel/org.kde.breeze.desktop/contents/components/SessionManagementScreen.qml share/plasma/look-and-feel/org.kde.breeze.desktop/contents/components/UserDelegate.qml share/plasma/look-and-feel/org.kde.breeze.desktop/contents/components/UserList.qml share/plasma/look-and-feel/org.kde.breeze.desktop/contents/components/VirtualKeyboard.qml share/plasma/look-and-feel/org.kde.breeze.desktop/contents/components/WallpaperFader.qml share/plasma/look-and-feel/org.kde.breeze.desktop/contents/components/artwork/README.txt share/plasma/look-and-feel/org.kde.breeze.desktop/contents/components/artwork/logout_primary.svgz share/plasma/look-and-feel/org.kde.breeze.desktop/contents/components/artwork/restart_primary.svgz share/plasma/look-and-feel/org.kde.breeze.desktop/contents/components/artwork/shutdown_primary.svgz share/plasma/look-and-feel/org.kde.breeze.desktop/contents/defaults share/plasma/look-and-feel/org.kde.breeze.desktop/contents/desktopswitcher/DesktopSwitcher.qml share/plasma/look-and-feel/org.kde.breeze.desktop/contents/lockscreen/LockOsd.qml share/plasma/look-and-feel/org.kde.breeze.desktop/contents/lockscreen/LockScreen.qml share/plasma/look-and-feel/org.kde.breeze.desktop/contents/lockscreen/LockScreenUi.qml share/plasma/look-and-feel/org.kde.breeze.desktop/contents/lockscreen/MainBlock.qml share/plasma/look-and-feel/org.kde.breeze.desktop/contents/lockscreen/MediaControls.qml share/plasma/look-and-feel/org.kde.breeze.desktop/contents/lockscreen/config.qml share/plasma/look-and-feel/org.kde.breeze.desktop/contents/lockscreen/config.xml share/plasma/look-and-feel/org.kde.breeze.desktop/contents/logout/Logout.qml share/plasma/look-and-feel/org.kde.breeze.desktop/contents/logout/LogoutButton.qml share/plasma/look-and-feel/org.kde.breeze.desktop/contents/logout/timer.js share/plasma/look-and-feel/org.kde.breeze.desktop/contents/osd/Osd.qml share/plasma/look-and-feel/org.kde.breeze.desktop/contents/osd/OsdItem.qml share/plasma/look-and-feel/org.kde.breeze.desktop/contents/previews/desktopswitcher.png share/plasma/look-and-feel/org.kde.breeze.desktop/contents/previews/fullscreenpreview.jpg share/plasma/look-and-feel/org.kde.breeze.desktop/contents/previews/lockscreen.png share/plasma/look-and-feel/org.kde.breeze.desktop/contents/previews/loginmanager.png share/plasma/look-and-feel/org.kde.breeze.desktop/contents/previews/preview.png share/plasma/look-and-feel/org.kde.breeze.desktop/contents/previews/runcommand.png share/plasma/look-and-feel/org.kde.breeze.desktop/contents/previews/splash.png share/plasma/look-and-feel/org.kde.breeze.desktop/contents/previews/userswitcher.png share/plasma/look-and-feel/org.kde.breeze.desktop/contents/previews/windowdecoration.png share/plasma/look-and-feel/org.kde.breeze.desktop/contents/previews/windowswitcher.png share/plasma/look-and-feel/org.kde.breeze.desktop/contents/runcommand/RunCommand.qml share/plasma/look-and-feel/org.kde.breeze.desktop/contents/splash/Splash.qml share/plasma/look-and-feel/org.kde.breeze.desktop/contents/splash/images/busywidget.svgz share/plasma/look-and-feel/org.kde.breeze.desktop/contents/splash/images/kde.svgz share/plasma/look-and-feel/org.kde.breeze.desktop/contents/splash/images/plasma.svgz share/plasma/look-and-feel/org.kde.breeze.desktop/contents/windowdecoration/WindowDecoration.qml share/plasma/look-and-feel/org.kde.breeze.desktop/contents/windowswitcher/WindowSwitcher.qml share/plasma/look-and-feel/org.kde.breeze.desktop/metadata.desktop share/plasma/look-and-feel/org.kde.breeze.desktop/metadata.json share/plasma/plasmoids/org.kde.plasma.activitybar/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.activitybar/metadata.desktop share/plasma/plasmoids/org.kde.plasma.activitybar/metadata.json share/plasma/plasmoids/org.kde.plasma.analogclock/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.analogclock/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.analogclock/contents/ui/Hand.qml share/plasma/plasmoids/org.kde.plasma.analogclock/contents/ui/analogclock.qml share/plasma/plasmoids/org.kde.plasma.analogclock/contents/ui/configGeneral.qml share/plasma/plasmoids/org.kde.plasma.analogclock/metadata.desktop share/plasma/plasmoids/org.kde.plasma.analogclock/metadata.json share/plasma/plasmoids/org.kde.plasma.appmenu/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.appmenu/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.appmenu/contents/ui/configGeneral.qml share/plasma/plasmoids/org.kde.plasma.appmenu/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.appmenu/metadata.desktop share/plasma/plasmoids/org.kde.plasma.appmenu/metadata.json share/plasma/plasmoids/org.kde.plasma.battery/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.battery/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.battery/contents/ui/BadgeOverlay.qml share/plasma/plasmoids/org.kde.plasma.battery/contents/ui/BatteryItem.qml share/plasma/plasmoids/org.kde.plasma.battery/contents/ui/BrightnessItem.qml share/plasma/plasmoids/org.kde.plasma.battery/contents/ui/CompactRepresentation.qml share/plasma/plasmoids/org.kde.plasma.battery/contents/ui/ConfigGeneral.qml share/plasma/plasmoids/org.kde.plasma.battery/contents/ui/InhibitionHint.qml share/plasma/plasmoids/org.kde.plasma.battery/contents/ui/PopupDialog.qml share/plasma/plasmoids/org.kde.plasma.battery/contents/ui/PowerManagementItem.qml share/plasma/plasmoids/org.kde.plasma.battery/contents/ui/batterymonitor.qml share/plasma/plasmoids/org.kde.plasma.battery/contents/ui/logic.js share/plasma/plasmoids/org.kde.plasma.battery/metadata.desktop share/plasma/plasmoids/org.kde.plasma.battery/metadata.json share/plasma/plasmoids/org.kde.plasma.calendar/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.calendar/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.calendar/contents/images/mini-calendar.svgz share/plasma/plasmoids/org.kde.plasma.calendar/contents/ui/configAgenda.qml share/plasma/plasmoids/org.kde.plasma.calendar/contents/ui/configGeneral.qml share/plasma/plasmoids/org.kde.plasma.calendar/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.calendar/metadata.desktop share/plasma/plasmoids/org.kde.plasma.calendar/metadata.json share/plasma/plasmoids/org.kde.plasma.clipboard/contents/ui/BarcodePage.qml share/plasma/plasmoids/org.kde.plasma.clipboard/contents/ui/ClipboardItemDelegate.qml share/plasma/plasmoids/org.kde.plasma.clipboard/contents/ui/ClipboardPage.qml share/plasma/plasmoids/org.kde.plasma.clipboard/contents/ui/DelegateToolButtons.qml share/plasma/plasmoids/org.kde.plasma.clipboard/contents/ui/ImageItemDelegate.qml share/plasma/plasmoids/org.kde.plasma.clipboard/contents/ui/Menu.qml share/plasma/plasmoids/org.kde.plasma.clipboard/contents/ui/TextItemDelegate.qml share/plasma/plasmoids/org.kde.plasma.clipboard/contents/ui/UrlItemDelegate.qml share/plasma/plasmoids/org.kde.plasma.clipboard/contents/ui/clipboard.qml share/plasma/plasmoids/org.kde.plasma.clipboard/metadata.desktop share/plasma/plasmoids/org.kde.plasma.clipboard/metadata.json share/plasma/plasmoids/org.kde.plasma.devicenotifier/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.devicenotifier/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.devicenotifier/contents/ui/ActionItem.qml share/plasma/plasmoids/org.kde.plasma.devicenotifier/contents/ui/DeviceItem.qml share/plasma/plasmoids/org.kde.plasma.devicenotifier/contents/ui/FullRepresentation.qml share/plasma/plasmoids/org.kde.plasma.devicenotifier/contents/ui/configGeneral.qml share/plasma/plasmoids/org.kde.plasma.devicenotifier/contents/ui/devicenotifier.qml share/plasma/plasmoids/org.kde.plasma.devicenotifier/metadata.desktop share/plasma/plasmoids/org.kde.plasma.devicenotifier/metadata.json share/plasma/plasmoids/org.kde.plasma.digitalclock/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.digitalclock/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.digitalclock/contents/ui/CalendarView.qml share/plasma/plasmoids/org.kde.plasma.digitalclock/contents/ui/DigitalClock.qml share/plasma/plasmoids/org.kde.plasma.digitalclock/contents/ui/MonthMenu.qml share/plasma/plasmoids/org.kde.plasma.digitalclock/contents/ui/Tooltip.qml share/plasma/plasmoids/org.kde.plasma.digitalclock/contents/ui/configAppearance.qml share/plasma/plasmoids/org.kde.plasma.digitalclock/contents/ui/configCalendar.qml share/plasma/plasmoids/org.kde.plasma.digitalclock/contents/ui/configTimeZones.qml share/plasma/plasmoids/org.kde.plasma.digitalclock/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.digitalclock/metadata.desktop share/plasma/plasmoids/org.kde.plasma.digitalclock/metadata.json share/plasma/plasmoids/org.kde.plasma.icon/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.icon/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.icon/metadata.desktop share/plasma/plasmoids/org.kde.plasma.icon/metadata.json share/plasma/plasmoids/org.kde.plasma.lock_logout/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.lock_logout/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.lock_logout/contents/ui/ConfigGeneral.qml share/plasma/plasmoids/org.kde.plasma.lock_logout/contents/ui/data.js share/plasma/plasmoids/org.kde.plasma.lock_logout/contents/ui/lockout.qml share/plasma/plasmoids/org.kde.plasma.lock_logout/metadata.desktop share/plasma/plasmoids/org.kde.plasma.lock_logout/metadata.json share/plasma/plasmoids/org.kde.plasma.mediacontroller/contents/ui/ExpandedRepresentation.qml share/plasma/plasmoids/org.kde.plasma.mediacontroller/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.mediacontroller/metadata.desktop share/plasma/plasmoids/org.kde.plasma.mediacontroller/metadata.json share/plasma/plasmoids/org.kde.plasma.notifications/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.notifications/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.notifications/contents/tests/test.qml share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/JobDelegate.qml share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/JobDetailsItem.qml share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/Jobs.qml share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/NotificationDelegate.qml share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/NotificationIcon.qml share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/NotificationItem.qml share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/NotificationPopup.qml share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/Notifications.qml share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/ScreenPositionSelector.qml share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/ThumbnailStrip.qml share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/configNotifications.qml share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/uiproperties.js share/plasma/plasmoids/org.kde.plasma.notifications/metadata.desktop share/plasma/plasmoids/org.kde.plasma.notifications/metadata.json share/plasma/plasmoids/org.kde.plasma.panelspacer/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.panelspacer/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.panelspacer/metadata.desktop share/plasma/plasmoids/org.kde.plasma.panelspacer/metadata.json share/plasma/plasmoids/org.kde.plasma.private.systemtray/contents/applet/CompactApplet.qml share/plasma/plasmoids/org.kde.plasma.private.systemtray/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.private.systemtray/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.private.systemtray/contents/ui/ConfigEntries.qml share/plasma/plasmoids/org.kde.plasma.private.systemtray/contents/ui/ConfigGeneral.qml share/plasma/plasmoids/org.kde.plasma.private.systemtray/contents/ui/CurrentItemHighLight.qml share/plasma/plasmoids/org.kde.plasma.private.systemtray/contents/ui/ExpandedRepresentation.qml share/plasma/plasmoids/org.kde.plasma.private.systemtray/contents/ui/ExpanderArrow.qml share/plasma/plasmoids/org.kde.plasma.private.systemtray/contents/ui/HiddenItemsView.qml share/plasma/plasmoids/org.kde.plasma.private.systemtray/contents/ui/PlasmoidPopupsContainer.qml share/plasma/plasmoids/org.kde.plasma.private.systemtray/contents/ui/items/AbstractItem.qml share/plasma/plasmoids/org.kde.plasma.private.systemtray/contents/ui/items/PlasmoidItem.qml share/plasma/plasmoids/org.kde.plasma.private.systemtray/contents/ui/items/PulseAnimation.qml share/plasma/plasmoids/org.kde.plasma.private.systemtray/contents/ui/items/StatusNotifierItem.qml share/plasma/plasmoids/org.kde.plasma.private.systemtray/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.private.systemtray/metadata.desktop share/plasma/plasmoids/org.kde.plasma.private.systemtray/metadata.json share/plasma/plasmoids/org.kde.plasma.systemmonitor.cpu/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.systemmonitor.cpu/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.systemmonitor.cpu/contents/ui/Applet.qml share/plasma/plasmoids/org.kde.plasma.systemmonitor.cpu/contents/ui/ConfigGeneral.qml share/plasma/plasmoids/org.kde.plasma.systemmonitor.cpu/contents/ui/DoublePlotter.qml share/plasma/plasmoids/org.kde.plasma.systemmonitor.cpu/contents/ui/SinglePlotter.qml share/plasma/plasmoids/org.kde.plasma.systemmonitor.cpu/contents/ui/cpu.qml share/plasma/plasmoids/org.kde.plasma.systemmonitor.cpu/contents/ui/cpuConfig.qml share/plasma/plasmoids/org.kde.plasma.systemmonitor.cpu/metadata.desktop share/plasma/plasmoids/org.kde.plasma.systemmonitor.cpu/metadata.json share/plasma/plasmoids/org.kde.plasma.systemmonitor.diskactivity/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.systemmonitor.diskactivity/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.systemmonitor.diskactivity/contents/ui/Applet.qml share/plasma/plasmoids/org.kde.plasma.systemmonitor.diskactivity/contents/ui/ConfigGeneral.qml share/plasma/plasmoids/org.kde.plasma.systemmonitor.diskactivity/contents/ui/DoublePlotter.qml share/plasma/plasmoids/org.kde.plasma.systemmonitor.diskactivity/contents/ui/SinglePlotter.qml share/plasma/plasmoids/org.kde.plasma.systemmonitor.diskactivity/contents/ui/diskactivity.qml share/plasma/plasmoids/org.kde.plasma.systemmonitor.diskactivity/contents/ui/diskactivityConfig.qml share/plasma/plasmoids/org.kde.plasma.systemmonitor.diskactivity/metadata.desktop share/plasma/plasmoids/org.kde.plasma.systemmonitor.diskactivity/metadata.json share/plasma/plasmoids/org.kde.plasma.systemmonitor.diskusage/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.systemmonitor.diskusage/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.systemmonitor.diskusage/contents/ui/Applet.qml share/plasma/plasmoids/org.kde.plasma.systemmonitor.diskusage/contents/ui/ConfigGeneral.qml share/plasma/plasmoids/org.kde.plasma.systemmonitor.diskusage/contents/ui/DoublePlotter.qml share/plasma/plasmoids/org.kde.plasma.systemmonitor.diskusage/contents/ui/SinglePlotter.qml share/plasma/plasmoids/org.kde.plasma.systemmonitor.diskusage/contents/ui/diskusage.qml share/plasma/plasmoids/org.kde.plasma.systemmonitor.diskusage/contents/ui/diskusageConfig.qml share/plasma/plasmoids/org.kde.plasma.systemmonitor.diskusage/metadata.desktop share/plasma/plasmoids/org.kde.plasma.systemmonitor.diskusage/metadata.json share/plasma/plasmoids/org.kde.plasma.systemmonitor.memory/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.systemmonitor.memory/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.systemmonitor.memory/contents/ui/Applet.qml share/plasma/plasmoids/org.kde.plasma.systemmonitor.memory/contents/ui/ConfigGeneral.qml share/plasma/plasmoids/org.kde.plasma.systemmonitor.memory/contents/ui/DoublePlotter.qml share/plasma/plasmoids/org.kde.plasma.systemmonitor.memory/contents/ui/SinglePlotter.qml share/plasma/plasmoids/org.kde.plasma.systemmonitor.memory/contents/ui/memory.qml share/plasma/plasmoids/org.kde.plasma.systemmonitor.memory/contents/ui/memoryConfig.qml share/plasma/plasmoids/org.kde.plasma.systemmonitor.memory/metadata.desktop share/plasma/plasmoids/org.kde.plasma.systemmonitor.memory/metadata.json share/plasma/plasmoids/org.kde.plasma.systemmonitor.net/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.systemmonitor.net/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.systemmonitor.net/contents/ui/Applet.qml share/plasma/plasmoids/org.kde.plasma.systemmonitor.net/contents/ui/ConfigGeneral.qml share/plasma/plasmoids/org.kde.plasma.systemmonitor.net/contents/ui/DoublePlotter.qml share/plasma/plasmoids/org.kde.plasma.systemmonitor.net/contents/ui/SinglePlotter.qml share/plasma/plasmoids/org.kde.plasma.systemmonitor.net/contents/ui/net.qml share/plasma/plasmoids/org.kde.plasma.systemmonitor.net/contents/ui/netConfig.qml share/plasma/plasmoids/org.kde.plasma.systemmonitor.net/metadata.desktop share/plasma/plasmoids/org.kde.plasma.systemmonitor.net/metadata.json share/plasma/plasmoids/org.kde.plasma.systemtray/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.systemtray/metadata.desktop share/plasma/plasmoids/org.kde.plasma.systemtray/metadata.json share/plasma/services/activities.operations share/plasma/services/applicationjobs.operations share/plasma/services/apps.operations share/plasma/services/hotplug.operations share/plasma/services/modifierkeystate.operations share/plasma/services/mpris2.operations share/plasma/services/notifications.operations share/plasma/services/org.kde.places.operations share/plasma/services/org.kde.plasma.clipboard.operations share/plasma/services/packagekit.operations share/plasma/services/powermanagementservice.operations share/plasma/services/share.operations share/plasma/services/soliddevice.operations share/plasma/services/statusnotifieritem.operations share/plasma/shareprovider/im9/contents/code/main.js share/plasma/shareprovider/im9/metadata.desktop share/plasma/shareprovider/imgsusepasteorg/contents/code/main.js share/plasma/shareprovider/imgsusepasteorg/metadata.desktop share/plasma/shareprovider/imgur/contents/code/main.js share/plasma/shareprovider/imgur/metadata.desktop share/plasma/shareprovider/kde/contents/code/main.js share/plasma/shareprovider/kde/metadata.desktop share/plasma/shareprovider/pastebincom/contents/code/main.js share/plasma/shareprovider/pastebincom/metadata.desktop share/plasma/shareprovider/pasteopensuseorg/contents/code/main.js share/plasma/shareprovider/pasteopensuseorg/metadata.desktop share/plasma/shareprovider/pasteubuntucom/contents/code/main.js share/plasma/shareprovider/pasteubuntucom/metadata.desktop share/plasma/shareprovider/privatepastecom/contents/code/main.js share/plasma/shareprovider/privatepastecom/metadata.desktop share/plasma/shareprovider/simplestimagehosting/contents/code/main.js share/plasma/shareprovider/simplestimagehosting/metadata.desktop share/plasma/shareprovider/wklej/contents/code/main.js share/plasma/shareprovider/wklej/metadata.desktop share/plasma/shareprovider/wstaw/contents/code/main.js share/plasma/shareprovider/wstaw/metadata.desktop share/plasma/wallpapers/org.kde.color/contents/config/main.xml share/plasma/wallpapers/org.kde.color/contents/ui/config.qml share/plasma/wallpapers/org.kde.color/contents/ui/main.qml share/plasma/wallpapers/org.kde.color/metadata.desktop share/plasma/wallpapers/org.kde.color/metadata.json share/plasma/wallpapers/org.kde.color/plasma-wallpaper-color.desktop share/plasma/wallpapers/org.kde.image/contents/config/main.xml share/plasma/wallpapers/org.kde.image/contents/ui/WallpaperDelegate.qml share/plasma/wallpapers/org.kde.image/contents/ui/config.qml share/plasma/wallpapers/org.kde.image/contents/ui/main.qml share/plasma/wallpapers/org.kde.image/metadata.desktop share/plasma/wallpapers/org.kde.image/metadata.json share/plasma/wallpapers/org.kde.image/platformcontents/phone/ui/WallpaperDelegate.qml share/plasma/wallpapers/org.kde.image/platformcontents/phone/ui/config.qml share/plasma/wallpapers/org.kde.image/platformcontents/phone/ui/customwallpaper.qml share/plasma/wallpapers/org.kde.image/platformcontents/touch/ui/WallpaperDelegate.qml share/plasma/wallpapers/org.kde.image/platformcontents/touch/ui/config.qml share/plasma/wallpapers/org.kde.slideshow/contents/config/main.xml share/plasma/wallpapers/org.kde.slideshow/contents/ui/WallpaperDelegate.qml share/plasma/wallpapers/org.kde.slideshow/contents/ui/config.qml share/plasma/wallpapers/org.kde.slideshow/contents/ui/main.qml share/plasma/wallpapers/org.kde.slideshow/metadata.desktop share/plasma/wallpapers/org.kde.slideshow/metadata.json share/sddm/themes/breeze/Background.qml share/sddm/themes/breeze/Clock.qml share/sddm/themes/breeze/KeyboardButton.qml share/sddm/themes/breeze/Login.qml share/sddm/themes/breeze/Main.qml share/sddm/themes/breeze/SessionButton.qml share/sddm/themes/breeze/components/ActionButton.qml share/sddm/themes/breeze/components/Battery.qml share/sddm/themes/breeze/components/Clock.qml share/sddm/themes/breeze/components/KeyboardLayoutButton.qml share/sddm/themes/breeze/components/SessionManagementScreen.qml share/sddm/themes/breeze/components/UserDelegate.qml share/sddm/themes/breeze/components/UserList.qml share/sddm/themes/breeze/components/VirtualKeyboard.qml share/sddm/themes/breeze/components/WallpaperFader.qml share/sddm/themes/breeze/components/artwork/logout_primary.svgz share/sddm/themes/breeze/components/artwork/restart_primary.svgz share/sddm/themes/breeze/components/artwork/shutdown_primary.svgz share/sddm/themes/breeze/faces/.face.icon share/sddm/themes/breeze/metadata.desktop share/sddm/themes/breeze/preview.png share/sddm/themes/breeze/theme.conf share/solid/actions/test-predicate-openinwindow.desktop share/wayland-sessions/plasmawayland.desktop share/xsessions/plasma.desktop Index: head/x11-themes/plasma5-breeze/Makefile =================================================================== --- head/x11-themes/plasma5-breeze/Makefile (revision 492810) +++ head/x11-themes/plasma5-breeze/Makefile (revision 492811) @@ -1,25 +1,24 @@ # $FreeBSD$ PORTNAME= breeze DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= x11-themes kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 artwork, styles and assets for the Breeze visual style LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libfftw3_threads.so:math/fftw3 USES= cmake compiler:c++11-lib cpe \ gettext kde:5 pkgconfig qt:5 tar:xz USE_KDE= auth breeze-icons codecs config configwidgets coreaddons \ decoration ecm frameworkintegration guiaddons i18n kcmutils \ plasma-framework service wayland widgetsaddons windowsystem USE_QT= core dbus declarative gui network widgets x11extras xml \ buildtools_build qmake_build USE_XORG= xcb .include Index: head/x11-themes/plasma5-breeze/distinfo =================================================================== --- head/x11-themes/plasma5-breeze/distinfo (revision 492810) +++ head/x11-themes/plasma5-breeze/distinfo (revision 492811) @@ -1,3 +1,3 @@ -TIMESTAMP = 1547014614 -SHA256 (KDE/plasma/5.14.5/breeze-5.14.5.tar.xz) = e78e6eec31cf8fb7c6d1d823e07bebcabf978ba94772081490a38a5ac5871796 -SIZE (KDE/plasma/5.14.5/breeze-5.14.5.tar.xz) = 24932044 +TIMESTAMP = 1549993948 +SHA256 (KDE/plasma/5.15.0/breeze-5.15.0.tar.xz) = 960eb8e6b1bd87686bccf6891abd47e0bfcebd1b8d9f48c9a5218338f23a731b +SIZE (KDE/plasma/5.15.0/breeze-5.15.0.tar.xz) = 25148104 Index: head/x11-themes/plasma5-breeze/pkg-plist =================================================================== --- head/x11-themes/plasma5-breeze/pkg-plist (revision 492810) +++ head/x11-themes/plasma5-breeze/pkg-plist (revision 492811) @@ -1,385 +1,384 @@ bin/breeze-settings5 lib/cmake/Breeze/BreezeConfig.cmake lib/cmake/Breeze/BreezeConfigVersion.cmake lib/kconf_update_bin/kde4breeze lib/libbreezecommon5.so.5 lib/libbreezecommon5.so.%%KDE_PLASMA_VERSION%% %%QT_PLUGINDIR%%/kstyle_breeze_config.so %%QT_PLUGINDIR%%/org.kde.kdecoration2/breezedecoration.so %%QT_PLUGINDIR%%/styles/breeze.so %%QT_QMLDIR%%/QtQuick/Controls/Styles/Breeze/ApplicationWindowStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Breeze/Breeze.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Breeze/BusyIndicatorStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Breeze/ButtonStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Breeze/CheckBoxIndicator.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Breeze/CheckBoxStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Breeze/ColorUtils.js %%QT_QMLDIR%%/QtQuick/Controls/Styles/Breeze/ComboBoxStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Breeze/DemoPage1.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Breeze/DemoPage2.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Breeze/DemoPage3.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Breeze/DemoPage4.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Breeze/FocusFrameStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Breeze/GroupBoxStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Breeze/MenuBarStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Breeze/MenuStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Breeze/ProgressBarStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Breeze/RadioButtonIndicator.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Breeze/RadioButtonStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Breeze/ScrollArrow.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Breeze/ScrollBar.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Breeze/ScrollViewStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Breeze/SliderStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Breeze/SpinBoxStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Breeze/StatusBarStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Breeze/SwitchStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Breeze/TabViewStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Breeze/TableViewStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Breeze/TextAreaStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Breeze/TextFieldBackground.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Breeze/TextFieldStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Breeze/ToolBarStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Breeze/ToolButtonStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Breeze/Triangle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Breeze/qmldir share/QtCurve/Breeze.qtcurve share/color-schemes/Breeze.colors share/color-schemes/BreezeDark.colors share/color-schemes/BreezeHighContrast.colors share/color-schemes/BreezeLight.colors share/icons/Breeze_Snow/cursors/00000000000000020006000e7e9ffc3f share/icons/Breeze_Snow/cursors/00008160000006810000408080010102 share/icons/Breeze_Snow/cursors/03b6e0fcb3499374a867c041f52298f0 share/icons/Breeze_Snow/cursors/08e8e1c95fe2fc01f976f1e063a24ccd share/icons/Breeze_Snow/cursors/1081e37283d90000800003c07f3ef6bf share/icons/Breeze_Snow/cursors/3085a0e285430894940527032f8b26df share/icons/Breeze_Snow/cursors/3ecb610c1bf2410f44200f48c40d3599 share/icons/Breeze_Snow/cursors/4498f0e0c1937ffe01fd06f973665830 share/icons/Breeze_Snow/cursors/5c6cd98b3f3ebcb1f9c7f1c204630408 share/icons/Breeze_Snow/cursors/6407b0e94181790501fd1e167b474872 share/icons/Breeze_Snow/cursors/640fb0e74195791501fd1ed57b41487f share/icons/Breeze_Snow/cursors/9081237383d90e509aa00f00170e968f share/icons/Breeze_Snow/cursors/9d800788f1b08800ae810202380a0822 share/icons/Breeze_Snow/cursors/a2a266d0498c3104214a47bd64ab0fc8 share/icons/Breeze_Snow/cursors/alias share/icons/Breeze_Snow/cursors/all-scroll share/icons/Breeze_Snow/cursors/arrow share/icons/Breeze_Snow/cursors/b66166c04f8c3109214a4fbd64a50fc8 share/icons/Breeze_Snow/cursors/bottom_left_corner share/icons/Breeze_Snow/cursors/bottom_right_corner share/icons/Breeze_Snow/cursors/bottom_side share/icons/Breeze_Snow/cursors/cell share/icons/Breeze_Snow/cursors/center_ptr share/icons/Breeze_Snow/cursors/circle share/icons/Breeze_Snow/cursors/closedhand share/icons/Breeze_Snow/cursors/col-resize share/icons/Breeze_Snow/cursors/color-picker share/icons/Breeze_Snow/cursors/context-menu share/icons/Breeze_Snow/cursors/copy share/icons/Breeze_Snow/cursors/cross share/icons/Breeze_Snow/cursors/crossed_circle share/icons/Breeze_Snow/cursors/crosshair share/icons/Breeze_Snow/cursors/d9ce0ab605698f320427677b458ad60b share/icons/Breeze_Snow/cursors/default share/icons/Breeze_Snow/cursors/dnd-copy share/icons/Breeze_Snow/cursors/dnd-move share/icons/Breeze_Snow/cursors/dnd-no-drop share/icons/Breeze_Snow/cursors/dnd-none share/icons/Breeze_Snow/cursors/down-arrow share/icons/Breeze_Snow/cursors/draft share/icons/Breeze_Snow/cursors/e-resize share/icons/Breeze_Snow/cursors/e29285e634086352946a0e7090d73106 share/icons/Breeze_Snow/cursors/fcf21c00b30f7e3f83fe0dfd12e71cff share/icons/Breeze_Snow/cursors/fleur share/icons/Breeze_Snow/cursors/forbidden share/icons/Breeze_Snow/cursors/h_double_arrow share/icons/Breeze_Snow/cursors/half-busy share/icons/Breeze_Snow/cursors/hand1 share/icons/Breeze_Snow/cursors/hand2 share/icons/Breeze_Snow/cursors/help share/icons/Breeze_Snow/cursors/ibeam share/icons/Breeze_Snow/cursors/left-arrow share/icons/Breeze_Snow/cursors/left_ptr share/icons/Breeze_Snow/cursors/left_ptr_help share/icons/Breeze_Snow/cursors/left_ptr_watch share/icons/Breeze_Snow/cursors/left_side share/icons/Breeze_Snow/cursors/link share/icons/Breeze_Snow/cursors/move share/icons/Breeze_Snow/cursors/n-resize share/icons/Breeze_Snow/cursors/ne-resize share/icons/Breeze_Snow/cursors/no-drop share/icons/Breeze_Snow/cursors/nw-resize share/icons/Breeze_Snow/cursors/not-allowed share/icons/Breeze_Snow/cursors/openhand share/icons/Breeze_Snow/cursors/pencil share/icons/Breeze_Snow/cursors/pirate share/icons/Breeze_Snow/cursors/plus share/icons/Breeze_Snow/cursors/pointer share/icons/Breeze_Snow/cursors/pointing_hand share/icons/Breeze_Snow/cursors/progress share/icons/Breeze_Snow/cursors/question_arrow share/icons/Breeze_Snow/cursors/right-arrow share/icons/Breeze_Snow/cursors/right_ptr share/icons/Breeze_Snow/cursors/right_side share/icons/Breeze_Snow/cursors/row-resize share/icons/Breeze_Snow/cursors/s-resize share/icons/Breeze_Snow/cursors/sb_h_double_arrow share/icons/Breeze_Snow/cursors/sb_v_double_arrow share/icons/Breeze_Snow/cursors/se-resize share/icons/Breeze_Snow/cursors/size-bdiag share/icons/Breeze_Snow/cursors/size-fdiag share/icons/Breeze_Snow/cursors/size-hor share/icons/Breeze_Snow/cursors/size-ver share/icons/Breeze_Snow/cursors/size_all share/icons/Breeze_Snow/cursors/size_bdiag share/icons/Breeze_Snow/cursors/size_fdiag share/icons/Breeze_Snow/cursors/size_hor share/icons/Breeze_Snow/cursors/size_ver share/icons/Breeze_Snow/cursors/split_h share/icons/Breeze_Snow/cursors/split_v share/icons/Breeze_Snow/cursors/sw-resize share/icons/Breeze_Snow/cursors/text share/icons/Breeze_Snow/cursors/top_left_arrow share/icons/Breeze_Snow/cursors/top_left_corner share/icons/Breeze_Snow/cursors/top_right_corner share/icons/Breeze_Snow/cursors/top_side share/icons/Breeze_Snow/cursors/up-arrow share/icons/Breeze_Snow/cursors/v_double_arrow share/icons/Breeze_Snow/cursors/vertical-text share/icons/Breeze_Snow/cursors/w-resize share/icons/Breeze_Snow/cursors/wait share/icons/Breeze_Snow/cursors/watch share/icons/Breeze_Snow/cursors/wayland-cursor share/icons/Breeze_Snow/cursors/whats_this share/icons/Breeze_Snow/cursors/x-cursor share/icons/Breeze_Snow/cursors/xterm share/icons/Breeze_Snow/cursors/zoom-in share/icons/Breeze_Snow/cursors/zoom-out share/icons/Breeze_Snow/index.theme share/icons/breeze_cursors/cursors/00000000000000020006000e7e9ffc3f share/icons/breeze_cursors/cursors/00008160000006810000408080010102 share/icons/breeze_cursors/cursors/03b6e0fcb3499374a867c041f52298f0 share/icons/breeze_cursors/cursors/08e8e1c95fe2fc01f976f1e063a24ccd share/icons/breeze_cursors/cursors/1081e37283d90000800003c07f3ef6bf share/icons/breeze_cursors/cursors/3085a0e285430894940527032f8b26df share/icons/breeze_cursors/cursors/3ecb610c1bf2410f44200f48c40d3599 share/icons/breeze_cursors/cursors/4498f0e0c1937ffe01fd06f973665830 share/icons/breeze_cursors/cursors/5c6cd98b3f3ebcb1f9c7f1c204630408 share/icons/breeze_cursors/cursors/6407b0e94181790501fd1e167b474872 share/icons/breeze_cursors/cursors/640fb0e74195791501fd1ed57b41487f share/icons/breeze_cursors/cursors/9081237383d90e509aa00f00170e968f share/icons/breeze_cursors/cursors/9d800788f1b08800ae810202380a0822 share/icons/breeze_cursors/cursors/a2a266d0498c3104214a47bd64ab0fc8 share/icons/breeze_cursors/cursors/alias share/icons/breeze_cursors/cursors/all-scroll share/icons/breeze_cursors/cursors/arrow share/icons/breeze_cursors/cursors/b66166c04f8c3109214a4fbd64a50fc8 share/icons/breeze_cursors/cursors/bottom_left_corner share/icons/breeze_cursors/cursors/bottom_right_corner share/icons/breeze_cursors/cursors/bottom_side share/icons/breeze_cursors/cursors/cell share/icons/breeze_cursors/cursors/center_ptr share/icons/breeze_cursors/cursors/circle share/icons/breeze_cursors/cursors/closedhand share/icons/breeze_cursors/cursors/col-resize share/icons/breeze_cursors/cursors/color-picker share/icons/breeze_cursors/cursors/context-menu share/icons/breeze_cursors/cursors/copy share/icons/breeze_cursors/cursors/cross share/icons/breeze_cursors/cursors/crossed_circle share/icons/breeze_cursors/cursors/crosshair share/icons/breeze_cursors/cursors/d9ce0ab605698f320427677b458ad60b share/icons/breeze_cursors/cursors/default share/icons/breeze_cursors/cursors/dnd-copy share/icons/breeze_cursors/cursors/dnd-move share/icons/breeze_cursors/cursors/dnd-no-drop share/icons/breeze_cursors/cursors/dnd-none share/icons/breeze_cursors/cursors/down-arrow share/icons/breeze_cursors/cursors/draft share/icons/breeze_cursors/cursors/e-resize share/icons/breeze_cursors/cursors/e29285e634086352946a0e7090d73106 share/icons/breeze_cursors/cursors/fcf21c00b30f7e3f83fe0dfd12e71cff share/icons/breeze_cursors/cursors/fleur share/icons/breeze_cursors/cursors/forbidden share/icons/breeze_cursors/cursors/h_double_arrow share/icons/breeze_cursors/cursors/half-busy share/icons/breeze_cursors/cursors/hand1 share/icons/breeze_cursors/cursors/hand2 share/icons/breeze_cursors/cursors/help share/icons/breeze_cursors/cursors/ibeam share/icons/breeze_cursors/cursors/left-arrow share/icons/breeze_cursors/cursors/left_ptr share/icons/breeze_cursors/cursors/left_ptr_help share/icons/breeze_cursors/cursors/left_ptr_watch share/icons/breeze_cursors/cursors/left_side share/icons/breeze_cursors/cursors/link share/icons/breeze_cursors/cursors/move share/icons/breeze_cursors/cursors/n-resize share/icons/breeze_cursors/cursors/ne-resize share/icons/breeze_cursors/cursors/no-drop share/icons/breeze_cursors/cursors/not-allowed share/icons/breeze_cursors/cursors/nw-resize share/icons/breeze_cursors/cursors/openhand share/icons/breeze_cursors/cursors/pencil share/icons/breeze_cursors/cursors/pirate share/icons/breeze_cursors/cursors/plus share/icons/breeze_cursors/cursors/pointer share/icons/breeze_cursors/cursors/pointing_hand share/icons/breeze_cursors/cursors/progress share/icons/breeze_cursors/cursors/question_arrow share/icons/breeze_cursors/cursors/right-arrow share/icons/breeze_cursors/cursors/right_ptr share/icons/breeze_cursors/cursors/right_side share/icons/breeze_cursors/cursors/row-resize share/icons/breeze_cursors/cursors/s-resize share/icons/breeze_cursors/cursors/sb_h_double_arrow share/icons/breeze_cursors/cursors/sb_v_double_arrow share/icons/breeze_cursors/cursors/se-resize share/icons/breeze_cursors/cursors/size-bdiag share/icons/breeze_cursors/cursors/size-fdiag share/icons/breeze_cursors/cursors/size-hor share/icons/breeze_cursors/cursors/size-ver share/icons/breeze_cursors/cursors/size_all share/icons/breeze_cursors/cursors/size_bdiag share/icons/breeze_cursors/cursors/size_fdiag share/icons/breeze_cursors/cursors/size_hor share/icons/breeze_cursors/cursors/size_ver share/icons/breeze_cursors/cursors/split_h share/icons/breeze_cursors/cursors/split_v share/icons/breeze_cursors/cursors/sw-resize share/icons/breeze_cursors/cursors/text share/icons/breeze_cursors/cursors/top_left_arrow share/icons/breeze_cursors/cursors/top_left_corner share/icons/breeze_cursors/cursors/top_right_corner share/icons/breeze_cursors/cursors/top_side share/icons/breeze_cursors/cursors/up-arrow share/icons/breeze_cursors/cursors/v_double_arrow share/icons/breeze_cursors/cursors/vertical-text share/icons/breeze_cursors/cursors/w-resize share/icons/breeze_cursors/cursors/wait share/icons/breeze_cursors/cursors/watch share/icons/breeze_cursors/cursors/wayland-cursor share/icons/breeze_cursors/cursors/whats_this share/icons/breeze_cursors/cursors/x-cursor share/icons/breeze_cursors/cursors/xterm share/icons/breeze_cursors/cursors/zoom-in share/icons/breeze_cursors/cursors/zoom-out share/icons/breeze_cursors/index.theme share/icons/hicolor/scalable/apps/breeze-settings.svgz share/kconf_update/kde4breeze.upd share/kservices5/breezedecorationconfig.desktop share/kservices5/breezestyleconfig.desktop share/kstyle/themes/breeze.themerc share/locale/ar/LC_MESSAGES/breeze_kwin_deco.mo share/locale/ar/LC_MESSAGES/breeze_style_config.mo -share/locale/ast/LC_MESSAGES/breeze_kwin_deco.mo -share/locale/ast/LC_MESSAGES/breeze_style_config.mo share/locale/bs/LC_MESSAGES/breeze_kwin_deco.mo share/locale/bs/LC_MESSAGES/breeze_style_config.mo share/locale/ca/LC_MESSAGES/breeze_kwin_deco.mo share/locale/ca/LC_MESSAGES/breeze_style_config.mo share/locale/ca@valencia/LC_MESSAGES/breeze_kwin_deco.mo share/locale/ca@valencia/LC_MESSAGES/breeze_style_config.mo share/locale/cs/LC_MESSAGES/breeze_kwin_deco.mo share/locale/cs/LC_MESSAGES/breeze_style_config.mo share/locale/da/LC_MESSAGES/breeze_kwin_deco.mo share/locale/da/LC_MESSAGES/breeze_style_config.mo share/locale/de/LC_MESSAGES/breeze_kwin_deco.mo share/locale/de/LC_MESSAGES/breeze_style_config.mo share/locale/el/LC_MESSAGES/breeze_kwin_deco.mo share/locale/el/LC_MESSAGES/breeze_style_config.mo share/locale/en_GB/LC_MESSAGES/breeze_kwin_deco.mo share/locale/en_GB/LC_MESSAGES/breeze_style_config.mo share/locale/es/LC_MESSAGES/breeze_kwin_deco.mo share/locale/es/LC_MESSAGES/breeze_style_config.mo share/locale/et/LC_MESSAGES/breeze_kwin_deco.mo share/locale/et/LC_MESSAGES/breeze_style_config.mo share/locale/eu/LC_MESSAGES/breeze_kwin_deco.mo share/locale/eu/LC_MESSAGES/breeze_style_config.mo share/locale/fi/LC_MESSAGES/breeze_kwin_deco.mo share/locale/fi/LC_MESSAGES/breeze_style_config.mo share/locale/fr/LC_MESSAGES/breeze_kwin_deco.mo share/locale/fr/LC_MESSAGES/breeze_style_config.mo share/locale/gl/LC_MESSAGES/breeze_kwin_deco.mo share/locale/gl/LC_MESSAGES/breeze_style_config.mo share/locale/he/LC_MESSAGES/breeze_kwin_deco.mo share/locale/he/LC_MESSAGES/breeze_style_config.mo share/locale/hu/LC_MESSAGES/breeze_kwin_deco.mo share/locale/hu/LC_MESSAGES/breeze_style_config.mo share/locale/ia/LC_MESSAGES/breeze_kwin_deco.mo share/locale/ia/LC_MESSAGES/breeze_style_config.mo share/locale/id/LC_MESSAGES/breeze_kwin_deco.mo share/locale/id/LC_MESSAGES/breeze_style_config.mo share/locale/it/LC_MESSAGES/breeze_kwin_deco.mo share/locale/it/LC_MESSAGES/breeze_style_config.mo share/locale/ja/LC_MESSAGES/breeze_kwin_deco.mo share/locale/ja/LC_MESSAGES/breeze_style_config.mo share/locale/ko/LC_MESSAGES/breeze_kwin_deco.mo share/locale/ko/LC_MESSAGES/breeze_style_config.mo share/locale/lt/LC_MESSAGES/breeze_kwin_deco.mo share/locale/lt/LC_MESSAGES/breeze_style_config.mo share/locale/nb/LC_MESSAGES/breeze_kwin_deco.mo share/locale/nb/LC_MESSAGES/breeze_style_config.mo share/locale/nds/LC_MESSAGES/breeze_kwin_deco.mo share/locale/nds/LC_MESSAGES/breeze_style_config.mo share/locale/nl/LC_MESSAGES/breeze_kwin_deco.mo share/locale/nl/LC_MESSAGES/breeze_style_config.mo share/locale/nn/LC_MESSAGES/breeze_kwin_deco.mo share/locale/nn/LC_MESSAGES/breeze_style_config.mo share/locale/pa/LC_MESSAGES/breeze_kwin_deco.mo share/locale/pa/LC_MESSAGES/breeze_style_config.mo share/locale/pl/LC_MESSAGES/breeze_kwin_deco.mo share/locale/pl/LC_MESSAGES/breeze_style_config.mo share/locale/pt/LC_MESSAGES/breeze_kwin_deco.mo share/locale/pt/LC_MESSAGES/breeze_style_config.mo share/locale/pt_BR/LC_MESSAGES/breeze_kwin_deco.mo share/locale/pt_BR/LC_MESSAGES/breeze_style_config.mo share/locale/ro/LC_MESSAGES/breeze_kwin_deco.mo share/locale/ro/LC_MESSAGES/breeze_style_config.mo share/locale/ru/LC_MESSAGES/breeze_kwin_deco.mo share/locale/ru/LC_MESSAGES/breeze_style_config.mo share/locale/se/LC_MESSAGES/breeze_kwin_deco.mo share/locale/sk/LC_MESSAGES/breeze_kwin_deco.mo share/locale/sk/LC_MESSAGES/breeze_style_config.mo share/locale/sl/LC_MESSAGES/breeze_kwin_deco.mo share/locale/sl/LC_MESSAGES/breeze_style_config.mo share/locale/sr/LC_MESSAGES/breeze_kwin_deco.mo share/locale/sr/LC_MESSAGES/breeze_style_config.mo share/locale/sr@ijekavian/LC_MESSAGES/breeze_kwin_deco.mo share/locale/sr@ijekavian/LC_MESSAGES/breeze_style_config.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/breeze_kwin_deco.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/breeze_style_config.mo share/locale/sr@latin/LC_MESSAGES/breeze_kwin_deco.mo share/locale/sr@latin/LC_MESSAGES/breeze_style_config.mo share/locale/sv/LC_MESSAGES/breeze_kwin_deco.mo share/locale/sv/LC_MESSAGES/breeze_style_config.mo share/locale/tr/LC_MESSAGES/breeze_kwin_deco.mo share/locale/tr/LC_MESSAGES/breeze_style_config.mo share/locale/uk/LC_MESSAGES/breeze_kwin_deco.mo share/locale/uk/LC_MESSAGES/breeze_style_config.mo share/locale/zh_CN/LC_MESSAGES/breeze_kwin_deco.mo share/locale/zh_CN/LC_MESSAGES/breeze_style_config.mo share/locale/zh_TW/LC_MESSAGES/breeze_kwin_deco.mo share/locale/zh_TW/LC_MESSAGES/breeze_style_config.mo share/metainfo/org.kde.breezedark.desktop.appdata.xml share/plasma/look-and-feel/org.kde.breezedark.desktop/contents/defaults +share/plasma/look-and-feel/org.kde.breezedark.desktop/contents/previews/fullscreenpreview.jpg share/plasma/look-and-feel/org.kde.breezedark.desktop/contents/previews/preview.png share/plasma/look-and-feel/org.kde.breezedark.desktop/metadata.desktop share/plasma/look-and-feel/org.kde.breezedark.desktop/metadata.json share/wallpapers/Next/contents/images/1024x768.png share/wallpapers/Next/contents/images/1280x1024.png share/wallpapers/Next/contents/images/1280x800.png share/wallpapers/Next/contents/images/1366x768.png share/wallpapers/Next/contents/images/1440x900.png share/wallpapers/Next/contents/images/1600x1200.png share/wallpapers/Next/contents/images/1638x1024.png share/wallpapers/Next/contents/images/1680x1050.png share/wallpapers/Next/contents/images/1920x1080.png share/wallpapers/Next/contents/images/1920x1200.png share/wallpapers/Next/contents/images/2560x1440.png share/wallpapers/Next/contents/images/2560x1600.png share/wallpapers/Next/contents/images/3200x1800.png share/wallpapers/Next/contents/images/3200x2000.png share/wallpapers/Next/contents/images/3840x2160.png share/wallpapers/Next/contents/screenshot.png share/wallpapers/Next/metadata.desktop Index: head/x11-themes/plasma5-breeze-gtk/Makefile =================================================================== --- head/x11-themes/plasma5-breeze-gtk/Makefile (revision 492810) +++ head/x11-themes/plasma5-breeze-gtk/Makefile (revision 492811) @@ -1,20 +1,25 @@ # $FreeBSD$ PORTNAME= breeze-gtk DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= x11-themes kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 Breeze visual style for Gtk LICENSE= LGPL21 LICENSE_FILE= ${WRKSRC}/COPYING.LIB -USES= cmake compiler:c++11-lang cpe kde:5 pkgconfig qt:5 \ - tar:xz +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cairo>0:graphics/py-cairo@${PY_FLAVOR} \ + sassc:textproc/sassc +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cairo>0:graphics/py-cairo@${PY_FLAVOR} + +USES= cmake compiler:c++11-lang cpe kde:5 pkgconfig \ + python:3.4+ qt:5 tar:xz USE_GNOME= gdkpixbuf2 -USE_KDE= ecm +USE_KDE= breeze ecm USE_QT= core buildtools_build qmake_build + +BINARY_ALIAS= python3=${PYTHON_VERSION} .include Index: head/x11-themes/plasma5-breeze-gtk/distinfo =================================================================== --- head/x11-themes/plasma5-breeze-gtk/distinfo (revision 492810) +++ head/x11-themes/plasma5-breeze-gtk/distinfo (revision 492811) @@ -1,3 +1,3 @@ -TIMESTAMP = 1547014615 -SHA256 (KDE/plasma/5.14.5/breeze-gtk-5.14.5.tar.xz) = 15ac26cbf7e1a39912fbd1c67b385ac6644aa9693f94463959b0e2d507c2da2f -SIZE (KDE/plasma/5.14.5/breeze-gtk-5.14.5.tar.xz) = 202408 +TIMESTAMP = 1549993959 +SHA256 (KDE/plasma/5.15.0/breeze-gtk-5.15.0.tar.xz) = b53861a26248a75e3d91d514bb7d9a192c7b3c3d19528985bec9aef2668c753b +SIZE (KDE/plasma/5.15.0/breeze-gtk-5.15.0.tar.xz) = 47344 Index: head/x11-themes/plasma5-kde-gtk-config/Makefile =================================================================== --- head/x11-themes/plasma5-kde-gtk-config/Makefile (revision 492810) +++ head/x11-themes/plasma5-kde-gtk-config/Makefile (revision 492811) @@ -1,29 +1,28 @@ # $FreeBSD$ PORTNAME= kde-gtk-config DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= x11-themes kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 GTK2 and GTK3 configurator LICENSE= GPLv2 LGPL21 LICENSE_COMB= multi LICENSE_FILE= ${WRKSRC}/COPYING LICENSE_FILE_LGPL21= ${WRKSRC}/COPYING.LIB BUILD_DEPENDS= gsettings-desktop-schemas>=0:devel/gsettings-desktop-schemas RUN_DEPENDS= gsettings-desktop-schemas>=0:devel/gsettings-desktop-schemas USES= cmake compiler:c++11-lib cpe gettext \ kde:5 pkgconfig qt:5 tar:xz USE_GNOME= cairo gdkpixbuf2 gtk20 gtk30 glib20 USE_KDE= archive attica auth codecs completion config configwidgets \ coreaddons ecm i18n iconthemes jobwidgets kcmutils kio \ newstuff service widgetsaddons xmlgui USE_QT= concurrent core dbus gui network testlib widgets xml \ buildtools_build qmake_build USE_XORG= xcursor .include Index: head/x11-themes/plasma5-kde-gtk-config/distinfo =================================================================== --- head/x11-themes/plasma5-kde-gtk-config/distinfo (revision 492810) +++ head/x11-themes/plasma5-kde-gtk-config/distinfo (revision 492811) @@ -1,3 +1,3 @@ -TIMESTAMP = 1547014616 -SHA256 (KDE/plasma/5.14.5/kde-gtk-config-5.14.5.tar.xz) = b54d41fde56d9bd7f420f69dd7c04ba3f99c838d18d9938d63d50a28273f8688 -SIZE (KDE/plasma/5.14.5/kde-gtk-config-5.14.5.tar.xz) = 157032 +TIMESTAMP = 1549993970 +SHA256 (KDE/plasma/5.15.0/kde-gtk-config-5.15.0.tar.xz) = 5e8dc0c8ee8f12d12bbdb723b9b7b8e54a822307251b1ad8bc8ceadd1583f294 +SIZE (KDE/plasma/5.15.0/kde-gtk-config-5.15.0.tar.xz) = 156264 Index: head/x11-themes/plasma5-kde-gtk-config/pkg-plist =================================================================== --- head/x11-themes/plasma5-kde-gtk-config/pkg-plist (revision 492810) +++ head/x11-themes/plasma5-kde-gtk-config/pkg-plist (revision 492811) @@ -1,62 +1,61 @@ etc/xdg/cgcgtk3.knsrc etc/xdg/cgctheme.knsrc lib/libexec/gtk3_preview lib/libexec/gtk_preview lib/libexec/reload_gtk_apps %%QT_PLUGINDIR%%/kcm_kdegtkconfig.so share/icons/hicolor/128x128/apps/kde-gtk-config.png share/icons/hicolor/16x16/apps/kde-gtk-config.png share/icons/hicolor/22x22/apps/kde-gtk-config.png share/icons/hicolor/24x24/apps/kde-gtk-config.png share/icons/hicolor/256x256/apps/kde-gtk-config.png share/icons/hicolor/32x32/apps/kde-gtk-config.png share/icons/hicolor/48x48/apps/kde-gtk-config.png share/icons/hicolor/64x64/apps/kde-gtk-config.png share/icons/hicolor/8x8/apps/kde-gtk-config.png share/icons/hicolor/scalable/apps/kde-gtk-config.svgz share/kcm-gtk-module/preview.ui share/kservices5/kde-gtk-config.desktop share/locale/ar/LC_MESSAGES/kde-gtk-config.mo -share/locale/ast/LC_MESSAGES/kde-gtk-config.mo share/locale/bs/LC_MESSAGES/kde-gtk-config.mo share/locale/ca/LC_MESSAGES/kde-gtk-config.mo share/locale/ca@valencia/LC_MESSAGES/kde-gtk-config.mo share/locale/cs/LC_MESSAGES/kde-gtk-config.mo share/locale/da/LC_MESSAGES/kde-gtk-config.mo share/locale/de/LC_MESSAGES/kde-gtk-config.mo share/locale/el/LC_MESSAGES/kde-gtk-config.mo share/locale/en_GB/LC_MESSAGES/kde-gtk-config.mo share/locale/es/LC_MESSAGES/kde-gtk-config.mo share/locale/et/LC_MESSAGES/kde-gtk-config.mo share/locale/eu/LC_MESSAGES/kde-gtk-config.mo share/locale/fi/LC_MESSAGES/kde-gtk-config.mo share/locale/fr/LC_MESSAGES/kde-gtk-config.mo share/locale/gl/LC_MESSAGES/kde-gtk-config.mo share/locale/he/LC_MESSAGES/kde-gtk-config.mo share/locale/hu/LC_MESSAGES/kde-gtk-config.mo share/locale/ia/LC_MESSAGES/kde-gtk-config.mo share/locale/id/LC_MESSAGES/kde-gtk-config.mo share/locale/it/LC_MESSAGES/kde-gtk-config.mo share/locale/ja/LC_MESSAGES/kde-gtk-config.mo share/locale/ko/LC_MESSAGES/kde-gtk-config.mo share/locale/lt/LC_MESSAGES/kde-gtk-config.mo share/locale/nb/LC_MESSAGES/kde-gtk-config.mo share/locale/nl/LC_MESSAGES/kde-gtk-config.mo share/locale/nn/LC_MESSAGES/kde-gtk-config.mo share/locale/pa/LC_MESSAGES/kde-gtk-config.mo share/locale/pl/LC_MESSAGES/kde-gtk-config.mo share/locale/pt/LC_MESSAGES/kde-gtk-config.mo share/locale/pt_BR/LC_MESSAGES/kde-gtk-config.mo share/locale/ro/LC_MESSAGES/kde-gtk-config.mo share/locale/ru/LC_MESSAGES/kde-gtk-config.mo share/locale/sk/LC_MESSAGES/kde-gtk-config.mo share/locale/sl/LC_MESSAGES/kde-gtk-config.mo share/locale/sr/LC_MESSAGES/kde-gtk-config.mo share/locale/sr@ijekavian/LC_MESSAGES/kde-gtk-config.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kde-gtk-config.mo share/locale/sr@latin/LC_MESSAGES/kde-gtk-config.mo share/locale/sv/LC_MESSAGES/kde-gtk-config.mo share/locale/tr/LC_MESSAGES/kde-gtk-config.mo share/locale/uk/LC_MESSAGES/kde-gtk-config.mo share/locale/zh_CN/LC_MESSAGES/kde-gtk-config.mo share/locale/zh_TW/LC_MESSAGES/kde-gtk-config.mo Index: head/x11-themes/plasma5-oxygen/Makefile =================================================================== --- head/x11-themes/plasma5-oxygen/Makefile (revision 492810) +++ head/x11-themes/plasma5-oxygen/Makefile (revision 492811) @@ -1,26 +1,25 @@ # $FreeBSD$ PORTNAME= oxygen DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= x11-themes kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 Oxygen style LICENSE= GPLv2 LGPL21 LICENSE_COMB= multi LICENSE_FILE= ${WRKSRC}/COPYING LICENSE_FILE_LGPL21= ${WRKSRC}/COPYING.LIB USES= cmake compiler:c++11-lib cpe gettext \ kde:5 pkgconfig qt:5 tar:xz USE_LDCONFIG= yes USE_KDE= auth codecs completion config configwidgets coreaddons decoration ecm \ frameworkintegration guiaddons i18n kcmutils service \ wayland widgetsaddons windowsystem USE_QT= core dbus declarative gui network widgets x11extras xml \ buildtools_build qmake_build USE_XORG= xcb .include Index: head/x11-themes/plasma5-oxygen/distinfo =================================================================== --- head/x11-themes/plasma5-oxygen/distinfo (revision 492810) +++ head/x11-themes/plasma5-oxygen/distinfo (revision 492811) @@ -1,3 +1,3 @@ -TIMESTAMP = 1547014617 -SHA256 (KDE/plasma/5.14.5/oxygen-5.14.5.tar.xz) = 684edb853905bbb0b14c99673bb8857d6ddb66685759f3809fed27e3d499e040 -SIZE (KDE/plasma/5.14.5/oxygen-5.14.5.tar.xz) = 4467780 +TIMESTAMP = 1549993971 +SHA256 (KDE/plasma/5.15.0/oxygen-5.15.0.tar.xz) = 2e1f7bb71ea5c8691db5031e9efb2d2a719461027172d206f03aa8cfc61e1271 +SIZE (KDE/plasma/5.15.0/oxygen-5.15.0.tar.xz) = 4467596 Index: head/x11-themes/plasma5-oxygen/pkg-plist =================================================================== --- head/x11-themes/plasma5-oxygen/pkg-plist (revision 492810) +++ head/x11-themes/plasma5-oxygen/pkg-plist (revision 492811) @@ -1,784 +1,780 @@ bin/oxygen-demo5 bin/oxygen-settings5 lib/liboxygenstyle5.so lib/liboxygenstyle5.so.5 lib/liboxygenstyle5.so.%%KDE_PLASMA_VERSION%% lib/liboxygenstyleconfig5.so lib/liboxygenstyleconfig5.so.5 lib/liboxygenstyleconfig5.so.%%KDE_PLASMA_VERSION%% %%QT_PLUGINDIR%%/kstyle_oxygen_config.so %%QT_PLUGINDIR%%/org.kde.kdecoration2/oxygendecoration.so %%QT_PLUGINDIR%%/styles/oxygen.so share/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/not-allowed 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/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/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/not-allowed 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/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/text share/icons/Oxygen_Black/cursors/up_arrow share/icons/Oxygen_Black/cursors/v_double_arrow share/icons/Oxygen_Black/cursors/w-resize share/icons/Oxygen_Black/cursors/wait share/icons/Oxygen_Black/cursors/watch share/icons/Oxygen_Black/cursors/whats_this share/icons/Oxygen_Black/cursors/xterm share/icons/Oxygen_Black/index.theme share/icons/Oxygen_Blue/cursors/00000000000000020006000e7e9ffc3f share/icons/Oxygen_Blue/cursors/00008160000006810000408080010102 share/icons/Oxygen_Blue/cursors/03b6e0fcb3499374a867c041f52298f0 share/icons/Oxygen_Blue/cursors/08e8e1c95fe2fc01f976f1e063a24ccd share/icons/Oxygen_Blue/cursors/1081e37283d90000800003c07f3ef6bf share/icons/Oxygen_Blue/cursors/3085a0e285430894940527032f8b26df share/icons/Oxygen_Blue/cursors/3ecb610c1bf2410f44200f48c40d3599 share/icons/Oxygen_Blue/cursors/4498f0e0c1937ffe01fd06f973665830 share/icons/Oxygen_Blue/cursors/5c6cd98b3f3ebcb1f9c7f1c204630408 share/icons/Oxygen_Blue/cursors/6407b0e94181790501fd1e167b474872 share/icons/Oxygen_Blue/cursors/640fb0e74195791501fd1ed57b41487f share/icons/Oxygen_Blue/cursors/9081237383d90e509aa00f00170e968f share/icons/Oxygen_Blue/cursors/9d800788f1b08800ae810202380a0822 share/icons/Oxygen_Blue/cursors/X_cursor share/icons/Oxygen_Blue/cursors/a2a266d0498c3104214a47bd64ab0fc8 share/icons/Oxygen_Blue/cursors/alias share/icons/Oxygen_Blue/cursors/all-scroll share/icons/Oxygen_Blue/cursors/b66166c04f8c3109214a4fbd64a50fc8 share/icons/Oxygen_Blue/cursors/circle share/icons/Oxygen_Blue/cursors/closedhand share/icons/Oxygen_Blue/cursors/col-resize share/icons/Oxygen_Blue/cursors/color-picker share/icons/Oxygen_Blue/cursors/copy share/icons/Oxygen_Blue/cursors/cross share/icons/Oxygen_Blue/cursors/crossed_circle share/icons/Oxygen_Blue/cursors/d9ce0ab605698f320427677b458ad60b share/icons/Oxygen_Blue/cursors/dnd-copy share/icons/Oxygen_Blue/cursors/dnd-link share/icons/Oxygen_Blue/cursors/dnd-move share/icons/Oxygen_Blue/cursors/dnd-no-drop share/icons/Oxygen_Blue/cursors/dnd-none share/icons/Oxygen_Blue/cursors/e-resize share/icons/Oxygen_Blue/cursors/e29285e634086352946a0e7090d73106 share/icons/Oxygen_Blue/cursors/fcf21c00b30f7e3f83fe0dfd12e71cff share/icons/Oxygen_Blue/cursors/fleur share/icons/Oxygen_Blue/cursors/forbidden share/icons/Oxygen_Blue/cursors/half-busy share/icons/Oxygen_Blue/cursors/hand1 share/icons/Oxygen_Blue/cursors/hand2 share/icons/Oxygen_Blue/cursors/help share/icons/Oxygen_Blue/cursors/ibeam share/icons/Oxygen_Blue/cursors/left_ptr share/icons/Oxygen_Blue/cursors/left_ptr_watch share/icons/Oxygen_Blue/cursors/link share/icons/Oxygen_Blue/cursors/move share/icons/Oxygen_Blue/cursors/n-resize share/icons/Oxygen_Blue/cursors/not-allowed 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/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/text share/icons/Oxygen_Blue/cursors/up_arrow share/icons/Oxygen_Blue/cursors/v_double_arrow share/icons/Oxygen_Blue/cursors/w-resize share/icons/Oxygen_Blue/cursors/wait share/icons/Oxygen_Blue/cursors/watch share/icons/Oxygen_Blue/cursors/whats_this share/icons/Oxygen_Blue/cursors/xterm share/icons/Oxygen_Blue/index.theme share/icons/Oxygen_White/cursors/00000000000000020006000e7e9ffc3f share/icons/Oxygen_White/cursors/00008160000006810000408080010102 share/icons/Oxygen_White/cursors/03b6e0fcb3499374a867c041f52298f0 share/icons/Oxygen_White/cursors/08e8e1c95fe2fc01f976f1e063a24ccd share/icons/Oxygen_White/cursors/1081e37283d90000800003c07f3ef6bf share/icons/Oxygen_White/cursors/3085a0e285430894940527032f8b26df share/icons/Oxygen_White/cursors/3ecb610c1bf2410f44200f48c40d3599 share/icons/Oxygen_White/cursors/4498f0e0c1937ffe01fd06f973665830 share/icons/Oxygen_White/cursors/5c6cd98b3f3ebcb1f9c7f1c204630408 share/icons/Oxygen_White/cursors/6407b0e94181790501fd1e167b474872 share/icons/Oxygen_White/cursors/640fb0e74195791501fd1ed57b41487f share/icons/Oxygen_White/cursors/9081237383d90e509aa00f00170e968f share/icons/Oxygen_White/cursors/9d800788f1b08800ae810202380a0822 share/icons/Oxygen_White/cursors/X_cursor share/icons/Oxygen_White/cursors/a2a266d0498c3104214a47bd64ab0fc8 share/icons/Oxygen_White/cursors/alias share/icons/Oxygen_White/cursors/all-scroll share/icons/Oxygen_White/cursors/b66166c04f8c3109214a4fbd64a50fc8 share/icons/Oxygen_White/cursors/circle share/icons/Oxygen_White/cursors/closedhand share/icons/Oxygen_White/cursors/col-resize share/icons/Oxygen_White/cursors/color-picker share/icons/Oxygen_White/cursors/copy share/icons/Oxygen_White/cursors/cross share/icons/Oxygen_White/cursors/crossed_circle share/icons/Oxygen_White/cursors/d9ce0ab605698f320427677b458ad60b share/icons/Oxygen_White/cursors/dnd-copy share/icons/Oxygen_White/cursors/dnd-link share/icons/Oxygen_White/cursors/dnd-move share/icons/Oxygen_White/cursors/dnd-no-drop share/icons/Oxygen_White/cursors/dnd-none share/icons/Oxygen_White/cursors/e-resize share/icons/Oxygen_White/cursors/e29285e634086352946a0e7090d73106 share/icons/Oxygen_White/cursors/fcf21c00b30f7e3f83fe0dfd12e71cff share/icons/Oxygen_White/cursors/fleur share/icons/Oxygen_White/cursors/forbidden share/icons/Oxygen_White/cursors/half-busy share/icons/Oxygen_White/cursors/hand1 share/icons/Oxygen_White/cursors/hand2 share/icons/Oxygen_White/cursors/help share/icons/Oxygen_White/cursors/ibeam share/icons/Oxygen_White/cursors/left_ptr share/icons/Oxygen_White/cursors/left_ptr_watch share/icons/Oxygen_White/cursors/link share/icons/Oxygen_White/cursors/move share/icons/Oxygen_White/cursors/n-resize share/icons/Oxygen_White/cursors/not-allowed 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/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/text share/icons/Oxygen_White/cursors/up_arrow share/icons/Oxygen_White/cursors/v_double_arrow share/icons/Oxygen_White/cursors/w-resize share/icons/Oxygen_White/cursors/wait share/icons/Oxygen_White/cursors/watch share/icons/Oxygen_White/cursors/whats_this share/icons/Oxygen_White/cursors/xterm share/icons/Oxygen_White/index.theme share/icons/Oxygen_Yellow/cursors/00000000000000020006000e7e9ffc3f share/icons/Oxygen_Yellow/cursors/00008160000006810000408080010102 share/icons/Oxygen_Yellow/cursors/03b6e0fcb3499374a867c041f52298f0 share/icons/Oxygen_Yellow/cursors/08e8e1c95fe2fc01f976f1e063a24ccd share/icons/Oxygen_Yellow/cursors/1081e37283d90000800003c07f3ef6bf share/icons/Oxygen_Yellow/cursors/3085a0e285430894940527032f8b26df share/icons/Oxygen_Yellow/cursors/3ecb610c1bf2410f44200f48c40d3599 share/icons/Oxygen_Yellow/cursors/4498f0e0c1937ffe01fd06f973665830 share/icons/Oxygen_Yellow/cursors/5c6cd98b3f3ebcb1f9c7f1c204630408 share/icons/Oxygen_Yellow/cursors/6407b0e94181790501fd1e167b474872 share/icons/Oxygen_Yellow/cursors/640fb0e74195791501fd1ed57b41487f share/icons/Oxygen_Yellow/cursors/9081237383d90e509aa00f00170e968f share/icons/Oxygen_Yellow/cursors/9d800788f1b08800ae810202380a0822 share/icons/Oxygen_Yellow/cursors/X_cursor share/icons/Oxygen_Yellow/cursors/a2a266d0498c3104214a47bd64ab0fc8 share/icons/Oxygen_Yellow/cursors/alias share/icons/Oxygen_Yellow/cursors/all-scroll share/icons/Oxygen_Yellow/cursors/b66166c04f8c3109214a4fbd64a50fc8 share/icons/Oxygen_Yellow/cursors/circle share/icons/Oxygen_Yellow/cursors/closedhand share/icons/Oxygen_Yellow/cursors/col-resize share/icons/Oxygen_Yellow/cursors/color-picker share/icons/Oxygen_Yellow/cursors/copy share/icons/Oxygen_Yellow/cursors/cross share/icons/Oxygen_Yellow/cursors/crossed_circle share/icons/Oxygen_Yellow/cursors/d9ce0ab605698f320427677b458ad60b share/icons/Oxygen_Yellow/cursors/dnd-copy share/icons/Oxygen_Yellow/cursors/dnd-link share/icons/Oxygen_Yellow/cursors/dnd-move share/icons/Oxygen_Yellow/cursors/dnd-no-drop share/icons/Oxygen_Yellow/cursors/dnd-none share/icons/Oxygen_Yellow/cursors/e-resize share/icons/Oxygen_Yellow/cursors/e29285e634086352946a0e7090d73106 share/icons/Oxygen_Yellow/cursors/fcf21c00b30f7e3f83fe0dfd12e71cff share/icons/Oxygen_Yellow/cursors/fleur share/icons/Oxygen_Yellow/cursors/forbidden share/icons/Oxygen_Yellow/cursors/half-busy share/icons/Oxygen_Yellow/cursors/hand1 share/icons/Oxygen_Yellow/cursors/hand2 share/icons/Oxygen_Yellow/cursors/help share/icons/Oxygen_Yellow/cursors/ibeam share/icons/Oxygen_Yellow/cursors/left_ptr share/icons/Oxygen_Yellow/cursors/left_ptr_watch share/icons/Oxygen_Yellow/cursors/link share/icons/Oxygen_Yellow/cursors/move share/icons/Oxygen_Yellow/cursors/n-resize share/icons/Oxygen_Yellow/cursors/not-allowed 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/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/text share/icons/Oxygen_Yellow/cursors/up_arrow share/icons/Oxygen_Yellow/cursors/v_double_arrow share/icons/Oxygen_Yellow/cursors/w-resize share/icons/Oxygen_Yellow/cursors/wait share/icons/Oxygen_Yellow/cursors/watch share/icons/Oxygen_Yellow/cursors/whats_this share/icons/Oxygen_Yellow/cursors/xterm share/icons/Oxygen_Yellow/index.theme share/icons/Oxygen_Zion/cursors/00000000000000020006000e7e9ffc3f share/icons/Oxygen_Zion/cursors/00008160000006810000408080010102 share/icons/Oxygen_Zion/cursors/03b6e0fcb3499374a867c041f52298f0 share/icons/Oxygen_Zion/cursors/08e8e1c95fe2fc01f976f1e063a24ccd share/icons/Oxygen_Zion/cursors/1081e37283d90000800003c07f3ef6bf share/icons/Oxygen_Zion/cursors/3085a0e285430894940527032f8b26df share/icons/Oxygen_Zion/cursors/3ecb610c1bf2410f44200f48c40d3599 share/icons/Oxygen_Zion/cursors/4498f0e0c1937ffe01fd06f973665830 share/icons/Oxygen_Zion/cursors/5c6cd98b3f3ebcb1f9c7f1c204630408 share/icons/Oxygen_Zion/cursors/6407b0e94181790501fd1e167b474872 share/icons/Oxygen_Zion/cursors/640fb0e74195791501fd1ed57b41487f share/icons/Oxygen_Zion/cursors/9081237383d90e509aa00f00170e968f share/icons/Oxygen_Zion/cursors/9d800788f1b08800ae810202380a0822 share/icons/Oxygen_Zion/cursors/X_cursor share/icons/Oxygen_Zion/cursors/a2a266d0498c3104214a47bd64ab0fc8 share/icons/Oxygen_Zion/cursors/alias share/icons/Oxygen_Zion/cursors/all-scroll share/icons/Oxygen_Zion/cursors/b66166c04f8c3109214a4fbd64a50fc8 share/icons/Oxygen_Zion/cursors/circle share/icons/Oxygen_Zion/cursors/closedhand share/icons/Oxygen_Zion/cursors/col-resize share/icons/Oxygen_Zion/cursors/color-picker share/icons/Oxygen_Zion/cursors/copy share/icons/Oxygen_Zion/cursors/cross share/icons/Oxygen_Zion/cursors/crossed_circle share/icons/Oxygen_Zion/cursors/d9ce0ab605698f320427677b458ad60b share/icons/Oxygen_Zion/cursors/dnd-copy share/icons/Oxygen_Zion/cursors/dnd-link share/icons/Oxygen_Zion/cursors/dnd-move share/icons/Oxygen_Zion/cursors/dnd-no-drop share/icons/Oxygen_Zion/cursors/dnd-none share/icons/Oxygen_Zion/cursors/e-resize share/icons/Oxygen_Zion/cursors/e29285e634086352946a0e7090d73106 share/icons/Oxygen_Zion/cursors/fcf21c00b30f7e3f83fe0dfd12e71cff share/icons/Oxygen_Zion/cursors/fleur share/icons/Oxygen_Zion/cursors/forbidden share/icons/Oxygen_Zion/cursors/half-busy share/icons/Oxygen_Zion/cursors/hand1 share/icons/Oxygen_Zion/cursors/hand2 share/icons/Oxygen_Zion/cursors/help share/icons/Oxygen_Zion/cursors/ibeam share/icons/Oxygen_Zion/cursors/left_ptr share/icons/Oxygen_Zion/cursors/left_ptr_watch share/icons/Oxygen_Zion/cursors/link share/icons/Oxygen_Zion/cursors/move share/icons/Oxygen_Zion/cursors/n-resize share/icons/Oxygen_Zion/cursors/not-allowed 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/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/text share/icons/Oxygen_Zion/cursors/up_arrow share/icons/Oxygen_Zion/cursors/v_double_arrow share/icons/Oxygen_Zion/cursors/w-resize share/icons/Oxygen_Zion/cursors/wait share/icons/Oxygen_Zion/cursors/watch share/icons/Oxygen_Zion/cursors/whats_this share/icons/Oxygen_Zion/cursors/xterm share/icons/Oxygen_Zion/index.theme share/icons/hicolor/256x256/apps/oxygen-settings.png share/kservices5/oxygendecorationconfig.desktop share/kservices5/oxygenstyleconfig.desktop share/kstyle/themes/oxygen.themerc share/locale/af/LC_MESSAGES/oxygen_style_config.mo share/locale/af/LC_MESSAGES/oxygen_style_demo.mo share/locale/ar/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/ar/LC_MESSAGES/oxygen_kdecoration.mo share/locale/ar/LC_MESSAGES/oxygen_style_config.mo share/locale/ar/LC_MESSAGES/oxygen_style_demo.mo -share/locale/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/be/LC_MESSAGES/oxygen_style_config.mo share/locale/be/LC_MESSAGES/oxygen_style_demo.mo share/locale/be@latin/LC_MESSAGES/oxygen_style_config.mo share/locale/be@latin/LC_MESSAGES/oxygen_style_demo.mo share/locale/bg/LC_MESSAGES/oxygen_style_config.mo share/locale/bg/LC_MESSAGES/oxygen_style_demo.mo share/locale/bn_IN/LC_MESSAGES/oxygen_style_config.mo share/locale/bn_IN/LC_MESSAGES/oxygen_style_demo.mo share/locale/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/oxygen_style_config.mo share/locale/eo/LC_MESSAGES/oxygen_style_demo.mo share/locale/es/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/es/LC_MESSAGES/oxygen_kdecoration.mo share/locale/es/LC_MESSAGES/oxygen_style_config.mo share/locale/es/LC_MESSAGES/oxygen_style_demo.mo share/locale/et/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/et/LC_MESSAGES/oxygen_kdecoration.mo share/locale/et/LC_MESSAGES/oxygen_style_config.mo share/locale/et/LC_MESSAGES/oxygen_style_demo.mo share/locale/eu/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/eu/LC_MESSAGES/oxygen_kdecoration.mo share/locale/eu/LC_MESSAGES/oxygen_style_config.mo share/locale/eu/LC_MESSAGES/oxygen_style_demo.mo share/locale/fa/LC_MESSAGES/oxygen_style_config.mo share/locale/fa/LC_MESSAGES/oxygen_style_demo.mo share/locale/fi/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/fi/LC_MESSAGES/oxygen_kdecoration.mo share/locale/fi/LC_MESSAGES/oxygen_style_config.mo share/locale/fi/LC_MESSAGES/oxygen_style_demo.mo share/locale/fr/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/fr/LC_MESSAGES/oxygen_kdecoration.mo share/locale/fr/LC_MESSAGES/oxygen_style_config.mo share/locale/fr/LC_MESSAGES/oxygen_style_demo.mo share/locale/fy/LC_MESSAGES/oxygen_style_config.mo share/locale/fy/LC_MESSAGES/oxygen_style_demo.mo share/locale/ga/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/ga/LC_MESSAGES/oxygen_style_config.mo share/locale/ga/LC_MESSAGES/oxygen_style_demo.mo share/locale/gl/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/gl/LC_MESSAGES/oxygen_kdecoration.mo share/locale/gl/LC_MESSAGES/oxygen_style_config.mo share/locale/gl/LC_MESSAGES/oxygen_style_demo.mo share/locale/gu/LC_MESSAGES/oxygen_style_config.mo share/locale/gu/LC_MESSAGES/oxygen_style_demo.mo share/locale/he/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/he/LC_MESSAGES/oxygen_style_config.mo share/locale/he/LC_MESSAGES/oxygen_style_demo.mo share/locale/hi/LC_MESSAGES/oxygen_style_config.mo share/locale/hi/LC_MESSAGES/oxygen_style_demo.mo share/locale/hne/LC_MESSAGES/oxygen_style_config.mo share/locale/hne/LC_MESSAGES/oxygen_style_demo.mo share/locale/hr/LC_MESSAGES/oxygen_style_config.mo share/locale/hr/LC_MESSAGES/oxygen_style_demo.mo share/locale/hsb/LC_MESSAGES/oxygen_style_config.mo share/locale/hsb/LC_MESSAGES/oxygen_style_demo.mo share/locale/hu/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/hu/LC_MESSAGES/oxygen_kdecoration.mo share/locale/hu/LC_MESSAGES/oxygen_style_config.mo share/locale/hu/LC_MESSAGES/oxygen_style_demo.mo share/locale/ia/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/ia/LC_MESSAGES/oxygen_kdecoration.mo share/locale/ia/LC_MESSAGES/oxygen_style_config.mo share/locale/ia/LC_MESSAGES/oxygen_style_demo.mo share/locale/id/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/id/LC_MESSAGES/oxygen_kdecoration.mo share/locale/id/LC_MESSAGES/oxygen_style_config.mo share/locale/id/LC_MESSAGES/oxygen_style_demo.mo share/locale/is/LC_MESSAGES/oxygen_style_config.mo share/locale/is/LC_MESSAGES/oxygen_style_demo.mo share/locale/it/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/it/LC_MESSAGES/oxygen_kdecoration.mo share/locale/it/LC_MESSAGES/oxygen_style_config.mo share/locale/it/LC_MESSAGES/oxygen_style_demo.mo share/locale/ja/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/ja/LC_MESSAGES/oxygen_kdecoration.mo share/locale/ja/LC_MESSAGES/oxygen_style_config.mo share/locale/ja/LC_MESSAGES/oxygen_style_demo.mo share/locale/kk/LC_MESSAGES/liboxygenstyleconfig.mo share/locale/kk/LC_MESSAGES/oxygen_style_config.mo share/locale/kk/LC_MESSAGES/oxygen_style_demo.mo share/locale/km/LC_MESSAGES/oxygen_style_config.mo share/locale/km/LC_MESSAGES/oxygen_style_demo.mo share/locale/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/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/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/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/look-and-feel/org.kde.oxygen/contents/defaults share/plasma/look-and-feel/org.kde.oxygen/contents/previews/preview.png share/plasma/look-and-feel/org.kde.oxygen/contents/previews/splash.png share/plasma/look-and-feel/org.kde.oxygen/contents/splash/Splash.qml share/plasma/look-and-feel/org.kde.oxygen/contents/splash/images/background.png share/plasma/look-and-feel/org.kde.oxygen/contents/splash/images/kde.png share/plasma/look-and-feel/org.kde.oxygen/contents/splash/images/rectangle.png share/plasma/look-and-feel/org.kde.oxygen/metadata.desktop share/sounds/Oxygen-Im-Cant-Connect.ogg share/sounds/Oxygen-Im-Connection-Lost.ogg share/sounds/Oxygen-Im-Contact-In.ogg share/sounds/Oxygen-Im-Contact-Out.ogg share/sounds/Oxygen-Im-Error-On-Connection.ogg share/sounds/Oxygen-Im-Highlight-Msg.ogg share/sounds/Oxygen-Im-Internal-Error.ogg share/sounds/Oxygen-Im-Irc-Event.ogg share/sounds/Oxygen-Im-Low-Priority-Message.ogg share/sounds/Oxygen-Im-Message-In.ogg share/sounds/Oxygen-Im-Message-Out.ogg share/sounds/Oxygen-Im-Network-Problems.ogg share/sounds/Oxygen-Im-New-Mail.ogg share/sounds/Oxygen-Im-Nudge.ogg share/sounds/Oxygen-Im-Phone-Ring.ogg share/sounds/Oxygen-Im-Sms.ogg share/sounds/Oxygen-Im-User-Auth.ogg share/sounds/Oxygen-K3B-Finish-Error.ogg share/sounds/Oxygen-K3B-Finish-Success.ogg share/sounds/Oxygen-K3B-Insert-Medium.ogg share/sounds/Oxygen-Sys-App-Error-Critical.ogg share/sounds/Oxygen-Sys-App-Error-Serious-Very.ogg share/sounds/Oxygen-Sys-App-Error-Serious.ogg share/sounds/Oxygen-Sys-App-Error.ogg share/sounds/Oxygen-Sys-App-Message.ogg share/sounds/Oxygen-Sys-App-Negative.ogg share/sounds/Oxygen-Sys-App-Positive.ogg share/sounds/Oxygen-Sys-Error-Printing.ogg share/sounds/Oxygen-Sys-File-Open-Foes.ogg share/sounds/Oxygen-Sys-List-End.ogg share/sounds/Oxygen-Sys-List-Match-Multiple.ogg share/sounds/Oxygen-Sys-List-Match-No.ogg share/sounds/Oxygen-Sys-Log-In-Long.ogg share/sounds/Oxygen-Sys-Log-In-Short.ogg share/sounds/Oxygen-Sys-Log-In.ogg share/sounds/Oxygen-Sys-Log-Out.ogg share/sounds/Oxygen-Sys-Question.ogg share/sounds/Oxygen-Sys-Special.ogg share/sounds/Oxygen-Sys-Trash-Emptied.ogg share/sounds/Oxygen-Sys-Warning.ogg share/sounds/Oxygen-Window-All-Desktops-Not.ogg share/sounds/Oxygen-Window-All-Desktops.ogg share/sounds/Oxygen-Window-Close.ogg share/sounds/Oxygen-Window-Maximize.ogg share/sounds/Oxygen-Window-Minimize.ogg share/sounds/Oxygen-Window-Move-Stop.ogg share/sounds/Oxygen-Window-Move.ogg share/sounds/Oxygen-Window-Shade-Down.ogg share/sounds/Oxygen-Window-Shade-Up.ogg Index: head/x11-themes/plasma5-plasma-workspace-wallpapers/Makefile =================================================================== --- head/x11-themes/plasma5-plasma-workspace-wallpapers/Makefile (revision 492810) +++ head/x11-themes/plasma5-plasma-workspace-wallpapers/Makefile (revision 492811) @@ -1,27 +1,26 @@ # $FreeBSD$ PORTNAME= plasma-workspace-wallpapers DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= x11-themes kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 wallpapers LICENSE= GPLv2 LGPL3 LICENSE_COMB= multi LICENSE_FILE= ${WRKSRC}/COPYING LICENSE_FILE_LGPL3= ${WRKSRC}/COPYING.LGPL3 USES= cmake cpe kde:5 qt:5 tar:xz USE_KDE= ecm USE_QT= buildtools_build qmake_build # The qmake dependency is only needed so that kf5-e-c-m can query qmake for # some installation directories. # We explicitly prevent it from looking for qt5-core and specify qmake's path # to avoid needlessly depending on qt5-core. CMAKE_ARGS= -DCMAKE_DISABLE_FIND_PACKAGE_Qt5Core=TRUE \ -DQMAKE_EXECUTABLE:PATH=${QMAKE} .include Index: head/x11-themes/plasma5-plasma-workspace-wallpapers/distinfo =================================================================== --- head/x11-themes/plasma5-plasma-workspace-wallpapers/distinfo (revision 492810) +++ head/x11-themes/plasma5-plasma-workspace-wallpapers/distinfo (revision 492811) @@ -1,3 +1,3 @@ -TIMESTAMP = 1547014621 -SHA256 (KDE/plasma/5.14.5/plasma-workspace-wallpapers-5.14.5.tar.xz) = 3885dfd118b5889e2473d846a0ff44854c45cc416bc498298cc708120b32009f -SIZE (KDE/plasma/5.14.5/plasma-workspace-wallpapers-5.14.5.tar.xz) = 45915040 +TIMESTAMP = 1549993974 +SHA256 (KDE/plasma/5.15.0/plasma-workspace-wallpapers-5.15.0.tar.xz) = 1a6dec67e3c2a0f549ffe242353fdf8905c80aa48b1dc7261affd087465468dd +SIZE (KDE/plasma/5.15.0/plasma-workspace-wallpapers-5.15.0.tar.xz) = 24355420 Index: head/x11-themes/plasma5-plasma-workspace-wallpapers/pkg-plist =================================================================== --- head/x11-themes/plasma5-plasma-workspace-wallpapers/pkg-plist (revision 492810) +++ head/x11-themes/plasma5-plasma-workspace-wallpapers/pkg-plist (revision 492811) @@ -1,182 +1,197 @@ share/wallpapers/Autumn/contents/images/1280x1024.jpg share/wallpapers/Autumn/contents/images/1280x800.jpg share/wallpapers/Autumn/contents/images/1440x900.jpg share/wallpapers/Autumn/contents/images/1600x1200.jpg share/wallpapers/Autumn/contents/images/1638x1024.jpg share/wallpapers/Autumn/contents/images/1680x1050.jpg share/wallpapers/Autumn/contents/images/1920x1080.jpg share/wallpapers/Autumn/contents/images/1920x1200.jpg share/wallpapers/Autumn/contents/images/2560x1440.jpg share/wallpapers/Autumn/contents/images/2560x1600.jpg share/wallpapers/Autumn/contents/images/640x480.jpg share/wallpapers/Autumn/contents/images/800x600.jpg share/wallpapers/Autumn/contents/screenshot.jpg share/wallpapers/Autumn/metadata.desktop share/wallpapers/BytheWater/contents/images/1280x1024.jpg share/wallpapers/BytheWater/contents/images/1280x800.jpg share/wallpapers/BytheWater/contents/images/1440x900.jpg share/wallpapers/BytheWater/contents/images/1600x1200.jpg share/wallpapers/BytheWater/contents/images/1638x1024.jpg share/wallpapers/BytheWater/contents/images/1680x1050.jpg share/wallpapers/BytheWater/contents/images/1920x1080.jpg share/wallpapers/BytheWater/contents/images/1920x1200.jpg share/wallpapers/BytheWater/contents/images/2560x1440.jpg share/wallpapers/BytheWater/contents/images/2560x1600.jpg share/wallpapers/BytheWater/contents/images/640x480.jpg share/wallpapers/BytheWater/contents/images/800x600.jpg share/wallpapers/BytheWater/contents/screenshot.jpg share/wallpapers/BytheWater/metadata.desktop +share/wallpapers/Canopee/contents/images/3840x2160.png +share/wallpapers/Canopee/contents/screenshot.png +share/wallpapers/Canopee/metadata.desktop +share/wallpapers/Cascade/contents/images/3840x2160.png +share/wallpapers/Cascade/contents/screenshot.png +share/wallpapers/Cascade/metadata.desktop share/wallpapers/ColdRipple/contents/images/1280x1024.jpg share/wallpapers/ColdRipple/contents/images/1280x800.jpg share/wallpapers/ColdRipple/contents/images/1440x900.jpg share/wallpapers/ColdRipple/contents/images/1600x1200.jpg share/wallpapers/ColdRipple/contents/images/1638x1024.jpg share/wallpapers/ColdRipple/contents/images/1680x1050.jpg share/wallpapers/ColdRipple/contents/images/1920x1080.jpg share/wallpapers/ColdRipple/contents/images/1920x1200.jpg share/wallpapers/ColdRipple/contents/images/2560x1440.jpg share/wallpapers/ColdRipple/contents/images/2560x1600.jpg share/wallpapers/ColdRipple/contents/images/640x480.jpg share/wallpapers/ColdRipple/contents/images/800x600.jpg share/wallpapers/ColdRipple/contents/screenshot.jpg share/wallpapers/ColdRipple/metadata.desktop -share/wallpapers/ColorfulCups/contents/images/1280x1024.jpg -share/wallpapers/ColorfulCups/contents/images/1280x800.jpg -share/wallpapers/ColorfulCups/contents/images/1440x900.jpg -share/wallpapers/ColorfulCups/contents/images/1600x1200.jpg -share/wallpapers/ColorfulCups/contents/images/1638x1024.jpg -share/wallpapers/ColorfulCups/contents/images/1680x1050.jpg -share/wallpapers/ColorfulCups/contents/images/1920x1080.jpg -share/wallpapers/ColorfulCups/contents/images/1920x1200.jpg -share/wallpapers/ColorfulCups/contents/images/2560x1440.jpg share/wallpapers/ColorfulCups/contents/images/2560x1600.jpg -share/wallpapers/ColorfulCups/contents/images/640x480.jpg -share/wallpapers/ColorfulCups/contents/images/800x600.jpg share/wallpapers/ColorfulCups/contents/screenshot.jpg share/wallpapers/ColorfulCups/metadata.desktop share/wallpapers/DarkestHour/contents/images/1280x1024.jpg share/wallpapers/DarkestHour/contents/images/1280x800.jpg share/wallpapers/DarkestHour/contents/images/1440x900.jpg share/wallpapers/DarkestHour/contents/images/1600x1200.jpg share/wallpapers/DarkestHour/contents/images/1638x1024.jpg share/wallpapers/DarkestHour/contents/images/1680x1050.jpg share/wallpapers/DarkestHour/contents/images/1920x1080.jpg share/wallpapers/DarkestHour/contents/images/1920x1200.jpg share/wallpapers/DarkestHour/contents/images/2560x1440.jpg share/wallpapers/DarkestHour/contents/images/2560x1600.jpg share/wallpapers/DarkestHour/contents/images/640x480.jpg share/wallpapers/DarkestHour/contents/images/800x600.jpg share/wallpapers/DarkestHour/contents/screenshot.jpg share/wallpapers/DarkestHour/metadata.desktop share/wallpapers/EveningGlow/contents/images/1280x1024.jpg share/wallpapers/EveningGlow/contents/images/1280x800.jpg share/wallpapers/EveningGlow/contents/images/1440x900.jpg share/wallpapers/EveningGlow/contents/images/1600x1200.jpg share/wallpapers/EveningGlow/contents/images/1638x1024.jpg share/wallpapers/EveningGlow/contents/images/1680x1050.jpg share/wallpapers/EveningGlow/contents/images/1920x1080.jpg share/wallpapers/EveningGlow/contents/images/1920x1200.jpg share/wallpapers/EveningGlow/contents/images/2560x1440.jpg share/wallpapers/EveningGlow/contents/images/2560x1600.jpg share/wallpapers/EveningGlow/contents/images/640x480.jpg share/wallpapers/EveningGlow/contents/images/800x600.jpg share/wallpapers/EveningGlow/contents/screenshot.jpg share/wallpapers/EveningGlow/metadata.desktop share/wallpapers/FallenLeaf/contents/images/1280x1024.jpg share/wallpapers/FallenLeaf/contents/images/1280x800.jpg share/wallpapers/FallenLeaf/contents/images/1440x900.jpg share/wallpapers/FallenLeaf/contents/images/1600x1200.jpg share/wallpapers/FallenLeaf/contents/images/1638x1024.jpg share/wallpapers/FallenLeaf/contents/images/1680x1050.jpg share/wallpapers/FallenLeaf/contents/images/1920x1080.jpg share/wallpapers/FallenLeaf/contents/images/1920x1200.jpg share/wallpapers/FallenLeaf/contents/images/2560x1440.jpg share/wallpapers/FallenLeaf/contents/images/2560x1600.jpg share/wallpapers/FallenLeaf/contents/images/640x480.jpg share/wallpapers/FallenLeaf/contents/images/800x600.jpg share/wallpapers/FallenLeaf/contents/screenshot.jpg share/wallpapers/FallenLeaf/metadata.desktop share/wallpapers/FlyingKonqui/contents/images/1280x1024.png share/wallpapers/FlyingKonqui/contents/images/1280x800.png share/wallpapers/FlyingKonqui/contents/images/1440x900.png share/wallpapers/FlyingKonqui/contents/images/1600x1200.png share/wallpapers/FlyingKonqui/contents/images/1638x1024.png share/wallpapers/FlyingKonqui/contents/images/1680x1050.png share/wallpapers/FlyingKonqui/contents/images/1920x1080.png share/wallpapers/FlyingKonqui/contents/images/1920x1200.png share/wallpapers/FlyingKonqui/contents/images/2560x1440.png share/wallpapers/FlyingKonqui/contents/images/2560x1600.png share/wallpapers/FlyingKonqui/contents/images/640x480.png share/wallpapers/FlyingKonqui/contents/images/800x600.png share/wallpapers/FlyingKonqui/contents/screenshot.png share/wallpapers/FlyingKonqui/metadata.desktop share/wallpapers/Grey/contents/images/1280x1024.jpg share/wallpapers/Grey/contents/images/1280x800.jpg share/wallpapers/Grey/contents/images/1440x900.jpg share/wallpapers/Grey/contents/images/1600x1200.jpg share/wallpapers/Grey/contents/images/1638x1024.jpg share/wallpapers/Grey/contents/images/1680x1050.jpg share/wallpapers/Grey/contents/images/1920x1080.jpg share/wallpapers/Grey/contents/images/1920x1200.jpg share/wallpapers/Grey/contents/images/2560x1440.jpg share/wallpapers/Grey/contents/images/2560x1600.jpg share/wallpapers/Grey/contents/images/640x480.jpg share/wallpapers/Grey/contents/images/800x600.jpg share/wallpapers/Grey/contents/screenshot.jpg share/wallpapers/Grey/metadata.desktop share/wallpapers/Kite/contents/images/1280x1024.jpg share/wallpapers/Kite/contents/images/1280x800.jpg share/wallpapers/Kite/contents/images/1440x900.jpg share/wallpapers/Kite/contents/images/1600x1200.jpg share/wallpapers/Kite/contents/images/1638x1024.jpg share/wallpapers/Kite/contents/images/1680x1050.jpg share/wallpapers/Kite/contents/images/1920x1080.jpg share/wallpapers/Kite/contents/images/1920x1200.jpg share/wallpapers/Kite/contents/images/2560x1440.jpg share/wallpapers/Kite/contents/images/2560x1600.jpg share/wallpapers/Kite/contents/images/640x480.jpg share/wallpapers/Kite/contents/images/800x600.jpg share/wallpapers/Kite/contents/screenshot.jpg share/wallpapers/Kite/metadata.desktop +share/wallpapers/Kokkini/contents/images/3840x2160.png +share/wallpapers/Kokkini/contents/screenshot.png +share/wallpapers/Kokkini/metadata.desktop share/wallpapers/OneStandsOut/contents/images/1280x1024.jpg share/wallpapers/OneStandsOut/contents/images/1280x800.jpg share/wallpapers/OneStandsOut/contents/images/1440x900.jpg share/wallpapers/OneStandsOut/contents/images/1600x1200.jpg share/wallpapers/OneStandsOut/contents/images/1638x1024.jpg share/wallpapers/OneStandsOut/contents/images/1680x1050.jpg share/wallpapers/OneStandsOut/contents/images/1920x1080.jpg share/wallpapers/OneStandsOut/contents/images/1920x1200.jpg share/wallpapers/OneStandsOut/contents/images/2560x1440.jpg share/wallpapers/OneStandsOut/contents/images/2560x1600.jpg share/wallpapers/OneStandsOut/contents/images/640x480.jpg share/wallpapers/OneStandsOut/contents/images/800x600.jpg share/wallpapers/OneStandsOut/contents/screenshot.jpg share/wallpapers/OneStandsOut/metadata.desktop -share/wallpapers/PastelHills/contents/images/1024x768.jpg +share/wallpapers/Opal/contents/images/3840x2160.png +share/wallpapers/Opal/contents/screenshot.png +share/wallpapers/Opal/metadata.desktop share/wallpapers/PastelHills/contents/images/1280x1024.jpg share/wallpapers/PastelHills/contents/images/1280x800.jpg share/wallpapers/PastelHills/contents/images/1440x900.jpg share/wallpapers/PastelHills/contents/images/1600x1200.jpg share/wallpapers/PastelHills/contents/images/1638x1024.jpg share/wallpapers/PastelHills/contents/images/1680x1050.jpg share/wallpapers/PastelHills/contents/images/1920x1080.jpg +share/wallpapers/PastelHills/contents/images/1920x1200.jpg share/wallpapers/PastelHills/contents/images/2560x1440.jpg -share/wallpapers/PastelHills/contents/images/2560x1600.jpg -share/wallpapers/PastelHills/contents/images/3200x1800.jpg share/wallpapers/PastelHills/contents/images/3200x2000.jpg +share/wallpapers/PastelHills/contents/images/640x480.jpg +share/wallpapers/PastelHills/contents/images/800x600.jpg share/wallpapers/PastelHills/contents/screenshot.jpg share/wallpapers/PastelHills/metadata.desktop share/wallpapers/Path/contents/images/1280x1024.jpg share/wallpapers/Path/contents/images/1280x800.jpg share/wallpapers/Path/contents/images/1440x900.jpg share/wallpapers/Path/contents/images/1600x1200.jpg share/wallpapers/Path/contents/images/1638x1024.jpg share/wallpapers/Path/contents/images/1680x1050.jpg share/wallpapers/Path/contents/images/1920x1080.jpg share/wallpapers/Path/contents/images/1920x1200.jpg share/wallpapers/Path/contents/images/2560x1440.jpg share/wallpapers/Path/contents/images/2560x1600.jpg share/wallpapers/Path/contents/images/640x480.jpg share/wallpapers/Path/contents/images/800x600.jpg share/wallpapers/Path/contents/screenshot.jpg share/wallpapers/Path/metadata.desktop +share/wallpapers/summer_1am/contents/images/1280x1024.jpg +share/wallpapers/summer_1am/contents/images/1280x800.jpg +share/wallpapers/summer_1am/contents/images/1440x900.jpg +share/wallpapers/summer_1am/contents/images/1600x1200.jpg +share/wallpapers/summer_1am/contents/images/1638x1024.jpg +share/wallpapers/summer_1am/contents/images/1680x1050.jpg +share/wallpapers/summer_1am/contents/images/1920x1080.jpg +share/wallpapers/summer_1am/contents/images/1920x1200.jpg +share/wallpapers/summer_1am/contents/images/2560x1440.jpg +share/wallpapers/summer_1am/contents/images/2560x1600.jpg +share/wallpapers/summer_1am/contents/images/640x480.jpg +share/wallpapers/summer_1am/contents/images/800x600.jpg +share/wallpapers/summer_1am/contents/screenshot.jpg +share/wallpapers/summer_1am/metadata.desktop Index: head/x11-toolkits/plasma5-kdeplasma-addons/Makefile =================================================================== --- head/x11-toolkits/plasma5-kdeplasma-addons/Makefile (revision 492810) +++ head/x11-toolkits/plasma5-kdeplasma-addons/Makefile (revision 492811) @@ -1,30 +1,31 @@ # $FreeBSD$ PORTNAME= kdeplasma-addons DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 2 CATEGORIES= x11-toolkits kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 addons to improve the Plasma experience USES= cmake compiler:c++11-lib cpe gettext \ kde:5 pkgconfig qt:5 tar:xz USE_KDE= activities archive attica auth bookmarks codecs completion \ config configwidgets coreaddons crash ecm emoticons guiaddons \ i18n iconthemes init itemmodels itemviews jobwidgets kcmutils \ kdelibs4support kio kross newstuff notifications package parts\ plasma-framework plasma-workspace runner service solid \ sonnet textwidgets unitconversion widgetsaddons windowsystem xmlgui USE_QT= core dbus declarative graphicaleffects gui location network \ - printsupport script webchannel webengine widgets x11extras xml \ + printsupport script webchannel widgets x11extras xml \ buildtools_build qmake_build +# The webengine in the offical ports is too old for now. Once updated to 5.12.x r +# readd webengine. OPTIONS_DEFINE= PURPOSE OPTIONS_DEFAULT= PURPOSE PURPOSE_DESC= Enable 'QuickShare' applet PURPOSE_USE= KDE=purpose PURPOSE_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_KF5Purpose .include Index: head/x11-toolkits/plasma5-kdeplasma-addons/distinfo =================================================================== --- head/x11-toolkits/plasma5-kdeplasma-addons/distinfo (revision 492810) +++ head/x11-toolkits/plasma5-kdeplasma-addons/distinfo (revision 492811) @@ -1,3 +1,3 @@ -TIMESTAMP = 1547014622 -SHA256 (KDE/plasma/5.14.5/kdeplasma-addons-5.14.5.tar.xz) = 15b8717c08b0b6f1e1fec6e0a15231f2e6d5d38e5c9f59a4c037b514ce8057a3 -SIZE (KDE/plasma/5.14.5/kdeplasma-addons-5.14.5.tar.xz) = 603588 +TIMESTAMP = 1549993975 +SHA256 (KDE/plasma/5.15.0/kdeplasma-addons-5.15.0.tar.xz) = 229e1135ec8c1e76b92eb40a6d20a7bedf50385f2a2542a472e6b37afd3f8634 +SIZE (KDE/plasma/5.15.0/kdeplasma-addons-5.15.0.tar.xz) = 602468 Index: head/x11-toolkits/plasma5-kdeplasma-addons/pkg-plist =================================================================== --- head/x11-toolkits/plasma5-kdeplasma-addons/pkg-plist (revision 492810) +++ head/x11-toolkits/plasma5-kdeplasma-addons/pkg-plist (revision 492811) @@ -1,1869 +1,1839 @@ etc/xdg/comic.knsrc include/plasma/potdprovider/plasma_potd_export.h include/plasma/potdprovider/potdprovider.h lib/cmake/PlasmaPotdProvider/PlasmaPotdProviderConfig.cmake lib/cmake/PlasmaPotdProvider/PlasmaPotdProviderConfigVersion.cmake lib/cmake/PlasmaPotdProvider/PlasmaPotdProviderTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/PlasmaPotdProvider/PlasmaPotdProviderTargets.cmake lib/libplasmacomicprovidercore.so.1 lib/libplasmacomicprovidercore.so.1.0.0 lib/libplasmapotdprovidercore.so lib/libplasmapotdprovidercore.so.1 lib/libplasmapotdprovidercore.so.1.0.0 %%QT_PLUGINDIR%%/kcm_krunner_charrunner.so %%QT_PLUGINDIR%%/kcm_krunner_dictionary.so %%QT_PLUGINDIR%%/kcm_krunner_spellcheck.so %%QT_PLUGINDIR%%/kpackage/packagestructure/plasma_packagestructure_comic.so %%QT_PLUGINDIR%%/krunner_charrunner.so %%QT_PLUGINDIR%%/krunner_converter.so %%QT_PLUGINDIR%%/krunner_datetime.so %%QT_PLUGINDIR%%/krunner_dictionary.so %%QT_PLUGINDIR%%/krunner_katesessions.so %%QT_PLUGINDIR%%/krunner_konsoleprofiles.so %%QT_PLUGINDIR%%/krunner_spellcheck.so %%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.grouping.so %%QT_PLUGINDIR%%/plasma/applets/org.kde.plasma.private.grouping.so %%QT_PLUGINDIR%%/plasma/applets/plasma_applet_comic.so %%QT_PLUGINDIR%%/plasma/applets/plasma_applet_weather.so %%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_comic.so %%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_konsoleprofiles.so %%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_potd.so %%QT_PLUGINDIR%%/plasma_comic_krossprovider.so %%QT_PLUGINDIR%%/plasmacalendarplugins/astronomicalevents.so %%QT_PLUGINDIR%%/plasmacalendarplugins/astronomicalevents/AstronomicalEventsConfig.qml %%QT_PLUGINDIR%%/potd/plasma_potd_apodprovider.so %%QT_PLUGINDIR%%/potd/plasma_potd_bingprovider.so %%QT_PLUGINDIR%%/potd/plasma_potd_epodprovider.so %%QT_PLUGINDIR%%/potd/plasma_potd_flickrprovider.so %%QT_PLUGINDIR%%/potd/plasma_potd_natgeoprovider.so %%QT_PLUGINDIR%%/potd/plasma_potd_noaaprovider.so %%QT_PLUGINDIR%%/potd/plasma_potd_wcpotdprovider.so %%QT_QMLDIR%%/org/kde/plasma/private/colorpicker/libcolorpickerplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/colorpicker/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/diskquota/libdiskquotaplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/diskquota/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/fifteenpuzzle/libfifteenpuzzleplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/fifteenpuzzle/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/mediaframe/libmediaframeplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/mediaframe/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/notes/libnotesplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/notes/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/purpose/libpurposeplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/purpose/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/quicklaunch/libquicklaunchplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/quicklaunch/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/showdesktop/libshowdesktopplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/showdesktop/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/timer/libtimerplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/timer/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/weather/libweatherplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/weather/qmldir %%QT_QMLDIR%%/org/kde/plasmacalendar/astronomicaleventsconfig/libplasmacalendarastronomicaleventsconfig.so %%QT_QMLDIR%%/org/kde/plasmacalendar/astronomicaleventsconfig/qmldir share/icons/hicolor/scalable/apps/fifteenpuzzle.svgz share/kdevappwizard/templates/plasmapotdprovider.tar.bz2 share/kservices5/kwin/kwin4_desktop_switcher_previews.desktop share/kservices5/kwin/kwin4_window_switcher_big_icons.desktop share/kservices5/kwin/kwin4_window_switcher_compact.desktop share/kservices5/kwin/kwin4_window_switcher_informative.desktop share/kservices5/kwin/kwin4_window_switcher_present_windows.desktop share/kservices5/kwin/kwin4_window_switcher_small_icons.desktop share/kservices5/kwin/kwin4_window_switcher_text.desktop share/kservices5/kwin/kwin4_window_switcher_thumbnails.desktop share/kservices5/plasma-applet-org.kde.plasma.activitypager.desktop share/kservices5/plasma-applet-org.kde.plasma.binaryclock.desktop share/kservices5/plasma-applet-org.kde.plasma.calculator.desktop share/kservices5/plasma-applet-org.kde.plasma.colorpicker.desktop share/kservices5/plasma-applet-org.kde.plasma.comic.desktop share/kservices5/plasma-applet-org.kde.plasma.diskquota.desktop share/kservices5/plasma-applet-org.kde.plasma.fifteenpuzzle.desktop share/kservices5/plasma-applet-org.kde.plasma.fuzzyclock.desktop share/kservices5/plasma-applet-org.kde.plasma.grouping.desktop share/kservices5/plasma-applet-org.kde.plasma.keyboardindicator.desktop share/kservices5/plasma-applet-org.kde.plasma.kickerdash.desktop share/kservices5/plasma-applet-org.kde.plasma.konsoleprofiles.desktop share/kservices5/plasma-applet-org.kde.plasma.mediaframe.desktop share/kservices5/plasma-applet-org.kde.plasma.minimizeall.desktop share/kservices5/plasma-applet-org.kde.plasma.notes.desktop share/kservices5/plasma-applet-org.kde.plasma.private.grouping.desktop share/kservices5/plasma-applet-org.kde.plasma.quicklaunch.desktop share/kservices5/plasma-applet-org.kde.plasma.quickshare.desktop share/kservices5/plasma-applet-org.kde.plasma.showdesktop.desktop share/kservices5/plasma-applet-org.kde.plasma.systemloadviewer.desktop share/kservices5/plasma-applet-org.kde.plasma.timer.desktop share/kservices5/plasma-applet-org.kde.plasma.userswitcher.desktop share/kservices5/plasma-applet-org.kde.plasma.weather.desktop share/kservices5/plasma-dataengine-comic.desktop share/kservices5/plasma-dataengine-konsoleprofiles.desktop share/kservices5/plasma-dataengine-potd.desktop share/kservices5/plasma-runner-character.desktop share/kservices5/plasma-runner-character_config.desktop share/kservices5/plasma-runner-converter.desktop share/kservices5/plasma-runner-datetime.desktop share/kservices5/plasma-runner-dictionary.desktop share/kservices5/plasma-runner-dictionary_config.desktop share/kservices5/plasma-runner-katesessions.desktop share/kservices5/plasma-runner-konsoleprofiles.desktop share/kservices5/plasma-runner-spellchecker.desktop share/kservices5/plasma-runner-spellchecker_config.desktop share/kservices5/plasma-wallpaper-org.kde.haenau.desktop share/kservices5/plasma-wallpaper-org.kde.hunyango.desktop share/kservices5/plasma-wallpaper-org.kde.potd.desktop share/kservicetypes5/plasma_comicprovider.desktop share/kwin/desktoptabbox/previews/contents/ui/main.qml share/kwin/desktoptabbox/previews/metadata.desktop share/kwin/tabbox/big_icons/contents/ui/IconTabBox.qml share/kwin/tabbox/big_icons/contents/ui/main.qml share/kwin/tabbox/big_icons/metadata.desktop share/kwin/tabbox/compact/contents/ui/main.qml share/kwin/tabbox/compact/metadata.desktop share/kwin/tabbox/informative/contents/ui/main.qml share/kwin/tabbox/informative/metadata.desktop share/kwin/tabbox/present_windows/contents/ui/main.qml share/kwin/tabbox/present_windows/metadata.desktop share/kwin/tabbox/small_icons/contents/ui/IconTabBox.qml share/kwin/tabbox/small_icons/contents/ui/main.qml share/kwin/tabbox/small_icons/metadata.desktop share/kwin/tabbox/text/contents/ui/main.qml share/kwin/tabbox/text/metadata.desktop share/kwin/tabbox/thumbnails/contents/ui/main.qml share/kwin/tabbox/thumbnails/metadata.desktop share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/ar/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/ar/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/ar/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/ar/LC_MESSAGES/plasma_runner_datetime.mo share/locale/ar/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/ar/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/ar/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/ar/LC_MESSAGES/plasma_runner_spellcheckrunner.mo -share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo -share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo -share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo -share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.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.minimizeall.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.quickshare.mo -share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo -share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo -share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo -share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo -share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo -share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo -share/locale/ast/LC_MESSAGES/plasma_calendar_astronomicalevents.mo -share/locale/ast/LC_MESSAGES/plasma_packagestructure_comic.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_mediawiki.mo -share/locale/ast/LC_MESSAGES/plasma_runner_spellcheckrunner.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.showdesktop.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/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/bs/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/bs/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/bs/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/bs/LC_MESSAGES/plasma_runner_datetime.mo share/locale/bs/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/bs/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/bs/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/bs/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/ca/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/ca/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/ca/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/ca/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/ca/LC_MESSAGES/plasma_runner_datetime.mo share/locale/ca/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/ca/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/ca/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/ca/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/ca/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/ca@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.minimizeall.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/ca@valencia/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/ca@valencia/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_datetime.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/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.minimizeall.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/cs/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/cs/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/cs/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/cs/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/cs/LC_MESSAGES/plasma_runner_datetime.mo share/locale/cs/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/cs/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/cs/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/cs/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/cs/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/csb/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/csb/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/csb/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/csb/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/da/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/da/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/da/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/da/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/da/LC_MESSAGES/plasma_runner_datetime.mo share/locale/da/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/da/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/da/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/da/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/da/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/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.minimizeall.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/de/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/de/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/de/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/de/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/de/LC_MESSAGES/plasma_runner_datetime.mo share/locale/de/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/de/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/de/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/de/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/de/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/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.minimizeall.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/el/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/el/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/el/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/el/LC_MESSAGES/plasma_runner_datetime.mo share/locale/el/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/el/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/el/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/el/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/en_GB/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/en_GB/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_datetime.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/eo/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/eo/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/eo/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/eo/LC_MESSAGES/plasma_runner_datetime.mo share/locale/eo/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/eo/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/eo/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/es/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/es/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/es/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/es/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/es/LC_MESSAGES/plasma_runner_datetime.mo share/locale/es/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/es/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/es/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/es/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/es/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/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.konsoleprofiles.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/et/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/et/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/et/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/et/LC_MESSAGES/plasma_runner_datetime.mo share/locale/et/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/et/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/et/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/et/LC_MESSAGES/plasma_runner_spellcheckrunner.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.minimizeall.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/eu/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/eu/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/eu/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/eu/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/eu/LC_MESSAGES/plasma_runner_datetime.mo share/locale/eu/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/eu/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/eu/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/eu/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/eu/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/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.minimizeall.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/fi/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/fi/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/fi/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/fi/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/fi/LC_MESSAGES/plasma_runner_datetime.mo share/locale/fi/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/fi/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/fi/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/fi/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/fi/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/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.minimizeall.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/fr/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/fr/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/fr/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/fr/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/fr/LC_MESSAGES/plasma_runner_datetime.mo share/locale/fr/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/fr/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/fr/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/fr/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/fr/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/ga/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/ga/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/ga/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/ga/LC_MESSAGES/plasma_runner_datetime.mo share/locale/ga/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/ga/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/ga/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/ga/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/gl/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/gl/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/gl/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/gl/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/gl/LC_MESSAGES/plasma_runner_datetime.mo share/locale/gl/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/gl/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/gl/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/gl/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/gl/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/he/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/he/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/he/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/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.showdesktop.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/hr/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/hr/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/hr/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/hr/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/hr/LC_MESSAGES/plasma_runner_datetime.mo share/locale/hr/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/hr/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/hr/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/hu/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/hu/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/hu/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/hu/LC_MESSAGES/plasma_runner_datetime.mo share/locale/hu/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/hu/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/hu/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/hu/LC_MESSAGES/plasma_runner_spellcheckrunner.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.konsoleprofiles.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/ia/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/ia/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/ia/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/ia/LC_MESSAGES/plasma_runner_datetime.mo share/locale/ia/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/ia/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/ia/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/ia/LC_MESSAGES/plasma_runner_spellcheckrunner.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.minimizeall.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/id/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/id/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/id/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/id/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/id/LC_MESSAGES/plasma_runner_datetime.mo share/locale/id/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/id/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/id/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/id/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/id/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/is/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/is/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/is/LC_MESSAGES/plasma_runner_datetime.mo share/locale/is/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/is/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/is/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/it/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/it/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/it/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/it/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/it/LC_MESSAGES/plasma_runner_datetime.mo share/locale/it/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/it/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/it/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/it/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/it/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/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.minimizeall.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/ja/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/ja/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/ja/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/ja/LC_MESSAGES/plasma_runner_datetime.mo share/locale/ja/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/ja/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/ja/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/ja/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/ja/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/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.showdesktop.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/kk/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/kk/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/kk/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/kk/LC_MESSAGES/plasma_runner_datetime.mo share/locale/kk/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/kk/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/kk/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/kk/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/km/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/km/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/km/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/km/LC_MESSAGES/plasma_runner_datetime.mo share/locale/km/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/km/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/km/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/km/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/ko/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/ko/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/ko/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/ko/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/ko/LC_MESSAGES/plasma_runner_datetime.mo share/locale/ko/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/ko/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/ko/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/ko/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/ko/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/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.showdesktop.mo share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/ku/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/ku/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/ku/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/ku/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/lt/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/lt/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/lt/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/lt/LC_MESSAGES/plasma_runner_datetime.mo share/locale/lt/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/lt/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/lt/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/lt/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo +share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/lv/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/lv/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/lv/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/lv/LC_MESSAGES/plasma_runner_datetime.mo share/locale/lv/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/lv/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/lv/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/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.showdesktop.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/mr/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/mr/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/mr/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/mr/LC_MESSAGES/plasma_runner_datetime.mo share/locale/mr/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/mr/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/mr/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/mr/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/ms/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/nb/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/nb/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/nb/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/nb/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/nb/LC_MESSAGES/plasma_runner_datetime.mo share/locale/nb/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/nb/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/nb/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/nb/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/nb/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/nds/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/nds/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/nds/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/nds/LC_MESSAGES/plasma_runner_datetime.mo share/locale/nds/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/nds/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/nds/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/nds/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/nl/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/nl/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/nl/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/nl/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/nl/LC_MESSAGES/plasma_runner_datetime.mo share/locale/nl/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/nl/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/nl/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/nl/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/nl/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/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.minimizeall.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/nn/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/nn/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/nn/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/nn/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/nn/LC_MESSAGES/plasma_runner_datetime.mo share/locale/nn/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/nn/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/nn/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/nn/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/nn/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/pa/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/pa/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/pa/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/pa/LC_MESSAGES/plasma_runner_datetime.mo share/locale/pa/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/pa/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/pa/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/pa/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/pl/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/pl/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/pl/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/pl/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/pl/LC_MESSAGES/plasma_runner_datetime.mo share/locale/pl/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/pl/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/pl/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/pl/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/pl/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/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.minimizeall.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/pt/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/pt/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/pt/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/pt/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/pt/LC_MESSAGES/plasma_runner_datetime.mo share/locale/pt/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/pt/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/pt/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/pt/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/pt/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/pt_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.minimizeall.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/pt_BR/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/pt_BR/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_datetime.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/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.fifteenpuzzle.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/ro/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/ro/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/ro/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/ro/LC_MESSAGES/plasma_runner_datetime.mo share/locale/ro/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/ro/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/ro/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/ro/LC_MESSAGES/plasma_runner_spellcheckrunner.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.minimizeall.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/ru/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/ru/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/ru/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/ru/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/ru/LC_MESSAGES/plasma_runner_datetime.mo share/locale/ru/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/ru/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/ru/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/ru/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/ru/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/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.minimizeall.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/sk/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/sk/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/sk/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/sk/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/sk/LC_MESSAGES/plasma_runner_datetime.mo share/locale/sk/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/sk/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/sk/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/sk/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/sk/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/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.konsoleprofiles.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/sl/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/sl/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/sl/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/sl/LC_MESSAGES/plasma_runner_datetime.mo share/locale/sl/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/sl/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/sl/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/sl/LC_MESSAGES/plasma_runner_spellcheckrunner.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.showdesktop.mo share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/sq/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/sq/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/sq/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/sq/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/sq/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/sq/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/sr/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/sr/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/sr/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/sr/LC_MESSAGES/plasma_runner_datetime.mo share/locale/sr/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/sr/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/sr/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/sr/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_datetime.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_datetime.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/sr@latin/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_datetime.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/sr@latin/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/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.minimizeall.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.quickshare.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.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_applet_dict.mo share/locale/sv/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/sv/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/sv/LC_MESSAGES/plasma_runner_CharacterRunner.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_mediawiki.mo share/locale/sv/LC_MESSAGES/plasma_runner_spellcheckrunner.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.showdesktop.mo share/locale/th/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/th/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/th/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/th/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/th/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/tr/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/tr/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/tr/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/tr/LC_MESSAGES/plasma_runner_datetime.mo share/locale/tr/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/tr/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/tr/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/tr/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/ug/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/ug/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/ug/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/ug/LC_MESSAGES/plasma_runner_datetime.mo share/locale/ug/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/ug/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/ug/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/ug/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/uk/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/uk/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/uk/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/uk/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/uk/LC_MESSAGES/plasma_runner_datetime.mo share/locale/uk/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/uk/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/uk/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/uk/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/uk/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/wa/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/wa/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/wa/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/wa/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.binaryclock.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.calculator.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.colorpicker.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.comic.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.diskquota.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.fifteenpuzzle.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.fuzzyclock.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.keyboardindicator.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.konsoleprofiles.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.mediaframe.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.minimizeall.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/zh_CN/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/zh_CN/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_datetime.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/locale/zh_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.minimizeall.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.notes.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.private.grouping.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.quicklaunch.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.quickshare.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.showdesktop.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.systemloadviewer.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.timer.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.userswitcher.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.weather.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma_applet_dict.mo share/locale/zh_TW/LC_MESSAGES/plasma_calendar_astronomicalevents.mo share/locale/zh_TW/LC_MESSAGES/plasma_packagestructure_comic.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_CharacterRunner.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_converterrunner.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_datetime.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_katesessions.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_konsoleprofiles.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_krunner_dictionary.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_mediawiki.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_spellcheckrunner.mo share/metainfo/org.kde.haenau.appdata.xml share/metainfo/org.kde.hunyango.appdata.xml share/metainfo/org.kde.plasma.activitypager.appdata.xml share/metainfo/org.kde.plasma.binaryclock.appdata.xml share/metainfo/org.kde.plasma.calculator.appdata.xml share/metainfo/org.kde.plasma.colorpicker.appdata.xml share/metainfo/org.kde.plasma.comic.appdata.xml share/metainfo/org.kde.plasma.diskquota.appdata.xml share/metainfo/org.kde.plasma.fifteenpuzzle.appdata.xml share/metainfo/org.kde.plasma.fuzzyclock.appdata.xml share/metainfo/org.kde.plasma.grouping.appdata.xml share/metainfo/org.kde.plasma.keyboardindicator.appdata.xml share/metainfo/org.kde.plasma.kickerdash.appdata.xml share/metainfo/org.kde.plasma.konsoleprofiles.appdata.xml share/metainfo/org.kde.plasma.mediaframe.appdata.xml share/metainfo/org.kde.plasma.minimizeall.appdata.xml share/metainfo/org.kde.plasma.notes.appdata.xml share/metainfo/org.kde.plasma.quicklaunch.appdata.xml share/metainfo/org.kde.plasma.quickshare.appdata.xml share/metainfo/org.kde.plasma.showdesktop.appdata.xml share/metainfo/org.kde.plasma.systemloadviewer.appdata.xml share/metainfo/org.kde.plasma.timer.appdata.xml share/metainfo/org.kde.plasma.userswitcher.appdata.xml share/metainfo/org.kde.plasma.weather.appdata.xml share/metainfo/org.kde.potd.appdata.xml share/plasma/desktoptheme/default/icons/quota.svg share/plasma/desktoptheme/default/weather/wind-arrows.svgz share/plasma/desktoptheme/default/widgets/timer.svgz share/plasma/plasmoids/org.kde.plasma.activitypager/metadata.desktop share/plasma/plasmoids/org.kde.plasma.activitypager/metadata.json share/plasma/plasmoids/org.kde.plasma.binaryclock/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.binaryclock/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.binaryclock/contents/ui/BinaryClock.qml share/plasma/plasmoids/org.kde.plasma.binaryclock/contents/ui/Dot.qml share/plasma/plasmoids/org.kde.plasma.binaryclock/contents/ui/DotColumn.qml share/plasma/plasmoids/org.kde.plasma.binaryclock/contents/ui/configGeneral.qml share/plasma/plasmoids/org.kde.plasma.binaryclock/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.binaryclock/metadata.desktop share/plasma/plasmoids/org.kde.plasma.binaryclock/metadata.json share/plasma/plasmoids/org.kde.plasma.calculator/contents/ui/calculator.qml share/plasma/plasmoids/org.kde.plasma.calculator/metadata.desktop share/plasma/plasmoids/org.kde.plasma.calculator/metadata.json share/plasma/plasmoids/org.kde.plasma.colorpicker/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.colorpicker/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.colorpicker/contents/ui/configGeneral.qml share/plasma/plasmoids/org.kde.plasma.colorpicker/contents/ui/logic.js share/plasma/plasmoids/org.kde.plasma.colorpicker/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.colorpicker/metadata.desktop share/plasma/plasmoids/org.kde.plasma.colorpicker/metadata.json share/plasma/plasmoids/org.kde.plasma.comic/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.comic/contents/ui/ButtonBar.qml share/plasma/plasmoids/org.kde.plasma.comic/contents/ui/ComicBottomInfo.qml share/plasma/plasmoids/org.kde.plasma.comic/contents/ui/ComicCentralView.qml share/plasma/plasmoids/org.kde.plasma.comic/contents/ui/FullViewWidget.qml share/plasma/plasmoids/org.kde.plasma.comic/contents/ui/ImageWidget.qml share/plasma/plasmoids/org.kde.plasma.comic/contents/ui/configAdvanced.qml share/plasma/plasmoids/org.kde.plasma.comic/contents/ui/configAppearance.qml share/plasma/plasmoids/org.kde.plasma.comic/contents/ui/configGeneral.qml share/plasma/plasmoids/org.kde.plasma.comic/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.comic/metadata.desktop share/plasma/plasmoids/org.kde.plasma.comic/metadata.json share/plasma/plasmoids/org.kde.plasma.diskquota/contents/ui/ListDelegateItem.qml share/plasma/plasmoids/org.kde.plasma.diskquota/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.diskquota/metadata.desktop share/plasma/plasmoids/org.kde.plasma.diskquota/metadata.json share/plasma/plasmoids/org.kde.plasma.fifteenpuzzle/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.fifteenpuzzle/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.fifteenpuzzle/contents/ui/FifteenPuzzle.qml share/plasma/plasmoids/org.kde.plasma.fifteenpuzzle/contents/ui/Piece.qml share/plasma/plasmoids/org.kde.plasma.fifteenpuzzle/contents/ui/blanksquare.svg share/plasma/plasmoids/org.kde.plasma.fifteenpuzzle/contents/ui/configAppearance.qml share/plasma/plasmoids/org.kde.plasma.fifteenpuzzle/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.fifteenpuzzle/metadata.desktop share/plasma/plasmoids/org.kde.plasma.fifteenpuzzle/metadata.json share/plasma/plasmoids/org.kde.plasma.fuzzyclock/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.fuzzyclock/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.fuzzyclock/contents/ui/FuzzyClock.qml share/plasma/plasmoids/org.kde.plasma.fuzzyclock/contents/ui/configAppearance.qml share/plasma/plasmoids/org.kde.plasma.fuzzyclock/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.fuzzyclock/metadata.desktop share/plasma/plasmoids/org.kde.plasma.fuzzyclock/metadata.json share/plasma/plasmoids/org.kde.plasma.grouping/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.grouping/metadata.desktop share/plasma/plasmoids/org.kde.plasma.grouping/metadata.json share/plasma/plasmoids/org.kde.plasma.keyboardindicator/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.keyboardindicator/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.keyboardindicator/contents/ui/configAppearance.qml share/plasma/plasmoids/org.kde.plasma.keyboardindicator/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.keyboardindicator/metadata.desktop share/plasma/plasmoids/org.kde.plasma.keyboardindicator/metadata.json share/plasma/plasmoids/org.kde.plasma.kickerdash/metadata.desktop share/plasma/plasmoids/org.kde.plasma.kickerdash/metadata.json share/plasma/plasmoids/org.kde.plasma.konsoleprofiles/contents/ui/konsoleprofiles.qml share/plasma/plasmoids/org.kde.plasma.konsoleprofiles/metadata.desktop share/plasma/plasmoids/org.kde.plasma.konsoleprofiles/metadata.json share/plasma/plasmoids/org.kde.plasma.mediaframe/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.mediaframe/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.mediaframe/contents/ui/ConfigGeneral.qml share/plasma/plasmoids/org.kde.plasma.mediaframe/contents/ui/ConfigPaths.qml share/plasma/plasmoids/org.kde.plasma.mediaframe/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.mediaframe/metadata.desktop share/plasma/plasmoids/org.kde.plasma.mediaframe/metadata.json share/plasma/plasmoids/org.kde.plasma.minimizeall/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.minimizeall/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.minimizeall/metadata.desktop share/plasma/plasmoids/org.kde.plasma.minimizeall/metadata.json share/plasma/plasmoids/org.kde.plasma.notes/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.notes/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.notes/contents/ui/configAppearance.qml share/plasma/plasmoids/org.kde.plasma.notes/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.notes/metadata.desktop share/plasma/plasmoids/org.kde.plasma.notes/metadata.json share/plasma/plasmoids/org.kde.plasma.private.grouping/contents/applet/CompactApplet.qml share/plasma/plasmoids/org.kde.plasma.private.grouping/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.private.grouping/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.private.grouping/contents/ui/items/AbstractItem.qml share/plasma/plasmoids/org.kde.plasma.private.grouping/contents/ui/items/PlasmoidItem.qml share/plasma/plasmoids/org.kde.plasma.private.grouping/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.private.grouping/metadata.desktop share/plasma/plasmoids/org.kde.plasma.private.grouping/metadata.json share/plasma/plasmoids/org.kde.plasma.quicklaunch/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.quicklaunch/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.quicklaunch/contents/ui/ConfigGeneral.qml share/plasma/plasmoids/org.kde.plasma.quicklaunch/contents/ui/IconItem.qml share/plasma/plasmoids/org.kde.plasma.quicklaunch/contents/ui/Popup.qml share/plasma/plasmoids/org.kde.plasma.quicklaunch/contents/ui/UrlModel.qml share/plasma/plasmoids/org.kde.plasma.quicklaunch/contents/ui/layout.js share/plasma/plasmoids/org.kde.plasma.quicklaunch/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.quicklaunch/metadata.desktop share/plasma/plasmoids/org.kde.plasma.quicklaunch/metadata.json share/plasma/plasmoids/org.kde.plasma.quickshare/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.quickshare/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.quickshare/contents/ui/PasteMenuItem.qml share/plasma/plasmoids/org.kde.plasma.quickshare/contents/ui/ShareDialog.qml share/plasma/plasmoids/org.kde.plasma.quickshare/contents/ui/ShowUrlDialog.qml share/plasma/plasmoids/org.kde.plasma.quickshare/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.quickshare/contents/ui/settingsGeneral.qml share/plasma/plasmoids/org.kde.plasma.quickshare/metadata.desktop share/plasma/plasmoids/org.kde.plasma.quickshare/metadata.json share/plasma/plasmoids/org.kde.plasma.showdesktop/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.showdesktop/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.showdesktop/metadata.desktop share/plasma/plasmoids/org.kde.plasma.showdesktop/metadata.json share/plasma/plasmoids/org.kde.plasma.systemloadviewer/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.systemloadviewer/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.systemloadviewer/contents/ui/BarMonitor.qml share/plasma/plasmoids/org.kde.plasma.systemloadviewer/contents/ui/CircularMonitor.qml share/plasma/plasmoids/org.kde.plasma.systemloadviewer/contents/ui/ColorSettings.qml share/plasma/plasmoids/org.kde.plasma.systemloadviewer/contents/ui/CompactBarMonitor.qml share/plasma/plasmoids/org.kde.plasma.systemloadviewer/contents/ui/ConditionallyLoadedMonitors.qml share/plasma/plasmoids/org.kde.plasma.systemloadviewer/contents/ui/ConditionallyRoundedRectangle.qml share/plasma/plasmoids/org.kde.plasma.systemloadviewer/contents/ui/GeneralSettings.qml share/plasma/plasmoids/org.kde.plasma.systemloadviewer/contents/ui/SystemLoadViewer.qml share/plasma/plasmoids/org.kde.plasma.systemloadviewer/metadata.desktop share/plasma/plasmoids/org.kde.plasma.systemloadviewer/metadata.json share/plasma/plasmoids/org.kde.plasma.timer/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.timer/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.timer/contents/ui/TimerDigit.qml share/plasma/plasmoids/org.kde.plasma.timer/contents/ui/TimerView.qml share/plasma/plasmoids/org.kde.plasma.timer/contents/ui/configAdvanced.qml share/plasma/plasmoids/org.kde.plasma.timer/contents/ui/configAppearance.qml share/plasma/plasmoids/org.kde.plasma.timer/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.timer/metadata.desktop share/plasma/plasmoids/org.kde.plasma.timer/metadata.json share/plasma/plasmoids/org.kde.plasma.userswitcher/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.userswitcher/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.userswitcher/contents/ui/ListDelegate.qml share/plasma/plasmoids/org.kde.plasma.userswitcher/contents/ui/configGeneral.qml share/plasma/plasmoids/org.kde.plasma.userswitcher/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.userswitcher/metadata.desktop share/plasma/plasmoids/org.kde.plasma.userswitcher/metadata.json share/plasma/plasmoids/org.kde.plasma.weather/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.weather/contents/ui/CompactRepresentation.qml share/plasma/plasmoids/org.kde.plasma.weather/contents/ui/DetailsView.qml share/plasma/plasmoids/org.kde.plasma.weather/contents/ui/ForecastView.qml share/plasma/plasmoids/org.kde.plasma.weather/contents/ui/FullRepresentation.qml share/plasma/plasmoids/org.kde.plasma.weather/contents/ui/IconAndTextItem.qml share/plasma/plasmoids/org.kde.plasma.weather/contents/ui/NoticesView.qml share/plasma/plasmoids/org.kde.plasma.weather/contents/ui/SwitchPanel.qml share/plasma/plasmoids/org.kde.plasma.weather/contents/ui/TopPanel.qml share/plasma/plasmoids/org.kde.plasma.weather/contents/ui/config/ConfigAppearance.qml share/plasma/plasmoids/org.kde.plasma.weather/contents/ui/config/ConfigUnits.qml share/plasma/plasmoids/org.kde.plasma.weather/contents/ui/config/ConfigWeatherStation.qml share/plasma/plasmoids/org.kde.plasma.weather/contents/ui/config/WeatherStationPicker.qml share/plasma/plasmoids/org.kde.plasma.weather/contents/ui/config/WeatherStationPickerDialog.qml share/plasma/plasmoids/org.kde.plasma.weather/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.weather/metadata.desktop share/plasma/plasmoids/org.kde.plasma.weather/metadata.json share/plasma/services/org.kde.plasma.dataengine.konsoleprofiles.operations share/plasma/wallpapers/org.kde.haenau/contents/ui/BackgroundElement.qml share/plasma/wallpapers/org.kde.haenau/contents/ui/BottomBackgroundElement.qml share/plasma/wallpapers/org.kde.haenau/contents/ui/RightBackgroundElement.qml share/plasma/wallpapers/org.kde.haenau/contents/ui/main.qml share/plasma/wallpapers/org.kde.haenau/contents/ui/wallpaper.svgz share/plasma/wallpapers/org.kde.haenau/metadata.desktop share/plasma/wallpapers/org.kde.haenau/metadata.json share/plasma/wallpapers/org.kde.hunyango/contents/ui/main.qml share/plasma/wallpapers/org.kde.hunyango/contents/ui/wallpaper.svgz share/plasma/wallpapers/org.kde.hunyango/metadata.desktop share/plasma/wallpapers/org.kde.hunyango/metadata.json share/plasma/wallpapers/org.kde.potd/contents/config/main.xml share/plasma/wallpapers/org.kde.potd/contents/ui/config.qml share/plasma/wallpapers/org.kde.potd/contents/ui/main.qml share/plasma/wallpapers/org.kde.potd/metadata.desktop share/plasma/wallpapers/org.kde.potd/metadata.json Index: head/x11-wm/plasma5-kdecoration/Makefile =================================================================== --- head/x11-wm/plasma5-kdecoration/Makefile (revision 492810) +++ head/x11-wm/plasma5-kdecoration/Makefile (revision 492811) @@ -1,19 +1,18 @@ # $FreeBSD$ PORTNAME= kdecoration DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= x11-wm kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 library to create window decorations LICENSE= LGPL21 LICENSE_FILE= ${WRKSRC}/COPYING.LIB USES= cmake compiler:c++11-lib cpe kde:5 qt:5 tar:xz USE_LDCONFIG= yes USE_KDE= ecm i18n USE_QT= core gui testlib buildtools_build qmake_build .include Index: head/x11-wm/plasma5-kdecoration/distinfo =================================================================== --- head/x11-wm/plasma5-kdecoration/distinfo (revision 492810) +++ head/x11-wm/plasma5-kdecoration/distinfo (revision 492811) @@ -1,3 +1,3 @@ -TIMESTAMP = 1547014622 -SHA256 (KDE/plasma/5.14.5/kdecoration-5.14.5.tar.xz) = 361eac4fa240208628ca689a8de614eb9dc79c41283cad24e814a98b41a4b784 -SIZE (KDE/plasma/5.14.5/kdecoration-5.14.5.tar.xz) = 42236 +TIMESTAMP = 1549993976 +SHA256 (KDE/plasma/5.15.0/kdecoration-5.15.0.tar.xz) = b8b43860f378e3f182ea77e014bc5282c71eaff8b26e67a58807839fb3e19edd +SIZE (KDE/plasma/5.15.0/kdecoration-5.15.0.tar.xz) = 42248 Index: head/x11-wm/plasma5-kdecoration/pkg-plist =================================================================== --- head/x11-wm/plasma5-kdecoration/pkg-plist (revision 492810) +++ head/x11-wm/plasma5-kdecoration/pkg-plist (revision 492811) @@ -1,59 +1,58 @@ include/KDecoration2/KDecoration2/DecoratedClient include/KDecoration2/KDecoration2/Decoration include/KDecoration2/KDecoration2/DecorationButton include/KDecoration2/KDecoration2/DecorationButtonGroup include/KDecoration2/KDecoration2/DecorationSettings include/KDecoration2/KDecoration2/DecorationShadow include/KDecoration2/KDecoration2/Private/DecoratedClientPrivate include/KDecoration2/KDecoration2/Private/DecorationBridge include/KDecoration2/KDecoration2/Private/DecorationSettingsPrivate include/KDecoration2/kdecoration2/decoratedclient.h include/KDecoration2/kdecoration2/decoration.h include/KDecoration2/kdecoration2/decorationbutton.h include/KDecoration2/kdecoration2/decorationbuttongroup.h include/KDecoration2/kdecoration2/decorationdefines.h include/KDecoration2/kdecoration2/decorationsettings.h include/KDecoration2/kdecoration2/decorationshadow.h include/KDecoration2/kdecoration2/kdecoration2_export.h include/KDecoration2/kdecoration2/private/decoratedclientprivate.h include/KDecoration2/kdecoration2/private/decorationbridge.h include/KDecoration2/kdecoration2/private/decorationsettingsprivate.h include/KDecoration2/kdecoration2/private/kdecoration2_private_export.h include/KF5/kdecoration2_version.h lib/cmake/KDecoration2/KDecoration2Config.cmake lib/cmake/KDecoration2/KDecoration2ConfigVersion.cmake lib/cmake/KDecoration2/KDecoration2Targets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KDecoration2/KDecoration2Targets.cmake lib/libkdecorations2.so lib/libkdecorations2.so.5 lib/libkdecorations2.so.%%KDE_PLASMA_VERSION%% lib/libkdecorations2private.so lib/libkdecorations2private.so.%%KDE_PLASMA_VERSION%% lib/libkdecorations2private.so.6 -share/locale/ast/LC_MESSAGES/kdecoration.mo share/locale/ca/LC_MESSAGES/kdecoration.mo share/locale/ca@valencia/LC_MESSAGES/kdecoration.mo share/locale/cs/LC_MESSAGES/kdecoration.mo share/locale/da/LC_MESSAGES/kdecoration.mo share/locale/de/LC_MESSAGES/kdecoration.mo share/locale/en_GB/LC_MESSAGES/kdecoration.mo share/locale/es/LC_MESSAGES/kdecoration.mo share/locale/eu/LC_MESSAGES/kdecoration.mo share/locale/fi/LC_MESSAGES/kdecoration.mo share/locale/fr/LC_MESSAGES/kdecoration.mo share/locale/gl/LC_MESSAGES/kdecoration.mo share/locale/id/LC_MESSAGES/kdecoration.mo share/locale/it/LC_MESSAGES/kdecoration.mo share/locale/ja/LC_MESSAGES/kdecoration.mo share/locale/ko/LC_MESSAGES/kdecoration.mo share/locale/nl/LC_MESSAGES/kdecoration.mo share/locale/nn/LC_MESSAGES/kdecoration.mo share/locale/pl/LC_MESSAGES/kdecoration.mo share/locale/pt/LC_MESSAGES/kdecoration.mo share/locale/pt_BR/LC_MESSAGES/kdecoration.mo share/locale/ru/LC_MESSAGES/kdecoration.mo share/locale/sk/LC_MESSAGES/kdecoration.mo share/locale/sv/LC_MESSAGES/kdecoration.mo share/locale/uk/LC_MESSAGES/kdecoration.mo share/locale/zh_CN/LC_MESSAGES/kdecoration.mo share/locale/zh_TW/LC_MESSAGES/kdecoration.mo Index: head/x11-wm/plasma5-kwin/Makefile =================================================================== --- head/x11-wm/plasma5-kwin/Makefile (revision 492810) +++ head/x11-wm/plasma5-kwin/Makefile (revision 492811) @@ -1,51 +1,50 @@ # $FreeBSD$ PORTNAME= kwin DISTVERSION= ${KDE_PLASMA_VERSION} -PORTREVISION= 1 CATEGORIES= x11-wm kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 window manager LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libXcursor.so:x11/libXcursor \ libdrm.so:graphics/libdrm \ libepoxy.so:graphics/libepoxy \ libfontconfig.so:x11-fonts/fontconfig \ libfreetype.so:print/freetype2 \ libinput.so:x11/libinput \ libudev.so:devel/libudev-devd \ libwayland-cursor.so:graphics/wayland \ libxcb-cursor.so:x11/xcb-util-cursor \ libxcb-icccm.so:x11/xcb-util-wm \ libxcb-image.so:x11/xcb-util-image \ libxcb-keysyms.so:x11/xcb-util-keysyms \ libxkbcommon.so:x11/libxkbcommon BUILD_DEPENDS= ${LOCALBASE}/include/linux/input.h:devel/evdev-proto \ Xwayland:x11-servers/xwayland RUN_DEPENDS= Xwayland:x11-servers/xwayland USES= cmake compiler:c++11-lib cpe gettext \ kde:5 pkgconfig qt:5 tar:xz USE_GL= egl USE_KDE= activities activities attica auth breeze codecs \ completion config configwidgets coreaddons crash decoration \ doctools doctools globalaccel i18n iconthemes idletime init \ jobwidgets kcmutils kdeclarative kio package kscreenlocker \ newstuff notifications plasma-framework service sonnet \ textwidgets wayland widgetsaddons windowsystem xmlgui USE_LDCONFIG= yes USE_QT= concurrent core dbus declarative gui multimedia network script \ sensors testlib uiplugin uitools widgets x11extras xml \ buildtools_build qmake_build \ quickcontrols2_run virtualkeyboard_run USE_XORG= ice sm x11 xcb xext xi post-patch: ${REINPLACE_CMD} '/sysmacros.h/d' \ ${PATCH_WRKSRC}/logind.cpp .include Index: head/x11-wm/plasma5-kwin/distinfo =================================================================== --- head/x11-wm/plasma5-kwin/distinfo (revision 492810) +++ head/x11-wm/plasma5-kwin/distinfo (revision 492811) @@ -1,3 +1,3 @@ -TIMESTAMP = 1547014624 -SHA256 (KDE/plasma/5.14.5/kwin-5.14.5.tar.xz) = 447e7d269627f4e7354b206248a3ef393463f4dca688f95b5cb9f9c1bfa5cd45 -SIZE (KDE/plasma/5.14.5/kwin-5.14.5.tar.xz) = 6563208 +TIMESTAMP = 1549993988 +SHA256 (KDE/plasma/5.15.0/kwin-5.15.0.tar.xz) = 3c313eac0d8daa13b6949325edbc447167cb00597d4b0b079deca3ef6d6f1738 +SIZE (KDE/plasma/5.15.0/kwin-5.15.0.tar.xz) = 6234020 Index: head/x11-wm/plasma5-kwin/pkg-plist =================================================================== --- head/x11-wm/plasma5-kwin/pkg-plist (revision 492810) +++ head/x11-wm/plasma5-kwin/pkg-plist (revision 492811) @@ -1,1372 +1,1410 @@ bin/kwin_wayland bin/kwin_x11 etc/xdg/aurorae.knsrc etc/xdg/kwineffect.knsrc etc/xdg/kwinscripts.knsrc etc/xdg/kwinswitcher.knsrc etc/xdg/org_kde_kwin.categories include/kwin_export.h include/kwinanimationeffect.h include/kwinconfig.h include/kwineffects.h include/kwineffects_export.h include/kwinglobals.h include/kwinglplatform.h include/kwingltexture.h include/kwinglutils.h include/kwinglutils_export.h include/kwinglutils_funcs.h include/kwinxrenderutils.h include/kwinxrenderutils_export.h lib/cmake/KWinDBusInterface/KWinDBusInterfaceConfig.cmake lib/kconf_update_bin/kwin5_update_default_rules lib/libexec/kwin_killer_helper lib/libexec/kwin_rules_dialog lib/libexec/org_kde_kwin_xclipboard_syncer +lib/libkcmkwincommon.so.5 +lib/libkcmkwincommon.so.%%KDE_PLASMA_VERSION%% lib/libkdeinit5_kwin_rules_dialog.so lib/libkdeinit5_kwin_x11.so lib/libkwin.so.5 lib/libkwin.so.%%KDE_PLASMA_VERSION%% lib/libkwin4_effect_builtins.so lib/libkwin4_effect_builtins.so.1 lib/libkwin4_effect_builtins.so.1.0.0 lib/libkwineffects.so -lib/libkwineffects.so.11 +lib/libkwineffects.so.12 lib/libkwineffects.so.%%KDE_PLASMA_VERSION%% lib/libkwinglutils.so -lib/libkwinglutils.so.11 +lib/libkwinglutils.so.12 lib/libkwinglutils.so.%%KDE_PLASMA_VERSION%% lib/libkwinxrenderutils.so -lib/libkwinxrenderutils.so.11 +lib/libkwinxrenderutils.so.12 lib/libkwinxrenderutils.so.%%KDE_PLASMA_VERSION%% %%QT_PLUGINDIR%%/kcm_kwin_scripts.so %%QT_PLUGINDIR%%/kcm_kwindecoration.so -%%QT_PLUGINDIR%%/kcm_kwindesktop.so %%QT_PLUGINDIR%%/kcm_kwinoptions.so %%QT_PLUGINDIR%%/kcm_kwinrules.so %%QT_PLUGINDIR%%/kcm_kwinscreenedges.so %%QT_PLUGINDIR%%/kcm_kwintabbox.so %%QT_PLUGINDIR%%/kcm_kwintouchscreen.so +%%QT_PLUGINDIR%%/kcms/kcm_kwin_virtualdesktops.so %%QT_PLUGINDIR%%/kf5/org.kde.kidletime.platforms/KF5IdleTimeKWinWaylandPrivatePlugin.so %%QT_PLUGINDIR%%/kpackage/packagestructure/kwin_packagestructure_aurorae.so %%QT_PLUGINDIR%%/kpackage/packagestructure/kwin_packagestructure_decoration.so +%%QT_PLUGINDIR%%/kpackage/packagestructure/kwin_packagestructure_effect.so %%QT_PLUGINDIR%%/kpackage/packagestructure/kwin_packagestructure_scripts.so %%QT_PLUGINDIR%%/kpackage/packagestructure/kwin_packagestructure_windowswitcher.so %%QT_PLUGINDIR%%/kwin/effects/configs/kcm_kwin4_genericscripted.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_blur_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_coverswitch_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_cube_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_cubeslide_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_desktopgrid_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_diminactive_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_flipswitch_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_glide_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_invert_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_lookingglass_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_magiclamp_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_magnifier_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_mouseclick_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_mousemark_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_presentwindows_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_resize_config.so -%%QT_PLUGINDIR%%/kwin/effects/configs/kwin_scale_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_showfps_config.so +%%QT_PLUGINDIR%%/kwin/effects/configs/kwin_showpaint_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_slide_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_thumbnailaside_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_trackmouse_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_windowgeometry_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_wobblywindows_config.so %%QT_PLUGINDIR%%/kwin/effects/configs/kwin_zoom_config.so %%QT_PLUGINDIR%%/kwincompositing.so %%QT_PLUGINDIR%%/org.kde.kdecoration2/kwin5_aurorae.so %%QT_PLUGINDIR%%/org.kde.kglobalaccel5.platforms/KF5GlobalAccelPrivateKWin.so %%QT_PLUGINDIR%%/org.kde.kwin.platforms/KWinX11Platform.so %%QT_PLUGINDIR%%/org.kde.kwin.scenes/KWinSceneOpenGL.so %%QT_PLUGINDIR%%/org.kde.kwin.scenes/KWinSceneQPainter.so %%QT_PLUGINDIR%%/org.kde.kwin.scenes/KWinSceneXRender.so %%QT_PLUGINDIR%%/org.kde.kwin.waylandbackends/KWinWaylandDrmBackend.so %%QT_PLUGINDIR%%/org.kde.kwin.waylandbackends/KWinWaylandVirtualBackend.so %%QT_PLUGINDIR%%/org.kde.kwin.waylandbackends/KWinWaylandWaylandBackend.so %%QT_PLUGINDIR%%/org.kde.kwin.waylandbackends/KWinWaylandX11Backend.so %%QT_PLUGINDIR%%/platforms/KWinQpaPlugin.so %%QT_QMLDIR%%/org/kde/kwin/decoration/AppMenuButton.qml %%QT_QMLDIR%%/org/kde/kwin/decoration/ButtonGroup.qml %%QT_QMLDIR%%/org/kde/kwin/decoration/Decoration.qml %%QT_QMLDIR%%/org/kde/kwin/decoration/DecorationButton.qml %%QT_QMLDIR%%/org/kde/kwin/decoration/MenuButton.qml %%QT_QMLDIR%%/org/kde/kwin/decoration/libdecorationplugin.so %%QT_QMLDIR%%/org/kde/kwin/decoration/qmldir %%QT_QMLDIR%%/org/kde/kwin/decorations/plastik/libplastikplugin.so %%QT_QMLDIR%%/org/kde/kwin/decorations/plastik/qmldir %%QT_QMLDIR%%/org/kde/kwin/private/kdecoration/libkdecorationprivatedeclarative.so %%QT_QMLDIR%%/org/kde/kwin/private/kdecoration/qmldir share/config.kcfg/kwin.kcfg share/config.kcfg/kwin_colorcorrect.kcfg +share/dbus-1/interfaces/org.kde.KWin.VirtualDesktopManager.xml share/dbus-1/interfaces/org.kde.KWin.xml share/dbus-1/interfaces/org.kde.kwin.ColorCorrect.xml share/dbus-1/interfaces/org.kde.kwin.Compositing.xml share/dbus-1/interfaces/org.kde.kwin.Effects.xml share/doc/HTML/ca/kcontrol/desktop/index.cache.bz2 share/doc/HTML/ca/kcontrol/desktop/index.docbook share/doc/HTML/ca/kcontrol/kwindecoration/button.png share/doc/HTML/ca/kcontrol/kwindecoration/configure.png share/doc/HTML/ca/kcontrol/kwindecoration/decoration.png share/doc/HTML/ca/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/ca/kcontrol/kwindecoration/index.docbook share/doc/HTML/ca/kcontrol/kwindecoration/main.png share/doc/HTML/ca/kcontrol/kwineffects/configure-effects.png share/doc/HTML/ca/kcontrol/kwineffects/configure-filter.png share/doc/HTML/ca/kcontrol/kwineffects/dialog-information.png share/doc/HTML/ca/kcontrol/kwineffects/index.cache.bz2 share/doc/HTML/ca/kcontrol/kwineffects/index.docbook share/doc/HTML/ca/kcontrol/kwineffects/video.png share/doc/HTML/ca/kcontrol/kwinscreenedges/index.cache.bz2 share/doc/HTML/ca/kcontrol/kwinscreenedges/index.docbook share/doc/HTML/ca/kcontrol/kwintabbox/index.cache.bz2 share/doc/HTML/ca/kcontrol/kwintabbox/index.docbook share/doc/HTML/ca/kcontrol/windowbehaviour/index.cache.bz2 share/doc/HTML/ca/kcontrol/windowbehaviour/index.docbook share/doc/HTML/ca/kcontrol/windowspecific/Face-smile.png share/doc/HTML/ca/kcontrol/windowspecific/index.cache.bz2 share/doc/HTML/ca/kcontrol/windowspecific/index.docbook share/doc/HTML/ca/kcontrol/windowspecific/pager-4-desktops.png share/doc/HTML/de/kcontrol/desktop/index.cache.bz2 share/doc/HTML/de/kcontrol/desktop/index.docbook share/doc/HTML/de/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/de/kcontrol/kwindecoration/index.docbook share/doc/HTML/de/kcontrol/kwineffects/index.cache.bz2 share/doc/HTML/de/kcontrol/kwineffects/index.docbook share/doc/HTML/de/kcontrol/kwinscreenedges/index.cache.bz2 share/doc/HTML/de/kcontrol/kwinscreenedges/index.docbook share/doc/HTML/de/kcontrol/kwintabbox/index.cache.bz2 share/doc/HTML/de/kcontrol/kwintabbox/index.docbook share/doc/HTML/de/kcontrol/windowbehaviour/index.cache.bz2 share/doc/HTML/de/kcontrol/windowbehaviour/index.docbook share/doc/HTML/de/kcontrol/windowspecific/index.cache.bz2 share/doc/HTML/de/kcontrol/windowspecific/index.docbook share/doc/HTML/en/kcontrol/desktop/index.cache.bz2 share/doc/HTML/en/kcontrol/desktop/index.docbook share/doc/HTML/en/kcontrol/kwindecoration/button.png share/doc/HTML/en/kcontrol/kwindecoration/configure.png share/doc/HTML/en/kcontrol/kwindecoration/decoration.png share/doc/HTML/en/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/en/kcontrol/kwindecoration/index.docbook share/doc/HTML/en/kcontrol/kwindecoration/main.png share/doc/HTML/en/kcontrol/kwineffects/configure-effects.png share/doc/HTML/en/kcontrol/kwineffects/configure-filter.png share/doc/HTML/en/kcontrol/kwineffects/dialog-information.png share/doc/HTML/en/kcontrol/kwineffects/index.cache.bz2 share/doc/HTML/en/kcontrol/kwineffects/index.docbook share/doc/HTML/en/kcontrol/kwineffects/video.png share/doc/HTML/en/kcontrol/kwinscreenedges/index.cache.bz2 share/doc/HTML/en/kcontrol/kwinscreenedges/index.docbook share/doc/HTML/en/kcontrol/kwintabbox/index.cache.bz2 share/doc/HTML/en/kcontrol/kwintabbox/index.docbook share/doc/HTML/en/kcontrol/windowbehaviour/index.cache.bz2 share/doc/HTML/en/kcontrol/windowbehaviour/index.docbook share/doc/HTML/en/kcontrol/windowspecific/Face-smile.png share/doc/HTML/en/kcontrol/windowspecific/akgregator-info.png share/doc/HTML/en/kcontrol/windowspecific/akregator-attributes.png share/doc/HTML/en/kcontrol/windowspecific/akregator-fav.png share/doc/HTML/en/kcontrol/windowspecific/config-win-behavior.png share/doc/HTML/en/kcontrol/windowspecific/emacs-attribute.png share/doc/HTML/en/kcontrol/windowspecific/emacs-info.png share/doc/HTML/en/kcontrol/windowspecific/focus-stealing-pop2top-attribute.png share/doc/HTML/en/kcontrol/windowspecific/index.cache.bz2 share/doc/HTML/en/kcontrol/windowspecific/index.docbook share/doc/HTML/en/kcontrol/windowspecific/knotes-attribute.png share/doc/HTML/en/kcontrol/windowspecific/knotes-info.png share/doc/HTML/en/kcontrol/windowspecific/kopete-attribute-2.png share/doc/HTML/en/kcontrol/windowspecific/kopete-chat-attribute.png share/doc/HTML/en/kcontrol/windowspecific/kopete-chat-info.png share/doc/HTML/en/kcontrol/windowspecific/kopete-info.png share/doc/HTML/en/kcontrol/windowspecific/kwin-detect-window.png share/doc/HTML/en/kcontrol/windowspecific/kwin-kopete-rules.png share/doc/HTML/en/kcontrol/windowspecific/kwin-rule-editor.png share/doc/HTML/en/kcontrol/windowspecific/kwin-rules-main-n-akregator.png share/doc/HTML/en/kcontrol/windowspecific/kwin-rules-main.png share/doc/HTML/en/kcontrol/windowspecific/kwin-rules-ordering.png share/doc/HTML/en/kcontrol/windowspecific/kwin-window-attributes.png share/doc/HTML/en/kcontrol/windowspecific/kwin-window-matching.png share/doc/HTML/en/kcontrol/windowspecific/pager-4-desktops.png share/doc/HTML/en/kcontrol/windowspecific/tbird-compose-attribute.png share/doc/HTML/en/kcontrol/windowspecific/tbird-compose-info.png share/doc/HTML/en/kcontrol/windowspecific/tbird-main-attribute.png share/doc/HTML/en/kcontrol/windowspecific/tbird-main-info.png share/doc/HTML/en/kcontrol/windowspecific/tbird-reminder-attribute-2.png share/doc/HTML/en/kcontrol/windowspecific/tbird-reminder-info.png share/doc/HTML/en/kcontrol/windowspecific/window-matching-emacs.png share/doc/HTML/en/kcontrol/windowspecific/window-matching-init.png share/doc/HTML/en/kcontrol/windowspecific/window-matching-knotes.png share/doc/HTML/en/kcontrol/windowspecific/window-matching-kopete-chat.png share/doc/HTML/en/kcontrol/windowspecific/window-matching-kopete.png share/doc/HTML/en/kcontrol/windowspecific/window-matching-ready-akregator.png share/doc/HTML/en/kcontrol/windowspecific/window-matching-tbird-compose.png share/doc/HTML/en/kcontrol/windowspecific/window-matching-tbird-main.png share/doc/HTML/en/kcontrol/windowspecific/window-matching-tbird-reminder.png share/doc/HTML/es/kcontrol/desktop/index.cache.bz2 share/doc/HTML/es/kcontrol/desktop/index.docbook +share/doc/HTML/id/kcontrol/desktop/index.cache.bz2 +share/doc/HTML/id/kcontrol/desktop/index.docbook share/doc/HTML/it/kcontrol/desktop/index.cache.bz2 share/doc/HTML/it/kcontrol/desktop/index.docbook share/doc/HTML/it/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/it/kcontrol/kwindecoration/index.docbook share/doc/HTML/it/kcontrol/kwineffects/index.cache.bz2 share/doc/HTML/it/kcontrol/kwineffects/index.docbook share/doc/HTML/it/kcontrol/kwinscreenedges/index.cache.bz2 share/doc/HTML/it/kcontrol/kwinscreenedges/index.docbook share/doc/HTML/it/kcontrol/kwintabbox/index.cache.bz2 share/doc/HTML/it/kcontrol/kwintabbox/index.docbook share/doc/HTML/it/kcontrol/windowbehaviour/index.cache.bz2 share/doc/HTML/it/kcontrol/windowbehaviour/index.docbook share/doc/HTML/it/kcontrol/windowspecific/index.cache.bz2 share/doc/HTML/it/kcontrol/windowspecific/index.docbook share/doc/HTML/nl/kcontrol/desktop/index.cache.bz2 share/doc/HTML/nl/kcontrol/desktop/index.docbook share/doc/HTML/nl/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/nl/kcontrol/kwindecoration/index.docbook share/doc/HTML/nl/kcontrol/kwineffects/index.cache.bz2 share/doc/HTML/nl/kcontrol/kwineffects/index.docbook share/doc/HTML/nl/kcontrol/kwinscreenedges/index.cache.bz2 share/doc/HTML/nl/kcontrol/kwinscreenedges/index.docbook share/doc/HTML/nl/kcontrol/kwintabbox/index.cache.bz2 share/doc/HTML/nl/kcontrol/kwintabbox/index.docbook share/doc/HTML/nl/kcontrol/windowbehaviour/index.cache.bz2 share/doc/HTML/nl/kcontrol/windowbehaviour/index.docbook share/doc/HTML/nl/kcontrol/windowspecific/index.cache.bz2 share/doc/HTML/nl/kcontrol/windowspecific/index.docbook share/doc/HTML/pt/kcontrol/desktop/index.cache.bz2 share/doc/HTML/pt/kcontrol/desktop/index.docbook share/doc/HTML/pt/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/pt/kcontrol/kwindecoration/index.docbook share/doc/HTML/pt/kcontrol/kwineffects/index.cache.bz2 share/doc/HTML/pt/kcontrol/kwineffects/index.docbook share/doc/HTML/pt/kcontrol/kwinscreenedges/index.cache.bz2 share/doc/HTML/pt/kcontrol/kwinscreenedges/index.docbook share/doc/HTML/pt/kcontrol/kwintabbox/index.cache.bz2 share/doc/HTML/pt/kcontrol/kwintabbox/index.docbook share/doc/HTML/pt/kcontrol/windowbehaviour/index.cache.bz2 share/doc/HTML/pt/kcontrol/windowbehaviour/index.docbook share/doc/HTML/pt/kcontrol/windowspecific/index.cache.bz2 share/doc/HTML/pt/kcontrol/windowspecific/index.docbook share/doc/HTML/pt_BR/kcontrol/desktop/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/desktop/index.docbook share/doc/HTML/pt_BR/kcontrol/kwindecoration/configure.png share/doc/HTML/pt_BR/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/kwindecoration/index.docbook share/doc/HTML/pt_BR/kcontrol/kwinscreenedges/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/kwinscreenedges/index.docbook share/doc/HTML/pt_BR/kcontrol/kwintabbox/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/kwintabbox/index.docbook share/doc/HTML/pt_BR/kcontrol/windowbehaviour/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/windowbehaviour/index.docbook share/doc/HTML/pt_BR/kcontrol/windowspecific/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol/windowspecific/index.docbook share/doc/HTML/ru/kcontrol/desktop/index.cache.bz2 share/doc/HTML/ru/kcontrol/desktop/index.docbook share/doc/HTML/ru/kcontrol/kwindecoration/button.png share/doc/HTML/ru/kcontrol/kwindecoration/configure.png share/doc/HTML/ru/kcontrol/kwindecoration/decoration.png share/doc/HTML/ru/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/ru/kcontrol/kwindecoration/index.docbook share/doc/HTML/ru/kcontrol/kwindecoration/main.png share/doc/HTML/ru/kcontrol/kwineffects/index.cache.bz2 share/doc/HTML/ru/kcontrol/kwineffects/index.docbook share/doc/HTML/ru/kcontrol/kwinscreenedges/index.cache.bz2 share/doc/HTML/ru/kcontrol/kwinscreenedges/index.docbook share/doc/HTML/ru/kcontrol/kwintabbox/index.cache.bz2 share/doc/HTML/ru/kcontrol/kwintabbox/index.docbook share/doc/HTML/ru/kcontrol/windowbehaviour/index.cache.bz2 share/doc/HTML/ru/kcontrol/windowbehaviour/index.docbook share/doc/HTML/sr/kcontrol/desktop/index.cache.bz2 share/doc/HTML/sr/kcontrol/desktop/index.docbook share/doc/HTML/sr@latin/kcontrol/desktop/index.cache.bz2 share/doc/HTML/sr@latin/kcontrol/desktop/index.docbook share/doc/HTML/sv/kcontrol/desktop/index.cache.bz2 share/doc/HTML/sv/kcontrol/desktop/index.docbook share/doc/HTML/sv/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/sv/kcontrol/kwindecoration/index.docbook share/doc/HTML/sv/kcontrol/kwineffects/index.cache.bz2 share/doc/HTML/sv/kcontrol/kwineffects/index.docbook share/doc/HTML/sv/kcontrol/kwinscreenedges/index.cache.bz2 share/doc/HTML/sv/kcontrol/kwinscreenedges/index.docbook share/doc/HTML/sv/kcontrol/kwintabbox/index.cache.bz2 share/doc/HTML/sv/kcontrol/kwintabbox/index.docbook share/doc/HTML/sv/kcontrol/windowbehaviour/index.cache.bz2 share/doc/HTML/sv/kcontrol/windowbehaviour/index.docbook share/doc/HTML/sv/kcontrol/windowspecific/index.cache.bz2 share/doc/HTML/sv/kcontrol/windowspecific/index.docbook share/doc/HTML/uk/kcontrol/desktop/index.cache.bz2 share/doc/HTML/uk/kcontrol/desktop/index.docbook share/doc/HTML/uk/kcontrol/kwindecoration/button.png share/doc/HTML/uk/kcontrol/kwindecoration/decoration.png share/doc/HTML/uk/kcontrol/kwindecoration/index.cache.bz2 share/doc/HTML/uk/kcontrol/kwindecoration/index.docbook share/doc/HTML/uk/kcontrol/kwindecoration/main.png share/doc/HTML/uk/kcontrol/kwineffects/index.cache.bz2 share/doc/HTML/uk/kcontrol/kwineffects/index.docbook share/doc/HTML/uk/kcontrol/kwinscreenedges/index.cache.bz2 share/doc/HTML/uk/kcontrol/kwinscreenedges/index.docbook share/doc/HTML/uk/kcontrol/kwintabbox/index.cache.bz2 share/doc/HTML/uk/kcontrol/kwintabbox/index.docbook share/doc/HTML/uk/kcontrol/windowbehaviour/index.cache.bz2 share/doc/HTML/uk/kcontrol/windowbehaviour/index.docbook share/doc/HTML/uk/kcontrol/windowspecific/index.cache.bz2 share/doc/HTML/uk/kcontrol/windowspecific/index.docbook share/icons/hicolor/16x16/apps/kwin.png share/icons/hicolor/32x32/apps/kwin.png share/icons/hicolor/48x48/apps/kwin.png share/icons/hicolor/scalable/apps/kwin.svgz share/kconf_update/kwin.upd share/knotifications5/kwin.notifyrc -share/kservices5/desktop.desktop +share/kpackage/kcms/kcm_kwin_virtualdesktops/contents/ui/main.qml +share/kpackage/kcms/kcm_kwin_virtualdesktops/metadata.desktop +share/kpackage/kcms/kcm_kwin_virtualdesktops/metadata.json +share/kservices5/kcm_kwin_virtualdesktops.desktop share/kservices5/kcmkwineffects.desktop share/kservices5/kwin-script-desktopchangeosd.desktop share/kservices5/kwin-script-enforcedeco.desktop share/kservices5/kwin-script-minimizeall.desktop share/kservices5/kwin-script-synchronizeskipswitcher.desktop share/kservices5/kwin-script-videowall.desktop share/kservices5/kwin/kwin4_decoration_qml_plastik.desktop share/kservices5/kwin/kwin4_effect_dialogparent.desktop +share/kservices5/kwin/kwin4_effect_dimscreen.desktop share/kservices5/kwin/kwin4_effect_eyeonscreen.desktop share/kservices5/kwin/kwin4_effect_fade.desktop share/kservices5/kwin/kwin4_effect_fadedesktop.desktop +share/kservices5/kwin/kwin4_effect_fadingpopups.desktop share/kservices5/kwin/kwin4_effect_frozenapp.desktop share/kservices5/kwin/kwin4_effect_login.desktop share/kservices5/kwin/kwin4_effect_logout.desktop share/kservices5/kwin/kwin4_effect_maximize.desktop share/kservices5/kwin/kwin4_effect_morphingpopups.desktop +share/kservices5/kwin/kwin4_effect_scale.desktop +share/kservices5/kwin/kwin4_effect_squash.desktop share/kservices5/kwin/kwin4_effect_translucency.desktop share/kservices5/kwin/kwin4_effect_windowaperture.desktop share/kservices5/kwinactions.desktop share/kservices5/kwinadvanced.desktop share/kservices5/kwincompositing.desktop share/kservices5/kwindecoration.desktop share/kservices5/kwinfocus.desktop share/kservices5/kwinmoving.desktop share/kservices5/kwinoptions.desktop share/kservices5/kwinrules.desktop share/kservices5/kwinscreenedges.desktop share/kservices5/kwinscripts.desktop share/kservices5/kwintabbox.desktop share/kservices5/kwintouchscreen.desktop share/kservicetypes5/kwindecoration.desktop share/kservicetypes5/kwindesktopswitcher.desktop share/kservicetypes5/kwineffect.desktop share/kservicetypes5/kwinscript.desktop share/kservicetypes5/kwinwindowswitcher.desktop %%DATADIR%%/aurorae/AppMenuButton.qml %%DATADIR%%/aurorae/AuroraeButton.qml %%DATADIR%%/aurorae/AuroraeButtonGroup.qml %%DATADIR%%/aurorae/AuroraeMaximizeButton.qml %%DATADIR%%/aurorae/Decoration.qml %%DATADIR%%/aurorae/DecorationButton.qml %%DATADIR%%/aurorae/MenuButton.qml %%DATADIR%%/aurorae/aurorae.qml %%DATADIR%%/cubecap.png %%DATADIR%%/decorations/kwin4_decoration_qml_plastik/contents/config/main.xml %%DATADIR%%/decorations/kwin4_decoration_qml_plastik/contents/ui/PlastikButton.qml %%DATADIR%%/decorations/kwin4_decoration_qml_plastik/contents/ui/config.ui %%DATADIR%%/decorations/kwin4_decoration_qml_plastik/contents/ui/main.qml %%DATADIR%%/decorations/kwin4_decoration_qml_plastik/metadata.desktop %%DATADIR%%/effects/desktopgrid/main.qml %%DATADIR%%/effects/kwin4_effect_dialogparent/contents/code/main.js %%DATADIR%%/effects/kwin4_effect_dialogparent/metadata.desktop +%%DATADIR%%/effects/kwin4_effect_dimscreen/contents/code/main.js +%%DATADIR%%/effects/kwin4_effect_dimscreen/metadata.desktop %%DATADIR%%/effects/kwin4_effect_eyeonscreen/contents/code/main.js %%DATADIR%%/effects/kwin4_effect_eyeonscreen/metadata.desktop %%DATADIR%%/effects/kwin4_effect_fade/contents/code/main.js %%DATADIR%%/effects/kwin4_effect_fade/contents/config/main.xml %%DATADIR%%/effects/kwin4_effect_fade/metadata.desktop %%DATADIR%%/effects/kwin4_effect_fadedesktop/contents/code/main.js %%DATADIR%%/effects/kwin4_effect_fadedesktop/metadata.desktop +%%DATADIR%%/effects/kwin4_effect_fadingpopups/contents/code/main.js +%%DATADIR%%/effects/kwin4_effect_fadingpopups/metadata.desktop %%DATADIR%%/effects/kwin4_effect_frozenapp/contents/code/main.js %%DATADIR%%/effects/kwin4_effect_frozenapp/metadata.desktop %%DATADIR%%/effects/kwin4_effect_login/contents/code/main.js %%DATADIR%%/effects/kwin4_effect_login/contents/config/main.xml %%DATADIR%%/effects/kwin4_effect_login/contents/ui/config.ui %%DATADIR%%/effects/kwin4_effect_login/metadata.desktop %%DATADIR%%/effects/kwin4_effect_logout/contents/code/main.js %%DATADIR%%/effects/kwin4_effect_logout/metadata.desktop %%DATADIR%%/effects/kwin4_effect_maximize/contents/code/maximize.js %%DATADIR%%/effects/kwin4_effect_maximize/metadata.desktop %%DATADIR%%/effects/kwin4_effect_morphingpopups/contents/code/morphingpopups.js %%DATADIR%%/effects/kwin4_effect_morphingpopups/metadata.desktop +%%DATADIR%%/effects/kwin4_effect_scale/contents/code/main.js +%%DATADIR%%/effects/kwin4_effect_scale/contents/config/main.xml +%%DATADIR%%/effects/kwin4_effect_scale/contents/ui/config.ui +%%DATADIR%%/effects/kwin4_effect_scale/metadata.desktop +%%DATADIR%%/effects/kwin4_effect_squash/contents/code/main.js +%%DATADIR%%/effects/kwin4_effect_squash/metadata.desktop %%DATADIR%%/effects/kwin4_effect_translucency/contents/code/main.js %%DATADIR%%/effects/kwin4_effect_translucency/contents/config/main.xml %%DATADIR%%/effects/kwin4_effect_translucency/contents/ui/config.ui %%DATADIR%%/effects/kwin4_effect_translucency/metadata.desktop %%DATADIR%%/effects/kwin4_effect_windowaperture/contents/code/main.js %%DATADIR%%/effects/kwin4_effect_windowaperture/metadata.desktop %%DATADIR%%/effects/presentwindows/main.qml %%DATADIR%%/kcm_kwindecoration/ButtonGroup.qml %%DATADIR%%/kcm_kwindecoration/Buttons.qml %%DATADIR%%/kcm_kwindecoration/Previews.qml %%DATADIR%%/kcm_kwindecoration/main.qml %%DATADIR%%/kcm_kwintabbox/dolphin.png %%DATADIR%%/kcm_kwintabbox/kmail.png %%DATADIR%%/kcm_kwintabbox/konqueror.png %%DATADIR%%/kcm_kwintabbox/systemsettings.png %%DATADIR%%/onscreennotification/plasma/dummydata/osd.qml %%DATADIR%%/onscreennotification/plasma/main.qml %%DATADIR%%/outline/plasma/outline.qml %%DATADIR%%/scripts/desktopchangeosd/contents/ui/main.qml %%DATADIR%%/scripts/desktopchangeosd/contents/ui/osd.qml %%DATADIR%%/scripts/desktopchangeosd/metadata.desktop %%DATADIR%%/scripts/enforcedeco/contents/code/main.js %%DATADIR%%/scripts/enforcedeco/metadata.desktop %%DATADIR%%/scripts/minimizeall/contents/code/main.js %%DATADIR%%/scripts/minimizeall/metadata.desktop %%DATADIR%%/scripts/synchronizeskipswitcher/contents/code/main.js %%DATADIR%%/scripts/synchronizeskipswitcher/metadata.desktop %%DATADIR%%/scripts/videowall/contents/code/main.js %%DATADIR%%/scripts/videowall/contents/config/main.xml %%DATADIR%%/scripts/videowall/contents/ui/config.ui %%DATADIR%%/scripts/videowall/metadata.desktop %%DATADIR%%/tm_inner.png %%DATADIR%%/tm_outer.png %%DATADIR%%/virtualkeyboard/main.qml %%DATADIR%%compositing/qml/Effect.qml %%DATADIR%%compositing/qml/EffectView.qml %%DATADIR%%compositing/qml/Video.qml %%DATADIR%%compositing/qml/main.qml share/locale/af/LC_MESSAGES/kcmkwindecoration.mo share/locale/af/LC_MESSAGES/kcmkwinrules.mo share/locale/af/LC_MESSAGES/kcmkwm.mo share/locale/af/LC_MESSAGES/kwin.mo share/locale/af/LC_MESSAGES/kwin_clients.mo share/locale/ar/LC_MESSAGES/kcm-kwin-scripts.mo -share/locale/ar/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/ar/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ar/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ar/LC_MESSAGES/kcmkwincompositing.mo share/locale/ar/LC_MESSAGES/kcmkwindecoration.mo share/locale/ar/LC_MESSAGES/kcmkwinrules.mo share/locale/ar/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ar/LC_MESSAGES/kcmkwm.mo share/locale/ar/LC_MESSAGES/kwin.mo share/locale/ar/LC_MESSAGES/kwin_clients.mo share/locale/ar/LC_MESSAGES/kwin_effects.mo share/locale/ar/LC_MESSAGES/kwin_scripting.mo share/locale/as/LC_MESSAGES/kwin.mo -share/locale/ast/LC_MESSAGES/kcm-kwin-scripts.mo -share/locale/ast/LC_MESSAGES/kcm_kwindesktop.mo -share/locale/ast/LC_MESSAGES/kcm_kwintabbox.mo -share/locale/ast/LC_MESSAGES/kcmkwincompositing.mo -share/locale/ast/LC_MESSAGES/kcmkwindecoration.mo -share/locale/ast/LC_MESSAGES/kcmkwinrules.mo -share/locale/ast/LC_MESSAGES/kcmkwinscreenedges.mo -share/locale/ast/LC_MESSAGES/kcmkwm.mo -share/locale/ast/LC_MESSAGES/kwin.mo -share/locale/ast/LC_MESSAGES/kwin_clients.mo -share/locale/ast/LC_MESSAGES/kwin_effects.mo -share/locale/ast/LC_MESSAGES/kwin_scripting.mo -share/locale/ast/LC_MESSAGES/kwin_scripts.mo -share/locale/be/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/be/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/be/LC_MESSAGES/kcmkwincompositing.mo share/locale/be/LC_MESSAGES/kcmkwindecoration.mo share/locale/be/LC_MESSAGES/kcmkwinrules.mo share/locale/be/LC_MESSAGES/kcmkwm.mo share/locale/be/LC_MESSAGES/kwin.mo share/locale/be/LC_MESSAGES/kwin_clients.mo share/locale/be/LC_MESSAGES/kwin_effects.mo share/locale/be@latin/LC_MESSAGES/kwin.mo -share/locale/bg/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/bg/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/bg/LC_MESSAGES/kcm_kwintabbox.mo share/locale/bg/LC_MESSAGES/kcmkwincompositing.mo share/locale/bg/LC_MESSAGES/kcmkwindecoration.mo share/locale/bg/LC_MESSAGES/kcmkwinrules.mo share/locale/bg/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/bg/LC_MESSAGES/kcmkwm.mo share/locale/bg/LC_MESSAGES/kwin.mo share/locale/bg/LC_MESSAGES/kwin_clients.mo share/locale/bg/LC_MESSAGES/kwin_effects.mo share/locale/bn/LC_MESSAGES/kcmkwm.mo share/locale/bn/LC_MESSAGES/kwin.mo share/locale/bn/LC_MESSAGES/kwin_effects.mo -share/locale/bn_IN/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/bn_IN/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/bn_IN/LC_MESSAGES/kcmkwindecoration.mo share/locale/bn_IN/LC_MESSAGES/kcmkwinrules.mo share/locale/bn_IN/LC_MESSAGES/kcmkwm.mo share/locale/bn_IN/LC_MESSAGES/kwin.mo share/locale/bn_IN/LC_MESSAGES/kwin_clients.mo share/locale/bn_IN/LC_MESSAGES/kwin_effects.mo share/locale/br/LC_MESSAGES/kcmkwindecoration.mo share/locale/br/LC_MESSAGES/kcmkwinrules.mo share/locale/br/LC_MESSAGES/kcmkwm.mo share/locale/br/LC_MESSAGES/kwin.mo share/locale/br/LC_MESSAGES/kwin_clients.mo share/locale/bs/LC_MESSAGES/kcm-kwin-scripts.mo -share/locale/bs/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/bs/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/bs/LC_MESSAGES/kcm_kwintabbox.mo share/locale/bs/LC_MESSAGES/kcmkwincompositing.mo share/locale/bs/LC_MESSAGES/kcmkwindecoration.mo share/locale/bs/LC_MESSAGES/kcmkwinrules.mo share/locale/bs/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/bs/LC_MESSAGES/kcmkwm.mo share/locale/bs/LC_MESSAGES/kwin.mo share/locale/bs/LC_MESSAGES/kwin_clients.mo share/locale/bs/LC_MESSAGES/kwin_effects.mo share/locale/bs/LC_MESSAGES/kwin_scripting.mo share/locale/ca/LC_MESSAGES/kcm-kwin-scripts.mo -share/locale/ca/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/ca/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ca/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/ca/LC_MESSAGES/kcmkwincommon.mo share/locale/ca/LC_MESSAGES/kcmkwincompositing.mo share/locale/ca/LC_MESSAGES/kcmkwindecoration.mo share/locale/ca/LC_MESSAGES/kcmkwinrules.mo share/locale/ca/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ca/LC_MESSAGES/kcmkwm.mo share/locale/ca/LC_MESSAGES/kwin.mo share/locale/ca/LC_MESSAGES/kwin_clients.mo share/locale/ca/LC_MESSAGES/kwin_effects.mo share/locale/ca/LC_MESSAGES/kwin_scripting.mo share/locale/ca/LC_MESSAGES/kwin_scripts.mo share/locale/ca@valencia/LC_MESSAGES/kcm-kwin-scripts.mo -share/locale/ca@valencia/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/ca@valencia/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ca@valencia/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/ca@valencia/LC_MESSAGES/kcmkwincommon.mo share/locale/ca@valencia/LC_MESSAGES/kcmkwincompositing.mo share/locale/ca@valencia/LC_MESSAGES/kcmkwindecoration.mo share/locale/ca@valencia/LC_MESSAGES/kcmkwinrules.mo share/locale/ca@valencia/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ca@valencia/LC_MESSAGES/kcmkwm.mo share/locale/ca@valencia/LC_MESSAGES/kwin.mo share/locale/ca@valencia/LC_MESSAGES/kwin_clients.mo share/locale/ca@valencia/LC_MESSAGES/kwin_effects.mo share/locale/ca@valencia/LC_MESSAGES/kwin_scripting.mo share/locale/ca@valencia/LC_MESSAGES/kwin_scripts.mo share/locale/cs/LC_MESSAGES/kcm-kwin-scripts.mo -share/locale/cs/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/cs/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/cs/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/cs/LC_MESSAGES/kcmkwincommon.mo share/locale/cs/LC_MESSAGES/kcmkwincompositing.mo share/locale/cs/LC_MESSAGES/kcmkwindecoration.mo share/locale/cs/LC_MESSAGES/kcmkwinrules.mo share/locale/cs/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/cs/LC_MESSAGES/kcmkwm.mo share/locale/cs/LC_MESSAGES/kwin.mo share/locale/cs/LC_MESSAGES/kwin_clients.mo share/locale/cs/LC_MESSAGES/kwin_effects.mo share/locale/cs/LC_MESSAGES/kwin_scripting.mo share/locale/cs/LC_MESSAGES/kwin_scripts.mo -share/locale/csb/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/csb/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/csb/LC_MESSAGES/kwin.mo share/locale/csb/LC_MESSAGES/kwin_clients.mo share/locale/csb/LC_MESSAGES/kwin_effects.mo share/locale/cy/LC_MESSAGES/kcmkwindecoration.mo share/locale/cy/LC_MESSAGES/kcmkwinrules.mo share/locale/cy/LC_MESSAGES/kcmkwm.mo share/locale/cy/LC_MESSAGES/kwin.mo share/locale/cy/LC_MESSAGES/kwin_clients.mo share/locale/da/LC_MESSAGES/kcm-kwin-scripts.mo -share/locale/da/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/da/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/da/LC_MESSAGES/kcm_kwintabbox.mo share/locale/da/LC_MESSAGES/kcmkwincompositing.mo share/locale/da/LC_MESSAGES/kcmkwindecoration.mo share/locale/da/LC_MESSAGES/kcmkwinrules.mo share/locale/da/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/da/LC_MESSAGES/kcmkwm.mo share/locale/da/LC_MESSAGES/kwin.mo share/locale/da/LC_MESSAGES/kwin_clients.mo share/locale/da/LC_MESSAGES/kwin_effects.mo share/locale/da/LC_MESSAGES/kwin_scripting.mo share/locale/da/LC_MESSAGES/kwin_scripts.mo share/locale/de/LC_MESSAGES/kcm-kwin-scripts.mo -share/locale/de/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/de/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/de/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/de/LC_MESSAGES/kcmkwincommon.mo share/locale/de/LC_MESSAGES/kcmkwincompositing.mo share/locale/de/LC_MESSAGES/kcmkwindecoration.mo share/locale/de/LC_MESSAGES/kcmkwinrules.mo share/locale/de/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/de/LC_MESSAGES/kcmkwm.mo share/locale/de/LC_MESSAGES/kwin.mo share/locale/de/LC_MESSAGES/kwin_clients.mo share/locale/de/LC_MESSAGES/kwin_effects.mo share/locale/de/LC_MESSAGES/kwin_scripting.mo share/locale/de/LC_MESSAGES/kwin_scripts.mo share/locale/el/LC_MESSAGES/kcm-kwin-scripts.mo -share/locale/el/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/el/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/el/LC_MESSAGES/kcm_kwintabbox.mo share/locale/el/LC_MESSAGES/kcmkwincompositing.mo share/locale/el/LC_MESSAGES/kcmkwindecoration.mo share/locale/el/LC_MESSAGES/kcmkwinrules.mo share/locale/el/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/el/LC_MESSAGES/kcmkwm.mo share/locale/el/LC_MESSAGES/kwin.mo share/locale/el/LC_MESSAGES/kwin_clients.mo share/locale/el/LC_MESSAGES/kwin_effects.mo share/locale/el/LC_MESSAGES/kwin_scripting.mo share/locale/el/LC_MESSAGES/kwin_scripts.mo share/locale/en_GB/LC_MESSAGES/kcm-kwin-scripts.mo -share/locale/en_GB/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/en_GB/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/en_GB/LC_MESSAGES/kcm_kwintabbox.mo share/locale/en_GB/LC_MESSAGES/kcmkwincompositing.mo share/locale/en_GB/LC_MESSAGES/kcmkwindecoration.mo share/locale/en_GB/LC_MESSAGES/kcmkwinrules.mo share/locale/en_GB/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/en_GB/LC_MESSAGES/kcmkwm.mo share/locale/en_GB/LC_MESSAGES/kwin.mo share/locale/en_GB/LC_MESSAGES/kwin_clients.mo share/locale/en_GB/LC_MESSAGES/kwin_effects.mo share/locale/en_GB/LC_MESSAGES/kwin_scripting.mo share/locale/en_GB/LC_MESSAGES/kwin_scripts.mo -share/locale/eo/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/eo/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/eo/LC_MESSAGES/kcm_kwintabbox.mo share/locale/eo/LC_MESSAGES/kcmkwincompositing.mo share/locale/eo/LC_MESSAGES/kcmkwindecoration.mo share/locale/eo/LC_MESSAGES/kcmkwinrules.mo share/locale/eo/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/eo/LC_MESSAGES/kcmkwm.mo share/locale/eo/LC_MESSAGES/kwin.mo share/locale/eo/LC_MESSAGES/kwin_clients.mo share/locale/eo/LC_MESSAGES/kwin_effects.mo share/locale/es/LC_MESSAGES/kcm-kwin-scripts.mo -share/locale/es/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/es/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/es/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/es/LC_MESSAGES/kcmkwincommon.mo share/locale/es/LC_MESSAGES/kcmkwincompositing.mo share/locale/es/LC_MESSAGES/kcmkwindecoration.mo share/locale/es/LC_MESSAGES/kcmkwinrules.mo share/locale/es/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/es/LC_MESSAGES/kcmkwm.mo share/locale/es/LC_MESSAGES/kwin.mo share/locale/es/LC_MESSAGES/kwin_clients.mo share/locale/es/LC_MESSAGES/kwin_effects.mo share/locale/es/LC_MESSAGES/kwin_scripting.mo share/locale/es/LC_MESSAGES/kwin_scripts.mo share/locale/et/LC_MESSAGES/kcm-kwin-scripts.mo -share/locale/et/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/et/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/et/LC_MESSAGES/kcm_kwintabbox.mo share/locale/et/LC_MESSAGES/kcmkwincompositing.mo share/locale/et/LC_MESSAGES/kcmkwindecoration.mo share/locale/et/LC_MESSAGES/kcmkwinrules.mo share/locale/et/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/et/LC_MESSAGES/kcmkwm.mo share/locale/et/LC_MESSAGES/kwin.mo share/locale/et/LC_MESSAGES/kwin_clients.mo share/locale/et/LC_MESSAGES/kwin_effects.mo share/locale/et/LC_MESSAGES/kwin_scripting.mo share/locale/et/LC_MESSAGES/kwin_scripts.mo share/locale/eu/LC_MESSAGES/kcm-kwin-scripts.mo -share/locale/eu/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/eu/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/eu/LC_MESSAGES/kcm_kwintabbox.mo share/locale/eu/LC_MESSAGES/kcmkwincompositing.mo share/locale/eu/LC_MESSAGES/kcmkwindecoration.mo share/locale/eu/LC_MESSAGES/kcmkwinrules.mo share/locale/eu/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/eu/LC_MESSAGES/kcmkwm.mo share/locale/eu/LC_MESSAGES/kwin.mo -share/locale/eu/LC_MESSAGES/kwin_scripting.mo share/locale/eu/LC_MESSAGES/kwin_clients.mo share/locale/eu/LC_MESSAGES/kwin_effects.mo +share/locale/eu/LC_MESSAGES/kwin_scripting.mo share/locale/eu/LC_MESSAGES/kwin_scripts.mo share/locale/fa/LC_MESSAGES/kcm-kwin-scripts.mo -share/locale/fa/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/fa/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/fa/LC_MESSAGES/kcm_kwintabbox.mo share/locale/fa/LC_MESSAGES/kcmkwincompositing.mo share/locale/fa/LC_MESSAGES/kcmkwindecoration.mo share/locale/fa/LC_MESSAGES/kcmkwinrules.mo share/locale/fa/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/fa/LC_MESSAGES/kcmkwm.mo share/locale/fa/LC_MESSAGES/kwin.mo share/locale/fa/LC_MESSAGES/kwin_clients.mo share/locale/fa/LC_MESSAGES/kwin_effects.mo share/locale/fi/LC_MESSAGES/kcm-kwin-scripts.mo -share/locale/fi/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/fi/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/fi/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/fi/LC_MESSAGES/kcmkwincommon.mo share/locale/fi/LC_MESSAGES/kcmkwincompositing.mo share/locale/fi/LC_MESSAGES/kcmkwindecoration.mo share/locale/fi/LC_MESSAGES/kcmkwinrules.mo share/locale/fi/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/fi/LC_MESSAGES/kcmkwm.mo share/locale/fi/LC_MESSAGES/kwin.mo share/locale/fi/LC_MESSAGES/kwin_clients.mo share/locale/fi/LC_MESSAGES/kwin_effects.mo share/locale/fi/LC_MESSAGES/kwin_scripting.mo share/locale/fi/LC_MESSAGES/kwin_scripts.mo share/locale/fr/LC_MESSAGES/kcm-kwin-scripts.mo -share/locale/fr/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/fr/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/fr/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/fr/LC_MESSAGES/kcmkwincommon.mo share/locale/fr/LC_MESSAGES/kcmkwincompositing.mo share/locale/fr/LC_MESSAGES/kcmkwindecoration.mo share/locale/fr/LC_MESSAGES/kcmkwinrules.mo share/locale/fr/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/fr/LC_MESSAGES/kcmkwm.mo share/locale/fr/LC_MESSAGES/kwin.mo share/locale/fr/LC_MESSAGES/kwin_clients.mo share/locale/fr/LC_MESSAGES/kwin_effects.mo share/locale/fr/LC_MESSAGES/kwin_scripting.mo share/locale/fr/LC_MESSAGES/kwin_scripts.mo -share/locale/fy/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/fy/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/fy/LC_MESSAGES/kcmkwincompositing.mo share/locale/fy/LC_MESSAGES/kcmkwindecoration.mo share/locale/fy/LC_MESSAGES/kcmkwinrules.mo share/locale/fy/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/fy/LC_MESSAGES/kcmkwm.mo share/locale/fy/LC_MESSAGES/kwin.mo share/locale/fy/LC_MESSAGES/kwin_clients.mo share/locale/fy/LC_MESSAGES/kwin_effects.mo share/locale/ga/LC_MESSAGES/kcm-kwin-scripts.mo -share/locale/ga/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/ga/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ga/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ga/LC_MESSAGES/kcmkwincompositing.mo share/locale/ga/LC_MESSAGES/kcmkwindecoration.mo share/locale/ga/LC_MESSAGES/kcmkwinrules.mo share/locale/ga/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ga/LC_MESSAGES/kcmkwm.mo share/locale/ga/LC_MESSAGES/kwin.mo share/locale/ga/LC_MESSAGES/kwin_clients.mo share/locale/ga/LC_MESSAGES/kwin_effects.mo share/locale/gl/LC_MESSAGES/kcm-kwin-scripts.mo -share/locale/gl/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/gl/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/gl/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/gl/LC_MESSAGES/kcmkwincommon.mo share/locale/gl/LC_MESSAGES/kcmkwincompositing.mo share/locale/gl/LC_MESSAGES/kcmkwindecoration.mo share/locale/gl/LC_MESSAGES/kcmkwinrules.mo share/locale/gl/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/gl/LC_MESSAGES/kcmkwm.mo share/locale/gl/LC_MESSAGES/kwin.mo share/locale/gl/LC_MESSAGES/kwin_clients.mo share/locale/gl/LC_MESSAGES/kwin_effects.mo share/locale/gl/LC_MESSAGES/kwin_scripting.mo share/locale/gl/LC_MESSAGES/kwin_scripts.mo -share/locale/gu/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/gu/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/gu/LC_MESSAGES/kcm_kwintabbox.mo share/locale/gu/LC_MESSAGES/kcmkwincompositing.mo share/locale/gu/LC_MESSAGES/kcmkwindecoration.mo share/locale/gu/LC_MESSAGES/kcmkwinrules.mo share/locale/gu/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/gu/LC_MESSAGES/kcmkwm.mo share/locale/gu/LC_MESSAGES/kwin.mo share/locale/gu/LC_MESSAGES/kwin_clients.mo share/locale/gu/LC_MESSAGES/kwin_effects.mo share/locale/he/LC_MESSAGES/kcm-kwin-scripts.mo -share/locale/he/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/he/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/he/LC_MESSAGES/kcm_kwintabbox.mo share/locale/he/LC_MESSAGES/kcmkwincompositing.mo share/locale/he/LC_MESSAGES/kcmkwindecoration.mo share/locale/he/LC_MESSAGES/kcmkwinrules.mo share/locale/he/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/he/LC_MESSAGES/kcmkwm.mo share/locale/he/LC_MESSAGES/kwin.mo share/locale/he/LC_MESSAGES/kwin_clients.mo share/locale/he/LC_MESSAGES/kwin_effects.mo share/locale/he/LC_MESSAGES/kwin_scripting.mo share/locale/he/LC_MESSAGES/kwin_scripts.mo -share/locale/hi/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/hi/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/hi/LC_MESSAGES/kcm_kwintabbox.mo share/locale/hi/LC_MESSAGES/kcmkwincompositing.mo share/locale/hi/LC_MESSAGES/kcmkwindecoration.mo share/locale/hi/LC_MESSAGES/kcmkwinrules.mo share/locale/hi/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/hi/LC_MESSAGES/kcmkwm.mo share/locale/hi/LC_MESSAGES/kwin.mo share/locale/hi/LC_MESSAGES/kwin_clients.mo share/locale/hi/LC_MESSAGES/kwin_effects.mo -share/locale/hne/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/hne/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/hne/LC_MESSAGES/kcmkwincompositing.mo share/locale/hne/LC_MESSAGES/kcmkwindecoration.mo share/locale/hne/LC_MESSAGES/kcmkwinrules.mo share/locale/hne/LC_MESSAGES/kcmkwm.mo share/locale/hne/LC_MESSAGES/kwin.mo share/locale/hne/LC_MESSAGES/kwin_clients.mo share/locale/hne/LC_MESSAGES/kwin_effects.mo -share/locale/hr/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/hr/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/hr/LC_MESSAGES/kcm_kwintabbox.mo share/locale/hr/LC_MESSAGES/kcmkwincompositing.mo share/locale/hr/LC_MESSAGES/kcmkwindecoration.mo share/locale/hr/LC_MESSAGES/kcmkwinrules.mo share/locale/hr/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/hr/LC_MESSAGES/kcmkwm.mo share/locale/hr/LC_MESSAGES/kwin.mo share/locale/hr/LC_MESSAGES/kwin_clients.mo share/locale/hr/LC_MESSAGES/kwin_effects.mo -share/locale/hsb/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/hsb/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/hsb/LC_MESSAGES/kcmkwincompositing.mo share/locale/hsb/LC_MESSAGES/kcmkwindecoration.mo share/locale/hsb/LC_MESSAGES/kcmkwinrules.mo share/locale/hsb/LC_MESSAGES/kcmkwm.mo share/locale/hsb/LC_MESSAGES/kwin.mo share/locale/hsb/LC_MESSAGES/kwin_clients.mo share/locale/hsb/LC_MESSAGES/kwin_effects.mo share/locale/hu/LC_MESSAGES/kcm-kwin-scripts.mo -share/locale/hu/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/hu/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/hu/LC_MESSAGES/kcm_kwintabbox.mo share/locale/hu/LC_MESSAGES/kcmkwincompositing.mo share/locale/hu/LC_MESSAGES/kcmkwindecoration.mo share/locale/hu/LC_MESSAGES/kcmkwinrules.mo share/locale/hu/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/hu/LC_MESSAGES/kcmkwm.mo share/locale/hu/LC_MESSAGES/kwin.mo share/locale/hu/LC_MESSAGES/kwin_clients.mo share/locale/hu/LC_MESSAGES/kwin_effects.mo share/locale/hu/LC_MESSAGES/kwin_scripting.mo share/locale/hu/LC_MESSAGES/kwin_scripts.mo share/locale/ia/LC_MESSAGES/kcm-kwin-scripts.mo -share/locale/ia/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/ia/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ia/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ia/LC_MESSAGES/kcmkwincompositing.mo share/locale/ia/LC_MESSAGES/kcmkwindecoration.mo share/locale/ia/LC_MESSAGES/kcmkwinrules.mo share/locale/ia/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ia/LC_MESSAGES/kcmkwm.mo share/locale/ia/LC_MESSAGES/kwin.mo share/locale/ia/LC_MESSAGES/kwin_clients.mo share/locale/ia/LC_MESSAGES/kwin_effects.mo share/locale/ia/LC_MESSAGES/kwin_scripting.mo share/locale/ia/LC_MESSAGES/kwin_scripts.mo -share/locale/id/LC_MESSAGES/kcm_kwindesktop.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_kwintabbox.mo +share/locale/id/LC_MESSAGES/kcmkwincommon.mo share/locale/id/LC_MESSAGES/kcmkwincompositing.mo share/locale/id/LC_MESSAGES/kcmkwindecoration.mo share/locale/id/LC_MESSAGES/kcmkwinrules.mo share/locale/id/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/id/LC_MESSAGES/kcmkwm.mo share/locale/id/LC_MESSAGES/kwin.mo share/locale/id/LC_MESSAGES/kwin_clients.mo share/locale/id/LC_MESSAGES/kwin_effects.mo share/locale/id/LC_MESSAGES/kwin_scripting.mo share/locale/id/LC_MESSAGES/kwin_scripts.mo -share/locale/is/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/is/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/is/LC_MESSAGES/kcm_kwintabbox.mo -share/locale/id/LC_MESSAGES/kcm-kwin-scripts.mo share/locale/is/LC_MESSAGES/kcmkwincompositing.mo share/locale/is/LC_MESSAGES/kcmkwindecoration.mo share/locale/is/LC_MESSAGES/kcmkwinrules.mo share/locale/is/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/is/LC_MESSAGES/kcmkwm.mo share/locale/is/LC_MESSAGES/kwin.mo share/locale/is/LC_MESSAGES/kwin_clients.mo share/locale/is/LC_MESSAGES/kwin_effects.mo share/locale/it/LC_MESSAGES/kcm-kwin-scripts.mo -share/locale/it/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/it/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/it/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/it/LC_MESSAGES/kcmkwincommon.mo share/locale/it/LC_MESSAGES/kcmkwincompositing.mo share/locale/it/LC_MESSAGES/kcmkwindecoration.mo share/locale/it/LC_MESSAGES/kcmkwinrules.mo share/locale/it/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/it/LC_MESSAGES/kcmkwm.mo share/locale/it/LC_MESSAGES/kwin.mo share/locale/it/LC_MESSAGES/kwin_clients.mo share/locale/it/LC_MESSAGES/kwin_effects.mo share/locale/it/LC_MESSAGES/kwin_scripting.mo share/locale/it/LC_MESSAGES/kwin_scripts.mo share/locale/ja/LC_MESSAGES/kcm-kwin-scripts.mo -share/locale/ja/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/ja/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ja/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ja/LC_MESSAGES/kcmkwincompositing.mo share/locale/ja/LC_MESSAGES/kcmkwindecoration.mo share/locale/ja/LC_MESSAGES/kcmkwinrules.mo share/locale/ja/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ja/LC_MESSAGES/kcmkwm.mo share/locale/ja/LC_MESSAGES/kwin.mo share/locale/ja/LC_MESSAGES/kwin_clients.mo share/locale/ja/LC_MESSAGES/kwin_effects.mo share/locale/ja/LC_MESSAGES/kwin_scripting.mo share/locale/ja/LC_MESSAGES/kwin_scripts.mo share/locale/kk/LC_MESSAGES/kcm-kwin-scripts.mo -share/locale/kk/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/kk/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/kk/LC_MESSAGES/kcm_kwintabbox.mo share/locale/kk/LC_MESSAGES/kcmkwincompositing.mo share/locale/kk/LC_MESSAGES/kcmkwindecoration.mo share/locale/kk/LC_MESSAGES/kcmkwinrules.mo share/locale/kk/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/kk/LC_MESSAGES/kcmkwm.mo share/locale/kk/LC_MESSAGES/kwin.mo share/locale/kk/LC_MESSAGES/kwin_clients.mo share/locale/kk/LC_MESSAGES/kwin_effects.mo share/locale/kk/LC_MESSAGES/kwin_scripting.mo share/locale/km/LC_MESSAGES/kcm-kwin-scripts.mo -share/locale/km/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/km/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/km/LC_MESSAGES/kcm_kwintabbox.mo share/locale/km/LC_MESSAGES/kcmkwincompositing.mo share/locale/km/LC_MESSAGES/kcmkwindecoration.mo share/locale/km/LC_MESSAGES/kcmkwinrules.mo share/locale/km/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/km/LC_MESSAGES/kcmkwm.mo share/locale/km/LC_MESSAGES/kwin.mo share/locale/km/LC_MESSAGES/kwin_clients.mo share/locale/km/LC_MESSAGES/kwin_effects.mo -share/locale/kn/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/kn/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/kn/LC_MESSAGES/kcm_kwintabbox.mo share/locale/kn/LC_MESSAGES/kcmkwincompositing.mo share/locale/kn/LC_MESSAGES/kcmkwindecoration.mo share/locale/kn/LC_MESSAGES/kcmkwinrules.mo share/locale/kn/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/kn/LC_MESSAGES/kcmkwm.mo share/locale/kn/LC_MESSAGES/kwin.mo share/locale/kn/LC_MESSAGES/kwin_clients.mo share/locale/kn/LC_MESSAGES/kwin_effects.mo share/locale/ko/LC_MESSAGES/kcm-kwin-scripts.mo -share/locale/ko/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/ko/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ko/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ko/LC_MESSAGES/kcmkwincompositing.mo share/locale/ko/LC_MESSAGES/kcmkwindecoration.mo share/locale/ko/LC_MESSAGES/kcmkwinrules.mo share/locale/ko/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ko/LC_MESSAGES/kcmkwm.mo share/locale/ko/LC_MESSAGES/kwin.mo share/locale/ko/LC_MESSAGES/kwin_clients.mo share/locale/ko/LC_MESSAGES/kwin_effects.mo share/locale/ko/LC_MESSAGES/kwin_scripting.mo share/locale/ko/LC_MESSAGES/kwin_scripts.mo -share/locale/ku/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/ku/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ku/LC_MESSAGES/kcmkwincompositing.mo share/locale/ku/LC_MESSAGES/kcmkwindecoration.mo share/locale/ku/LC_MESSAGES/kcmkwinrules.mo share/locale/ku/LC_MESSAGES/kcmkwm.mo share/locale/ku/LC_MESSAGES/kwin.mo share/locale/ku/LC_MESSAGES/kwin_clients.mo share/locale/ku/LC_MESSAGES/kwin_effects.mo share/locale/lt/LC_MESSAGES/kcm-kwin-scripts.mo -share/locale/lt/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/lt/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/lt/LC_MESSAGES/kcm_kwintabbox.mo share/locale/lt/LC_MESSAGES/kcmkwincompositing.mo share/locale/lt/LC_MESSAGES/kcmkwindecoration.mo share/locale/lt/LC_MESSAGES/kcmkwinrules.mo share/locale/lt/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/lt/LC_MESSAGES/kcmkwm.mo share/locale/lt/LC_MESSAGES/kwin.mo share/locale/lt/LC_MESSAGES/kwin_clients.mo share/locale/lt/LC_MESSAGES/kwin_effects.mo share/locale/lt/LC_MESSAGES/kwin_scripting.mo -share/locale/lv/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/lv/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/lv/LC_MESSAGES/kcm_kwintabbox.mo share/locale/lv/LC_MESSAGES/kcmkwincompositing.mo share/locale/lv/LC_MESSAGES/kcmkwindecoration.mo share/locale/lv/LC_MESSAGES/kcmkwinrules.mo share/locale/lv/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/lv/LC_MESSAGES/kcmkwm.mo share/locale/lv/LC_MESSAGES/kwin.mo share/locale/lv/LC_MESSAGES/kwin_clients.mo share/locale/lv/LC_MESSAGES/kwin_effects.mo -share/locale/mai/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/mai/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/mai/LC_MESSAGES/kcm_kwintabbox.mo share/locale/mai/LC_MESSAGES/kcmkwincompositing.mo share/locale/mai/LC_MESSAGES/kcmkwindecoration.mo share/locale/mai/LC_MESSAGES/kcmkwinrules.mo share/locale/mai/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/mai/LC_MESSAGES/kcmkwm.mo share/locale/mai/LC_MESSAGES/kwin.mo share/locale/mai/LC_MESSAGES/kwin_clients.mo share/locale/mai/LC_MESSAGES/kwin_effects.mo -share/locale/mk/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/mk/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/mk/LC_MESSAGES/kcmkwincompositing.mo share/locale/mk/LC_MESSAGES/kcmkwindecoration.mo share/locale/mk/LC_MESSAGES/kcmkwinrules.mo share/locale/mk/LC_MESSAGES/kcmkwm.mo share/locale/mk/LC_MESSAGES/kwin.mo share/locale/mk/LC_MESSAGES/kwin_clients.mo share/locale/mk/LC_MESSAGES/kwin_effects.mo -share/locale/ml/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/ml/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ml/LC_MESSAGES/kcmkwincompositing.mo share/locale/ml/LC_MESSAGES/kcmkwindecoration.mo share/locale/ml/LC_MESSAGES/kcmkwinrules.mo share/locale/ml/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ml/LC_MESSAGES/kcmkwm.mo share/locale/ml/LC_MESSAGES/kwin.mo share/locale/ml/LC_MESSAGES/kwin_clients.mo share/locale/ml/LC_MESSAGES/kwin_effects.mo share/locale/mr/LC_MESSAGES/kcm-kwin-scripts.mo -share/locale/mr/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/mr/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/mr/LC_MESSAGES/kcm_kwintabbox.mo share/locale/mr/LC_MESSAGES/kcmkwincompositing.mo share/locale/mr/LC_MESSAGES/kcmkwindecoration.mo share/locale/mr/LC_MESSAGES/kcmkwinrules.mo share/locale/mr/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/mr/LC_MESSAGES/kcmkwm.mo share/locale/mr/LC_MESSAGES/kwin.mo share/locale/mr/LC_MESSAGES/kwin_clients.mo share/locale/mr/LC_MESSAGES/kwin_effects.mo share/locale/mr/LC_MESSAGES/kwin_scripting.mo -share/locale/ms/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/ms/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ms/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ms/LC_MESSAGES/kcmkwincompositing.mo share/locale/ms/LC_MESSAGES/kcmkwindecoration.mo share/locale/ms/LC_MESSAGES/kcmkwinrules.mo share/locale/ms/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ms/LC_MESSAGES/kcmkwm.mo share/locale/ms/LC_MESSAGES/kwin.mo share/locale/ms/LC_MESSAGES/kwin_clients.mo share/locale/ms/LC_MESSAGES/kwin_effects.mo share/locale/nb/LC_MESSAGES/kcm-kwin-scripts.mo -share/locale/nb/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/nb/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/nb/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/nb/LC_MESSAGES/kcmkwincommon.mo share/locale/nb/LC_MESSAGES/kcmkwincompositing.mo share/locale/nb/LC_MESSAGES/kcmkwindecoration.mo share/locale/nb/LC_MESSAGES/kcmkwinrules.mo share/locale/nb/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/nb/LC_MESSAGES/kcmkwm.mo share/locale/nb/LC_MESSAGES/kwin.mo share/locale/nb/LC_MESSAGES/kwin_clients.mo share/locale/nb/LC_MESSAGES/kwin_effects.mo share/locale/nb/LC_MESSAGES/kwin_scripting.mo share/locale/nds/LC_MESSAGES/kcm-kwin-scripts.mo -share/locale/nds/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/nds/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/nds/LC_MESSAGES/kcm_kwintabbox.mo share/locale/nds/LC_MESSAGES/kcmkwincompositing.mo share/locale/nds/LC_MESSAGES/kcmkwindecoration.mo share/locale/nds/LC_MESSAGES/kcmkwinrules.mo share/locale/nds/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/nds/LC_MESSAGES/kcmkwm.mo share/locale/nds/LC_MESSAGES/kwin.mo share/locale/nds/LC_MESSAGES/kwin_clients.mo share/locale/nds/LC_MESSAGES/kwin_effects.mo share/locale/nds/LC_MESSAGES/kwin_scripting.mo -share/locale/ne/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/ne/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ne/LC_MESSAGES/kcmkwincompositing.mo share/locale/ne/LC_MESSAGES/kcmkwindecoration.mo share/locale/ne/LC_MESSAGES/kcmkwinrules.mo share/locale/ne/LC_MESSAGES/kcmkwm.mo share/locale/ne/LC_MESSAGES/kwin.mo share/locale/ne/LC_MESSAGES/kwin_clients.mo share/locale/nl/LC_MESSAGES/kcm-kwin-scripts.mo -share/locale/nl/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/nl/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/nl/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/nl/LC_MESSAGES/kcmkwincommon.mo share/locale/nl/LC_MESSAGES/kcmkwincompositing.mo share/locale/nl/LC_MESSAGES/kcmkwindecoration.mo share/locale/nl/LC_MESSAGES/kcmkwinrules.mo share/locale/nl/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/nl/LC_MESSAGES/kcmkwm.mo share/locale/nl/LC_MESSAGES/kwin.mo share/locale/nl/LC_MESSAGES/kwin_clients.mo share/locale/nl/LC_MESSAGES/kwin_effects.mo share/locale/nl/LC_MESSAGES/kwin_scripting.mo share/locale/nl/LC_MESSAGES/kwin_scripts.mo share/locale/nn/LC_MESSAGES/kcm-kwin-scripts.mo -share/locale/nn/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/nn/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/nn/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/nn/LC_MESSAGES/kcmkwincommon.mo share/locale/nn/LC_MESSAGES/kcmkwincompositing.mo share/locale/nn/LC_MESSAGES/kcmkwindecoration.mo share/locale/nn/LC_MESSAGES/kcmkwinrules.mo share/locale/nn/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/nn/LC_MESSAGES/kcmkwm.mo share/locale/nn/LC_MESSAGES/kwin.mo share/locale/nn/LC_MESSAGES/kwin_clients.mo share/locale/nn/LC_MESSAGES/kwin_effects.mo share/locale/nn/LC_MESSAGES/kwin_scripting.mo share/locale/nn/LC_MESSAGES/kwin_scripts.mo -share/locale/oc/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/oc/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/oc/LC_MESSAGES/kcmkwincompositing.mo share/locale/oc/LC_MESSAGES/kcmkwindecoration.mo share/locale/oc/LC_MESSAGES/kcmkwinrules.mo share/locale/oc/LC_MESSAGES/kcmkwm.mo share/locale/oc/LC_MESSAGES/kwin.mo share/locale/oc/LC_MESSAGES/kwin_clients.mo share/locale/oc/LC_MESSAGES/kwin_effects.mo -share/locale/or/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/or/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/or/LC_MESSAGES/kcmkwincompositing.mo share/locale/or/LC_MESSAGES/kcmkwindecoration.mo share/locale/or/LC_MESSAGES/kcmkwinrules.mo share/locale/or/LC_MESSAGES/kcmkwm.mo share/locale/or/LC_MESSAGES/kwin.mo share/locale/or/LC_MESSAGES/kwin_clients.mo share/locale/or/LC_MESSAGES/kwin_effects.mo share/locale/pa/LC_MESSAGES/kcm-kwin-scripts.mo -share/locale/pa/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/pa/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/pa/LC_MESSAGES/kcm_kwintabbox.mo share/locale/pa/LC_MESSAGES/kcmkwincompositing.mo share/locale/pa/LC_MESSAGES/kcmkwindecoration.mo share/locale/pa/LC_MESSAGES/kcmkwinrules.mo share/locale/pa/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/pa/LC_MESSAGES/kcmkwm.mo share/locale/pa/LC_MESSAGES/kwin.mo share/locale/pa/LC_MESSAGES/kwin_clients.mo share/locale/pa/LC_MESSAGES/kwin_effects.mo share/locale/pa/LC_MESSAGES/kwin_scripting.mo share/locale/pl/LC_MESSAGES/kcm-kwin-scripts.mo -share/locale/pl/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/pl/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/pl/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/pl/LC_MESSAGES/kcmkwincommon.mo share/locale/pl/LC_MESSAGES/kcmkwincompositing.mo share/locale/pl/LC_MESSAGES/kcmkwindecoration.mo share/locale/pl/LC_MESSAGES/kcmkwinrules.mo share/locale/pl/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/pl/LC_MESSAGES/kcmkwm.mo share/locale/pl/LC_MESSAGES/kwin.mo share/locale/pl/LC_MESSAGES/kwin_clients.mo share/locale/pl/LC_MESSAGES/kwin_effects.mo share/locale/pl/LC_MESSAGES/kwin_scripting.mo share/locale/pl/LC_MESSAGES/kwin_scripts.mo share/locale/pt/LC_MESSAGES/kcm-kwin-scripts.mo -share/locale/pt/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/pt/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/pt/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/pt/LC_MESSAGES/kcmkwincommon.mo share/locale/pt/LC_MESSAGES/kcmkwincompositing.mo share/locale/pt/LC_MESSAGES/kcmkwindecoration.mo share/locale/pt/LC_MESSAGES/kcmkwinrules.mo share/locale/pt/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/pt/LC_MESSAGES/kcmkwm.mo share/locale/pt/LC_MESSAGES/kwin.mo share/locale/pt/LC_MESSAGES/kwin_clients.mo share/locale/pt/LC_MESSAGES/kwin_effects.mo share/locale/pt/LC_MESSAGES/kwin_scripting.mo share/locale/pt/LC_MESSAGES/kwin_scripts.mo share/locale/pt_BR/LC_MESSAGES/kcm-kwin-scripts.mo -share/locale/pt_BR/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/pt_BR/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/pt_BR/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/pt_BR/LC_MESSAGES/kcmkwincommon.mo share/locale/pt_BR/LC_MESSAGES/kcmkwincompositing.mo share/locale/pt_BR/LC_MESSAGES/kcmkwindecoration.mo share/locale/pt_BR/LC_MESSAGES/kcmkwinrules.mo share/locale/pt_BR/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/pt_BR/LC_MESSAGES/kcmkwm.mo share/locale/pt_BR/LC_MESSAGES/kwin.mo share/locale/pt_BR/LC_MESSAGES/kwin_clients.mo share/locale/pt_BR/LC_MESSAGES/kwin_effects.mo share/locale/pt_BR/LC_MESSAGES/kwin_scripting.mo share/locale/pt_BR/LC_MESSAGES/kwin_scripts.mo share/locale/ro/LC_MESSAGES/kcm-kwin-scripts.mo -share/locale/ro/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/ro/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ro/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ro/LC_MESSAGES/kcmkwincompositing.mo share/locale/ro/LC_MESSAGES/kcmkwindecoration.mo share/locale/ro/LC_MESSAGES/kcmkwinrules.mo share/locale/ro/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ro/LC_MESSAGES/kcmkwm.mo share/locale/ro/LC_MESSAGES/kwin.mo share/locale/ro/LC_MESSAGES/kwin_clients.mo share/locale/ro/LC_MESSAGES/kwin_effects.mo share/locale/ro/LC_MESSAGES/kwin_scripting.mo share/locale/ru/LC_MESSAGES/kcm-kwin-scripts.mo -share/locale/ru/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/ru/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ru/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/ru/LC_MESSAGES/kcmkwincommon.mo share/locale/ru/LC_MESSAGES/kcmkwincompositing.mo share/locale/ru/LC_MESSAGES/kcmkwindecoration.mo share/locale/ru/LC_MESSAGES/kcmkwinrules.mo share/locale/ru/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ru/LC_MESSAGES/kcmkwm.mo share/locale/ru/LC_MESSAGES/kwin.mo share/locale/ru/LC_MESSAGES/kwin_clients.mo share/locale/ru/LC_MESSAGES/kwin_effects.mo share/locale/ru/LC_MESSAGES/kwin_scripting.mo share/locale/ru/LC_MESSAGES/kwin_scripts.mo -share/locale/se/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/se/LC_MESSAGES/kcm_kwin_virtualdesktops.mo +share/locale/se/LC_MESSAGES/kcmkwincommon.mo share/locale/se/LC_MESSAGES/kcmkwincompositing.mo share/locale/se/LC_MESSAGES/kcmkwindecoration.mo share/locale/se/LC_MESSAGES/kcmkwinrules.mo share/locale/se/LC_MESSAGES/kcmkwm.mo share/locale/se/LC_MESSAGES/kwin.mo share/locale/se/LC_MESSAGES/kwin_clients.mo -share/locale/si/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/si/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/si/LC_MESSAGES/kcm_kwintabbox.mo share/locale/si/LC_MESSAGES/kcmkwincompositing.mo share/locale/si/LC_MESSAGES/kcmkwindecoration.mo share/locale/si/LC_MESSAGES/kcmkwinrules.mo share/locale/si/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/si/LC_MESSAGES/kcmkwm.mo share/locale/si/LC_MESSAGES/kwin.mo share/locale/si/LC_MESSAGES/kwin_clients.mo share/locale/si/LC_MESSAGES/kwin_effects.mo share/locale/sk/LC_MESSAGES/kcm-kwin-scripts.mo -share/locale/sk/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/sk/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/sk/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/sk/LC_MESSAGES/kcmkwincommon.mo share/locale/sk/LC_MESSAGES/kcmkwincompositing.mo share/locale/sk/LC_MESSAGES/kcmkwindecoration.mo share/locale/sk/LC_MESSAGES/kcmkwinrules.mo share/locale/sk/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/sk/LC_MESSAGES/kcmkwm.mo share/locale/sk/LC_MESSAGES/kwin.mo share/locale/sk/LC_MESSAGES/kwin_clients.mo share/locale/sk/LC_MESSAGES/kwin_effects.mo share/locale/sk/LC_MESSAGES/kwin_scripting.mo share/locale/sk/LC_MESSAGES/kwin_scripts.mo share/locale/sl/LC_MESSAGES/kcm-kwin-scripts.mo -share/locale/sl/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/sl/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/sl/LC_MESSAGES/kcm_kwintabbox.mo share/locale/sl/LC_MESSAGES/kcmkwincompositing.mo share/locale/sl/LC_MESSAGES/kcmkwindecoration.mo share/locale/sl/LC_MESSAGES/kcmkwinrules.mo share/locale/sl/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/sl/LC_MESSAGES/kcmkwm.mo share/locale/sl/LC_MESSAGES/kwin.mo share/locale/sl/LC_MESSAGES/kwin_clients.mo share/locale/sl/LC_MESSAGES/kwin_effects.mo share/locale/sl/LC_MESSAGES/kwin_scripting.mo share/locale/sl/LC_MESSAGES/kwin_scripts.mo -share/locale/sq/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/sq/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/sq/LC_MESSAGES/kcmkwincompositing.mo share/locale/sq/LC_MESSAGES/kcmkwindecoration.mo share/locale/sq/LC_MESSAGES/kcmkwinrules.mo share/locale/sq/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/sq/LC_MESSAGES/kcmkwm.mo share/locale/sq/LC_MESSAGES/kwin.mo share/locale/sq/LC_MESSAGES/kwin_clients.mo share/locale/sq/LC_MESSAGES/kwin_effects.mo share/locale/sr/LC_MESSAGES/kcm-kwin-scripts.mo -share/locale/sr/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/sr/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/sr/LC_MESSAGES/kcm_kwintabbox.mo share/locale/sr/LC_MESSAGES/kcmkwincompositing.mo share/locale/sr/LC_MESSAGES/kcmkwindecoration.mo share/locale/sr/LC_MESSAGES/kcmkwinrules.mo share/locale/sr/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/sr/LC_MESSAGES/kcmkwm.mo share/locale/sr/LC_MESSAGES/kwin.mo share/locale/sr/LC_MESSAGES/kwin_clients.mo share/locale/sr/LC_MESSAGES/kwin_effects.mo share/locale/sr/LC_MESSAGES/kwin_scripting.mo share/locale/sr/LC_MESSAGES/kwin_scripts.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm-kwin-scripts.mo -share/locale/sr@ijekavian/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/sr@ijekavian/LC_MESSAGES/kcm_kwintabbox.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmkwincompositing.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmkwindecoration.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmkwinrules.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/sr@ijekavian/LC_MESSAGES/kcmkwm.mo share/locale/sr@ijekavian/LC_MESSAGES/kwin.mo share/locale/sr@ijekavian/LC_MESSAGES/kwin_clients.mo share/locale/sr@ijekavian/LC_MESSAGES/kwin_effects.mo share/locale/sr@ijekavian/LC_MESSAGES/kwin_scripting.mo share/locale/sr@ijekavian/LC_MESSAGES/kwin_scripts.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm-kwin-scripts.mo -share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_kwintabbox.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmkwincompositing.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmkwindecoration.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmkwinrules.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmkwm.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kwin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kwin_clients.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kwin_effects.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kwin_scripting.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kwin_scripts.mo share/locale/sr@latin/LC_MESSAGES/kcm-kwin-scripts.mo -share/locale/sr@latin/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/sr@latin/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/sr@latin/LC_MESSAGES/kcm_kwintabbox.mo share/locale/sr@latin/LC_MESSAGES/kcmkwincompositing.mo share/locale/sr@latin/LC_MESSAGES/kcmkwindecoration.mo share/locale/sr@latin/LC_MESSAGES/kcmkwinrules.mo share/locale/sr@latin/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/sr@latin/LC_MESSAGES/kcmkwm.mo share/locale/sr@latin/LC_MESSAGES/kwin.mo share/locale/sr@latin/LC_MESSAGES/kwin_clients.mo share/locale/sr@latin/LC_MESSAGES/kwin_effects.mo share/locale/sr@latin/LC_MESSAGES/kwin_scripting.mo share/locale/sr@latin/LC_MESSAGES/kwin_scripts.mo share/locale/sv/LC_MESSAGES/kcm-kwin-scripts.mo -share/locale/sv/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/sv/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/sv/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/sv/LC_MESSAGES/kcmkwincommon.mo share/locale/sv/LC_MESSAGES/kcmkwincompositing.mo share/locale/sv/LC_MESSAGES/kcmkwindecoration.mo share/locale/sv/LC_MESSAGES/kcmkwinrules.mo share/locale/sv/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/sv/LC_MESSAGES/kcmkwm.mo share/locale/sv/LC_MESSAGES/kwin.mo share/locale/sv/LC_MESSAGES/kwin_clients.mo share/locale/sv/LC_MESSAGES/kwin_effects.mo share/locale/sv/LC_MESSAGES/kwin_scripting.mo share/locale/sv/LC_MESSAGES/kwin_scripts.mo -share/locale/ta/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/ta/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ta/LC_MESSAGES/kcmkwincompositing.mo share/locale/ta/LC_MESSAGES/kcmkwindecoration.mo share/locale/ta/LC_MESSAGES/kcmkwinrules.mo share/locale/ta/LC_MESSAGES/kcmkwm.mo share/locale/ta/LC_MESSAGES/kwin.mo share/locale/ta/LC_MESSAGES/kwin_clients.mo share/locale/ta/LC_MESSAGES/kwin_effects.mo -share/locale/te/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/te/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/te/LC_MESSAGES/kcmkwincompositing.mo share/locale/te/LC_MESSAGES/kcmkwindecoration.mo share/locale/te/LC_MESSAGES/kcmkwinrules.mo share/locale/te/LC_MESSAGES/kcmkwm.mo share/locale/te/LC_MESSAGES/kwin.mo share/locale/te/LC_MESSAGES/kwin_clients.mo share/locale/te/LC_MESSAGES/kwin_effects.mo -share/locale/tg/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/tg/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/tg/LC_MESSAGES/kcmkwincompositing.mo share/locale/tg/LC_MESSAGES/kcmkwindecoration.mo share/locale/tg/LC_MESSAGES/kcmkwinrules.mo share/locale/tg/LC_MESSAGES/kcmkwm.mo share/locale/tg/LC_MESSAGES/kwin.mo share/locale/tg/LC_MESSAGES/kwin_clients.mo share/locale/tg/LC_MESSAGES/kwin_effects.mo -share/locale/th/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/th/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/th/LC_MESSAGES/kcm_kwintabbox.mo share/locale/th/LC_MESSAGES/kcmkwincompositing.mo share/locale/th/LC_MESSAGES/kcmkwindecoration.mo share/locale/th/LC_MESSAGES/kcmkwinrules.mo share/locale/th/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/th/LC_MESSAGES/kcmkwm.mo share/locale/th/LC_MESSAGES/kwin.mo share/locale/th/LC_MESSAGES/kwin_clients.mo share/locale/th/LC_MESSAGES/kwin_effects.mo share/locale/tr/LC_MESSAGES/kcm-kwin-scripts.mo -share/locale/tr/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/tr/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/tr/LC_MESSAGES/kcm_kwintabbox.mo share/locale/tr/LC_MESSAGES/kcmkwincompositing.mo share/locale/tr/LC_MESSAGES/kcmkwindecoration.mo share/locale/tr/LC_MESSAGES/kcmkwinrules.mo share/locale/tr/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/tr/LC_MESSAGES/kcmkwm.mo share/locale/tr/LC_MESSAGES/kwin.mo share/locale/tr/LC_MESSAGES/kwin_clients.mo share/locale/tr/LC_MESSAGES/kwin_effects.mo share/locale/tr/LC_MESSAGES/kwin_scripting.mo share/locale/tr/LC_MESSAGES/kwin_scripts.mo share/locale/ug/LC_MESSAGES/kcm-kwin-scripts.mo -share/locale/ug/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/ug/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/ug/LC_MESSAGES/kcm_kwintabbox.mo share/locale/ug/LC_MESSAGES/kcmkwincompositing.mo share/locale/ug/LC_MESSAGES/kcmkwindecoration.mo share/locale/ug/LC_MESSAGES/kcmkwinrules.mo share/locale/ug/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/ug/LC_MESSAGES/kcmkwm.mo share/locale/ug/LC_MESSAGES/kwin.mo share/locale/ug/LC_MESSAGES/kwin_clients.mo share/locale/ug/LC_MESSAGES/kwin_effects.mo share/locale/ug/LC_MESSAGES/kwin_scripting.mo share/locale/uk/LC_MESSAGES/kcm-kwin-scripts.mo -share/locale/uk/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/uk/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/uk/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/uk/LC_MESSAGES/kcmkwincommon.mo share/locale/uk/LC_MESSAGES/kcmkwincompositing.mo share/locale/uk/LC_MESSAGES/kcmkwindecoration.mo share/locale/uk/LC_MESSAGES/kcmkwinrules.mo share/locale/uk/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/uk/LC_MESSAGES/kcmkwm.mo share/locale/uk/LC_MESSAGES/kwin.mo share/locale/uk/LC_MESSAGES/kwin_clients.mo share/locale/uk/LC_MESSAGES/kwin_effects.mo share/locale/uk/LC_MESSAGES/kwin_scripting.mo share/locale/uk/LC_MESSAGES/kwin_scripts.mo share/locale/uz/LC_MESSAGES/kcmkwindecoration.mo share/locale/uz/LC_MESSAGES/kcmkwinrules.mo share/locale/uz/LC_MESSAGES/kcmkwm.mo share/locale/uz/LC_MESSAGES/kwin.mo share/locale/uz/LC_MESSAGES/kwin_clients.mo share/locale/uz@cyrillic/LC_MESSAGES/kcmkwindecoration.mo share/locale/uz@cyrillic/LC_MESSAGES/kcmkwinrules.mo share/locale/uz@cyrillic/LC_MESSAGES/kcmkwm.mo share/locale/uz@cyrillic/LC_MESSAGES/kwin.mo share/locale/uz@cyrillic/LC_MESSAGES/kwin_clients.mo -share/locale/wa/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/vi/LC_MESSAGES/kcmkwindecoration.mo +share/locale/vi/LC_MESSAGES/kcmkwinrules.mo +share/locale/vi/LC_MESSAGES/kcmkwm.mo +share/locale/vi/LC_MESSAGES/kwin.mo +share/locale/vi/LC_MESSAGES/kwin_clients.mo +share/locale/wa/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/wa/LC_MESSAGES/kcm_kwintabbox.mo share/locale/wa/LC_MESSAGES/kcmkwincompositing.mo share/locale/wa/LC_MESSAGES/kcmkwindecoration.mo share/locale/wa/LC_MESSAGES/kcmkwinrules.mo share/locale/wa/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/wa/LC_MESSAGES/kcmkwm.mo share/locale/wa/LC_MESSAGES/kwin.mo share/locale/wa/LC_MESSAGES/kwin_clients.mo share/locale/wa/LC_MESSAGES/kwin_effects.mo share/locale/xh/LC_MESSAGES/kcmkwindecoration.mo share/locale/xh/LC_MESSAGES/kcmkwm.mo share/locale/xh/LC_MESSAGES/kwin.mo share/locale/zh_CN/LC_MESSAGES/kcm-kwin-scripts.mo -share/locale/zh_CN/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/zh_CN/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/zh_CN/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/zh_CN/LC_MESSAGES/kcmkwincommon.mo share/locale/zh_CN/LC_MESSAGES/kcmkwincompositing.mo share/locale/zh_CN/LC_MESSAGES/kcmkwindecoration.mo share/locale/zh_CN/LC_MESSAGES/kcmkwinrules.mo share/locale/zh_CN/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/zh_CN/LC_MESSAGES/kcmkwm.mo share/locale/zh_CN/LC_MESSAGES/kwin.mo share/locale/zh_CN/LC_MESSAGES/kwin_clients.mo share/locale/zh_CN/LC_MESSAGES/kwin_effects.mo share/locale/zh_CN/LC_MESSAGES/kwin_scripting.mo share/locale/zh_CN/LC_MESSAGES/kwin_scripts.mo share/locale/zh_TW/LC_MESSAGES/kcm-kwin-scripts.mo -share/locale/zh_TW/LC_MESSAGES/kcm_kwindesktop.mo +share/locale/zh_TW/LC_MESSAGES/kcm_kwin_virtualdesktops.mo share/locale/zh_TW/LC_MESSAGES/kcm_kwintabbox.mo +share/locale/zh_TW/LC_MESSAGES/kcmkwincommon.mo share/locale/zh_TW/LC_MESSAGES/kcmkwincompositing.mo share/locale/zh_TW/LC_MESSAGES/kcmkwindecoration.mo share/locale/zh_TW/LC_MESSAGES/kcmkwinrules.mo share/locale/zh_TW/LC_MESSAGES/kcmkwinscreenedges.mo share/locale/zh_TW/LC_MESSAGES/kcmkwm.mo share/locale/zh_TW/LC_MESSAGES/kwin.mo share/locale/zh_TW/LC_MESSAGES/kwin_clients.mo share/locale/zh_TW/LC_MESSAGES/kwin_effects.mo share/locale/zh_TW/LC_MESSAGES/kwin_scripting.mo share/locale/zh_TW/LC_MESSAGES/kwin_scripts.mo